Преглед изворни кода

add match nodes with tool case

guantao пре 1 недеља
родитељ
комит
89bbf37da3

+ 0 - 0
data/agent_research/windows/20260330_194214_cd57a0/chatbox.jsonl


+ 1 - 0
data/agent_research/windows/20260330_194214_cd57a0/in_pending.json

@@ -0,0 +1 @@
+[]

+ 0 - 0
data/agent_research/windows/20260330_194214_cd57a0/out_pending.jsonl


+ 2 - 2
examples/tool_research/config.py

@@ -40,7 +40,7 @@ RUN_CONFIG = RunConfig(
 
 # ===== 任务配置 =====
 
-OUTPUT_DIR = "examples/research/outputs/seedream"  # 输出目录
+OUTPUT_DIR = "examples/tool_research/outputs/flux_1"  # 输出目录
 
 
 # ===== 基础设施配置 =====
@@ -57,7 +57,7 @@ BROWSER_TYPE = "local"
 HEADLESS = False
 
 # ===== IM 配置 =====
-IM_ENABLED = True                         # 是否启动 IM Client
+IM_ENABLED = False                         # 是否启动 IM Client
 IM_CONTACT_ID = "agent_research"           # Agent 在 IM 系统中的身份 ID
 IM_SERVER_URL = "ws://localhost:8005"      # IM Server WebSocket 地址
 IM_WINDOW_MODE = True                      # 窗口模式(True=每次运行消息隔离,推荐)

+ 758 - 0
examples/tool_research/match_nodes.py

@@ -0,0 +1,758 @@
+"""
+制作案例 → 制作需求 → 内容树节点匹配
+
+流程:
+1a. 逐帖子分析(带图片),提炼每个帖子的制作需求(并发)
+1b. 合并去重相似需求,保留 case_id 溯源
+2.  按合并后的需求语义搜索内容树 + 取父子节点
+3.  每个需求独立过 LLM 挂载决策(并发)
+4.  输出 case → demand → node 关系表 + 可视化
+"""
+
+import asyncio
+import json
+import os
+import re
+import sys
+from pathlib import Path
+
+import httpx
+
+# 添加项目根目录
+sys.path.insert(0, str(Path(__file__).parent.parent.parent))
+
+from dotenv import load_dotenv
+load_dotenv()
+
+from agent.llm.qwen import qwen_llm_call
+
+# ===== 配置 =====
+BASE_DIR = Path(__file__).parent
+CONTENT_TREE_BASE = "http://8.147.104.190:8001"
+CATEGORY_TREE_PATH = BASE_DIR / "prompts" / "category_tree.json"
+DEFAULT_MODEL = "qwen-plus"
+VISION_MODEL = "qwen-vl-max"
+SOURCE_TYPES = ["实质", "形式", "意图"]
+
+# 加载本地分类树
+_CATEGORY_TREE_CACHE = None
+
+def load_category_tree() -> dict:
+    """加载本地分类树(缓存)"""
+    global _CATEGORY_TREE_CACHE
+    if _CATEGORY_TREE_CACHE is None:
+        with open(CATEGORY_TREE_PATH, "r", encoding="utf-8") as f:
+            _CATEGORY_TREE_CACHE = json.load(f)
+    return _CATEGORY_TREE_CACHE
+
+
+def collect_all_nodes(node: dict, nodes: list, parent_path: str = ""):
+    """递归收集所有节点,展平树结构"""
+    if "id" in node:
+        node_copy = {
+            "entity_id": node["id"],
+            "name": node["name"],
+            "path": node.get("path", parent_path),
+            "source_type": node.get("source_type"),
+            "description": node.get("description") or "",
+            "level": node.get("level"),
+            "parent_id": node.get("parent_id"),
+            "element_count": node.get("element_count", 0),
+        }
+        nodes.append(node_copy)
+
+    if "children" in node:
+        current_path = node.get("path", parent_path)
+        for child in node["children"]:
+            collect_all_nodes(child, nodes, current_path)
+
+
+def search_local_tree(query: str, source_type: str, top_k: int = 5) -> list:
+    """在本地分类树中搜索节点"""
+    tree = load_category_tree()
+    all_nodes = []
+    collect_all_nodes(tree, all_nodes)
+
+    # 过滤:只保留指定维度
+    filtered = [n for n in all_nodes if n.get("source_type") == source_type]
+
+    # 简单文本匹配打分
+    query_lower = query.lower()
+    scored = []
+    for node in filtered:
+        name = node["name"].lower()
+        desc = node["description"].lower()
+
+        score = 0.0
+        # 名称完全匹配
+        if query_lower == name:
+            score = 1.0
+        # 名称包含
+        elif query_lower in name:
+            score = 0.8
+        # 描述包含
+        elif query_lower in desc:
+            score = 0.5
+        # 名称被包含(反向)
+        elif name in query_lower:
+            score = 0.6
+
+        if score > 0:
+            node["score"] = score
+            node["entity_type"] = "category"  # 本地树都是 category
+            scored.append(node)
+
+    # 按分数排序,取 top_k
+    scored.sort(key=lambda x: x["score"], reverse=True)
+    return scored[:top_k]
+
+
+# ===== Prompt 加载 =====
+
+def load_prompt(filename: str) -> dict:
+    """加载 .prompt 文件,解析 frontmatter 和 $role$ 分段"""
+    path = BASE_DIR / "prompts" / filename
+    text = path.read_text(encoding="utf-8")
+
+    config = {}
+    if text.startswith("---"):
+        _, fm, text = text.split("---", 2)
+        for line in fm.strip().splitlines():
+            if ":" in line:
+                k, v = line.split(":", 1)
+                k, v = k.strip(), v.strip()
+                if v.replace(".", "", 1).isdigit():
+                    v = float(v) if "." in v else int(v)
+                config[k] = v
+
+    messages = []
+    parts = re.split(r'^\$(\w+)\$\s*$', text.strip(), flags=re.MULTILINE)
+    for i in range(1, len(parts), 2):
+        role = parts[i].strip()
+        content = parts[i + 1].strip() if i + 1 < len(parts) else ""
+        messages.append({"role": role, "content": content})
+
+    return {"config": config, "messages": messages}
+
+
+def render_messages(prompt_data: dict, variables: dict) -> list[dict]:
+    """用变量替换 prompt 模板中的 {var} 占位符"""
+    rendered = []
+    for msg in prompt_data["messages"]:
+        content = msg["content"]
+        for k, v in variables.items():
+            content = content.replace(f"{{{k}}}", str(v))
+        rendered.append({"role": msg["role"], "content": content})
+    return rendered
+
+
+def parse_json_response(content: str) -> list | dict:
+    """清理 LLM 输出中的 markdown 包裹并解析 JSON"""
+    content = content.strip()
+    if content.startswith("```"):
+        content = content.split("\n", 1)[1]
+        content = content.rsplit("```", 1)[0]
+
+    try:
+        return json.loads(content)
+    except json.JSONDecodeError as e:
+        # 尝试自动修复:替换字符串中的未转义引号
+        print(f"\n[JSON 解析错误] 尝试自动修复...")
+
+        # 简单修复:把字符串值中的单独双引号替换为单引号
+        import re
+        # 匹配 "key": "value with "quote" inside"
+        # 这个正则会找到字符串值中间的引号并替换
+        fixed = re.sub(r'("(?:evidence|description|demand_name)":\s*")([^"]*)"([^"]*)"([^"]*")',
+                      r'\1\2\'\3\4', content)
+
+        try:
+            return json.loads(fixed)
+        except json.JSONDecodeError:
+            # 修复失败,打印错误位置
+            start = max(0, e.pos - 100)
+            end = min(len(content), e.pos + 100)
+            print(f"\n[JSON 解析错误] 位置 {e.pos}:")
+            print(f"...{content[start:end]}...")
+            print(f"\n完整内容已保存到 json_error.txt")
+            with open("json_error.txt", "w", encoding="utf-8") as f:
+                f.write(content)
+            raise
+
+
+# ===== 内容树 API =====
+
+async def search_content_tree(client: httpx.AsyncClient, query: str, source_type: str, top_k: int = 5) -> list:
+    params = {
+        "q": query, "source_type": source_type, "entity_type": "all",
+        "top_k": top_k, "use_description": "true",
+        "include_ancestors": "false", "descendant_depth": 0,
+    }
+    resp = await client.get(f"{CONTENT_TREE_BASE}/api/agent/search", params=params)
+    resp.raise_for_status()
+    return resp.json().get("results", [])
+
+
+async def get_category_tree(client: httpx.AsyncClient, entity_id: int, source_type: str) -> dict:
+    params = {
+        "source_type": source_type, "include_ancestors": "true", "descendant_depth": 1,
+    }
+    resp = await client.get(f"{CONTENT_TREE_BASE}/api/agent/search/category/{entity_id}", params=params)
+    resp.raise_for_status()
+    return resp.json()
+
+
+# ===== Step 1a:逐帖子提需求(支持图片) =====
+
+def build_case_content(case: dict) -> list[dict]:
+    """
+    构造单个帖子的多模态消息内容。
+    返回 OpenAI vision 格式的 content 数组。
+    """
+    parts = []
+
+    # 文本部分(兼容多种字段名)
+    title = case.get("title") or case.get("video_title") or case.get("post_title", "未知")
+    text_lines = [f"## 案例:{title}"]
+    text_lines.append(f"来源:{case.get('source', '')}")
+    if case.get("user_input"):
+        text_lines.append(f"用户输入:{json.dumps(case['user_input'], ensure_ascii=False)}")
+    if case.get("output_description"):
+        text_lines.append(f"输出效果:{case['output_description']}")
+    if case.get("key_findings"):
+        text_lines.append(f"关键发现:{case['key_findings']}")
+
+    parts.append({"type": "text", "text": "\n".join(text_lines)})
+
+    # 图片部分(兼容多种字段名)
+    images = case.get("images") or case.get("effect_images", [])
+    for img_url in images[:4]:  # 最多4张图,控制 token
+        parts.append({
+            "type": "image_url",
+            "image_url": {"url": img_url},
+        })
+
+    return parts
+
+
+async def extract_demands_for_case(case: dict) -> dict:
+    """对单个帖子提取需求"""
+    prompt_data = load_prompt("step1_extract_demands.prompt")
+    model = prompt_data["config"].get("model", VISION_MODEL)
+    temperature = prompt_data["config"].get("temperature", 0.3)
+
+    case_content = build_case_content(case)
+    has_images = any(p["type"] == "image_url" for p in case_content)
+
+    # 如果没有图片,降级用文本模型省成本
+    if not has_images:
+        model = DEFAULT_MODEL
+        # 纯文本模式:content 用字符串即可
+        text_only = "\n".join(p["text"] for p in case_content if p["type"] == "text")
+        messages = render_messages(prompt_data, {"case_content": text_only})
+    else:
+        # 多模态模式:user message 的 content 用数组
+        messages = []
+        for msg in prompt_data["messages"]:
+            if msg["role"] == "user":
+                # 把 prompt 模板文本放在图片前面
+                template_text = msg["content"].replace("{case_content}", "")
+                content = case_content.copy()
+                if template_text.strip():
+                    content.insert(0, {"type": "text", "text": template_text})
+                messages.append({"role": "user", "content": content})
+            else:
+                messages.append(msg)
+
+    try:
+        result = await qwen_llm_call(messages, model=model, temperature=temperature)
+        demands = parse_json_response(result["content"])
+        case_id = case.get("case_id", 0)
+        # 给每个需求打上 case_id
+        for d in demands:
+            d["source_case_id"] = case_id
+        return {"case_id": case_id, "title": case.get("title", ""), "demands": demands}
+    except Exception as e:
+        case_id = case.get("case_id", 0)
+        print(f"  [!] case {case_id} 提取失败: {e}")
+        return {"case_id": case_id, "title": case.get("title", ""), "demands": [], "error": str(e)}
+
+
+# ===== Step 1b:合并去重 =====
+
+async def merge_demands(all_case_demands: list[dict]) -> list[dict]:
+    """用 LLM 合并相似需求,超过30个时分批处理"""
+    # 构造输入:展平所有 case 的 demands,标注来源
+    flat = []
+    for cd in all_case_demands:
+        for d in cd["demands"]:
+            flat.append({
+                "case_id": cd["case_id"],
+                "case_title": cd["title"],
+                "demand_name": d["demand_name"],
+                "description": d["description"],
+                "search_keywords": d["search_keywords"],
+                "evidence": d.get("evidence", ""),
+            })
+
+    if not flat:
+        return []
+
+    prompt_data = load_prompt("step1b_merge_demands.prompt")
+    model = prompt_data["config"].get("model", DEFAULT_MODEL)
+    temperature = prompt_data["config"].get("temperature", 0.3)
+
+    # 分批处理:每批最多30个需求
+    BATCH_SIZE = 30
+    if len(flat) <= BATCH_SIZE:
+        # 不需要分批
+        all_demands_json = json.dumps(flat, ensure_ascii=False, indent=2)
+        messages = render_messages(prompt_data, {"all_demands_json": all_demands_json})
+        result = await qwen_llm_call(messages, model=model, temperature=temperature)
+        merged = parse_json_response(result["content"])
+        # 统一转换 source_case_ids 为字符串
+        for m in merged:
+            m["source_case_ids"] = [str(cid) for cid in m.get("source_case_ids", [])]
+        return merged
+    else:
+        # 分批合并
+        print(f"  需求数量 {len(flat)} 超过 {BATCH_SIZE},分批合并...")
+        batches = [flat[i:i + BATCH_SIZE] for i in range(0, len(flat), BATCH_SIZE)]
+        batch_results = []
+
+        for i, batch in enumerate(batches, 1):
+            print(f"    批次 {i}/{len(batches)}: {len(batch)} 个需求")
+            batch_json = json.dumps(batch, ensure_ascii=False, indent=2)
+            messages = render_messages(prompt_data, {"all_demands_json": batch_json})
+            result = await qwen_llm_call(messages, model=model, temperature=temperature)
+            batch_merged = parse_json_response(result["content"])
+            batch_results.extend(batch_merged)
+
+        # 如果分批后的结果仍然很多,再做一次最终合并
+        if len(batch_results) > BATCH_SIZE:
+            print(f"  批次合并后仍有 {len(batch_results)} 个需求,进行最终合并...")
+            final_json = json.dumps(batch_results, ensure_ascii=False, indent=2)
+            messages = render_messages(prompt_data, {"all_demands_json": final_json})
+            result = await qwen_llm_call(messages, model=model, temperature=temperature)
+            final_merged = parse_json_response(result["content"])
+            # 统一转换 source_case_ids 为字符串
+            for m in final_merged:
+                m["source_case_ids"] = [str(cid) for cid in m.get("source_case_ids", [])]
+            return final_merged
+        else:
+            # 统一转换 source_case_ids 为字符串
+            for m in batch_results:
+                m["source_case_ids"] = [str(cid) for cid in m.get("source_case_ids", [])]
+            return batch_results
+
+
+# ===== Step 2:语义搜索 + 取父子节点 =====
+
+async def step2_search_and_expand(demands: list[dict]) -> dict:
+    """语义搜索本地分类树 + 取父子节点"""
+    all_results = {}
+    tree = load_category_tree()
+
+    for demand in demands:
+        name = demand["demand_name"]
+        keywords = demand["search_keywords"]
+        all_results[name] = {}
+
+        for source_type in SOURCE_TYPES:
+            nodes = []
+            seen = set()
+
+            for kw in keywords:
+                # 使用本地搜索替代 API
+                results = search_local_tree(kw, source_type, top_k=3)
+                for r in results:
+                    eid = r.get("entity_id")
+                    if eid in seen:
+                        continue
+                    seen.add(eid)
+
+                    node = {
+                        "entity_id": eid,
+                        "name": r.get("name", ""),
+                        "entity_type": "category",
+                        "score": r.get("score", 0),
+                        "description": r.get("description", ""),
+                        "path": r.get("path", ""),
+                    }
+
+                    # 本地树暂不支持动态取父子,先留空
+                    node["ancestors"] = []
+                    node["children"] = []
+
+                    nodes.append(node)
+
+            if nodes:
+                all_results[name][source_type] = nodes
+
+    return all_results
+
+
+# ===== Step 3:逐需求挂载决策(并发) =====
+
+def build_single_demand_context(demand: dict, nodes_by_dim: dict) -> str:
+    parts = []
+    parts.append(f"## 需求:{demand['demand_name']}")
+    parts.append(f"描述:{demand['description']}")
+    parts.append(f"来源帖子:case_id={demand.get('source_case_ids', [])}")
+    if demand.get("evidence"):
+        parts.append(f"数据依据:{demand['evidence']}")
+
+    if not nodes_by_dim:
+        parts.append("(未搜索到相关节点)")
+        return "\n".join(parts)
+
+    for source_type, nodes in nodes_by_dim.items():
+        parts.append(f"\n### {source_type}维度匹配节点:")
+        for n in nodes:
+            line = f"- [{n['entity_type']}] entity_id={n['entity_id']}  \"{n['name']}\"  score={n['score']:.2f}"
+            if n.get("description"):
+                line += f"  描述: {n['description']}"
+            parts.append(line)
+            if n.get("ancestors"):
+                path = " > ".join(a["name"] for a in n["ancestors"])
+                parts.append(f"    父链: {path}")
+            if n.get("children"):
+                kids = ", ".join(c["name"] for c in n["children"][:10])
+                parts.append(f"    子节点: {kids}")
+    return "\n".join(parts)
+
+
+async def mount_single_demand(demand: dict, nodes_by_dim: dict) -> dict:
+    prompt_data = load_prompt("step3_mount_decision.prompt")
+    model = prompt_data["config"].get("model", DEFAULT_MODEL)
+    temperature = prompt_data["config"].get("temperature", 0.3)
+
+    node_context = build_single_demand_context(demand, nodes_by_dim)
+    messages = render_messages(prompt_data, {"node_context": node_context})
+
+    result = await qwen_llm_call(messages, model=model, temperature=temperature, max_tokens=4096)
+
+    # 解析结构化 JSON 输出
+    try:
+        decision = parse_json_response(result["content"])
+    except Exception as e:
+        print(f"  [!] 挂载决策解析失败 ({demand['demand_name']}): {e}")
+        decision = {"demand_name": demand["demand_name"], "mounted_nodes": [], "notes": f"解析失败: {e}"}
+
+    return {
+        "demand_name": demand["demand_name"],
+        "source_case_ids": demand.get("source_case_ids", []),
+        "decision": decision,
+    }
+
+
+async def step3_mount_decisions(demands: list[dict], search_results: dict) -> list[dict]:
+    tasks = []
+    for demand in demands:
+        nodes_by_dim = search_results.get(demand["demand_name"], {})
+        tasks.append(mount_single_demand(demand, nodes_by_dim))
+    return await asyncio.gather(*tasks)
+
+
+# ===== 可视化:生成关系表 + HTML =====
+
+def build_relation_table(all_case_demands: list[dict], merged_demands: list[dict], decisions: list[dict]) -> list[dict]:
+    """构建 case → demand → node 关系表"""
+    # 建立 demand_name → decision 的映射
+    decision_map = {d["demand_name"]: d for d in decisions}
+
+    rows = []
+    for md in merged_demands:
+        dn = md["demand_name"]
+        case_ids = md.get("source_case_ids", [])
+        dec = decision_map.get(dn, {})
+        rows.append({
+            "demand_name": dn,
+            "description": md["description"],
+            "source_case_ids": case_ids,
+            "mount_decision": dec.get("decision", ""),
+        })
+    return rows
+
+
+def generate_html_visualization(cases_data: dict, all_case_demands: list[dict],
+                                 merged_demands: list[dict], decisions: list[dict],
+                                 search_results: dict) -> str:
+    """生成简洁的 case→demand 树状图,节点作为标签显示在 demand 框里"""
+    # 构建完整的 case_map,兼容多种字段名
+    case_map = {}
+    for c in cases_data.get("cases", []):
+        case_map[c["case_id"]] = {
+            "title": c.get("title") or c.get("video_title") or c.get("post_title", ""),
+            "images": c.get("images") or c.get("effect_images", []),
+            "link": c.get("source_link") or c.get("video_url") or c.get("post_url", "")
+        }
+
+    # 构建 decision_map:demand_name → mounted_nodes
+    decision_map = {}
+    for d in decisions:
+        dec = d.get("decision", {})
+        if isinstance(dec, dict):
+            decision_map[d["demand_name"]] = dec.get("mounted_nodes", [])
+        else:
+            decision_map[d["demand_name"]] = []
+
+    nodes_js = []
+    edges_js = []
+    node_id = 0
+
+    # 为每个 demand 创建节点,并为其来源的每个 case 创建独立的 case 节点
+    for md in merged_demands:
+        demand_id = node_id
+        node_id += 1
+
+        # 构建 demand 节点的显示内容
+        dn = md["demand_name"]
+        desc = md["description"][:100] + "..." if len(md["description"]) > 100 else md["description"]
+
+        # 从挂载决策中获取最终选择的节点
+        mounted = decision_map.get(dn, [])
+        node_tags = [f"{n['name']}({n.get('source_type', '')})" for n in mounted]
+
+        tags_html = " | ".join(node_tags) if node_tags else "无挂载节点"
+
+        # demand 节点的 HTML 标签(包含挂载节点)
+        demand_label = f"{dn}\n\n[挂载] {tags_html}"
+        demand_title = f"{dn}\n\n{desc}\n\n挂载节点: {tags_html}"
+
+        nodes_js.append({
+            "id": demand_id,
+            "label": demand_label,
+            "title": demand_title,
+            "group": "demand",
+            "level": 1,
+            "shape": "box",
+            "font": {"size": 12}
+        })
+
+        # 为每个来源 case 创建独立的 case 节点
+        for cid in md.get("source_case_ids", []):
+            case_id = node_id
+            node_id += 1
+
+            # 类型转换:case_map 的 key 可能是字符串或整数
+            cid_str = str(cid)
+            case_info = case_map.get(cid_str) or case_map.get(cid, {"title": f"Case {cid}", "images": [], "link": ""})
+
+            # label 只显示标题
+            title_short = case_info['title'][:50] + "..." if len(case_info['title']) > 50 else case_info['title']
+            case_label = f"Case {cid}\n{title_short}"
+
+            # 构建带图片的 HTML tooltip(不含链接)
+            img_html = ""
+            if case_info['images']:
+                img_url = case_info['images'][0]
+                img_html = f'<img src="{img_url}" style="max-width:300px; max-height:200px; display:block; margin:10px 0;"/>'
+
+            case_title = f'<div style="max-width:350px;"><b>Case {cid}: {case_info["title"]}</b>{img_html}<br/><i>点击节点查看原帖</i></div>'
+
+            nodes_js.append({
+                "id": case_id,
+                "label": case_label,
+                "title": case_title,
+                "url": case_info['link'],  # 存储链接,用于点击事件
+                "group": "case",
+                "level": 0,
+                "shape": "box"
+            })
+
+            # case → demand 边
+            edges_js.append({"from": case_id, "to": demand_id})
+
+    html = f"""<!DOCTYPE html>
+<html><head>
+<meta charset="utf-8">
+<title>Case → Demand 树状图</title>
+<script src="https://unpkg.com/vis-network/standalone/umd/vis-network.min.js"></script>
+<style>
+  body {{ margin: 0; font-family: sans-serif; }}
+  #graph {{ width: 100%; height: 90vh; border: 1px solid #ddd; }}
+  #legend {{ padding: 10px; display: flex; gap: 20px; align-items: center; background: #f5f5f5; }}
+  .legend-item {{ display: flex; align-items: center; gap: 5px; }}
+  .dot {{ width: 14px; height: 14px; border-radius: 3px; }}
+</style>
+</head><body>
+<div id="legend">
+  <b>树状图:</b>
+  <span class="legend-item"><span class="dot" style="background:#97C2FC"></span> 帖子 (Case)</span>
+  <span class="legend-item"><span class="dot" style="background:#FFB366"></span> 需求 (Demand + 匹配节点)</span>
+</div>
+<div id="graph"></div>
+<script>
+var nodesData = {json.dumps(nodes_js, ensure_ascii=False)};
+var edgesData = {json.dumps(edges_js, ensure_ascii=False)};
+
+// 将 title 字符串转为 DOM 元素,让 vis.js 渲染 HTML
+nodesData.forEach(function(node) {{
+    if (node.title && typeof node.title === 'string' && node.title.includes('<')) {{
+        var container = document.createElement('div');
+        container.innerHTML = node.title;
+        node.title = container;
+    }}
+}});
+
+var nodes = new vis.DataSet(nodesData);
+var edges = new vis.DataSet(edgesData);
+var container = document.getElementById("graph");
+var data = {{ nodes: nodes, edges: edges }};
+var options = {{
+  layout: {{
+    hierarchical: {{
+      direction: "UD",
+      sortMethod: "directed",
+      levelSeparation: 180,
+      nodeSpacing: 100
+    }}
+  }},
+  groups: {{
+    case: {{
+      shape: "box",
+      color: {{ background: "#97C2FC", border: "#2B7CE9" }},
+      font: {{ size: 11 }},
+      widthConstraint: {{ minimum: 200, maximum: 350 }}
+    }},
+    demand: {{
+      shape: "box",
+      color: {{ background: "#FFB366", border: "#FF8C00" }},
+      font: {{ size: 12 }},
+      widthConstraint: {{ minimum: 200, maximum: 400 }}
+    }}
+  }},
+  edges: {{ arrows: "to", smooth: {{ type: "cubicBezier" }} }},
+  physics: {{ enabled: false }},
+  interaction: {{ hover: true, tooltipDelay: 100 }}
+}};
+var network = new vis.Network(container, data, options);
+
+// 点击 case 节点跳转到原帖
+network.on("click", function(params) {{
+    if (params.nodes.length > 0) {{
+        var nodeId = params.nodes[0];
+        var nodeData = nodes.get(nodeId);
+        if (nodeData.url) {{
+            window.open(nodeData.url, '_blank');
+        }}
+    }}
+}});
+</script>
+</body></html>"""
+    return html
+
+
+# ===== 主流程 =====
+
+async def run(cases_path: str):
+    with open(cases_path, "r", encoding="utf-8") as f:
+        cases_data = json.load(f)
+
+    cases = cases_data.get("cases", [])
+    topic = cases_data.get("topic", "未知主题")
+
+    # 过滤:只保留有图片的 case(兼容多种字段名)
+    def has_images(case):
+        imgs = case.get("images") or case.get("effect_images") or []
+        return len(imgs) > 0
+
+    cases_with_images = [c for c in cases if has_images(c)]
+    skipped = len(cases) - len(cases_with_images)
+
+    print("=" * 60)
+    print(f"输入: {cases_path}")
+    print(f"主题: {topic} (总计 {len(cases)} 个案例)")
+    if skipped > 0:
+        print(f"过滤: 跳过 {skipped} 个纯视频案例,保留 {len(cases_with_images)} 个图文案例")
+    print("=" * 60)
+
+    if not cases_with_images:
+        print("\n错误: 没有图文案例可处理")
+        return
+
+    # Step 1a: 逐帖子提需求(并发)
+    print(f"\n第 1a 步:逐帖子提取需求({len(cases_with_images)} 个并发)...")
+    tasks = [extract_demands_for_case(case) for case in cases_with_images]
+    all_case_demands = await asyncio.gather(*tasks)
+
+    total_raw = sum(len(cd["demands"]) for cd in all_case_demands)
+    for cd in all_case_demands:
+        n = len(cd["demands"])
+        names = ", ".join(d["demand_name"] for d in cd["demands"][:3])
+        suffix = "..." if n > 3 else ""
+        print(f"  Case {cd['case_id']}: {n} 个需求 [{names}{suffix}]")
+    print(f"  共提取 {total_raw} 个原始需求")
+
+    # Step 1b: 合并去重
+    print(f"\n第 1b 步:合并去重...")
+    merged_demands = await merge_demands(all_case_demands)
+    print(f"  合并后 {len(merged_demands)} 个需求:")
+    for i, md in enumerate(merged_demands, 1):
+        print(f"  {i}. {md['demand_name']} (来自 case {md.get('source_case_ids', [])})")
+
+    # Step 2: 搜索节点
+    print(f"\n第 2 步:语义搜索内容树 + 获取父子节点...")
+    search_results = await step2_search_and_expand(merged_demands)
+    for dn, dims in search_results.items():
+        total = sum(len(ns) for ns in dims.values())
+        print(f"  [{dn}] {total} 个节点")
+
+    # Step 3: 挂载决策(并发)
+    print(f"\n第 3 步:LLM 挂载决策({len(merged_demands)} 个需求并发)...")
+    decisions = await step3_mount_decisions(merged_demands, search_results)
+    for d in decisions:
+        print(f"\n{'─' * 40}")
+        print(f"【{d['demand_name']}】(来自 case {d['source_case_ids']})")
+        print(d["decision"])
+
+    # 构建关系表
+    relation_table = build_relation_table(all_case_demands, merged_demands, decisions)
+
+    # 构建 case 信息映射(用于可视化)
+    # 统一使用字符串作为 key,避免类型不匹配
+    case_info_map = {}
+    for c in cases_with_images:
+        case_info_map[str(c["case_id"])] = {
+            "title": c.get("title") or c.get("video_title") or c.get("post_title", ""),
+            "images": c.get("images") or c.get("effect_images", []),
+            "link": c.get("source_link") or c.get("video_url") or c.get("post_url", "")
+        }
+
+    # 保存结果
+    output_dir = Path(cases_path).parent
+    output_file = output_dir / "match_nodes_result.json"
+    output_data = {
+        "topic": topic,
+        "case_info": case_info_map,  # 新增:保存 case 信息
+        "per_case_demands": [
+            {"case_id": cd["case_id"], "title": cd["title"],
+             "demands": [d["demand_name"] for d in cd["demands"]]}
+            for cd in all_case_demands
+        ],
+        "merged_demands": merged_demands,
+        "search_results": search_results,
+        "mount_decisions": decisions,
+        "relation_table": relation_table,
+    }
+    with open(output_file, "w", encoding="utf-8") as f:
+        json.dump(output_data, f, ensure_ascii=False, indent=2)
+    print(f"\n结果已保存到: {output_file}")
+
+    # 生成可视化
+    html = generate_html_visualization(cases_data, all_case_demands, merged_demands, decisions, search_results)
+    html_file = output_dir / "match_nodes_graph.html"
+    with open(html_file, "w", encoding="utf-8") as f:
+        f.write(html)
+    print(f"可视化已保存到: {html_file}")
+
+
+if __name__ == "__main__":
+    if len(sys.argv) < 2:
+        print("用法: python match_nodes.py <cases.json 路径>")
+        print("示例: python match_nodes.py outputs/midjourney_0/02_cases.json")
+        sys.exit(1)
+
+    os.environ.setdefault("no_proxy", "*")
+    asyncio.run(run(sys.argv[1]))

+ 43 - 0
examples/tool_research/prompt.md

@@ -0,0 +1,43 @@
+## 角色
+
+你是一名内容制作顾问,熟悉当前主流 AI 内容制作工具的能力边界(包括文生图、图生图等各类 AI 工具)。
+
+## 任务
+
+我会给你一份内容知识图谱的节点数据。你的任务是:
+
+**输入**:服装领域
+**输出**:这个领域的内容用 AI 制作时,需要哪些具体的工具能力
+
+**为什么需要这个分析?**
+直接用领域名称(如"服饰""美食")去搜索工具太宽泛,无法匹配到具体需求。通过分析节点路径和频繁项集,可以提炼出更精准的工具需求。
+
+## 工具需求的定义
+
+工具需求 = 把数据中的高频、具体的要素,组合成多个可以用来搜索/匹配工具的描述。
+
+**示例**:
+- 体育领域 → "运动人物的动态姿势生成能力"
+
+## 数据说明
+
+你可以使用的数据包括:
+- **路径**:节点在知识图谱中的层级位置
+- **节点权重(weight)**:话题节点的热度,越高越主流
+- **频繁项集**:内容中经常共同出现的要素组合,反映真实创作模式
+- **帖子解构信息**:从帖子解构信息中,归纳出相似的、高频的模式
+
+## 过滤规则
+
+分析时请忽略纯粹描述用户行为的节点(如"分享""转发""点赞"等),这些与内容制作无关。
+只关注描述**画面内容、叙事方式、视觉风格**的节点。
+
+## 输出要求:
+1. 输出的需求必须面向领域,比如,如果我面向体育,就不可以提办公室的背景这样的需求
+2. 输出的结果中需包含:
+ 需求:
+数据依赖:包含具体的点、频繁项集
+
+
+
+

+ 45707 - 0
examples/tool_research/prompts/category_tree.json

@@ -0,0 +1,45707 @@
+{
+  "name": "root",
+  "path": "",
+  "children": [
+    {
+      "name": "产品植入",
+      "path": "/产品植入",
+      "id": 15996,
+      "source_stable_id": -10,
+      "source_type": "意图",
+      "description": null,
+      "category_nature": null,
+      "level": 1,
+      "parent_id": null,
+      "element_count": 1,
+      "elements": [
+        {
+          "name": "产品植入",
+          "count": 1,
+          "post_ids": [
+            "671f7fab000000003c01fffc"
+          ]
+        }
+      ],
+      "total_element_count": 1,
+      "children": [],
+      "total_posts_count": 1
+    },
+    {
+      "name": "倡导",
+      "path": "/倡导",
+      "id": 16007,
+      "source_stable_id": -21,
+      "source_type": "意图",
+      "description": null,
+      "category_nature": null,
+      "level": 1,
+      "parent_id": null,
+      "element_count": 2,
+      "elements": [
+        {
+          "name": "倡导",
+          "count": 2,
+          "post_ids": [
+            "63712737",
+            "64210278"
+          ]
+        }
+      ],
+      "total_element_count": 2,
+      "children": [],
+      "total_posts_count": 0
+    },
+    {
+      "name": "分享",
+      "path": "/分享",
+      "id": 15991,
+      "source_stable_id": -5,
+      "source_type": "意图",
+      "description": null,
+      "category_nature": null,
+      "level": 1,
+      "parent_id": null,
+      "element_count": 301,
+      "elements": [
+        {
+          "name": "分享",
+          "count": 301,
+          "post_ids": [
+            "03c54bcf569a9f957f3879f5e87cbb19",
+            "0834b527a0fe32c83eb9be0b1cf45140",
+            "1068bda1f94431bfb3b91b60073f1e46",
+            "21006075",
+            "27f97d45367f3d0662d3204b3a4b0fb9",
+            "2a2c642e67822ed8c11f9d306e815a35",
+            "2c73223f278ea6aecd70b5b54f0aff21",
+            "2e93c00132e3a6a30c06efb6984ab71a",
+            "3a8712377c1ad3ad44d0f0271e28532d",
+            "3de8289cfddb37a8b027d60dce4dfdb1",
+            "444f41a7f46eaee7dfa43d10cb0d10c5",
+            "45436779",
+            "46193165",
+            "47537727",
+            "47567298",
+            "47951584",
+            "49d6570f82c62ca372c932b67467878f",
+            "55099131",
+            "55102015",
+            "55327642",
+            "55994947",
+            "55d981958a8fd219d9c713fb16c12170",
+            "56603938",
+            "56717837",
+            "56726652",
+            "56977187",
+            "56977419",
+            "57028518",
+            "57121511",
+            "57373464",
+            "57442193",
+            "57447289",
+            "57853678",
+            "57919607",
+            "58896244",
+            "58933772",
+            "59121599",
+            "59146568",
+            "59323915",
+            "59422696",
+            "59583293",
+            "59587187",
+            "59943231",
+            "601c09554a9851f9038026035b95fce9",
+            "60332209",
+            "60527248",
+            "60570460",
+            "61822382",
+            "61bdc28b0000000001024896",
+            "61db1ae4bd885760b0f5cca9ecacb588",
+            "62025412",
+            "62255386",
+            "62675775",
+            "62948012",
+            "63146000",
+            "63253503",
+            "63477609",
+            "63676018",
+            "64029781",
+            "64095002",
+            "64139717",
+            "64162740",
+            "64203380",
+            "64246342",
+            "64314678",
+            "64400730",
+            "64415308",
+            "64442545",
+            "64456019",
+            "64504122",
+            "64554023",
+            "64585144",
+            "64589911",
+            "64591962",
+            "64603799",
+            "64610874",
+            "64610880",
+            "64631158",
+            "64650216",
+            "64662179",
+            "64770257",
+            "64816949",
+            "64820485",
+            "64851184",
+            "64851907",
+            "64855234",
+            "64870193",
+            "64886621",
+            "648d8edf0000000011013447",
+            "64903753",
+            "64935973",
+            "64958390",
+            "64965843",
+            "64975752",
+            "65026165",
+            "65027290",
+            "65061667",
+            "65067062",
+            "65091188",
+            "65098787",
+            "65114702",
+            "65133109",
+            "65135248",
+            "65135957",
+            "65139072",
+            "65162446",
+            "65170329",
+            "65196789",
+            "65203608",
+            "65233075",
+            "65252544",
+            "65270425",
+            "65298913",
+            "65402572",
+            "65407794",
+            "65411458",
+            "65450821",
+            "65489167",
+            "65514975",
+            "65529862",
+            "65571251",
+            "65600878",
+            "65602591",
+            "65604986",
+            "65608649",
+            "65801945",
+            "65f4359b00000000140079b5",
+            "65febd8e0000000012035538",
+            "6602bd07000000001203348c",
+            "662ce86d0000000003023f0a",
+            "6649dbe3000000000c018112",
+            "6666dd86000000001500b7ff",
+            "669b52720000000025003596",
+            "66c5b638000000001d018e5a",
+            "66d1ab42000000001f015507",
+            "66daeddb000000002603ea42",
+            "670baf34000000001600f52a",
+            "67206035000000001b02f4b1",
+            "67244ea7000000001b012d18",
+            "6726109d000000001901b564",
+            "6727171b000000001b01114b",
+            "6729657b000000001b01149d",
+            "67299a19000000001901483f",
+            "6729dd5300000000190183a8",
+            "672de546000000001b02cfeb",
+            "6731b884000000001901b8d3",
+            "6735b1a0000000001b0137f5",
+            "67389194000000001d038599",
+            "6746fb5600000000070260ce",
+            "675c0669000000000600cfd7",
+            "675c19320000000002017d1f",
+            "676f8eac000000000902f53e",
+            "6776b27d0000000013018545",
+            "677b5460000000000b00d33e",
+            "67862d98000000001a01f443",
+            "678ce28d000000001603e3a8",
+            "6794ca60000000001801ba29",
+            "67adb23f000000002a00c240",
+            "67b2a7f7000000002802a0d7",
+            "67b9840d000000000603a241",
+            "67bafc850000000029036328",
+            "67d55ec7000000000e004e69",
+            "67d7a294000000001c03eef9",
+            "67e37ff8000000001c008b5e",
+            "67e68c9d00000000060282fb",
+            "6819f25e000000002301cca5",
+            "681c64ce000000002200554c",
+            "682086dc0000000012003cbd",
+            "682bdb47000000002202dfa0",
+            "682bdbba000000002202b26e",
+            "6837f019000000000c03aab2",
+            "6837f1270000000012006c8e",
+            "683d8695000000001200012a",
+            "68426c88000000002002b334",
+            "6848e2340000000021009f3a",
+            "684e2d44000000002100cca7",
+            "6850c82a000000002100f096",
+            "68538f7c000000002400805b",
+            "6858eb52000000001203044b",
+            "685b68c300000000150226bd",
+            "685f514f000000001703339d",
+            "6865ec61000000000b02c53b",
+            "6874c80e000000000d027767",
+            "687ee6fc000000001c032bb1",
+            "688046ef000000002203150e",
+            "68843a4d000000001c037591",
+            "68909e20000000000403fa4e",
+            "689bf685000000001d0021d3",
+            "68a06bea000000001d021202",
+            "68a8241a000000001c011403",
+            "68d76cd100000000120165e4",
+            "68e6ecb90000000003021e34",
+            "68f1af7c0000000005003459",
+            "68f9e8400000000005033268",
+            "68fb6a5c000000000302e5de",
+            "69003bb30000000004015797",
+            "69005a1e0000000004017637",
+            "6902e20a0000000005030a7b",
+            "690333e70000000007022604",
+            "690ed1190000000003010bd3",
+            "6911532d000000000503bd18",
+            "69157ac40000000005039157",
+            "69185d49000000000d00f94e",
+            "691acd15000000000402134e",
+            "691d3112000000001e036559",
+            "692006ef000000001f008b41",
+            "69200dec000000001f00b884",
+            "6921937a000000001b0278d1",
+            "6923b4b2000000001e03531a",
+            "6927e806000000001f007658",
+            "69293c52000000001e02d9d6",
+            "692a535f0000000019026d5b",
+            "692c3402000000000d03b7b7",
+            "692d3b99000000001e022295",
+            "692e7ccf000000001f00a137",
+            "692fa7e0000000001e039786",
+            "6932744c000000001f00c9f3",
+            "69363584000000001f006a4c",
+            "69394a0b000000001f006ce6",
+            "693a2428000000001e027639",
+            "693d0b1d000000001e02ba36",
+            "693f94d80000000019025898",
+            "69437b6d000000001e0381c9",
+            "69491c99000000001e02c765",
+            "694a6caf000000001f00e112",
+            "695f0b2b000000001a027365",
+            "696078f70000000022038479",
+            "696079a10000000022031521",
+            "6960924b000000001a037a1c",
+            "6960e87a000000000e00c216",
+            "6961b301000000001a02f6af",
+            "6964573a000000000d00800e",
+            "69647323000000001a01ef60",
+            "6964ab0e000000001a035c04",
+            "6964bc98000000002202c86f",
+            "6964be3900000000210282a4",
+            "6964beb3000000002103361a",
+            "6964bee80000000022039e8c",
+            "6964d4bf000000001a031a54",
+            "6965adce000000001a02a701",
+            "6965d491000000000e00f9b0",
+            "6966f1df000000001a032514",
+            "69672e2d000000001a026263",
+            "69679e0e000000000e03ca97",
+            "69685275000000000e03c790",
+            "6968ef250000000021033c7c",
+            "6969068e000000000d008b48",
+            "69698d0c000000001a036078",
+            "696a5a3e000000001a022b1d",
+            "696ad820000000001a022994",
+            "696b528900000000210333ea",
+            "696b52dd000000002202c60a",
+            "696b5332000000002103c497",
+            "696b537f00000000220398ad",
+            "696b658e000000001a01d2ef",
+            "696c2b7b000000001a02b944",
+            "696d7ac4000000000e03e459",
+            "696ede36000000001a028e03",
+            "696f0da3000000001a029d29",
+            "696f2f97000000000e00e33c",
+            "696f8d95000000001a028641",
+            "6970373f000000000e00f81d",
+            "6970693f000000002102bec2",
+            "697069b7000000002202d264",
+            "69706a0600000000210282bd",
+            "69706aa0000000002202d723",
+            "697171fd000000000d00bee8",
+            "6971878d000000001a01e6cc",
+            "6971ec6f000000001a02d248",
+            "697318f2000000001a01fd50",
+            "6973742d000000002801e8aa",
+            "697569b0000000001a02448c",
+            "6975b27c000000002202d2fb",
+            "6975b2d7000000002200b4ae",
+            "6975b361000000002202d7e8",
+            "6975b3c50000000022020356",
+            "697638e8000000001a025711",
+            "69770dc6000000001a02efe9",
+            "6978db47000000001a0293e7",
+            "697a20e9000000001a033338",
+            "697b64c5000000001a021517",
+            "7fc2ebb73d9fefe1e79111dd9b17ad65",
+            "82b864cd83e9a5f376214dbc341d6dad",
+            "89627e4bf8ad865f175c54e3b0ddd2cd",
+            "970bc999f557cf8026c950f254d3ddac",
+            "99823f406c9b376c3998329e1373930f",
+            "accf5d531aaa9ef7b9e6fee360944151",
+            "afb320f2428ca07a2743d96dc21e4127",
+            "b485a7858fbfc4b74e805bfadf6fce90",
+            "b4fbfb562ad4863ceb0a12e7110f3da7",
+            "b5245c3e7b1c09af072ea40e41d3cca8",
+            "b6482cda993c100f39d6eccf65261a24",
+            "b90a1bbdf6dcddcaf4f4ee2f201e1d26",
+            "c84d14e15b8324b91df2cd8cb8304db9",
+            "c8fa9b4d1526d3345bcb15c7d196b79d",
+            "cb673ebabb42a9499b3532943f8bb974",
+            "d07f1c79dd4ef03b92592fa81d54755b",
+            "da753fb9dc1fc7f09ef8e5e7c014ada3",
+            "e04fd15a06f8c97486e48990e85c8492",
+            "ef63cef6ce5336e59ccb523e35f355dd",
+            "fa0633c278660309648633dea6294cb1"
+          ]
+        }
+      ],
+      "total_element_count": 301,
+      "children": [],
+      "total_posts_count": 157
+    },
+    {
+      "name": "分析",
+      "path": "/分析",
+      "id": 15990,
+      "source_stable_id": -4,
+      "source_type": "意图",
+      "description": null,
+      "category_nature": null,
+      "level": 1,
+      "parent_id": null,
+      "element_count": 7,
+      "elements": [
+        {
+          "name": "分析",
+          "count": 7,
+          "post_ids": [
+            "0374cca4a422e5aad9b24d721c7b4291",
+            "412f4d35be48179908fef312b53cad43",
+            "752267d0ca2695c2ceb816a43d943a6a",
+            "b9bc7d3c46583a41a76867f0ac7e62f1",
+            "bc2f946d57e1c650575962e480eccf31",
+            "dae634c9aa8c31d38e925750d3fbfeb6",
+            "f99ae5be8892806e2d10834f402e89e1"
+          ]
+        }
+      ],
+      "total_element_count": 7,
+      "children": [],
+      "total_posts_count": 0
+    },
+    {
+      "name": "呈现",
+      "path": "/呈现",
+      "id": 15956,
+      "source_stable_id": 132,
+      "source_type": "形式",
+      "description": "内容中受众可直接感知的形式要素,如视觉、听觉、文字外观等",
+      "category_nature": "内容",
+      "level": 1,
+      "parent_id": null,
+      "element_count": 0,
+      "elements": [],
+      "total_element_count": 1706,
+      "children": [
+        {
+          "name": "听觉",
+          "path": "/呈现/听觉",
+          "id": 15749,
+          "source_stable_id": 138,
+          "source_type": "形式",
+          "description": "音乐、音效、语音、旁白等听觉层面的形式要素",
+          "category_nature": "内容",
+          "level": 2,
+          "parent_id": 15956,
+          "element_count": 0,
+          "elements": [],
+          "total_element_count": 37,
+          "children": [
+            {
+              "name": "语音表达",
+              "path": "/呈现/听觉/语音表达",
+              "id": 15751,
+              "source_stable_id": 149,
+              "source_type": "形式",
+              "description": "口头解说、旁白、配音等语音层面的呈现",
+              "category_nature": "维度",
+              "level": 3,
+              "parent_id": 15749,
+              "element_count": 0,
+              "elements": [],
+              "total_element_count": 20,
+              "children": [
+                {
+                  "name": "角色对白",
+                  "path": "/呈现/听觉/语音表达/角色对白",
+                  "id": 14922,
+                  "source_stable_id": 181,
+                  "source_type": "形式",
+                  "description": "人物之间的台词交流与对话编排",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 15751,
+                  "element_count": 3,
+                  "elements": [
+                    {
+                      "name": "生活化对白",
+                      "count": 1,
+                      "post_ids": [
+                        "64935973"
+                      ]
+                    },
+                    {
+                      "name": "单人对白",
+                      "count": 1,
+                      "post_ids": [
+                        "64456019"
+                      ]
+                    },
+                    {
+                      "name": "神话角色对话",
+                      "count": 1,
+                      "post_ids": [
+                        "60332209"
+                      ]
+                    }
+                  ],
+                  "total_element_count": 3,
+                  "children": [],
+                  "total_posts_count": 0
+                },
+                {
+                  "name": "解说旁白",
+                  "path": "/呈现/听觉/语音表达/解说旁白",
+                  "id": 15752,
+                  "source_stable_id": 155,
+                  "source_type": "形式",
+                  "description": "旁白、配音解说等画外音呈现",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 15751,
+                  "element_count": 0,
+                  "elements": [],
+                  "total_element_count": 17,
+                  "children": [
+                    {
+                      "name": "口播讲述",
+                      "path": "/呈现/听觉/语音表达/解说旁白/口播讲述",
+                      "id": 14935,
+                      "source_stable_id": 218,
+                      "source_type": "形式",
+                      "description": "真人出镜口述、视频讲解等面对镜头的信息传递方式",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15752,
+                      "element_count": 2,
+                      "elements": [
+                        {
+                          "name": "口播",
+                          "count": 1,
+                          "post_ids": [
+                            "62255386"
+                          ]
+                        },
+                        {
+                          "name": "口述评论式",
+                          "count": 1,
+                          "post_ids": [
+                            "59943231"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 2,
+                      "children": [],
+                      "total_posts_count": 0
+                    },
+                    {
+                      "name": "基础配音",
+                      "path": "/呈现/听觉/语音表达/解说旁白/基础配音",
+                      "id": 14933,
+                      "source_stable_id": 216,
+                      "source_type": "形式",
+                      "description": "旁白、配音解说、解说词等基本画外音形式",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15752,
+                      "element_count": 2,
+                      "elements": [
+                        {
+                          "name": "语音播报",
+                          "count": 2,
+                          "post_ids": [
+                            "63146000",
+                            "65139072"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 11,
+                      "children": [
+                        {
+                          "name": "叙事旁白",
+                          "path": "/呈现/听觉/语音表达/解说旁白/基础配音/叙事旁白",
+                          "id": 15673,
+                          "source_stable_id": 1520,
+                          "source_type": "形式",
+                          "description": "以叙事、朗诵等文学化方式进行的旁白解说",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 14933,
+                          "element_count": 1,
+                          "elements": [
+                            {
+                              "name": "旁白叙事",
+                              "count": 1,
+                              "post_ids": [
+                                "21006075"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 1,
+                          "children": [],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "泛称画外音",
+                          "path": "/呈现/听觉/语音表达/解说旁白/基础配音/泛称画外音",
+                          "id": 15672,
+                          "source_stable_id": 1519,
+                          "source_type": "形式",
+                          "description": "旁白、配音、解说等基础画外音的通用概念表达",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 14933,
+                          "element_count": 8,
+                          "elements": [
+                            {
+                              "name": "配音",
+                              "count": 4,
+                              "post_ids": [
+                                "56977419",
+                                "59146568",
+                                "60332209",
+                                "64816949"
+                              ]
+                            },
+                            {
+                              "name": "旁白",
+                              "count": 3,
+                              "post_ids": [
+                                "64603799",
+                                "65142392",
+                                "65515618"
+                              ]
+                            },
+                            {
+                              "name": "解说",
+                              "count": 1,
+                              "post_ids": [
+                                "64729260"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 8,
+                          "children": [],
+                          "total_posts_count": 0
+                        }
+                      ],
+                      "total_posts_count": 0
+                    },
+                    {
+                      "name": "情感化配音",
+                      "path": "/呈现/听觉/语音表达/解说旁白/情感化配音",
+                      "id": 14934,
+                      "source_stable_id": 217,
+                      "source_type": "形式",
+                      "description": "带有情感色彩、感染力和情感张力的配音解说",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15752,
+                      "element_count": 1,
+                      "elements": [
+                        {
+                          "name": "情感配音",
+                          "count": 1,
+                          "post_ids": [
+                            "55994947"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 1,
+                      "children": [],
+                      "total_posts_count": 0
+                    },
+                    {
+                      "name": "风格化解说",
+                      "path": "/呈现/听觉/语音表达/解说旁白/风格化解说",
+                      "id": 14936,
+                      "source_stable_id": 219,
+                      "source_type": "形式",
+                      "description": "纪实性、演讲式、互动式等具有特定风格或功能特征的解说方式",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15752,
+                      "element_count": 3,
+                      "elements": [
+                        {
+                          "name": "方言化",
+                          "count": 2,
+                          "post_ids": [
+                            "60332209",
+                            "64400730"
+                          ]
+                        },
+                        {
+                          "name": "批判性旁白",
+                          "count": 1,
+                          "post_ids": [
+                            "59583293"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 3,
+                      "children": [],
+                      "total_posts_count": 0
+                    }
+                  ],
+                  "total_posts_count": 0
+                }
+              ],
+              "total_posts_count": 0
+            },
+            {
+              "name": "配乐",
+              "path": "/呈现/听觉/配乐",
+              "id": 14921,
+              "source_stable_id": 179,
+              "source_type": "形式",
+              "description": "视频中烘托氛围、传递情感的背景音乐",
+              "category_nature": "维度",
+              "level": 3,
+              "parent_id": 15749,
+              "element_count": 15,
+              "elements": [
+                {
+                  "name": "民俗配乐",
+                  "count": 3,
+                  "post_ids": [
+                    "60527248",
+                    "64851184",
+                    "65600878"
+                  ]
+                },
+                {
+                  "name": "背景音",
+                  "count": 2,
+                  "post_ids": [
+                    "63972446",
+                    "65196789"
+                  ]
+                },
+                {
+                  "name": "背景音乐",
+                  "count": 6,
+                  "post_ids": [
+                    "59587187",
+                    "65135957",
+                    "65162446",
+                    "65170329",
+                    "65402572",
+                    "65411458"
+                  ]
+                },
+                {
+                  "name": "喜庆配乐",
+                  "count": 1,
+                  "post_ids": [
+                    "58896244"
+                  ]
+                },
+                {
+                  "name": "欢快节奏",
+                  "count": 1,
+                  "post_ids": [
+                    "61822382"
+                  ]
+                },
+                {
+                  "name": "强节奏",
+                  "count": 2,
+                  "post_ids": [
+                    "59422696",
+                    "63972446"
+                  ]
+                }
+              ],
+              "total_element_count": 17,
+              "children": [
+                {
+                  "name": "声乐演绎",
+                  "path": "/呈现/听觉/配乐/声乐演绎",
+                  "id": 15445,
+                  "source_stable_id": 1199,
+                  "source_type": "形式",
+                  "description": "歌唱、翻唱、对口型等以音乐演唱为核心的声音表现",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 14921,
+                  "element_count": 2,
+                  "elements": [
+                    {
+                      "name": "唱词卡点",
+                      "count": 1,
+                      "post_ids": [
+                        "64139717"
+                      ]
+                    },
+                    {
+                      "name": "歌词",
+                      "count": 1,
+                      "post_ids": [
+                        "63972446"
+                      ]
+                    }
+                  ],
+                  "total_element_count": 2,
+                  "children": [],
+                  "total_posts_count": 0
+                }
+              ],
+              "total_posts_count": 0
+            }
+          ],
+          "total_posts_count": 0
+        },
+        {
+          "name": "视觉",
+          "path": "/呈现/视觉",
+          "id": 15983,
+          "source_stable_id": 137,
+          "source_type": "形式",
+          "description": "画面构图、色彩、光影、视觉风格等视觉层面的形式要素",
+          "category_nature": "内容",
+          "level": 2,
+          "parent_id": 15956,
+          "element_count": 0,
+          "elements": [],
+          "total_element_count": 1669,
+          "children": [
+            {
+              "name": "形象塑造",
+              "path": "/呈现/视觉/形象塑造",
+              "id": 15975,
+              "source_stable_id": 1054,
+              "source_type": "形式",
+              "description": "人物、物体的外观呈现与形象表现",
+              "category_nature": "内容",
+              "level": 3,
+              "parent_id": 15983,
+              "element_count": 0,
+              "elements": [],
+              "total_element_count": 280,
+              "children": [
+                {
+                  "name": "人物表现",
+                  "path": "/呈现/视觉/形象塑造/人物表现",
+                  "id": 15912,
+                  "source_stable_id": 1066,
+                  "source_type": "形式",
+                  "description": "人物的面部表情、肢体动作与行为表演",
+                  "category_nature": "维度",
+                  "level": 4,
+                  "parent_id": 15975,
+                  "element_count": 0,
+                  "elements": [],
+                  "total_element_count": 118,
+                  "children": [
+                    {
+                      "name": "互动协作",
+                      "path": "/呈现/视觉/形象塑造/人物表现/互动协作",
+                      "id": 15389,
+                      "source_stable_id": 388,
+                      "source_type": "形式",
+                      "description": "人物与环境、道具或其他主体之间的互动行为与多人协作表现",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15912,
+                      "element_count": 16,
+                      "elements": [
+                        {
+                          "name": "双人互动",
+                          "count": 1,
+                          "post_ids": [
+                            "3b8bfac263ace2eb578c85c98630e566"
+                          ]
+                        },
+                        {
+                          "name": "互补式赞扬",
+                          "count": 1,
+                          "post_ids": [
+                            "601c09554a9851f9038026035b95fce9"
+                          ]
+                        },
+                        {
+                          "name": "参与博弈",
+                          "count": 1,
+                          "post_ids": [
+                            "fa0633c278660309648633dea6294cb1"
+                          ]
+                        },
+                        {
+                          "name": "互动",
+                          "count": 4,
+                          "post_ids": [
+                            "66f51b90000000002a036660",
+                            "692d3b99000000001e022295",
+                            "dae634c9aa8c31d38e925750d3fbfeb6"
+                          ]
+                        },
+                        {
+                          "name": "交流",
+                          "count": 1,
+                          "post_ids": [
+                            "e04fd15a06f8c97486e48990e85c8492"
+                          ]
+                        },
+                        {
+                          "name": "海鸥互动",
+                          "count": 3,
+                          "post_ids": [
+                            "6973742d000000002801e8aa",
+                            "697638e8000000001a025711",
+                            "69770dc6000000001a02efe9"
+                          ]
+                        },
+                        {
+                          "name": "创意合照",
+                          "count": 3,
+                          "post_ids": [
+                            "648d8edf0000000011013447",
+                            "67e68c9d00000000060282fb",
+                            "68a06bea000000001d021202"
+                          ]
+                        },
+                        {
+                          "name": "多人协作",
+                          "count": 2,
+                          "post_ids": [
+                            "67e68c9d00000000060282fb"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 16,
+                      "children": [],
+                      "total_posts_count": 8
+                    },
+                    {
+                      "name": "侧面塑造",
+                      "path": "/呈现/视觉/形象塑造/人物表现/侧面塑造",
+                      "id": 15391,
+                      "source_stable_id": 440,
+                      "source_type": "形式",
+                      "description": "通过侧面描写、对比或背景介绍来间接塑造人物形象的手法",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15912,
+                      "element_count": 1,
+                      "elements": [
+                        {
+                          "name": "提携式",
+                          "count": 1,
+                          "post_ids": [
+                            "9c87381270abacce95e103b3a000e086"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 1,
+                      "children": [],
+                      "total_posts_count": 0
+                    },
+                    {
+                      "name": "出镜展示",
+                      "path": "/呈现/视觉/形象塑造/人物表现/出镜展示",
+                      "id": 15390,
+                      "source_stable_id": 389,
+                      "source_type": "形式",
+                      "description": "人物出镜亮相、物品展示呈现等直接面向镜头的展示行为",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15912,
+                      "element_count": 19,
+                      "elements": [
+                        {
+                          "name": "发言形象",
+                          "count": 1,
+                          "post_ids": [
+                            "4bab077aa99a235a81c41631af69aa78"
+                          ]
+                        },
+                        {
+                          "name": "政治形象",
+                          "count": 1,
+                          "post_ids": [
+                            "4020e56c08340e92c9862e481c07d2e2"
+                          ]
+                        },
+                        {
+                          "name": "穿搭展示",
+                          "count": 13,
+                          "post_ids": [
+                            "6960e87a000000000e00c216",
+                            "69647323000000001a01ef60",
+                            "6964d4bf000000001a031a54",
+                            "6965d491000000000e00f9b0",
+                            "69679e0e000000000e03ca97",
+                            "6969068e000000000d008b48",
+                            "696a5a3e000000001a022b1d",
+                            "696b658e000000001a01d2ef",
+                            "696f0da3000000001a029d29",
+                            "6971878d000000001a01e6cc",
+                            "6971ec6f000000001a02d248",
+                            "6978db47000000001a0293e7",
+                            "697b64c5000000001a021517"
+                          ]
+                        },
+                        {
+                          "name": "展示",
+                          "count": 3,
+                          "post_ids": [
+                            "6602bd07000000001203348c",
+                            "6881d560000000001703076c",
+                            "69185d49000000000d00f94e"
+                          ]
+                        },
+                        {
+                          "name": "真人出镜",
+                          "count": 1,
+                          "post_ids": [
+                            "66daeddb000000002603ea42"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 19,
+                      "children": [],
+                      "total_posts_count": 17
+                    },
+                    {
+                      "name": "动作姿态",
+                      "path": "/呈现/视觉/形象塑造/人物表现/动作姿态",
+                      "id": 15901,
+                      "source_stable_id": 386,
+                      "source_type": "形式",
+                      "description": "肢体动作、身体姿态、行为表演等身体层面的形象表现",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15912,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 43,
+                      "children": [
+                        {
+                          "name": "创意动作",
+                          "path": "/呈现/视觉/形象塑造/人物表现/动作姿态/创意动作",
+                          "id": 15637,
+                          "source_stable_id": 1473,
+                          "source_type": "形式",
+                          "description": "创意性的动作呈现,如嘴唇花等创意表现手法",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15901,
+                          "element_count": 3,
+                          "elements": [
+                            {
+                              "name": "嘴唇花",
+                              "count": 1,
+                              "post_ids": [
+                                "682086dc0000000012003cbd"
+                              ]
+                            },
+                            {
+                              "name": "手部结构拟态",
+                              "count": 1,
+                              "post_ids": [
+                                "12357835"
+                              ]
+                            },
+                            {
+                              "name": "手脚十字型",
+                              "count": 1,
+                              "post_ids": [
+                                "44556070"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 3,
+                          "children": [],
+                          "total_posts_count": 1
+                        },
+                        {
+                          "name": "协同动作",
+                          "path": "/呈现/视觉/形象塑造/人物表现/动作姿态/协同动作",
+                          "id": 15635,
+                          "source_stable_id": 1471,
+                          "source_type": "形式",
+                          "description": "多人或多次重复的协同性动作,如同步呈现、高频互动等",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15901,
+                          "element_count": 2,
+                          "elements": [
+                            {
+                              "name": "高频肢体互动",
+                              "count": 1,
+                              "post_ids": [
+                                "601c09554a9851f9038026035b95fce9"
+                              ]
+                            },
+                            {
+                              "name": "连贯动作",
+                              "count": 1,
+                              "post_ids": [
+                                "3a8712377c1ad3ad44d0f0271e28532d"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 2,
+                          "children": [],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "手部动作",
+                          "path": "/呈现/视觉/形象塑造/人物表现/动作姿态/手部动作",
+                          "id": 15634,
+                          "source_stable_id": 1470,
+                          "source_type": "形式",
+                          "description": "手部相关的具体动作,如手托、手持、指点等手势动作",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15901,
+                          "element_count": 8,
+                          "elements": [
+                            {
+                              "name": "指点式",
+                              "count": 1,
+                              "post_ids": [
+                                "1068bda1f94431bfb3b91b60073f1e46"
+                              ]
+                            },
+                            {
+                              "name": "手持",
+                              "count": 5,
+                              "post_ids": [
+                                "6649dbe3000000000c018112",
+                                "6687d458000000000a026f91",
+                                "66daeddb000000002603ea42",
+                                "683d8695000000001200012a",
+                                "692c3402000000000d03b7b7"
+                              ]
+                            },
+                            {
+                              "name": "怀抱",
+                              "count": 1,
+                              "post_ids": [
+                                "68e9b94d0000000007036a6a"
+                              ]
+                            },
+                            {
+                              "name": "捧读",
+                              "count": 1,
+                              "post_ids": [
+                                "68708544000000000d026732"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 8,
+                          "children": [],
+                          "total_posts_count": 7
+                        },
+                        {
+                          "name": "极端动作",
+                          "path": "/呈现/视觉/形象塑造/人物表现/动作姿态/极端动作",
+                          "id": 15636,
+                          "source_stable_id": 1472,
+                          "source_type": "形式",
+                          "description": "超出常规的极端化动作,如自残式、极端行为等",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15901,
+                          "element_count": 3,
+                          "elements": [
+                            {
+                              "name": "保护",
+                              "count": 1,
+                              "post_ids": [
+                                "bc2f946d57e1c650575962e480eccf31"
+                              ]
+                            },
+                            {
+                              "name": "极端行为",
+                              "count": 1,
+                              "post_ids": [
+                                "df635f43f39a1fa41c13da96320c45c3"
+                              ]
+                            },
+                            {
+                              "name": "自残式",
+                              "count": 1,
+                              "post_ids": [
+                                "df635f43f39a1fa41c13da96320c45c3"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 3,
+                          "children": [],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "行为概念",
+                          "path": "/呈现/视觉/形象塑造/人物表现/动作姿态/行为概念",
+                          "id": 15638,
+                          "source_stable_id": 1474,
+                          "source_type": "形式",
+                          "description": "抽象的行为概念,如主体行为、肢体动作等概念性描述",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15901,
+                          "element_count": 1,
+                          "elements": [
+                            {
+                              "name": "肢体动作",
+                              "count": 1,
+                              "post_ids": [
+                                "1068bda1f94431bfb3b91b60073f1e46"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 1,
+                          "children": [],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "表演性动作",
+                          "path": "/呈现/视觉/形象塑造/人物表现/动作姿态/表演性动作",
+                          "id": 15938,
+                          "source_stable_id": 1469,
+                          "source_type": "形式",
+                          "description": "为内容呈现而进行的表演性动作,包括夸张表演、舞蹈、角色演绎等",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15901,
+                          "element_count": 0,
+                          "elements": [],
+                          "total_element_count": 26,
+                          "children": [
+                            {
+                              "name": "夸张表演",
+                              "path": "/呈现/视觉/形象塑造/人物表现/动作姿态/表演性动作/夸张表演",
+                              "id": 15639,
+                              "source_stable_id": 1475,
+                              "source_type": "形式",
+                              "description": "夸张的表演动作,如夸张肢体动作、苦情化表演、搞笑行为等",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15938,
+                              "element_count": 2,
+                              "elements": [
+                                {
+                                  "name": "搞笑行为",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "67862d98000000001a01f443"
+                                  ]
+                                },
+                                {
+                                  "name": "夸张肢体动作",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "64139717"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 2,
+                              "children": [],
+                              "total_posts_count": 1
+                            },
+                            {
+                              "name": "角色演绎",
+                              "path": "/呈现/视觉/形象塑造/人物表现/动作姿态/表演性动作/角色演绎",
+                              "id": 15640,
+                              "source_stable_id": 1477,
+                              "source_type": "形式",
+                              "description": "一般性的角色演绎和表演,如表演、演绎、形象塑造等",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15938,
+                              "element_count": 24,
+                              "elements": [
+                                {
+                                  "name": "表演",
+                                  "count": 17,
+                                  "post_ids": [
+                                    "66619827000000000600486f",
+                                    "677b5460000000000b00d33e",
+                                    "6781eb19000000000b039867",
+                                    "67862d98000000001a01f443",
+                                    "67adb23f000000002a00c240",
+                                    "67bee0df000000002802acd1",
+                                    "67e243d0000000001d02495b",
+                                    "67e6398f000000001d005ebb",
+                                    "68077d02000000001c02dd81",
+                                    "680898fa000000001c01c23e",
+                                    "6810596c000000002301d1a6",
+                                    "682ede8f000000002202bff2",
+                                    "684a7e3c0000000023012b8d",
+                                    "68528a360000000010010c6d",
+                                    "685e7903000000000b02c13e",
+                                    "685f974300000000120144db",
+                                    "686f606c00000000120167b5"
+                                  ]
+                                },
+                                {
+                                  "name": "形象",
+                                  "count": 3,
+                                  "post_ids": [
+                                    "63762379",
+                                    "64400730",
+                                    "6752d19b000000000202b816"
+                                  ]
+                                },
+                                {
+                                  "name": "演绎",
+                                  "count": 4,
+                                  "post_ids": [
+                                    "64610880",
+                                    "68d76cd100000000120165e4",
+                                    "68f1b573000000000702052e",
+                                    "68fa029e0000000007022932"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 24,
+                              "children": [],
+                              "total_posts_count": 21
+                            }
+                          ],
+                          "total_posts_count": 21
+                        }
+                      ],
+                      "total_posts_count": 29
+                    },
+                    {
+                      "name": "模拟扮演",
+                      "path": "/呈现/视觉/形象塑造/人物表现/模拟扮演",
+                      "id": 15388,
+                      "source_stable_id": 387,
+                      "source_type": "形式",
+                      "description": "通过模仿、拟态、扮演等方式再现特定对象或状态的表演形式",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15912,
+                      "element_count": 7,
+                      "elements": [
+                        {
+                          "name": "行为艺术式",
+                          "count": 1,
+                          "post_ids": [
+                            "b90a1bbdf6dcddcaf4f4ee2f201e1d26"
+                          ]
+                        },
+                        {
+                          "name": "模拟",
+                          "count": 2,
+                          "post_ids": [
+                            "682ede8f000000002202bff2",
+                            "6921937a000000001b0278d1"
+                          ]
+                        },
+                        {
+                          "name": "真人模仿",
+                          "count": 1,
+                          "post_ids": [
+                            "6781eb19000000000b039867"
+                          ]
+                        },
+                        {
+                          "name": "伪装动作",
+                          "count": 1,
+                          "post_ids": [
+                            "6781e8640000000001001d18"
+                          ]
+                        },
+                        {
+                          "name": "创意拟人造型",
+                          "count": 1,
+                          "post_ids": [
+                            "67440b66000000000202827e"
+                          ]
+                        },
+                        {
+                          "name": "医疗式",
+                          "count": 1,
+                          "post_ids": [
+                            "64442545"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 7,
+                      "children": [],
+                      "total_posts_count": 5
+                    },
+                    {
+                      "name": "表情神态",
+                      "path": "/呈现/视觉/形象塑造/人物表现/表情神态",
+                      "id": 15387,
+                      "source_stable_id": 385,
+                      "source_type": "形式",
+                      "description": "面部表情、眼神、神态等面部层面的形象表现",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15912,
+                      "element_count": 32,
+                      "elements": [
+                        {
+                          "name": "笑容反应",
+                          "count": 1,
+                          "post_ids": [
+                            "61db1ae4bd885760b0f5cca9ecacb588"
+                          ]
+                        },
+                        {
+                          "name": "非言语细节",
+                          "count": 1,
+                          "post_ids": [
+                            "61db1ae4bd885760b0f5cca9ecacb588"
+                          ]
+                        },
+                        {
+                          "name": "怒呛姿态",
+                          "count": 1,
+                          "post_ids": [
+                            "1068bda1f94431bfb3b91b60073f1e46"
+                          ]
+                        },
+                        {
+                          "name": "神态捕捉",
+                          "count": 5,
+                          "post_ids": [
+                            "2c73223f278ea6aecd70b5b54f0aff21",
+                            "68a43a11000000001c03cc96",
+                            "68f1b573000000000702052e",
+                            "69002ba70000000007008bcc",
+                            "6901d072000000000703b6a3"
+                          ]
+                        },
+                        {
+                          "name": "夸张颜艺",
+                          "count": 17,
+                          "post_ids": [
+                            "66619827000000000600486f",
+                            "677b5460000000000b00d33e",
+                            "67862d98000000001a01f443",
+                            "67adb23f000000002a00c240",
+                            "67b2a7f7000000002802a0d7",
+                            "67bafc850000000029036328",
+                            "67bee0df000000002802acd1",
+                            "67e6398f000000001d005ebb",
+                            "680898fa000000001c01c23e",
+                            "6810596c000000002301d1a6",
+                            "682ede8f000000002202bff2",
+                            "684a7e3c0000000023012b8d",
+                            "68528a360000000010010c6d",
+                            "685e7903000000000b02c13e",
+                            "685f974300000000120144db",
+                            "686f606c00000000120167b5"
+                          ]
+                        },
+                        {
+                          "name": "破碎感",
+                          "count": 1,
+                          "post_ids": [
+                            "68528a360000000010010c6d"
+                          ]
+                        },
+                        {
+                          "name": "表情处理",
+                          "count": 2,
+                          "post_ids": [
+                            "68946e0d000000002500ef6e",
+                            "690d977d0000000007036331"
+                          ]
+                        },
+                        {
+                          "name": "亲和力",
+                          "count": 1,
+                          "post_ids": [
+                            "64162740"
+                          ]
+                        },
+                        {
+                          "name": "夸张表情",
+                          "count": 1,
+                          "post_ids": [
+                            "63253503"
+                          ]
+                        },
+                        {
+                          "name": "表情演绎",
+                          "count": 2,
+                          "post_ids": [
+                            "64975752",
+                            "65514975"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 32,
+                      "children": [],
+                      "total_posts_count": 22
+                    }
+                  ],
+                  "total_posts_count": 63
+                },
+                {
+                  "name": "符号元素",
+                  "path": "/呈现/视觉/形象塑造/符号元素",
+                  "id": 15913,
+                  "source_stable_id": 1068,
+                  "source_type": "形式",
+                  "description": "具有象征意义或辅助功能的视觉符号与装饰元素",
+                  "category_nature": "维度",
+                  "level": 4,
+                  "parent_id": 15975,
+                  "element_count": 0,
+                  "elements": [],
+                  "total_element_count": 85,
+                  "children": [
+                    {
+                      "name": "视觉符号",
+                      "path": "/呈现/视觉/形象塑造/符号元素/视觉符号",
+                      "id": 15902,
+                      "source_stable_id": 183,
+                      "source_type": "形式",
+                      "description": "具有象征意义的图像标识与符号化视觉元素",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15913,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 49,
+                      "children": [
+                        {
+                          "name": "图形图标",
+                          "path": "/呈现/视觉/形象塑造/符号元素/视觉符号/图形图标",
+                          "id": 15645,
+                          "source_stable_id": 1484,
+                          "source_type": "形式",
+                          "description": "具体的图形符号、图标及符号化视觉载体",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15902,
+                          "element_count": 41,
+                          "elements": [
+                            {
+                              "name": "视觉元素",
+                              "count": 5,
+                              "post_ids": [
+                                "64162740",
+                                "64203380",
+                                "67284f9c000000001901875a",
+                                "6867d9af000000001203f084",
+                                "b9bc7d3c46583a41a76867f0ac7e62f1"
+                              ]
+                            },
+                            {
+                              "name": "视觉符号",
+                              "count": 7,
+                              "post_ids": [
+                                "64456019",
+                                "65142392",
+                                "65514975",
+                                "7fc2ebb73d9fefe1e79111dd9b17ad65",
+                                "89627e4bf8ad865f175c54e3b0ddd2cd",
+                                "c84d14e15b8324b91df2cd8cb8304db9",
+                                "fa0633c278660309648633dea6294cb1"
+                              ]
+                            },
+                            {
+                              "name": "人像印刷",
+                              "count": 1,
+                              "post_ids": [
+                                "6602bd07000000001203348c"
+                              ]
+                            },
+                            {
+                              "name": "替代",
+                              "count": 2,
+                              "post_ids": [
+                                "675c0669000000000600cfd7",
+                                "6776b27d0000000013018545"
+                              ]
+                            },
+                            {
+                              "name": "绿色勾选",
+                              "count": 2,
+                              "post_ids": [
+                                "68a8241a000000001c011403",
+                                "693a2428000000001e027639"
+                              ]
+                            },
+                            {
+                              "name": "表情包",
+                              "count": 24,
+                              "post_ids": [
+                                "68737e97000000000d027b81",
+                                "68789450000000000b01d4a4",
+                                "688366bd000000000d024147",
+                                "68875186000000002501649d",
+                                "68946e0d000000002500ef6e",
+                                "68a43a11000000001c03cc96",
+                                "68be928b000000001c0361ea",
+                                "68c3933e000000001d00a902",
+                                "68d1ebb8000000001203fd96",
+                                "68d610800000000012023282",
+                                "68d76cd100000000120165e4",
+                                "68e0f5750000000007015ff9",
+                                "68ec9d6400000000070389be",
+                                "68f0b8140000000007008b05",
+                                "68f1b573000000000702052e",
+                                "68f78b950000000007021a20",
+                                "68fa029e0000000007022932",
+                                "68ff53770000000007000d54",
+                                "6915dfc400000000070224d9"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 41,
+                          "children": [],
+                          "total_posts_count": 26
+                        },
+                        {
+                          "name": "标识辨识",
+                          "path": "/呈现/视觉/形象塑造/符号元素/视觉符号/标识辨识",
+                          "id": 15644,
+                          "source_stable_id": 1483,
+                          "source_type": "形式",
+                          "description": "具有高辨识度或地域代表性的标志性视觉特征",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15902,
+                          "element_count": 4,
+                          "elements": [
+                            {
+                              "name": "标志性",
+                              "count": 2,
+                              "post_ids": [
+                                "7fc2ebb73d9fefe1e79111dd9b17ad65",
+                                "b6482cda993c100f39d6eccf65261a24"
+                              ]
+                            },
+                            {
+                              "name": "地标性",
+                              "count": 1,
+                              "post_ids": [
+                                "c84d14e15b8324b91df2cd8cb8304db9"
+                              ]
+                            },
+                            {
+                              "name": "地标呈现",
+                              "count": 1,
+                              "post_ids": [
+                                "6912d90f00000000050113b3"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 4,
+                          "children": [],
+                          "total_posts_count": 1
+                        },
+                        {
+                          "name": "视觉意象",
+                          "path": "/呈现/视觉/形象塑造/符号元素/视觉符号/视觉意象",
+                          "id": 15646,
+                          "source_stable_id": 1485,
+                          "source_type": "形式",
+                          "description": "通过视觉造型或效果营造的具象化意象",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15902,
+                          "element_count": 4,
+                          "elements": [
+                            {
+                              "name": "悬浮感",
+                              "count": 1,
+                              "post_ids": [
+                                "67d55ec7000000000e004e69"
+                              ]
+                            },
+                            {
+                              "name": "形似翅膀",
+                              "count": 1,
+                              "post_ids": [
+                                "675c19320000000002017d1f"
+                              ]
+                            },
+                            {
+                              "name": "天使翅膀",
+                              "count": 1,
+                              "post_ids": [
+                                "675c19320000000002017d1f"
+                              ]
+                            },
+                            {
+                              "name": "流体线条",
+                              "count": 1,
+                              "post_ids": [
+                                "68c15181000000001b01c358"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 4,
+                          "children": [],
+                          "total_posts_count": 3
+                        }
+                      ],
+                      "total_posts_count": 30
+                    },
+                    {
+                      "name": "道具布景",
+                      "path": "/呈现/视觉/形象塑造/符号元素/道具布景",
+                      "id": 15400,
+                      "source_stable_id": 345,
+                      "source_type": "形式",
+                      "description": "拍摄中使用的道具、装饰物及场景布置",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15913,
+                      "element_count": 36,
+                      "elements": [
+                        {
+                          "name": "道具点缀",
+                          "count": 4,
+                          "post_ids": [
+                            "6960e87a000000000e00c216",
+                            "69679e0e000000000e03ca97",
+                            "696a5a3e000000001a022b1d",
+                            "696f8d95000000001a028641"
+                          ]
+                        },
+                        {
+                          "name": "点缀",
+                          "count": 9,
+                          "post_ids": [
+                            "65026165",
+                            "67e68c9d00000000060282fb",
+                            "682a8f11000000002002a511",
+                            "682bdb47000000002202dfa0",
+                            "682bdbba000000002202b26e",
+                            "683d8695000000001200012a",
+                            "6843ab3f000000002202508e",
+                            "68843a4d000000001c037591",
+                            "68db5bd00000000007015474"
+                          ]
+                        },
+                        {
+                          "name": "陈设",
+                          "count": 5,
+                          "post_ids": [
+                            "6848e2340000000021009f3a",
+                            "6850c82a000000002100f096",
+                            "6858eb52000000001203044b",
+                            "685f514f000000001703339d",
+                            "687ee6fc000000001c032bb1"
+                          ]
+                        },
+                        {
+                          "name": "雕花",
+                          "count": 2,
+                          "post_ids": [
+                            "684e2d44000000002100cca7",
+                            "6850c82a000000002100f096"
+                          ]
+                        },
+                        {
+                          "name": "冒烟",
+                          "count": 1,
+                          "post_ids": [
+                            "68077d02000000001c02dd81"
+                          ]
+                        },
+                        {
+                          "name": "充气式",
+                          "count": 1,
+                          "post_ids": [
+                            "67e37ff8000000001c008b5e"
+                          ]
+                        },
+                        {
+                          "name": "微缩场景模型",
+                          "count": 1,
+                          "post_ids": [
+                            "6921937a000000001b0278d1"
+                          ]
+                        },
+                        {
+                          "name": "背景",
+                          "count": 2,
+                          "post_ids": [
+                            "675c19320000000002017d1f",
+                            "68a06bea000000001d021202"
+                          ]
+                        },
+                        {
+                          "name": "多场景应用",
+                          "count": 4,
+                          "post_ids": [
+                            "65febd8e0000000012035538",
+                            "662ce86d0000000003023f0a",
+                            "67389194000000001d038599",
+                            "68383eb1000000000303e7ef"
+                          ]
+                        },
+                        {
+                          "name": "微缩呈现",
+                          "count": 1,
+                          "post_ids": [
+                            "6649dbe3000000000c018112"
+                          ]
+                        },
+                        {
+                          "name": "巨幅",
+                          "count": 1,
+                          "post_ids": [
+                            "6602bd07000000001203348c"
+                          ]
+                        },
+                        {
+                          "name": "立体造型",
+                          "count": 1,
+                          "post_ids": [
+                            "69535514000000001e032b26"
+                          ]
+                        },
+                        {
+                          "name": "睡眠场景",
+                          "count": 2,
+                          "post_ids": [
+                            "68db5bd00000000007015474",
+                            "68e9b94d0000000007036a6a"
+                          ]
+                        },
+                        {
+                          "name": "道具",
+                          "count": 2,
+                          "post_ids": [
+                            "6882f593000000001100272d",
+                            "68b15f32000000001d00ef75"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 36,
+                      "children": [],
+                      "total_posts_count": 33
+                    }
+                  ],
+                  "total_posts_count": 61
+                },
+                {
+                  "name": "造型装扮",
+                  "path": "/呈现/视觉/形象塑造/造型装扮",
+                  "id": 15978,
+                  "source_stable_id": 1067,
+                  "source_type": "形式",
+                  "description": "服饰穿搭、妆造处理与外观造型设计",
+                  "category_nature": "维度",
+                  "level": 4,
+                  "parent_id": 15975,
+                  "element_count": 0,
+                  "elements": [],
+                  "total_element_count": 77,
+                  "children": [
+                    {
+                      "name": "创意造型",
+                      "path": "/呈现/视觉/形象塑造/造型装扮/创意造型",
+                      "id": 15894,
+                      "source_stable_id": 1076,
+                      "source_type": "形式",
+                      "description": "通过夸张、拟物等创意手法进行的非常规造型处理",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15978,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 34,
+                      "children": [
+                        {
+                          "name": "主题扮演",
+                          "path": "/呈现/视觉/形象塑造/造型装扮/创意造型/主题扮演",
+                          "id": 15396,
+                          "source_stable_id": 405,
+                          "source_type": "形式",
+                          "description": "将主体装扮成特定角色、身份或文化主题形象的造型处理",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15894,
+                          "element_count": 7,
+                          "elements": [
+                            {
+                              "name": "王妃造型",
+                              "count": 1,
+                              "post_ids": [
+                                "99823f406c9b376c3998329e1373930f"
+                              ]
+                            },
+                            {
+                              "name": "佛系装扮",
+                              "count": 1,
+                              "post_ids": [
+                                "690d977d0000000007036331"
+                              ]
+                            },
+                            {
+                              "name": "财神装扮",
+                              "count": 2,
+                              "post_ids": [
+                                "686cd3a5000000000d0180b0",
+                                "68ccd4e40000000012030372"
+                              ]
+                            },
+                            {
+                              "name": "学生化",
+                              "count": 3,
+                              "post_ids": [
+                                "68708544000000000d026732",
+                                "6882f593000000001100272d",
+                                "68b69ea9000000001c035a4d"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 7,
+                          "children": [],
+                          "total_posts_count": 6
+                        },
+                        {
+                          "name": "创意技法",
+                          "path": "/呈现/视觉/形象塑造/造型装扮/创意造型/创意技法",
+                          "id": 15399,
+                          "source_stable_id": 408,
+                          "source_type": "形式",
+                          "description": "运用非常规手法对服饰或外观进行创意性处理的造型技巧",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15894,
+                          "element_count": 5,
+                          "elements": [
+                            {
+                              "name": "湿衣效果",
+                              "count": 1,
+                              "post_ids": [
+                                "67fe11bb000000000d017b89"
+                              ]
+                            },
+                            {
+                              "name": "物理修图",
+                              "count": 1,
+                              "post_ids": [
+                                "67bc233e000000000b0160fa"
+                              ]
+                            },
+                            {
+                              "name": "创意穿搭",
+                              "count": 2,
+                              "post_ids": [
+                                "6666b3a10000000015008834",
+                                "68f988f2000000000703ada5"
+                              ]
+                            },
+                            {
+                              "name": "服饰错位",
+                              "count": 1,
+                              "post_ids": [
+                                "68f988f2000000000703ada5"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 5,
+                          "children": [],
+                          "total_posts_count": 4
+                        },
+                        {
+                          "name": "夸张变形",
+                          "path": "/呈现/视觉/形象塑造/造型装扮/创意造型/夸张变形",
+                          "id": 15397,
+                          "source_stable_id": 406,
+                          "source_type": "形式",
+                          "description": "通过夸张化、搞怪化手段产生强烈视觉冲击的造型处理",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15894,
+                          "element_count": 7,
+                          "elements": [
+                            {
+                              "name": "头颅造型",
+                              "count": 1,
+                              "post_ids": [
+                                "697069b7000000002202d264"
+                              ]
+                            },
+                            {
+                              "name": "夸张穿戴法",
+                              "count": 1,
+                              "post_ids": [
+                                "675fcd19000000000103d470"
+                              ]
+                            },
+                            {
+                              "name": "夸张造型",
+                              "count": 1,
+                              "post_ids": [
+                                "66f51b90000000002a036660"
+                              ]
+                            },
+                            {
+                              "name": "搞怪造型",
+                              "count": 4,
+                              "post_ids": [
+                                "68a43a11000000001c03cc96",
+                                "68ef83150000000007035f42",
+                                "68f1b573000000000702052e",
+                                "69114f150000000007001f30"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 7,
+                          "children": [],
+                          "total_posts_count": 7
+                        },
+                        {
+                          "name": "拟人穿戴",
+                          "path": "/呈现/视觉/形象塑造/造型装扮/创意造型/拟人穿戴",
+                          "id": 15395,
+                          "source_stable_id": 404,
+                          "source_type": "形式",
+                          "description": "给非人主体穿戴人类服饰以改变外观的扮装方式",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15894,
+                          "element_count": 12,
+                          "elements": [
+                            {
+                              "name": "猫咪变装",
+                              "count": 4,
+                              "post_ids": [
+                                "68a43a11000000001c03cc96",
+                                "68ef83150000000007035f42",
+                                "68f1b573000000000702052e",
+                                "69114f150000000007001f30"
+                              ]
+                            },
+                            {
+                              "name": "拟人化造型",
+                              "count": 4,
+                              "post_ids": [
+                                "6882f593000000001100272d",
+                                "69002ba70000000007008bcc",
+                                "69114f150000000007001f30"
+                              ]
+                            },
+                            {
+                              "name": "婴儿装造型",
+                              "count": 1,
+                              "post_ids": [
+                                "68f5976e000000000700dd28"
+                              ]
+                            },
+                            {
+                              "name": "睡衣造型",
+                              "count": 1,
+                              "post_ids": [
+                                "68db5bd00000000007015474"
+                              ]
+                            },
+                            {
+                              "name": "变装",
+                              "count": 1,
+                              "post_ids": [
+                                "68708544000000000d026732"
+                              ]
+                            },
+                            {
+                              "name": "冬装打扮",
+                              "count": 1,
+                              "post_ids": [
+                                "6774ab9a0000000009015a3f"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 12,
+                          "children": [],
+                          "total_posts_count": 10
+                        },
+                        {
+                          "name": "拟物仿形",
+                          "path": "/呈现/视觉/形象塑造/造型装扮/创意造型/拟物仿形",
+                          "id": 15398,
+                          "source_stable_id": 407,
+                          "source_type": "形式",
+                          "description": "通过模仿其他物体或生物外形进行的创意造型设计",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15894,
+                          "element_count": 3,
+                          "elements": [
+                            {
+                              "name": "拟物创意造型",
+                              "count": 1,
+                              "post_ids": [
+                                "6881d560000000001703076c"
+                              ]
+                            },
+                            {
+                              "name": "拟态造型",
+                              "count": 1,
+                              "post_ids": [
+                                "67e68c9d00000000060282fb"
+                              ]
+                            },
+                            {
+                              "name": "冰淇淋造型",
+                              "count": 1,
+                              "post_ids": [
+                                "692d3b99000000001e022295"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 3,
+                          "children": [],
+                          "total_posts_count": 3
+                        }
+                      ],
+                      "total_posts_count": 24
+                    },
+                    {
+                      "name": "穿搭呈现",
+                      "path": "/呈现/视觉/形象塑造/造型装扮/穿搭呈现",
+                      "id": 15893,
+                      "source_stable_id": 1075,
+                      "source_type": "形式",
+                      "description": "服饰单品的搭配组合与整体穿着效果",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15978,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 43,
+                      "children": [
+                        {
+                          "name": "搭配手法",
+                          "path": "/呈现/视觉/形象塑造/造型装扮/穿搭呈现/搭配手法",
+                          "id": 15392,
+                          "source_stable_id": 401,
+                          "source_type": "形式",
+                          "description": "将不同服饰单品通过混搭、组合等方式进行搭配的穿搭手法",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15893,
+                          "element_count": 23,
+                          "elements": [
+                            {
+                              "name": "搭配",
+                              "count": 5,
+                              "post_ids": [
+                                "6960e87a000000000e00c216",
+                                "69647323000000001a01ef60",
+                                "696f8d95000000001a028641",
+                                "6978db47000000001a0293e7",
+                                "697b64c5000000001a021517"
+                              ]
+                            },
+                            {
+                              "name": "廓形穿搭",
+                              "count": 1,
+                              "post_ids": [
+                                "696f8d95000000001a028641"
+                              ]
+                            },
+                            {
+                              "name": "混搭",
+                              "count": 6,
+                              "post_ids": [
+                                "681c64ce000000002200554c",
+                                "6843ab3f000000002202508e",
+                                "68538f7c000000002400805b",
+                                "685b68c300000000150226bd",
+                                "69679e0e000000000e03ca97",
+                                "696a5a3e000000001a022b1d"
+                              ]
+                            },
+                            {
+                              "name": "穿搭切换",
+                              "count": 1,
+                              "post_ids": [
+                                "6965d491000000000e00f9b0"
+                              ]
+                            },
+                            {
+                              "name": "组合",
+                              "count": 9,
+                              "post_ids": [
+                                "64246342",
+                                "64903753",
+                                "65233075",
+                                "65600878",
+                                "66daeddb000000002603ea42",
+                                "68426c88000000002002b334",
+                                "685b68c300000000150226bd",
+                                "685f514f000000001703339d",
+                                "688046ef000000002203150e"
+                              ]
+                            },
+                            {
+                              "name": "穿搭",
+                              "count": 1,
+                              "post_ids": [
+                                "68ca143d000000001202c3de"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 23,
+                          "children": [],
+                          "total_posts_count": 17
+                        },
+                        {
+                          "name": "整体形象",
+                          "path": "/呈现/视觉/形象塑造/造型装扮/穿搭呈现/整体形象",
+                          "id": 15394,
+                          "source_stable_id": 403,
+                          "source_type": "形式",
+                          "description": "通过服饰穿着呈现的整体外观形象与造型效果",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15893,
+                          "element_count": 10,
+                          "elements": [
+                            {
+                              "name": "冬日造型",
+                              "count": 1,
+                              "post_ids": [
+                                "69770dc6000000001a02efe9"
+                              ]
+                            },
+                            {
+                              "name": "造型",
+                              "count": 7,
+                              "post_ids": [
+                                "64246342",
+                                "64456019",
+                                "65600878",
+                                "67b2a7f7000000002802a0d7",
+                                "684a7e3c0000000023012b8d",
+                                "68f988f2000000000703ada5"
+                              ]
+                            },
+                            {
+                              "name": "装扮",
+                              "count": 2,
+                              "post_ids": [
+                                "67e243d0000000001d02495b",
+                                "67e37ff8000000001c008b5e"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 10,
+                          "children": [],
+                          "total_posts_count": 6
+                        },
+                        {
+                          "name": "细节修饰",
+                          "path": "/呈现/视觉/形象塑造/造型装扮/穿搭呈现/细节修饰",
+                          "id": 15393,
+                          "source_stable_id": 402,
+                          "source_type": "形式",
+                          "description": "对穿搭中的局部细节进行针对性呈现与点缀修饰",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15893,
+                          "element_count": 10,
+                          "elements": [
+                            {
+                              "name": "局部细节",
+                              "count": 4,
+                              "post_ids": [
+                                "6964d4bf000000001a031a54",
+                                "697638e8000000001a025711",
+                                "697a20e9000000001a033338",
+                                "697b64c5000000001a021517"
+                              ]
+                            },
+                            {
+                              "name": "点缀",
+                              "count": 5,
+                              "post_ids": [
+                                "69679e0e000000000e03ca97",
+                                "6969068e000000000d008b48",
+                                "696f0da3000000001a029d29",
+                                "696f8d95000000001a028641",
+                                "6971878d000000001a01e6cc"
+                              ]
+                            },
+                            {
+                              "name": "歪戴",
+                              "count": 1,
+                              "post_ids": [
+                                "68f988f2000000000703ada5"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 10,
+                          "children": [],
+                          "total_posts_count": 10
+                        }
+                      ],
+                      "total_posts_count": 29
+                    }
+                  ],
+                  "total_posts_count": 52
+                }
+              ],
+              "total_posts_count": 128
+            },
+            {
+              "name": "影像制作",
+              "path": "/呈现/视觉/影像制作",
+              "id": 15981,
+              "source_stable_id": 1152,
+              "source_type": "形式",
+              "description": "影像的拍摄、素材获取、剪辑组接与后期加工",
+              "category_nature": "内容",
+              "level": 3,
+              "parent_id": 15983,
+              "element_count": 0,
+              "elements": [],
+              "total_element_count": 325,
+              "children": [
+                {
+                  "name": "剪辑组接",
+                  "path": "/呈现/视觉/影像制作/剪辑组接",
+                  "id": 15910,
+                  "source_stable_id": 1056,
+                  "source_type": "形式",
+                  "description": "对影像素材进行剪辑、组合与重构的加工方式",
+                  "category_nature": "维度",
+                  "level": 4,
+                  "parent_id": 15981,
+                  "element_count": 0,
+                  "elements": [],
+                  "total_element_count": 58,
+                  "children": [
+                    {
+                      "name": "剪辑手法",
+                      "path": "/呈现/视觉/影像制作/剪辑组接/剪辑手法",
+                      "id": 15887,
+                      "source_stable_id": 1069,
+                      "source_type": "形式",
+                      "description": "镜头切换、节奏控制等基本剪辑技术",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15910,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 28,
+                      "children": [
+                        {
+                          "name": "基础剪辑",
+                          "path": "/呈现/视觉/影像制作/剪辑组接/剪辑手法/基础剪辑",
+                          "id": 15405,
+                          "source_stable_id": 884,
+                          "source_type": "形式",
+                          "description": "对影像素材进行筛选、分解、组接等基本加工处理",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15887,
+                          "element_count": 2,
+                          "elements": [
+                            {
+                              "name": "剪辑",
+                              "count": 1,
+                              "post_ids": [
+                                "56380736"
+                              ]
+                            },
+                            {
+                              "name": "镜头剪辑",
+                              "count": 1,
+                              "post_ids": [
+                                "65142392"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 2,
+                          "children": [],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "节奏控制",
+                          "path": "/呈现/视觉/影像制作/剪辑组接/剪辑手法/节奏控制",
+                          "id": 15403,
+                          "source_stable_id": 878,
+                          "source_type": "形式",
+                          "description": "通过剪辑频率、切换速度控制影像呈现节奏的手法",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15887,
+                          "element_count": 6,
+                          "elements": [
+                            {
+                              "name": "卡点",
+                              "count": 4,
+                              "post_ids": [
+                                "47567298",
+                                "56380736",
+                                "65139072",
+                                "65602591"
+                              ]
+                            },
+                            {
+                              "name": "快节奏",
+                              "count": 2,
+                              "post_ids": [
+                                "47567298",
+                                "58896244"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 6,
+                          "children": [],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "转场切换",
+                          "path": "/呈现/视觉/影像制作/剪辑组接/剪辑手法/转场切换",
+                          "id": 15404,
+                          "source_stable_id": 879,
+                          "source_type": "形式",
+                          "description": "镜头或场景之间的过渡衔接方式",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15887,
+                          "element_count": 20,
+                          "elements": [
+                            {
+                              "name": "翻页式",
+                              "count": 5,
+                              "post_ids": [
+                                "59146568",
+                                "64903753",
+                                "65298913",
+                                "68286f560000000012006015"
+                              ]
+                            },
+                            {
+                              "name": "场景切换",
+                              "count": 1,
+                              "post_ids": [
+                                "675fec1f000000000800c6f4"
+                              ]
+                            },
+                            {
+                              "name": "翻页转场",
+                              "count": 3,
+                              "post_ids": [
+                                "64029781",
+                                "65411458",
+                                "65602591"
+                              ]
+                            },
+                            {
+                              "name": "动态翻页",
+                              "count": 2,
+                              "post_ids": [
+                                "65489167",
+                                "65529862"
+                              ]
+                            },
+                            {
+                              "name": "转场",
+                              "count": 4,
+                              "post_ids": [
+                                "56380736",
+                                "59146568",
+                                "64820485",
+                                "65298913"
+                              ]
+                            },
+                            {
+                              "name": "切换",
+                              "count": 1,
+                              "post_ids": [
+                                "65170329"
+                              ]
+                            },
+                            {
+                              "name": "动态转场",
+                              "count": 2,
+                              "post_ids": [
+                                "64162740",
+                                "64903753"
+                              ]
+                            },
+                            {
+                              "name": "转场切换",
+                              "count": 1,
+                              "post_ids": [
+                                "64662179"
+                              ]
+                            },
+                            {
+                              "name": "对比镜头",
+                              "count": 1,
+                              "post_ids": [
+                                "65515618"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 20,
+                          "children": [],
+                          "total_posts_count": 2
+                        }
+                      ],
+                      "total_posts_count": 2
+                    },
+                    {
+                      "name": "素材重组",
+                      "path": "/呈现/视觉/影像制作/剪辑组接/素材重组",
+                      "id": 15888,
+                      "source_stable_id": 1070,
+                      "source_type": "形式",
+                      "description": "将多个素材进行混剪、拼贴等创作性重组",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15910,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 21,
+                      "children": [
+                        {
+                          "name": "拼贴并置",
+                          "path": "/呈现/视觉/影像制作/剪辑组接/素材重组/拼贴并置",
+                          "id": 15407,
+                          "source_stable_id": 883,
+                          "source_type": "形式",
+                          "description": "将不同素材片段进行视觉拼接或并排呈现的组合方式",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15888,
+                          "element_count": 16,
+                          "elements": [
+                            {
+                              "name": "拼贴式",
+                              "count": 16,
+                              "post_ids": [
+                                "68737e97000000000d027b81",
+                                "68789450000000000b01d4a4",
+                                "688366bd000000000d024147",
+                                "68946e0d000000002500ef6e",
+                                "68a43a11000000001c03cc96",
+                                "68be928b000000001c0361ea",
+                                "68c3933e000000001d00a902",
+                                "68d1ebb8000000001203fd96",
+                                "68d610800000000012023282",
+                                "68d76cd100000000120165e4",
+                                "68e0f5750000000007015ff9",
+                                "68ec9d6400000000070389be",
+                                "68f0b8140000000007008b05",
+                                "68f1b573000000000702052e",
+                                "68fa029e0000000007022932",
+                                "68ff53770000000007000d54"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 16,
+                          "children": [],
+                          "total_posts_count": 16
+                        },
+                        {
+                          "name": "混剪重组",
+                          "path": "/呈现/视觉/影像制作/剪辑组接/素材重组/混剪重组",
+                          "id": 15406,
+                          "source_stable_id": 882,
+                          "source_type": "形式",
+                          "description": "将多个不同来源的影像素材重新剪辑组合的创作方式",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15888,
+                          "element_count": 5,
+                          "elements": [
+                            {
+                              "name": "串烧",
+                              "count": 1,
+                              "post_ids": [
+                                "56380736"
+                              ]
+                            },
+                            {
+                              "name": "混剪",
+                              "count": 1,
+                              "post_ids": [
+                                "44556070"
+                              ]
+                            },
+                            {
+                              "name": "反应混剪",
+                              "count": 2,
+                              "post_ids": [
+                                "63972446",
+                                "64855234"
+                              ]
+                            },
+                            {
+                              "name": "二次剪辑",
+                              "count": 1,
+                              "post_ids": [
+                                "60332209"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 5,
+                          "children": [],
+                          "total_posts_count": 0
+                        }
+                      ],
+                      "total_posts_count": 16
+                    },
+                    {
+                      "name": "轮播展示",
+                      "path": "/呈现/视觉/影像制作/剪辑组接/轮播展示",
+                      "id": 15423,
+                      "source_stable_id": 197,
+                      "source_type": "形式",
+                      "description": "幻灯片式、相册式等多画面循环切换的展示方式",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15910,
+                      "element_count": 2,
+                      "elements": [
+                        {
+                          "name": "多图",
+                          "count": 1,
+                          "post_ids": [
+                            "6711d712000000001b012783"
+                          ]
+                        },
+                        {
+                          "name": "日历式",
+                          "count": 1,
+                          "post_ids": [
+                            "65061667"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 2,
+                      "children": [],
+                      "total_posts_count": 1
+                    },
+                    {
+                      "name": "音画协调",
+                      "path": "/呈现/视觉/影像制作/剪辑组接/音画协调",
+                      "id": 15422,
+                      "source_stable_id": 198,
+                      "source_type": "形式",
+                      "description": "声画同步、音画组合等视听元素的协调处理",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15910,
+                      "element_count": 7,
+                      "elements": [
+                        {
+                          "name": "音画同步",
+                          "count": 2,
+                          "post_ids": [
+                            "47567298",
+                            "59121599"
+                          ]
+                        },
+                        {
+                          "name": "声画同步",
+                          "count": 1,
+                          "post_ids": [
+                            "65407794"
+                          ]
+                        },
+                        {
+                          "name": "视听呈现",
+                          "count": 1,
+                          "post_ids": [
+                            "59422696"
+                          ]
+                        },
+                        {
+                          "name": "反差化视听",
+                          "count": 1,
+                          "post_ids": [
+                            "56977419"
+                          ]
+                        },
+                        {
+                          "name": "音画组合",
+                          "count": 1,
+                          "post_ids": [
+                            "56726652"
+                          ]
+                        },
+                        {
+                          "name": "图文同步",
+                          "count": 1,
+                          "post_ids": [
+                            "55327642"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 7,
+                      "children": [],
+                      "total_posts_count": 0
+                    }
+                  ],
+                  "total_posts_count": 19
+                },
+                {
+                  "name": "后期处理",
+                  "path": "/呈现/视觉/影像制作/后期处理",
+                  "id": 15911,
+                  "source_stable_id": 1052,
+                  "source_type": "形式",
+                  "description": "对画面进行技术加工与视觉优化的后期手段",
+                  "category_nature": "维度",
+                  "level": 4,
+                  "parent_id": 15981,
+                  "element_count": 0,
+                  "elements": [],
+                  "total_element_count": 167,
+                  "children": [
+                    {
+                      "name": "动态特效",
+                      "path": "/呈现/视觉/影像制作/后期处理/动态特效",
+                      "id": 15427,
+                      "source_stable_id": 1170,
+                      "source_type": "形式",
+                      "description": "通过后期添加的粒子、光效、闪烁、旋转等运动视觉效果",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15911,
+                      "element_count": 7,
+                      "elements": [
+                        {
+                          "name": "动态祝福",
+                          "count": 3,
+                          "post_ids": [
+                            "59121599",
+                            "65203608",
+                            "65608649"
+                          ]
+                        },
+                        {
+                          "name": "动态合成",
+                          "count": 2,
+                          "post_ids": [
+                            "58896244",
+                            "65604986"
+                          ]
+                        },
+                        {
+                          "name": "动态元素",
+                          "count": 1,
+                          "post_ids": [
+                            "65270425"
+                          ]
+                        },
+                        {
+                          "name": "动态动效",
+                          "count": 1,
+                          "post_ids": [
+                            "64851184"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 42,
+                      "children": [
+                        {
+                          "name": "粒子光效",
+                          "path": "/呈现/视觉/影像制作/后期处理/动态特效/粒子光效",
+                          "id": 15429,
+                          "source_stable_id": 1172,
+                          "source_type": "形式",
+                          "description": "粒子飘散、光点闪烁、流光溢彩等基于粒子和光效的动态视觉效果",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15427,
+                          "element_count": 17,
+                          "elements": [
+                            {
+                              "name": "高频闪烁",
+                              "count": 2,
+                              "post_ids": [
+                                "65098787",
+                                "65604986"
+                              ]
+                            },
+                            {
+                              "name": "烟花特效",
+                              "count": 1,
+                              "post_ids": [
+                                "65602591"
+                              ]
+                            },
+                            {
+                              "name": "闪烁特效",
+                              "count": 2,
+                              "post_ids": [
+                                "61822382",
+                                "65270425"
+                              ]
+                            },
+                            {
+                              "name": "动态粒子特效",
+                              "count": 3,
+                              "post_ids": [
+                                "45436779",
+                                "59121599",
+                                "65162446"
+                              ]
+                            },
+                            {
+                              "name": "动态闪烁",
+                              "count": 3,
+                              "post_ids": [
+                                "47951584",
+                                "58933772",
+                                "65091188"
+                              ]
+                            },
+                            {
+                              "name": "动态烟花",
+                              "count": 1,
+                              "post_ids": [
+                                "65027290"
+                              ]
+                            },
+                            {
+                              "name": "发光特效",
+                              "count": 2,
+                              "post_ids": [
+                                "64603799",
+                                "64886621"
+                              ]
+                            },
+                            {
+                              "name": "闪烁",
+                              "count": 1,
+                              "post_ids": [
+                                "64820485"
+                              ]
+                            },
+                            {
+                              "name": "动态光效",
+                              "count": 1,
+                              "post_ids": [
+                                "64246342"
+                              ]
+                            },
+                            {
+                              "name": "动态粒子",
+                              "count": 1,
+                              "post_ids": [
+                                "47537727"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 17,
+                          "children": [],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "运动变换",
+                          "path": "/呈现/视觉/影像制作/后期处理/动态特效/运动变换",
+                          "id": 15914,
+                          "source_stable_id": 1173,
+                          "source_type": "形式",
+                          "description": "旋转、缩放、位移等基于物体运动变换的动态视觉效果",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15427,
+                          "element_count": 0,
+                          "elements": [],
+                          "total_element_count": 18,
+                          "children": [
+                            {
+                              "name": "元素动效",
+                              "path": "/呈现/视觉/影像制作/后期处理/动态特效/运动变换/元素动效",
+                              "id": 15686,
+                              "source_stable_id": 1536,
+                              "source_type": "形式",
+                              "description": "应用于特定画面元素的动态装饰效果",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15914,
+                              "element_count": 2,
+                              "elements": [
+                                {
+                                  "name": "漫天掉落",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "45436779"
+                                  ]
+                                },
+                                {
+                                  "name": "动态背景",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "65450821"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 2,
+                              "children": [],
+                              "total_posts_count": 0
+                            },
+                            {
+                              "name": "形变效果",
+                              "path": "/呈现/视觉/影像制作/后期处理/动态特效/运动变换/形变效果",
+                              "id": 15685,
+                              "source_stable_id": 1535,
+                              "source_type": "形式",
+                              "description": "缩放、翻转等改变元素形态的动态视觉效果",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15914,
+                              "element_count": 1,
+                              "elements": [
+                                {
+                                  "name": "动态生长",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "64603799"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 1,
+                              "children": [],
+                              "total_posts_count": 0
+                            },
+                            {
+                              "name": "旋转效果",
+                              "path": "/呈现/视觉/影像制作/后期处理/动态特效/运动变换/旋转效果",
+                              "id": 15684,
+                              "source_stable_id": 1534,
+                              "source_type": "形式",
+                              "description": "围绕轴心进行旋转运动的动态视觉效果",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15914,
+                              "element_count": 6,
+                              "elements": [
+                                {
+                                  "name": "动态旋转",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "65196789"
+                                  ]
+                                },
+                                {
+                                  "name": "万花筒式",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "46193165",
+                                    "64820485"
+                                  ]
+                                },
+                                {
+                                  "name": "高频旋转",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "47537727"
+                                  ]
+                                },
+                                {
+                                  "name": "旋转",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "65450821"
+                                  ]
+                                },
+                                {
+                                  "name": "3D旋转",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "65407794"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 6,
+                              "children": [],
+                              "total_posts_count": 0
+                            },
+                            {
+                              "name": "通用动效",
+                              "path": "/呈现/视觉/影像制作/后期处理/动态特效/运动变换/通用动效",
+                              "id": 15687,
+                              "source_stable_id": 1537,
+                              "source_type": "形式",
+                              "description": "泛化的动态效果描述,不限定具体运动形式",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15914,
+                              "element_count": 9,
+                              "elements": [
+                                {
+                                  "name": "3D动态",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "65233075"
+                                  ]
+                                },
+                                {
+                                  "name": "动态特效",
+                                  "count": 4,
+                                  "post_ids": [
+                                    "63146000",
+                                    "64820485",
+                                    "65084923",
+                                    "65203608"
+                                  ]
+                                },
+                                {
+                                  "name": "动态循环",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "65067062"
+                                  ]
+                                },
+                                {
+                                  "name": "动画",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "47537727"
+                                  ]
+                                },
+                                {
+                                  "name": "动效",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "60527248"
+                                  ]
+                                },
+                                {
+                                  "name": "视觉特效",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "59323915"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 9,
+                              "children": [],
+                              "total_posts_count": 0
+                            }
+                          ],
+                          "total_posts_count": 0
+                        }
+                      ],
+                      "total_posts_count": 0
+                    },
+                    {
+                      "name": "图像合成",
+                      "path": "/呈现/视觉/影像制作/后期处理/图像合成",
+                      "id": 15977,
+                      "source_stable_id": 1063,
+                      "source_type": "形式",
+                      "description": "通过后期将不同视觉元素融合变形的图像处理",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15911,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 37,
+                      "children": [
+                        {
+                          "name": "图像合成",
+                          "path": "/呈现/视觉/影像制作/后期处理/图像合成/图像合成",
+                          "id": 15898,
+                          "source_stable_id": 343,
+                          "source_type": "形式",
+                          "description": "通过后期处理将不同视觉元素融合、变形或合成的图像处理",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15977,
+                          "element_count": 0,
+                          "elements": [],
+                          "total_element_count": 37,
+                          "children": [
+                            {
+                              "name": "AI生成合成",
+                              "path": "/呈现/视觉/影像制作/后期处理/图像合成/图像合成/AI生成合成",
+                              "id": 15656,
+                              "source_stable_id": 1497,
+                              "source_type": "形式",
+                              "description": "利用人工智能技术进行图像生成和合成的处理方式",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15898,
+                              "element_count": 5,
+                              "elements": [
+                                {
+                                  "name": "创意合成",
+                                  "count": 3,
+                                  "post_ids": [
+                                    "67b2a7f7000000002802a0d7",
+                                    "67d7a294000000001c03eef9"
+                                  ]
+                                },
+                                {
+                                  "name": "AI",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "56380736"
+                                  ]
+                                },
+                                {
+                                  "name": "合成",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "64650216"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 5,
+                              "children": [],
+                              "total_posts_count": 2
+                            },
+                            {
+                              "name": "三维建模合成",
+                              "path": "/呈现/视觉/影像制作/后期处理/图像合成/图像合成/三维建模合成",
+                              "id": 15657,
+                              "source_stable_id": 1498,
+                              "source_type": "形式",
+                              "description": "通过3D建模技术创建虚拟对象并与实景结合的合成方式",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15898,
+                              "element_count": 6,
+                              "elements": [
+                                {
+                                  "name": "3D立体建模",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "65233075"
+                                  ]
+                                },
+                                {
+                                  "name": "3D建模",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "64246342"
+                                  ]
+                                },
+                                {
+                                  "name": "3D立体",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "47567298"
+                                  ]
+                                },
+                                {
+                                  "name": "3D立体旋转",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "47537727"
+                                  ]
+                                },
+                                {
+                                  "name": "建模",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "47537727"
+                                  ]
+                                },
+                                {
+                                  "name": "3D视觉特效",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "65407794"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 6,
+                              "children": [],
+                              "total_posts_count": 0
+                            },
+                            {
+                              "name": "图层叠加",
+                              "path": "/呈现/视觉/影像制作/后期处理/图像合成/图像合成/图层叠加",
+                              "id": 15660,
+                              "source_stable_id": 1501,
+                              "source_type": "形式",
+                              "description": "通过多个图层的重叠和叠加实现视觉效果的合成方式",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15898,
+                              "element_count": 1,
+                              "elements": [
+                                {
+                                  "name": "视觉堆叠",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "64851907"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 1,
+                              "children": [],
+                              "total_posts_count": 0
+                            },
+                            {
+                              "name": "抠图处理",
+                              "path": "/呈现/视觉/影像制作/后期处理/图像合成/图像合成/抠图处理",
+                              "id": 15659,
+                              "source_stable_id": 1500,
+                              "source_type": "形式",
+                              "description": "将主体从原始背景中分离并进行后期处理的技术",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15898,
+                              "element_count": 15,
+                              "elements": [
+                                {
+                                  "name": "P图手法",
+                                  "count": 6,
+                                  "post_ids": [
+                                    "677b5460000000000b00d33e",
+                                    "67862d98000000001a01f443",
+                                    "67b2a7f7000000002802a0d7",
+                                    "67d7a294000000001c03eef9",
+                                    "6810596c000000002301d1a6",
+                                    "685e7903000000000b02c13e"
+                                  ]
+                                },
+                                {
+                                  "name": "P图",
+                                  "count": 3,
+                                  "post_ids": [
+                                    "6803185a000000000b01ef09",
+                                    "6881d560000000001703076c",
+                                    "690d977d0000000007036331"
+                                  ]
+                                },
+                                {
+                                  "name": "抠图处理",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "66c5b638000000001d018e5a",
+                                    "6746fb5600000000070260ce"
+                                  ]
+                                },
+                                {
+                                  "name": "白底抠图",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "67244ea7000000001b012d18",
+                                    "67284f9c000000001901875a"
+                                  ]
+                                },
+                                {
+                                  "name": "抠图",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "6874c80e000000000d027767",
+                                    "68d76cd100000000120165e4"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 15,
+                              "children": [],
+                              "total_posts_count": 15
+                            },
+                            {
+                              "name": "拼贴融合",
+                              "path": "/呈现/视觉/影像制作/后期处理/图像合成/图像合成/拼贴融合",
+                              "id": 15658,
+                              "source_stable_id": 1499,
+                              "source_type": "形式",
+                              "description": "将不同来源的视觉元素通过拼贴和融合技术组合在一起",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15898,
+                              "element_count": 6,
+                              "elements": [
+                                {
+                                  "name": "融合",
+                                  "count": 3,
+                                  "post_ids": [
+                                    "696b5332000000002103c497",
+                                    "6975b32c000000002102bc55",
+                                    "6975b361000000002202d7e8"
+                                  ]
+                                },
+                                {
+                                  "name": "拼合式",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "66daeddb000000002603ea42"
+                                  ]
+                                },
+                                {
+                                  "name": "拼贴呈现",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "696f2f97000000000e00e33c"
+                                  ]
+                                },
+                                {
+                                  "name": "拼贴",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "691d3112000000001e036559"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 6,
+                              "children": [],
+                              "total_posts_count": 6
+                            },
+                            {
+                              "name": "风格化处理",
+                              "path": "/呈现/视觉/影像制作/后期处理/图像合成/图像合成/风格化处理",
+                              "id": 15661,
+                              "source_stable_id": 1502,
+                              "source_type": "形式",
+                              "description": "对图像进行风格化转换和艺术化处理的合成技术",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15898,
+                              "element_count": 4,
+                              "elements": [
+                                {
+                                  "name": "几何化/色块化处理",
+                                  "count": 4,
+                                  "post_ids": [
+                                    "6964be3900000000210282a4",
+                                    "6964beb3000000002103361a",
+                                    "6964bee80000000022039e8c"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 4,
+                              "children": [],
+                              "total_posts_count": 3
+                            }
+                          ],
+                          "total_posts_count": 24
+                        }
+                      ],
+                      "total_posts_count": 24
+                    },
+                    {
+                      "name": "画质优化",
+                      "path": "/呈现/视觉/影像制作/后期处理/画质优化",
+                      "id": 15884,
+                      "source_stable_id": 1062,
+                      "source_type": "形式",
+                      "description": "提升画面清晰度、质感与视觉效果的技术处理",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15911,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 88,
+                      "children": [
+                        {
+                          "name": "光影质感",
+                          "path": "/呈现/视觉/影像制作/后期处理/画质优化/光影质感",
+                          "id": 15897,
+                          "source_stable_id": 333,
+                          "source_type": "形式",
+                          "description": "光影明暗、画面纹理与质感等视觉处理效果",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15884,
+                          "element_count": 0,
+                          "elements": [],
+                          "total_element_count": 66,
+                          "children": [
+                            {
+                              "name": "光影表现",
+                              "path": "/呈现/视觉/影像制作/后期处理/画质优化/光影质感/光影表现",
+                              "id": 15936,
+                              "source_stable_id": 1448,
+                              "source_type": "形式",
+                              "description": "光线与阴影的视觉呈现效果,包括明暗对比、光源特征和整体氛围",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15897,
+                              "element_count": 0,
+                              "elements": [],
+                              "total_element_count": 43,
+                              "children": [
+                                {
+                                  "name": "光源特征",
+                                  "path": "/呈现/视觉/影像制作/后期处理/画质优化/光影质感/光影表现/光源特征",
+                                  "id": 15624,
+                                  "source_stable_id": 1452,
+                                  "source_type": "形式",
+                                  "description": "光线的来源、方向、传播和散射等特征表现",
+                                  "category_nature": "领域",
+                                  "level": 8,
+                                  "parent_id": 15936,
+                                  "element_count": 19,
+                                  "elements": [
+                                    {
+                                      "name": "舞台光影",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "3a8712377c1ad3ad44d0f0271e28532d"
+                                      ]
+                                    },
+                                    {
+                                      "name": "逆光",
+                                      "count": 5,
+                                      "post_ids": [
+                                        "6973742d000000002801e8aa",
+                                        "69770dc6000000001a02efe9",
+                                        "6978db47000000001a0293e7",
+                                        "697a20e9000000001a033338",
+                                        "697b64c5000000001a021517"
+                                      ]
+                                    },
+                                    {
+                                      "name": "波光粼粼",
+                                      "count": 3,
+                                      "post_ids": [
+                                        "6973742d000000002801e8aa",
+                                        "697638e8000000001a025711",
+                                        "69770dc6000000001a02efe9"
+                                      ]
+                                    },
+                                    {
+                                      "name": "电影感光影",
+                                      "count": 6,
+                                      "post_ids": [
+                                        "68426c88000000002002b334",
+                                        "6848e2340000000021009f3a",
+                                        "6850c82a000000002100f096",
+                                        "6858eb52000000001203044b",
+                                        "685f514f000000001703339d",
+                                        "687ee6fc000000001c032bb1"
+                                      ]
+                                    },
+                                    {
+                                      "name": "柔和光影",
+                                      "count": 2,
+                                      "post_ids": [
+                                        "685b68c300000000150226bd",
+                                        "6865ec61000000000b02c53b"
+                                      ]
+                                    },
+                                    {
+                                      "name": "散射",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "696b537f00000000220398ad"
+                                      ]
+                                    },
+                                    {
+                                      "name": "光影特效",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "65027290"
+                                      ]
+                                    }
+                                  ],
+                                  "total_element_count": 19,
+                                  "children": [],
+                                  "total_posts_count": 15
+                                },
+                                {
+                                  "name": "明暗对比",
+                                  "path": "/呈现/视觉/影像制作/后期处理/画质优化/光影质感/光影表现/明暗对比",
+                                  "id": 15623,
+                                  "source_stable_id": 1451,
+                                  "source_type": "形式",
+                                  "description": "画面中明暗关系的强弱对比和反差表现",
+                                  "category_nature": "领域",
+                                  "level": 8,
+                                  "parent_id": 15936,
+                                  "element_count": 18,
+                                  "elements": [
+                                    {
+                                      "name": "高反差",
+                                      "count": 2,
+                                      "post_ids": [
+                                        "3a8712377c1ad3ad44d0f0271e28532d",
+                                        "68946e0d000000002500ef6e"
+                                      ]
+                                    },
+                                    {
+                                      "name": "明暗对比",
+                                      "count": 8,
+                                      "post_ids": [
+                                        "692a535f0000000019026d5b",
+                                        "692cc7ab000000001b030110",
+                                        "693f94d80000000019025898",
+                                        "6964bc98000000002202c86f",
+                                        "6964beb3000000002103361a",
+                                        "696b528900000000210333ea",
+                                        "696b52dd000000002202c60a",
+                                        "69706aa0000000002202d723"
+                                      ]
+                                    },
+                                    {
+                                      "name": "剪影",
+                                      "count": 7,
+                                      "post_ids": [
+                                        "696078f70000000022038479",
+                                        "6964bc98000000002202c86f",
+                                        "696b528900000000210333ea",
+                                        "696b52dd000000002202c60a",
+                                        "696b537f00000000220398ad",
+                                        "69706a0600000000210282bd",
+                                        "6975b3c50000000022020356"
+                                      ]
+                                    },
+                                    {
+                                      "name": "硬边光影",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "6968ef250000000021033c7c"
+                                      ]
+                                    }
+                                  ],
+                                  "total_element_count": 18,
+                                  "children": [],
+                                  "total_posts_count": 14
+                                },
+                                {
+                                  "name": "氛围营造",
+                                  "path": "/呈现/视觉/影像制作/后期处理/画质优化/光影质感/光影表现/氛围营造",
+                                  "id": 15625,
+                                  "source_stable_id": 1453,
+                                  "source_type": "形式",
+                                  "description": "通过光影营造的整体视觉氛围和艺术感受",
+                                  "category_nature": "领域",
+                                  "level": 8,
+                                  "parent_id": 15936,
+                                  "element_count": 6,
+                                  "elements": [
+                                    {
+                                      "name": "光影氛围",
+                                      "count": 3,
+                                      "post_ids": [
+                                        "681c64ce000000002200554c",
+                                        "6843ab3f000000002202508e",
+                                        "684e2d44000000002100cca7"
+                                      ]
+                                    },
+                                    {
+                                      "name": "光影",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "682a8f11000000002002a511"
+                                      ]
+                                    },
+                                    {
+                                      "name": "处理",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "6968ef250000000021033c7c"
+                                      ]
+                                    },
+                                    {
+                                      "name": "光影艺术感",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "665971bb000000001303d005"
+                                      ]
+                                    }
+                                  ],
+                                  "total_element_count": 6,
+                                  "children": [],
+                                  "total_posts_count": 6
+                                }
+                              ],
+                              "total_posts_count": 33
+                            },
+                            {
+                              "name": "后期技法",
+                              "path": "/呈现/视觉/影像制作/后期处理/画质优化/光影质感/后期技法",
+                              "id": 15622,
+                              "source_stable_id": 1450,
+                              "source_type": "形式",
+                              "description": "后期制作中使用的技术手段和处理方法",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15897,
+                              "element_count": 3,
+                              "elements": [
+                                {
+                                  "name": "发光",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "6970693f000000002102bec2",
+                                    "6975b32c000000002102bc55"
+                                  ]
+                                },
+                                {
+                                  "name": "多层",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "65203608"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 3,
+                              "children": [],
+                              "total_posts_count": 2
+                            },
+                            {
+                              "name": "材质纹理",
+                              "path": "/呈现/视觉/影像制作/后期处理/画质优化/光影质感/材质纹理",
+                              "id": 15621,
+                              "source_stable_id": 1449,
+                              "source_type": "形式",
+                              "description": "物体表面的质感、纹理和触觉特征的视觉呈现",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15897,
+                              "element_count": 20,
+                              "elements": [
+                                {
+                                  "name": "毛绒质感",
+                                  "count": 7,
+                                  "post_ids": [
+                                    "64029781",
+                                    "6960924b000000001a037a1c",
+                                    "6964573a000000000d00800e",
+                                    "6964ab0e000000001a035c04",
+                                    "696d7ac4000000000e03e459",
+                                    "696ede36000000001a028e03",
+                                    "697569b0000000001a02448c"
+                                  ]
+                                },
+                                {
+                                  "name": "肌理对比",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "681c64ce000000002200554c",
+                                    "68843a4d000000001c037591"
+                                  ]
+                                },
+                                {
+                                  "name": "颗粒质感",
+                                  "count": 8,
+                                  "post_ids": [
+                                    "696078f70000000022038479",
+                                    "696079a10000000022031521",
+                                    "696b528900000000210333ea",
+                                    "696b52dd000000002202c60a",
+                                    "6970693f000000002102bec2",
+                                    "697069b7000000002202d264",
+                                    "69706a0600000000210282bd"
+                                  ]
+                                },
+                                {
+                                  "name": "3D质感",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "64246342",
+                                    "65298913"
+                                  ]
+                                },
+                                {
+                                  "name": "金属质感",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "47537727"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 20,
+                              "children": [],
+                              "total_posts_count": 15
+                            }
+                          ],
+                          "total_posts_count": 44
+                        },
+                        {
+                          "name": "后期加工",
+                          "path": "/呈现/视觉/影像制作/后期处理/画质优化/后期加工",
+                          "id": 15381,
+                          "source_stable_id": 367,
+                          "source_type": "形式",
+                          "description": "对画面进行滤镜、生成等后期技术处理",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15884,
+                          "element_count": 22,
+                          "elements": [
+                            {
+                              "name": "P图特效",
+                              "count": 1,
+                              "post_ids": [
+                                "682ede8f000000002202bff2"
+                              ]
+                            },
+                            {
+                              "name": "烟雾特效",
+                              "count": 1,
+                              "post_ids": [
+                                "68077d02000000001c02dd81"
+                              ]
+                            },
+                            {
+                              "name": "后期涂鸦",
+                              "count": 2,
+                              "post_ids": [
+                                "67e68c9d00000000060282fb",
+                                "683d8695000000001200012a"
+                              ]
+                            },
+                            {
+                              "name": "动感模糊",
+                              "count": 1,
+                              "post_ids": [
+                                "68d610800000000012023282"
+                              ]
+                            },
+                            {
+                              "name": "特效",
+                              "count": 12,
+                              "post_ids": [
+                                "47951584",
+                                "58896244",
+                                "60527248",
+                                "64162740",
+                                "64603799",
+                                "65027290",
+                                "65098787",
+                                "65233075",
+                                "65489167",
+                                "65529862",
+                                "65604986",
+                                "68d610800000000012023282"
+                              ]
+                            },
+                            {
+                              "name": "处理",
+                              "count": 1,
+                              "post_ids": [
+                                "64246342"
+                              ]
+                            },
+                            {
+                              "name": "AI生成",
+                              "count": 3,
+                              "post_ids": [
+                                "56380736",
+                                "63253503",
+                                "64816949"
+                              ]
+                            },
+                            {
+                              "name": "色彩滤镜",
+                              "count": 1,
+                              "post_ids": [
+                                "57373464"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 22,
+                          "children": [],
+                          "total_posts_count": 5
+                        }
+                      ],
+                      "total_posts_count": 49
+                    }
+                  ],
+                  "total_posts_count": 71
+                },
+                {
+                  "name": "实景拍摄",
+                  "path": "/呈现/视觉/影像制作/实景拍摄",
+                  "id": 15908,
+                  "source_stable_id": 1058,
+                  "source_type": "形式",
+                  "description": "以真实场景、人物、物品为对象的实拍取材",
+                  "category_nature": "维度",
+                  "level": 4,
+                  "parent_id": 15981,
+                  "element_count": 0,
+                  "elements": [],
+                  "total_element_count": 85,
+                  "children": [
+                    {
+                      "name": "场景人物",
+                      "path": "/呈现/视觉/影像制作/实景拍摄/场景人物",
+                      "id": 15891,
+                      "source_stable_id": 1073,
+                      "source_type": "形式",
+                      "description": "对真实环境场景与人物活动的拍摄记录",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15908,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 40,
+                      "children": [
+                        {
+                          "name": "场景取景",
+                          "path": "/呈现/视觉/影像制作/实景拍摄/场景人物/场景取景",
+                          "id": 15416,
+                          "source_stable_id": 431,
+                          "source_type": "形式",
+                          "description": "以真实地理环境或生活场景为对象的实景取材与场景记录",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15891,
+                          "element_count": 8,
+                          "elements": [
+                            {
+                              "name": "打包",
+                              "count": 1,
+                              "post_ids": [
+                                "67bee0df000000002802acd1"
+                              ]
+                            },
+                            {
+                              "name": "滑梯摆拍",
+                              "count": 1,
+                              "post_ids": [
+                                "677b5460000000000b00d33e"
+                              ]
+                            },
+                            {
+                              "name": "散养式",
+                              "count": 3,
+                              "post_ids": [
+                                "68a4107f000000001c00e8e9",
+                                "68a8241a000000001c011403",
+                                "68f1af7c0000000005003459"
+                              ]
+                            },
+                            {
+                              "name": "环境",
+                              "count": 2,
+                              "post_ids": [
+                                "68abe632000000001c0348c0",
+                                "68bf8639000000001c03efd2"
+                              ]
+                            },
+                            {
+                              "name": "实景",
+                              "count": 1,
+                              "post_ids": [
+                                "21006075"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 8,
+                          "children": [],
+                          "total_posts_count": 7
+                        },
+                        {
+                          "name": "实物呈现",
+                          "path": "/呈现/视觉/影像制作/实景拍摄/场景人物/实物呈现",
+                          "id": 15420,
+                          "source_stable_id": 432,
+                          "source_type": "形式",
+                          "description": "以真实物品为对象的展示、陈列与还原式拍摄呈现",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15891,
+                          "element_count": 2,
+                          "elements": [
+                            {
+                              "name": "实物展示",
+                              "count": 1,
+                              "post_ids": [
+                                "685e7903000000000b02c13e"
+                              ]
+                            },
+                            {
+                              "name": "手持展示",
+                              "count": 1,
+                              "post_ids": [
+                                "6965ea53000000000e00f0f1"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 2,
+                          "children": [],
+                          "total_posts_count": 2
+                        },
+                        {
+                          "name": "环境取景",
+                          "path": "/呈现/视觉/影像制作/实景拍摄/场景人物/环境取景",
+                          "id": 15417,
+                          "source_stable_id": 355,
+                          "source_type": "形式",
+                          "description": "以特定场景环境作为拍摄背景的取景选择",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15891,
+                          "element_count": 26,
+                          "elements": [
+                            {
+                              "name": "多场景",
+                              "count": 3,
+                              "post_ids": [
+                                "685e7903000000000b02c13e",
+                                "6913cafd000000000703402b",
+                                "691a54bd000000000700be32"
+                              ]
+                            },
+                            {
+                              "name": "场景",
+                              "count": 11,
+                              "post_ids": [
+                                "56977187",
+                                "57442193",
+                                "64210278",
+                                "64450659",
+                                "64504122",
+                                "67b2a7f7000000002802a0d7",
+                                "67e243d0000000001d02495b",
+                                "68abe632000000001c0348c0",
+                                "6973742d000000002801e8aa",
+                                "697638e8000000001a025711",
+                                "69770dc6000000001a02efe9"
+                              ]
+                            },
+                            {
+                              "name": "湖畔场景",
+                              "count": 4,
+                              "post_ids": [
+                                "6973742d000000002801e8aa",
+                                "697638e8000000001a025711",
+                                "69770dc6000000001a02efe9"
+                              ]
+                            },
+                            {
+                              "name": "街头",
+                              "count": 2,
+                              "post_ids": [
+                                "69647323000000001a01ef60",
+                                "696f0da3000000001a029d29"
+                              ]
+                            },
+                            {
+                              "name": "互动场景",
+                              "count": 2,
+                              "post_ids": [
+                                "66f51b90000000002a036660",
+                                "6803185a000000000b01ef09"
+                              ]
+                            },
+                            {
+                              "name": "多元场景",
+                              "count": 1,
+                              "post_ids": [
+                                "6732cd8a000000001b02f948"
+                              ]
+                            },
+                            {
+                              "name": "巨型",
+                              "count": 3,
+                              "post_ids": [
+                                "65162446",
+                                "65600878",
+                                "65604986"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 26,
+                          "children": [],
+                          "total_posts_count": 14
+                        },
+                        {
+                          "name": "群像合影",
+                          "path": "/呈现/视觉/影像制作/实景拍摄/场景人物/群像合影",
+                          "id": 15418,
+                          "source_stable_id": 356,
+                          "source_type": "形式",
+                          "description": "多人集合的群像拍摄与合影呈现",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15891,
+                          "element_count": 2,
+                          "elements": [
+                            {
+                              "name": "合体场景",
+                              "count": 1,
+                              "post_ids": [
+                                "9c87381270abacce95e103b3a000e086"
+                              ]
+                            },
+                            {
+                              "name": "集体性",
+                              "count": 1,
+                              "post_ids": [
+                                "57373464"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 2,
+                          "children": [],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "集体演出",
+                          "path": "/呈现/视觉/影像制作/实景拍摄/场景人物/集体演出",
+                          "id": 15419,
+                          "source_stable_id": 357,
+                          "source_type": "形式",
+                          "description": "团体操、方阵等多人有组织的集体活动场景",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15891,
+                          "element_count": 2,
+                          "elements": [
+                            {
+                              "name": "多军种协同",
+                              "count": 1,
+                              "post_ids": [
+                                "d07f1c79dd4ef03b92592fa81d54755b"
+                              ]
+                            },
+                            {
+                              "name": "集体",
+                              "count": 1,
+                              "post_ids": [
+                                "59587187"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 2,
+                          "children": [],
+                          "total_posts_count": 0
+                        }
+                      ],
+                      "total_posts_count": 21
+                    },
+                    {
+                      "name": "拍摄方式",
+                      "path": "/呈现/视觉/影像制作/实景拍摄/拍摄方式",
+                      "id": 15892,
+                      "source_stable_id": 1074,
+                      "source_type": "形式",
+                      "description": "即时抓拍、预设拍摄等不同的拍摄执行方式",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15908,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 32,
+                      "children": [
+                        {
+                          "name": "即时捕捉",
+                          "path": "/呈现/视觉/影像制作/实景拍摄/拍摄方式/即时捕捉",
+                          "id": 15421,
+                          "source_stable_id": 433,
+                          "source_type": "形式",
+                          "description": "抓拍、随拍、动态捕捉等非预设的即时性拍摄手法",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15892,
+                          "element_count": 32,
+                          "elements": [
+                            {
+                              "name": "动态",
+                              "count": 19,
+                              "post_ids": [
+                                "46193165",
+                                "47567298",
+                                "59146568",
+                                "59323915",
+                                "60527248",
+                                "61822382",
+                                "64029781",
+                                "64203380",
+                                "64603799",
+                                "64886621",
+                                "65084923",
+                                "65133109",
+                                "65270425",
+                                "65407794",
+                                "65411458",
+                                "65602591",
+                                "65801945",
+                                "68077d02000000001c02dd81",
+                                "fa0633c278660309648633dea6294cb1"
+                              ]
+                            },
+                            {
+                              "name": "抓拍",
+                              "count": 7,
+                              "post_ids": [
+                                "3a8712377c1ad3ad44d0f0271e28532d",
+                                "6964d4bf000000001a031a54",
+                                "6965d491000000000e00f9b0",
+                                "6969068e000000000d008b48",
+                                "696b658e000000001a01d2ef",
+                                "6971878d000000001a01e6cc",
+                                "697638e8000000001a025711"
+                              ]
+                            },
+                            {
+                              "name": "动态瞬间",
+                              "count": 1,
+                              "post_ids": [
+                                "693f94d80000000019025898"
+                              ]
+                            },
+                            {
+                              "name": "定格",
+                              "count": 2,
+                              "post_ids": [
+                                "44556070",
+                                "693f94d80000000019025898"
+                              ]
+                            },
+                            {
+                              "name": "随拍风格",
+                              "count": 2,
+                              "post_ids": [
+                                "69003bb30000000004015797",
+                                "691acd15000000000402134e"
+                              ]
+                            },
+                            {
+                              "name": "反应类",
+                              "count": 1,
+                              "post_ids": [
+                                "65142392"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 32,
+                          "children": [],
+                          "total_posts_count": 10
+                        }
+                      ],
+                      "total_posts_count": 10
+                    },
+                    {
+                      "name": "拍摄概述",
+                      "path": "/呈现/视觉/影像制作/实景拍摄/拍摄概述",
+                      "id": 15415,
+                      "source_stable_id": 430,
+                      "source_type": "形式",
+                      "description": "实拍、拍摄、拍照等泛化的实景拍摄上位概念",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15908,
+                      "element_count": 13,
+                      "elements": [
+                        {
+                          "name": "拍照",
+                          "count": 2,
+                          "post_ids": [
+                            "682ede8f000000002202bff2",
+                            "685f974300000000120144db"
+                          ]
+                        },
+                        {
+                          "name": "照片",
+                          "count": 1,
+                          "post_ids": [
+                            "67b2a7f7000000002802a0d7"
+                          ]
+                        },
+                        {
+                          "name": "拍摄",
+                          "count": 1,
+                          "post_ids": [
+                            "675c19320000000002017d1f"
+                          ]
+                        },
+                        {
+                          "name": "实拍",
+                          "count": 2,
+                          "post_ids": [
+                            "67316440000000001b02e75e",
+                            "6776b27d0000000013018545"
+                          ]
+                        },
+                        {
+                          "name": "实景拍摄",
+                          "count": 7,
+                          "post_ids": [
+                            "6911532d000000000503bd18",
+                            "691d3112000000001e036559",
+                            "692d3b99000000001e022295",
+                            "692fa7e0000000001e039786",
+                            "693d0b1d000000001e02ba36",
+                            "69535514000000001e032b26",
+                            "69672e2d000000001a026263"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 13,
+                      "children": [],
+                      "total_posts_count": 13
+                    }
+                  ],
+                  "total_posts_count": 42
+                },
+                {
+                  "name": "素材运用",
+                  "path": "/呈现/视觉/影像制作/素材运用",
+                  "id": 15909,
+                  "source_stable_id": 1055,
+                  "source_type": "形式",
+                  "description": "对既有影像、图片等素材的选取与引用",
+                  "category_nature": "维度",
+                  "level": 4,
+                  "parent_id": 15981,
+                  "element_count": 0,
+                  "elements": [],
+                  "total_element_count": 15,
+                  "children": [
+                    {
+                      "name": "影视素材",
+                      "path": "/呈现/视觉/影像制作/素材运用/影视素材",
+                      "id": 15402,
+                      "source_stable_id": 195,
+                      "source_type": "形式",
+                      "description": "影视剧片段、演出片段等影视作品素材的截取与引用",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15909,
+                      "element_count": 10,
+                      "elements": [
+                        {
+                          "name": "影视化复刻",
+                          "count": 1,
+                          "post_ids": [
+                            "b6482cda993c100f39d6eccf65261a24"
+                          ]
+                        },
+                        {
+                          "name": "截图",
+                          "count": 1,
+                          "post_ids": [
+                            "675fec1f000000000800c6f4"
+                          ]
+                        },
+                        {
+                          "name": "影视梗图式",
+                          "count": 1,
+                          "post_ids": [
+                            "67284f9c000000001901875a"
+                          ]
+                        },
+                        {
+                          "name": "视频",
+                          "count": 6,
+                          "post_ids": [
+                            "46193165",
+                            "56603938",
+                            "63253503",
+                            "64400730",
+                            "65133109",
+                            "65203608"
+                          ]
+                        },
+                        {
+                          "name": "影像",
+                          "count": 1,
+                          "post_ids": [
+                            "63712731"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 10,
+                      "children": [],
+                      "total_posts_count": 2
+                    },
+                    {
+                      "name": "纪实影像",
+                      "path": "/呈现/视觉/影像制作/素材运用/纪实影像",
+                      "id": 15401,
+                      "source_stable_id": 194,
+                      "source_type": "形式",
+                      "description": "历史纪录片、纪实素材、历史还原等真实影像资料的运用",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15909,
+                      "element_count": 5,
+                      "elements": [
+                        {
+                          "name": "纪实影像",
+                          "count": 1,
+                          "post_ids": [
+                            "c84d14e15b8324b91df2cd8cb8304db9"
+                          ]
+                        },
+                        {
+                          "name": "历史影像",
+                          "count": 3,
+                          "post_ids": [
+                            "3a8712377c1ad3ad44d0f0271e28532d",
+                            "b485a7858fbfc4b74e805bfadf6fce90"
+                          ]
+                        },
+                        {
+                          "name": "纪实影像风格",
+                          "count": 1,
+                          "post_ids": [
+                            "59587187"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 5,
+                      "children": [],
+                      "total_posts_count": 0
+                    }
+                  ],
+                  "total_posts_count": 2
+                }
+              ],
+              "total_posts_count": 118
+            },
+            {
+              "name": "构图编排",
+              "path": "/呈现/视觉/构图编排",
+              "id": 15979,
+              "source_stable_id": 1150,
+              "source_type": "形式",
+              "description": "画面的空间组织与版面布局设计",
+              "category_nature": "内容",
+              "level": 3,
+              "parent_id": 15983,
+              "element_count": 0,
+              "elements": [],
+              "total_element_count": 616,
+              "children": [
+                {
+                  "name": "版面设计",
+                  "path": "/呈现/视觉/构图编排/版面设计",
+                  "id": 15906,
+                  "source_stable_id": 1053,
+                  "source_type": "形式",
+                  "description": "文字、图形在版面上的排版布局与视觉组织",
+                  "category_nature": "维度",
+                  "level": 4,
+                  "parent_id": 15979,
+                  "element_count": 0,
+                  "elements": [],
+                  "total_element_count": 388,
+                  "children": [
+                    {
+                      "name": "图文关系",
+                      "path": "/呈现/视觉/构图编排/版面设计/图文关系",
+                      "id": 15885,
+                      "source_stable_id": 1064,
+                      "source_type": "形式",
+                      "description": "图片与文字的空间编排与语义配合",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15906,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 77,
+                      "children": [
+                        {
+                          "name": "图文关联",
+                          "path": "/呈现/视觉/构图编排/版面设计/图文关系/图文关联",
+                          "id": 15386,
+                          "source_stable_id": 400,
+                          "source_type": "形式",
+                          "description": "图片与文字之间的语义呼应与配合关系",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15885,
+                          "element_count": 54,
+                          "elements": [
+                            {
+                              "name": "错位呈现",
+                              "count": 4,
+                              "post_ids": [
+                                "22bcaccb2262e8864af03c8323490832",
+                                "3de8289cfddb37a8b027d60dce4dfdb1",
+                                "b64188c6bcb0fb359d8e8075671584d6",
+                                "b9bc7d3c46583a41a76867f0ac7e62f1"
+                              ]
+                            },
+                            {
+                              "name": "图文背离",
+                              "count": 4,
+                              "post_ids": [
+                                "b64188c6bcb0fb359d8e8075671584d6",
+                                "b9bc7d3c46583a41a76867f0ac7e62f1",
+                                "d7dcfed942f432bd9c75ec4e2cd31b99",
+                                "ef63cef6ce5336e59ccb523e35f355dd"
+                              ]
+                            },
+                            {
+                              "name": "信息错位",
+                              "count": 1,
+                              "post_ids": [
+                                "f97823103ca8ad6cd69037958d17ae32"
+                              ]
+                            },
+                            {
+                              "name": "图文信息错位",
+                              "count": 1,
+                              "post_ids": [
+                                "f97823103ca8ad6cd69037958d17ae32"
+                              ]
+                            },
+                            {
+                              "name": "图文错位",
+                              "count": 4,
+                              "post_ids": [
+                                "03c54bcf569a9f957f3879f5e87cbb19",
+                                "accf5d531aaa9ef7b9e6fee360944151",
+                                "d7a04d4550a7c852ac4a16301e600aa5",
+                                "d7dcfed942f432bd9c75ec4e2cd31b99"
+                              ]
+                            },
+                            {
+                              "name": "视觉错位",
+                              "count": 1,
+                              "post_ids": [
+                                "accf5d531aaa9ef7b9e6fee360944151"
+                              ]
+                            },
+                            {
+                              "name": "图文",
+                              "count": 5,
+                              "post_ids": [
+                                "22bcaccb2262e8864af03c8323490832",
+                                "3de8289cfddb37a8b027d60dce4dfdb1",
+                                "6727171b000000001b01114b",
+                                "675c0669000000000600cfd7",
+                                "676f8eac000000000902f53e"
+                              ]
+                            },
+                            {
+                              "name": "文不对图",
+                              "count": 1,
+                              "post_ids": [
+                                "da753fb9dc1fc7f09ef8e5e7c014ada3"
+                              ]
+                            },
+                            {
+                              "name": "配图错位",
+                              "count": 1,
+                              "post_ids": [
+                                "c8fa9b4d1526d3345bcb15c7d196b79d"
+                              ]
+                            },
+                            {
+                              "name": "错位式配图",
+                              "count": 1,
+                              "post_ids": [
+                                "c8fa9b4d1526d3345bcb15c7d196b79d"
+                              ]
+                            },
+                            {
+                              "name": "素材错位",
+                              "count": 1,
+                              "post_ids": [
+                                "d7dcfed942f432bd9c75ec4e2cd31b99"
+                              ]
+                            },
+                            {
+                              "name": "逻辑错位",
+                              "count": 1,
+                              "post_ids": [
+                                "b76365fa6008e98aea8b6876bcc4e3d0"
+                              ]
+                            },
+                            {
+                              "name": "错位配图",
+                              "count": 1,
+                              "post_ids": [
+                                "b76365fa6008e98aea8b6876bcc4e3d0"
+                              ]
+                            },
+                            {
+                              "name": "图文高度契合",
+                              "count": 7,
+                              "post_ids": [
+                                "6961b301000000001a02f6af",
+                                "6966f1df000000001a032514",
+                                "69685275000000000e03c790",
+                                "69698d0c000000001a036078",
+                                "696ad820000000001a022994",
+                                "696ede36000000001a028e03",
+                                "697318f2000000001a01fd50"
+                              ]
+                            },
+                            {
+                              "name": "图文互动",
+                              "count": 1,
+                              "post_ids": [
+                                "6819f25e000000002301cca5"
+                              ]
+                            },
+                            {
+                              "name": "图片文字",
+                              "count": 19,
+                              "post_ids": [
+                                "65febd8e0000000012035538",
+                                "6602bd07000000001203348c",
+                                "661b9936000000001b012aa5",
+                                "662ce86d0000000003023f0a",
+                                "6634a322000000001e01bcd5",
+                                "664c38f0000000001303c21f",
+                                "6687d458000000000a026f91",
+                                "66ee55d200000000270066a8",
+                                "671f7fab000000003c01fffc",
+                                "67389194000000001d038599",
+                                "675fcd19000000000103d470",
+                                "67c17568000000000603b420",
+                                "68383eb1000000000303e7ef",
+                                "6867d9af000000001203f084",
+                                "6879f0f90000000013012f9a",
+                                "68909e20000000000403fa4e",
+                                "68c14b36000000001d02b44e",
+                                "68c909c3000000001302ad69",
+                                "68fb6a5c000000000302e5de"
+                              ]
+                            },
+                            {
+                              "name": "文字说明",
+                              "count": 1,
+                              "post_ids": [
+                                "67206035000000001b02f4b1"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 54,
+                          "children": [],
+                          "total_posts_count": 31
+                        },
+                        {
+                          "name": "图文编排",
+                          "path": "/呈现/视觉/构图编排/版面设计/图文关系/图文编排",
+                          "id": 15385,
+                          "source_stable_id": 399,
+                          "source_type": "形式",
+                          "description": "图片与文字在版面上的空间组织与布局方式",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15885,
+                          "element_count": 23,
+                          "elements": [
+                            {
+                              "name": "柯文哲配图",
+                              "count": 1,
+                              "post_ids": [
+                                "f97823103ca8ad6cd69037958d17ae32"
+                              ]
+                            },
+                            {
+                              "name": "配图",
+                              "count": 3,
+                              "post_ids": [
+                                "22bcaccb2262e8864af03c8323490832",
+                                "d7a04d4550a7c852ac4a16301e600aa5",
+                                "da753fb9dc1fc7f09ef8e5e7c014ada3"
+                              ]
+                            },
+                            {
+                              "name": "图文内容",
+                              "count": 1,
+                              "post_ids": [
+                                "3de8289cfddb37a8b027d60dce4dfdb1"
+                              ]
+                            },
+                            {
+                              "name": "形象配图",
+                              "count": 1,
+                              "post_ids": [
+                                "03c54bcf569a9f957f3879f5e87cbb19"
+                              ]
+                            },
+                            {
+                              "name": "图文排版",
+                              "count": 1,
+                              "post_ids": [
+                                "67adb23f000000002a00c240"
+                              ]
+                            },
+                            {
+                              "name": "图文解说",
+                              "count": 9,
+                              "post_ids": [
+                                "6666b3a10000000015008834",
+                                "672ed3b6000000003c017f82",
+                                "6752d19b000000000202b816",
+                                "6781e8640000000001001d18",
+                                "67aea9de000000001800d129",
+                                "67ee4e29000000001200f3c2",
+                                "68070ccb000000000f039a1b",
+                                "68286f560000000012006015",
+                                "6881d560000000001703076c"
+                              ]
+                            },
+                            {
+                              "name": "结构化摘要",
+                              "count": 3,
+                              "post_ids": [
+                                "6735b1a0000000001b0137f5",
+                                "67e27e6e000000000b017c96",
+                                "692fe421000000001f00691a"
+                              ]
+                            },
+                            {
+                              "name": "肖像排版",
+                              "count": 4,
+                              "post_ids": [
+                                "68b10b46000000001c00ca6c",
+                                "68c15181000000001b01c358",
+                                "69297dde000000001f006b90",
+                                "69297e47000000001e028ec3"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 23,
+                          "children": [],
+                          "total_posts_count": 17
+                        }
+                      ],
+                      "total_posts_count": 48
+                    },
+                    {
+                      "name": "字体标题",
+                      "path": "/呈现/视觉/构图编排/版面设计/字体标题",
+                      "id": 15899,
+                      "source_stable_id": 335,
+                      "source_type": "形式",
+                      "description": "标题文字、字体样式与醒目文字排版设计",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15906,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 101,
+                      "children": [
+                        {
+                          "name": "基础文字",
+                          "path": "/呈现/视觉/构图编排/版面设计/字体标题/基础文字",
+                          "id": 15574,
+                          "source_stable_id": 1376,
+                          "source_type": "形式",
+                          "description": "标题、文案、字幕等基础文字元素",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15899,
+                          "element_count": 35,
+                          "elements": [
+                            {
+                              "name": "文案",
+                              "count": 19,
+                              "post_ids": [
+                                "47951584",
+                                "55994947",
+                                "65eea166000000000d00c6d8",
+                                "6960924b000000001a037a1c",
+                                "6961b301000000001a02f6af",
+                                "6964573a000000000d00800e",
+                                "6964ab0e000000001a035c04",
+                                "6965adce000000001a02a701",
+                                "6966f1df000000001a032514",
+                                "69685275000000000e03c790",
+                                "69698d0c000000001a036078",
+                                "696ad820000000001a022994",
+                                "696c2b7b000000001a02b944",
+                                "696d7ac4000000000e03e459",
+                                "6970373f000000000e00f81d",
+                                "697171fd000000000d00bee8",
+                                "697318f2000000001a01fd50",
+                                "697569b0000000001a02448c",
+                                "69756d90000000001a020c81"
+                              ]
+                            },
+                            {
+                              "name": "标题",
+                              "count": 14,
+                              "post_ids": [
+                                "65f4359b00000000140079b5",
+                                "6649dbe3000000000c018112",
+                                "66519efa000000001500a2bb",
+                                "6666dd86000000001500b7ff",
+                                "66daeddb000000002603ea42",
+                                "6711d712000000001b012783",
+                                "676535f4000000000b00dfd1",
+                                "6794ca60000000001801ba29",
+                                "67e68c9d00000000060282fb",
+                                "680e2433000000000e004e91",
+                                "683d8695000000001200012a",
+                                "68f988f2000000000703ada5",
+                                "68fb6a5c000000000302e5de",
+                                "693d0b1d000000001e02ba36"
+                              ]
+                            },
+                            {
+                              "name": "字幕",
+                              "count": 2,
+                              "post_ids": [
+                                "64816949",
+                                "65142392"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 35,
+                          "children": [],
+                          "total_posts_count": 31
+                        },
+                        {
+                          "name": "字体装饰",
+                          "path": "/呈现/视觉/构图编排/版面设计/字体标题/字体装饰",
+                          "id": 15572,
+                          "source_stable_id": 1374,
+                          "source_type": "形式",
+                          "description": "艺术字、书法体、描边、花字等装饰性字体样式",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15899,
+                          "element_count": 10,
+                          "elements": [
+                            {
+                              "name": "花字",
+                              "count": 5,
+                              "post_ids": [
+                                "66619827000000000600486f",
+                                "6781eb19000000000b039867",
+                                "67e243d0000000001d02495b",
+                                "67e6398f000000001d005ebb",
+                                "685f974300000000120144db"
+                              ]
+                            },
+                            {
+                              "name": "手写体文案",
+                              "count": 1,
+                              "post_ids": [
+                                "69535514000000001e032b26"
+                              ]
+                            },
+                            {
+                              "name": "艺术字体",
+                              "count": 1,
+                              "post_ids": [
+                                "64851184"
+                              ]
+                            },
+                            {
+                              "name": "发光艺术字",
+                              "count": 1,
+                              "post_ids": [
+                                "59121599"
+                              ]
+                            },
+                            {
+                              "name": "艺术字",
+                              "count": 2,
+                              "post_ids": [
+                                "61822382"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 10,
+                          "children": [],
+                          "total_posts_count": 6
+                        },
+                        {
+                          "name": "排版风格",
+                          "path": "/呈现/视觉/构图编排/版面设计/字体标题/排版风格",
+                          "id": 15573,
+                          "source_stable_id": 1375,
+                          "source_type": "形式",
+                          "description": "大字报、醒目呈现等具有特定视觉风格的排版方式",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15899,
+                          "element_count": 12,
+                          "elements": [
+                            {
+                              "name": "标题排版",
+                              "count": 12,
+                              "post_ids": [
+                                "66c5b638000000001d018e5a",
+                                "67206035000000001b02f4b1",
+                                "67244ea7000000001b012d18",
+                                "6726109d000000001901b564",
+                                "6727171b000000001b01114b",
+                                "6729dd5300000000190183a8",
+                                "672de546000000001b02cfeb",
+                                "673f1462000000000703b270",
+                                "6776b27d0000000013018545",
+                                "6965ea53000000000e00f0f1",
+                                "69672e2d000000001a026263",
+                                "69756d90000000001a020c81"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 56,
+                          "children": [
+                            {
+                              "name": "大字报风格",
+                              "path": "/呈现/视觉/构图编排/版面设计/字体标题/排版风格/大字报风格",
+                              "id": 15927,
+                              "source_stable_id": 1377,
+                              "source_type": "形式",
+                              "description": "大字号、高对比度、醒目呈现的大字报式排版风格",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15573,
+                              "element_count": 0,
+                              "elements": [],
+                              "total_element_count": 44,
+                              "children": [
+                                {
+                                  "name": "字幕应用",
+                                  "path": "/呈现/视觉/构图编排/版面设计/字体标题/排版风格/大字报风格/字幕应用",
+                                  "id": 15619,
+                                  "source_stable_id": 1446,
+                                  "source_type": "形式",
+                                  "description": "大字报风格在字幕场景中的具体应用,包括大字幕、醒目字幕等",
+                                  "category_nature": "领域",
+                                  "level": 8,
+                                  "parent_id": 15927,
+                                  "element_count": 2,
+                                  "elements": [
+                                    {
+                                      "name": "大字报式字幕",
+                                      "count": 2,
+                                      "post_ids": [
+                                        "63972446",
+                                        "64139717"
+                                      ]
+                                    }
+                                  ],
+                                  "total_element_count": 2,
+                                  "children": [],
+                                  "total_posts_count": 0
+                                },
+                                {
+                                  "name": "通用版式",
+                                  "path": "/呈现/视觉/构图编排/版面设计/字体标题/排版风格/大字报风格/通用版式",
+                                  "id": 15618,
+                                  "source_stable_id": 1445,
+                                  "source_type": "形式",
+                                  "description": "大字报风格的通用排版形式描述,泛指大字号高对比度的整体版面风格",
+                                  "category_nature": "领域",
+                                  "level": 8,
+                                  "parent_id": 15927,
+                                  "element_count": 32,
+                                  "elements": [
+                                    {
+                                      "name": "大字报式",
+                                      "count": 18,
+                                      "post_ids": [
+                                        "46193165",
+                                        "55994947",
+                                        "56380736",
+                                        "65114702",
+                                        "65142392",
+                                        "66c5b638000000001d018e5a",
+                                        "67206035000000001b02f4b1",
+                                        "67244ea7000000001b012d18",
+                                        "6726109d000000001901b564",
+                                        "6727171b000000001b01114b",
+                                        "6729dd5300000000190183a8",
+                                        "672de546000000001b02cfeb",
+                                        "673f1462000000000703b270",
+                                        "6776b27d0000000013018545",
+                                        "677b5460000000000b00d33e",
+                                        "6965ea53000000000e00f0f1",
+                                        "69672e2d000000001a026263",
+                                        "69756d90000000001a020c81"
+                                      ]
+                                    },
+                                    {
+                                      "name": "大字报排版",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "692fe421000000001f00691a"
+                                      ]
+                                    },
+                                    {
+                                      "name": "大字报式排版",
+                                      "count": 12,
+                                      "post_ids": [
+                                        "68789450000000000b01d4a4",
+                                        "688366bd000000000d024147",
+                                        "68875186000000002501649d",
+                                        "68b69ea9000000001c035a4d",
+                                        "68d0089400000000120172a5",
+                                        "68e0f5750000000007015ff9",
+                                        "68e8cac8000000000700da88",
+                                        "68f0b8140000000007008b05",
+                                        "68f1b573000000000702052e",
+                                        "68fa029e0000000007022932",
+                                        "6901d072000000000703b6a3",
+                                        "690d977d0000000007036331"
+                                      ]
+                                    },
+                                    {
+                                      "name": "大字排版",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "65402572"
+                                      ]
+                                    }
+                                  ],
+                                  "total_element_count": 32,
+                                  "children": [],
+                                  "total_posts_count": 26
+                                },
+                                {
+                                  "name": "醒目字效",
+                                  "path": "/呈现/视觉/构图编排/版面设计/字体标题/排版风格/大字报风格/醒目字效",
+                                  "id": 15620,
+                                  "source_stable_id": 1447,
+                                  "source_type": "形式",
+                                  "description": "强调字号、颜色、描边等具体文字视觉效果处理手法",
+                                  "category_nature": "领域",
+                                  "level": 8,
+                                  "parent_id": 15927,
+                                  "element_count": 10,
+                                  "elements": [
+                                    {
+                                      "name": "黑体描边文字",
+                                      "count": 7,
+                                      "post_ids": [
+                                        "68737e97000000000d027b81",
+                                        "68a43a11000000001c03cc96",
+                                        "68c3933e000000001d00a902",
+                                        "68d76cd100000000120165e4",
+                                        "68ec9d6400000000070389be",
+                                        "68ef83150000000007035f42",
+                                        "68ff53770000000007000d54"
+                                      ]
+                                    },
+                                    {
+                                      "name": "大号",
+                                      "count": 2,
+                                      "post_ids": [
+                                        "64851184",
+                                        "65067062"
+                                      ]
+                                    },
+                                    {
+                                      "name": "大字号",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "64662179"
+                                      ]
+                                    }
+                                  ],
+                                  "total_element_count": 10,
+                                  "children": [],
+                                  "total_posts_count": 7
+                                }
+                              ],
+                              "total_posts_count": 33
+                            }
+                          ],
+                          "total_posts_count": 33
+                        }
+                      ],
+                      "total_posts_count": 69
+                    },
+                    {
+                      "name": "文字动效",
+                      "path": "/呈现/视觉/构图编排/版面设计/文字动效",
+                      "id": 15428,
+                      "source_stable_id": 1171,
+                      "source_type": "形式",
+                      "description": "文字在画面中以滚动、翻页、逐字变色等动态方式呈现的效果",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15906,
+                      "element_count": 13,
+                      "elements": [
+                        {
+                          "name": "动态翻页特效",
+                          "count": 1,
+                          "post_ids": [
+                            "65608649"
+                          ]
+                        },
+                        {
+                          "name": "滚动特效",
+                          "count": 3,
+                          "post_ids": [
+                            "58896244",
+                            "65196789",
+                            "65600878"
+                          ]
+                        },
+                        {
+                          "name": "动态文字",
+                          "count": 1,
+                          "post_ids": [
+                            "65139072"
+                          ]
+                        },
+                        {
+                          "name": "动态文字特效",
+                          "count": 1,
+                          "post_ids": [
+                            "65135957"
+                          ]
+                        },
+                        {
+                          "name": "滚动",
+                          "count": 2,
+                          "post_ids": [
+                            "65061667",
+                            "65091188"
+                          ]
+                        },
+                        {
+                          "name": "动态艺术字",
+                          "count": 1,
+                          "post_ids": [
+                            "65026165"
+                          ]
+                        },
+                        {
+                          "name": "文字动效",
+                          "count": 1,
+                          "post_ids": [
+                            "64820485"
+                          ]
+                        },
+                        {
+                          "name": "动态跳动",
+                          "count": 1,
+                          "post_ids": [
+                            "60570460"
+                          ]
+                        },
+                        {
+                          "name": "滚动式",
+                          "count": 1,
+                          "post_ids": [
+                            "65450821"
+                          ]
+                        },
+                        {
+                          "name": "动态排版",
+                          "count": 1,
+                          "post_ids": [
+                            "62675775"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 13,
+                      "children": [],
+                      "total_posts_count": 0
+                    },
+                    {
+                      "name": "标注图示",
+                      "path": "/呈现/视觉/构图编排/版面设计/标注图示",
+                      "id": 15886,
+                      "source_stable_id": 1065,
+                      "source_type": "形式",
+                      "description": "通过文字标注、图表等方式进行信息标识与说明",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15906,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 56,
+                      "children": [
+                        {
+                          "name": "图示说明",
+                          "path": "/呈现/视觉/构图编排/版面设计/标注图示/图示说明",
+                          "id": 15384,
+                          "source_stable_id": 396,
+                          "source_type": "形式",
+                          "description": "通过图表、示意图等图形化方式表达数据或解释原理",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15886,
+                          "element_count": 20,
+                          "elements": [
+                            {
+                              "name": "视觉化",
+                              "count": 2,
+                              "post_ids": [
+                                "59121599",
+                                "6810596c000000002301d1a6"
+                              ]
+                            },
+                            {
+                              "name": "动作图解",
+                              "count": 2,
+                              "post_ids": [
+                                "669b52720000000025003596",
+                                "672de546000000001b02cfeb"
+                              ]
+                            },
+                            {
+                              "name": "示意图",
+                              "count": 1,
+                              "post_ids": [
+                                "672de546000000001b02cfeb"
+                              ]
+                            },
+                            {
+                              "name": "数据图表",
+                              "count": 8,
+                              "post_ids": [
+                                "6732f52f000000001b013fdb",
+                                "6735b1a0000000001b0137f5",
+                                "67e27e6e000000000b017c96",
+                                "69048be90000000005033c79",
+                                "69200dec000000001f00b884",
+                                "692e7ccf000000001f00a137",
+                                "69394a0b000000001f006ce6",
+                                "694a6caf000000001f00e112"
+                              ]
+                            },
+                            {
+                              "name": "数据可视化",
+                              "count": 6,
+                              "post_ids": [
+                                "6735b1a0000000001b0137f5",
+                                "673d9a58000000000702450b",
+                                "67e224cc000000000602a6c5",
+                                "67e27e6e000000000b017c96",
+                                "68f9e8400000000005033268",
+                                "69048be90000000005033c79"
+                              ]
+                            },
+                            {
+                              "name": "图表",
+                              "count": 1,
+                              "post_ids": [
+                                "56603938"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 20,
+                          "children": [],
+                          "total_posts_count": 14
+                        },
+                        {
+                          "name": "标注叠加",
+                          "path": "/呈现/视觉/构图编排/版面设计/标注图示/标注叠加",
+                          "id": 15900,
+                          "source_stable_id": 395,
+                          "source_type": "形式",
+                          "description": "在画面上叠加文字、符号、标签进行标识和说明",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15886,
+                          "element_count": 0,
+                          "elements": [],
+                          "total_element_count": 36,
+                          "children": [
+                            {
+                              "name": "专用标注",
+                              "path": "/呈现/视觉/构图编排/版面设计/标注图示/标注叠加/专用标注",
+                              "id": 15578,
+                              "source_stable_id": 1381,
+                              "source_type": "形式",
+                              "description": "针对特定内容类型的标注(标签、数字、人物、对话、多语言等)",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15900,
+                              "element_count": 5,
+                              "elements": [
+                                {
+                                  "name": "对话框式",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "6666b3a10000000015008834"
+                                  ]
+                                },
+                                {
+                                  "name": "定量化标注",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "6726109d000000001901b564"
+                                  ]
+                                },
+                                {
+                                  "name": "人物标签",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "68ca25bc000000000e023656"
+                                  ]
+                                },
+                                {
+                                  "name": "数字标签",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "6965ea53000000000e00f0f1",
+                                    "69756d90000000001a020c81"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 5,
+                              "children": [],
+                              "total_posts_count": 5
+                            },
+                            {
+                              "name": "引导标注",
+                              "path": "/呈现/视觉/构图编排/版面设计/标注图示/标注叠加/引导标注",
+                              "id": 15576,
+                              "source_stable_id": 1379,
+                              "source_type": "形式",
+                              "description": "具有引导、号召、提示用户行动功能的标注",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15900,
+                              "element_count": 1,
+                              "elements": [
+                                {
+                                  "name": "引导性字幕",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "63253503"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 1,
+                              "children": [],
+                              "total_posts_count": 0
+                            },
+                            {
+                              "name": "文字标注",
+                              "path": "/呈现/视觉/构图编排/版面设计/标注图示/标注叠加/文字标注",
+                              "id": 15575,
+                              "source_stable_id": 1378,
+                              "source_type": "形式",
+                              "description": "基础的文字、字幕叠加,无特定功能倾向",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15900,
+                              "element_count": 6,
+                              "elements": [
+                                {
+                                  "name": "叠加",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "59146568",
+                                    "65233075"
+                                  ]
+                                },
+                                {
+                                  "name": "字幕叠加",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "65162446"
+                                  ]
+                                },
+                                {
+                                  "name": "标注",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "63146000"
+                                  ]
+                                },
+                                {
+                                  "name": "叠加式",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "64903753"
+                                  ]
+                                },
+                                {
+                                  "name": "视觉贴图",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "64975752"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 6,
+                              "children": [],
+                              "total_posts_count": 0
+                            },
+                            {
+                              "name": "说明标注",
+                              "path": "/呈现/视觉/构图编排/版面设计/标注图示/标注叠加/说明标注",
+                              "id": 15577,
+                              "source_stable_id": 1380,
+                              "source_type": "形式",
+                              "description": "用于解释、补充信息、科普教育的标注",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15900,
+                              "element_count": 24,
+                              "elements": [
+                                {
+                                  "name": "补充说明式",
+                                  "count": 19,
+                                  "post_ids": [
+                                    "65febd8e0000000012035538",
+                                    "6602bd07000000001203348c",
+                                    "661b9936000000001b012aa5",
+                                    "662ce86d0000000003023f0a",
+                                    "6634a322000000001e01bcd5",
+                                    "664c38f0000000001303c21f",
+                                    "6687d458000000000a026f91",
+                                    "66ee55d200000000270066a8",
+                                    "671f7fab000000003c01fffc",
+                                    "67389194000000001d038599",
+                                    "675fcd19000000000103d470",
+                                    "67c17568000000000603b420",
+                                    "68383eb1000000000303e7ef",
+                                    "6867d9af000000001203f084",
+                                    "6879f0f90000000013012f9a",
+                                    "68909e20000000000403fa4e",
+                                    "68c14b36000000001d02b44e",
+                                    "68c909c3000000001302ad69",
+                                    "68fb6a5c000000000302e5de"
+                                  ]
+                                },
+                                {
+                                  "name": "科普式标注",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "669b52720000000025003596"
+                                  ]
+                                },
+                                {
+                                  "name": "信息标注",
+                                  "count": 4,
+                                  "post_ids": [
+                                    "68a8241a000000001c011403",
+                                    "693a2428000000001e027639",
+                                    "69672e2d000000001a026263",
+                                    "696f2f97000000000e00e33c"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 24,
+                              "children": [],
+                              "total_posts_count": 24
+                            }
+                          ],
+                          "total_posts_count": 29
+                        }
+                      ],
+                      "total_posts_count": 42
+                    },
+                    {
+                      "name": "版面结构",
+                      "path": "/呈现/视觉/构图编排/版面设计/版面结构",
+                      "id": 15382,
+                      "source_stable_id": 334,
+                      "source_type": "形式",
+                      "description": "页面整体的版式骨架与空间分割方式",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15906,
+                      "element_count": 38,
+                      "elements": [
+                        {
+                          "name": "视觉排版",
+                          "count": 1,
+                          "post_ids": [
+                            "b64188c6bcb0fb359d8e8075671584d6"
+                          ]
+                        },
+                        {
+                          "name": "排版",
+                          "count": 34,
+                          "post_ids": [
+                            "63253503",
+                            "64851907",
+                            "64903753",
+                            "65027290",
+                            "65061667",
+                            "65084923",
+                            "65eea166000000000d00c6d8",
+                            "677b5460000000000b00d33e",
+                            "68789450000000000b01d4a4",
+                            "688366bd000000000d024147",
+                            "68875186000000002501649d",
+                            "68a8241a000000001c011403",
+                            "68b69ea9000000001c035a4d",
+                            "68ccd4e40000000012030372",
+                            "68d0089400000000120172a5",
+                            "68e0f5750000000007015ff9",
+                            "68e8cac8000000000700da88",
+                            "68f0b8140000000007008b05",
+                            "68f1af7c0000000005003459",
+                            "68f1b573000000000702052e",
+                            "68fa029e0000000007022932",
+                            "6901d072000000000703b6a3",
+                            "690333e70000000007022604",
+                            "690d977d0000000007036331",
+                            "6911177d0000000007031417",
+                            "69698d0c000000001a036078",
+                            "696ad820000000001a022994",
+                            "696d7ac4000000000e03e459",
+                            "696f2f97000000000e00e33c",
+                            "6970373f000000000e00f81d",
+                            "697171fd000000000d00bee8",
+                            "697318f2000000001a01fd50",
+                            "697569b0000000001a02448c",
+                            "d7dcfed942f432bd9c75ec4e2cd31b99"
+                          ]
+                        },
+                        {
+                          "name": "信息排版",
+                          "count": 1,
+                          "post_ids": [
+                            "68f9fb67000000000400736f"
+                          ]
+                        },
+                        {
+                          "name": "信息呈现",
+                          "count": 1,
+                          "post_ids": [
+                            "68f9e8400000000005033268"
+                          ]
+                        },
+                        {
+                          "name": "文字排版",
+                          "count": 1,
+                          "post_ids": [
+                            "65098787"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 131,
+                      "children": [
+                        {
+                          "name": "内容组织",
+                          "path": "/呈现/视觉/构图编排/版面设计/版面结构/内容组织",
+                          "id": 15606,
+                          "source_stable_id": 1430,
+                          "source_type": "形式",
+                          "description": "内容的排列组织与呈现方式",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15382,
+                          "element_count": 50,
+                          "elements": [
+                            {
+                              "name": "分点式",
+                              "count": 4,
+                              "post_ids": [
+                                "68e6ecb90000000003021e34",
+                                "69375a940000000019024af5",
+                                "693d0b1d000000001e02ba36",
+                                "6949df27000000001d03e0e9"
+                              ]
+                            },
+                            {
+                              "name": "结构化排版",
+                              "count": 5,
+                              "post_ids": [
+                                "669b52720000000025003596",
+                                "672de546000000001b02cfeb",
+                                "68e6ecb90000000003021e34",
+                                "69375a940000000019024af5",
+                                "6949df27000000001d03e0e9"
+                              ]
+                            },
+                            {
+                              "name": "单页单句",
+                              "count": 7,
+                              "post_ids": [
+                                "69698d0c000000001a036078",
+                                "696ad820000000001a022994",
+                                "696d7ac4000000000e03e459",
+                                "6970373f000000000e00f81d",
+                                "697171fd000000000d00bee8",
+                                "697318f2000000001a01fd50",
+                                "697569b0000000001a02448c"
+                              ]
+                            },
+                            {
+                              "name": "分镜式呈现",
+                              "count": 7,
+                              "post_ids": [
+                                "6711d712000000001b012783",
+                                "6752d19b000000000202b816",
+                                "6781e8640000000001001d18",
+                                "67aea9de000000001800d129",
+                                "67ee4e29000000001200f3c2",
+                                "68070ccb000000000f039a1b",
+                                "68286f560000000012006015"
+                              ]
+                            },
+                            {
+                              "name": "卡片式排版",
+                              "count": 15,
+                              "post_ids": [
+                                "669b52720000000025003596",
+                                "67206035000000001b02f4b1",
+                                "67244ea7000000001b012d18",
+                                "6726109d000000001901b564",
+                                "6727171b000000001b01114b",
+                                "67284f9c000000001901875a",
+                                "6729657b000000001b01149d",
+                                "6729dd5300000000190183a8",
+                                "672de546000000001b02cfeb",
+                                "673f1462000000000703b270",
+                                "6746fb5600000000070260ce",
+                                "675c0669000000000600cfd7",
+                                "676f8eac000000000902f53e",
+                                "678ce28d000000001603e3a8"
+                              ]
+                            },
+                            {
+                              "name": "矩阵",
+                              "count": 5,
+                              "post_ids": [
+                                "67299a19000000001901483f",
+                                "6731b884000000001901b8d3",
+                                "678ce28d000000001603e3a8",
+                                "6927e806000000001f007658",
+                                "69394a0b000000001f006ce6"
+                              ]
+                            },
+                            {
+                              "name": "矩阵式",
+                              "count": 4,
+                              "post_ids": [
+                                "68b10b46000000001c00ca6c",
+                                "68c15181000000001b01c358",
+                                "68ca25bc000000000e023656"
+                              ]
+                            },
+                            {
+                              "name": "多宫格拼图",
+                              "count": 3,
+                              "post_ids": [
+                                "68a8241a000000001c011403",
+                                "68f1af7c0000000005003459",
+                                "696f2f97000000000e00e33c"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 50,
+                          "children": [],
+                          "total_posts_count": 42
+                        },
+                        {
+                          "name": "空间分割",
+                          "path": "/呈现/视觉/构图编排/版面设计/版面结构/空间分割",
+                          "id": 15605,
+                          "source_stable_id": 1429,
+                          "source_type": "形式",
+                          "description": "画面的空间分割与区域划分方式",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15382,
+                          "element_count": 12,
+                          "elements": [
+                            {
+                              "name": "三段式",
+                              "count": 1,
+                              "post_ids": [
+                                "b9bc7d3c46583a41a76867f0ac7e62f1"
+                              ]
+                            },
+                            {
+                              "name": "上下分屏",
+                              "count": 10,
+                              "post_ids": [
+                                "6960924b000000001a037a1c",
+                                "6961b301000000001a02f6af",
+                                "6964573a000000000d00800e",
+                                "6964ab0e000000001a035c04",
+                                "6965adce000000001a02a701",
+                                "6966f1df000000001a032514",
+                                "69685275000000000e03c790",
+                                "696c2b7b000000001a02b944",
+                                "696ede36000000001a028e03",
+                                "6970373f000000000e00f81d"
+                              ]
+                            },
+                            {
+                              "name": "层叠式",
+                              "count": 1,
+                              "post_ids": [
+                                "65098787"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 12,
+                          "children": [],
+                          "total_posts_count": 10
+                        },
+                        {
+                          "name": "载体类型",
+                          "path": "/呈现/视觉/构图编排/版面设计/版面结构/载体类型",
+                          "id": 15607,
+                          "source_stable_id": 1431,
+                          "source_type": "形式",
+                          "description": "信息呈现的载体形式",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15382,
+                          "element_count": 31,
+                          "elements": [
+                            {
+                              "name": "配方卡片",
+                              "count": 2,
+                              "post_ids": [
+                                "66c5b638000000001d018e5a",
+                                "678ce28d000000001603e3a8"
+                              ]
+                            },
+                            {
+                              "name": "长图文",
+                              "count": 19,
+                              "post_ids": [
+                                "68ecc19400000000050028c1",
+                                "68f1e631000000000503111b",
+                                "68fa08f60000000005030ddc",
+                                "69005a1e0000000004017637",
+                                "6902e20a0000000005030a7b",
+                                "690af75a000000000503b57e",
+                                "690ed2240000000005002b41",
+                                "69145e8e0000000005003350",
+                                "69157ac40000000005039157",
+                                "692006ef000000001f008b41",
+                                "69200dec000000001f00b884",
+                                "6927e806000000001f007658",
+                                "692e7906000000001f006ff1",
+                                "692e7ccf000000001f00a137",
+                                "6932744c000000001f00c9f3",
+                                "69363584000000001f006a4c",
+                                "6944e9b5000000001e02472d",
+                                "69491c99000000001e02c765",
+                                "694a6caf000000001f00e112"
+                              ]
+                            },
+                            {
+                              "name": "人物海报",
+                              "count": 2,
+                              "post_ids": [
+                                "68ca25bc000000000e023656",
+                                "69297dde000000001f006b90"
+                              ]
+                            },
+                            {
+                              "name": "视觉海报",
+                              "count": 3,
+                              "post_ids": [
+                                "68b10b46000000001c00ca6c",
+                                "68c15181000000001b01c358",
+                                "68ca25bc000000000e023656"
+                              ]
+                            },
+                            {
+                              "name": "动态卡片",
+                              "count": 1,
+                              "post_ids": [
+                                "65170329"
+                              ]
+                            },
+                            {
+                              "name": "电子贺卡",
+                              "count": 3,
+                              "post_ids": [
+                                "59146568",
+                                "64246342",
+                                "65529862"
+                              ]
+                            },
+                            {
+                              "name": "文字",
+                              "count": 1,
+                              "post_ids": [
+                                "45436779"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 31,
+                          "children": [],
+                          "total_posts_count": 25
+                        }
+                      ],
+                      "total_posts_count": 90
+                    },
+                    {
+                      "name": "辅助元素",
+                      "path": "/呈现/视觉/构图编排/版面设计/辅助元素",
+                      "id": 15383,
+                      "source_stable_id": 398,
+                      "source_type": "形式",
+                      "description": "起辅助、装饰或补充作用的视觉符号与素材",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15906,
+                      "element_count": 10,
+                      "elements": [
+                        {
+                          "name": "食材原图",
+                          "count": 2,
+                          "post_ids": [
+                            "67299a19000000001901483f",
+                            "678ce28d000000001603e3a8"
+                          ]
+                        },
+                        {
+                          "name": "Emoji符号",
+                          "count": 2,
+                          "post_ids": [
+                            "675c0669000000000600cfd7",
+                            "6776b27d0000000013018545"
+                          ]
+                        },
+                        {
+                          "name": "辅助",
+                          "count": 4,
+                          "post_ids": [
+                            "6732f52f000000001b013fdb",
+                            "69200dec000000001f00b884",
+                            "692e7ccf000000001f00a137",
+                            "694a6caf000000001f00e112"
+                          ]
+                        },
+                        {
+                          "name": "边框装饰",
+                          "count": 1,
+                          "post_ids": [
+                            "65602591"
+                          ]
+                        },
+                        {
+                          "name": "边框",
+                          "count": 1,
+                          "post_ids": [
+                            "58896244"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 10,
+                      "children": [],
+                      "total_posts_count": 8
+                    }
+                  ],
+                  "total_posts_count": 152
+                },
+                {
+                  "name": "空间布局",
+                  "path": "/呈现/视觉/构图编排/空间布局",
+                  "id": 15905,
+                  "source_stable_id": 1050,
+                  "source_type": "形式",
+                  "description": "画面中元素的空间组织、构图方式与视觉编排",
+                  "category_nature": "维度",
+                  "level": 4,
+                  "parent_id": 15979,
+                  "element_count": 0,
+                  "elements": [],
+                  "total_element_count": 228,
+                  "children": [
+                    {
+                      "name": "元素编排",
+                      "path": "/呈现/视觉/构图编排/空间布局/元素编排",
+                      "id": 15883,
+                      "source_stable_id": 1060,
+                      "source_type": "形式",
+                      "description": "画面中多个元素的排列组织与空间关系处理",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15905,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 73,
+                      "children": [
+                        {
+                          "name": "布局规划",
+                          "path": "/呈现/视觉/构图编排/空间布局/元素编排/布局规划",
+                          "id": 15376,
+                          "source_stable_id": 427,
+                          "source_type": "形式",
+                          "description": "空间功能区的整体规划、组织与连通方式",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15883,
+                          "element_count": 9,
+                          "elements": [
+                            {
+                              "name": "一体化设计",
+                              "count": 2,
+                              "post_ids": [
+                                "68426c88000000002002b334",
+                                "688046ef000000002203150e"
+                              ]
+                            },
+                            {
+                              "name": "布局",
+                              "count": 2,
+                              "post_ids": [
+                                "682bdb47000000002202dfa0",
+                                "688046ef000000002203150e"
+                              ]
+                            },
+                            {
+                              "name": "开放式布局",
+                              "count": 2,
+                              "post_ids": [
+                                "68426c88000000002002b334",
+                                "6843ab3f000000002202508e"
+                              ]
+                            },
+                            {
+                              "name": "空间布局",
+                              "count": 1,
+                              "post_ids": [
+                                "6837f019000000000c03aab2"
+                              ]
+                            },
+                            {
+                              "name": "空间利用",
+                              "count": 1,
+                              "post_ids": [
+                                "61bdc28b0000000001024896"
+                              ]
+                            },
+                            {
+                              "name": "底部",
+                              "count": 1,
+                              "post_ids": [
+                                "64851184"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 9,
+                          "children": [],
+                          "total_posts_count": 6
+                        },
+                        {
+                          "name": "排列节奏",
+                          "path": "/呈现/视觉/构图编排/空间布局/元素编排/排列节奏",
+                          "id": 15373,
+                          "source_stable_id": 424,
+                          "source_type": "形式",
+                          "description": "元素在画面中按特定模式或规律进行有序排列的编排方式",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15883,
+                          "element_count": 22,
+                          "elements": [
+                            {
+                              "name": "堆叠",
+                              "count": 11,
+                              "post_ids": [
+                                "2c73223f278ea6aecd70b5b54f0aff21",
+                                "64729260",
+                                "64820485",
+                                "64851907",
+                                "65084923",
+                                "65170329",
+                                "65298913",
+                                "65450821",
+                                "65489167",
+                                "65602591"
+                              ]
+                            },
+                            {
+                              "name": "连续",
+                              "count": 2,
+                              "post_ids": [
+                                "68538f7c000000002400805b",
+                                "685b68c300000000150226bd"
+                              ]
+                            },
+                            {
+                              "name": "阶梯式",
+                              "count": 1,
+                              "post_ids": [
+                                "65eea166000000000d00c6d8"
+                              ]
+                            },
+                            {
+                              "name": "数学化",
+                              "count": 1,
+                              "post_ids": [
+                                "6975b3c50000000022020356"
+                              ]
+                            },
+                            {
+                              "name": "环绕式",
+                              "count": 1,
+                              "post_ids": [
+                                "68c14b36000000001d02b44e"
+                              ]
+                            },
+                            {
+                              "name": "并排",
+                              "count": 4,
+                              "post_ids": [
+                                "68bf8639000000001c03efd2",
+                                "68ca143d000000001202c3de",
+                                "68db5bd00000000007015474",
+                                "68f5976e000000000700dd28"
+                              ]
+                            },
+                            {
+                              "name": "序列化",
+                              "count": 2,
+                              "post_ids": [
+                                "59323915",
+                                "65489167"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 22,
+                          "children": [],
+                          "total_posts_count": 9
+                        },
+                        {
+                          "name": "曲面造型",
+                          "path": "/呈现/视觉/构图编排/空间布局/元素编排/曲面造型",
+                          "id": 15378,
+                          "source_stable_id": 429,
+                          "source_type": "形式",
+                          "description": "拱形、曲线等非直线几何形态的空间造型设计",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15883,
+                          "element_count": 3,
+                          "elements": [
+                            {
+                              "name": "拱形",
+                              "count": 2,
+                              "post_ids": [
+                                "684e2d44000000002100cca7",
+                                "687ee6fc000000001c032bb1"
+                              ]
+                            },
+                            {
+                              "name": "圆润曲线",
+                              "count": 1,
+                              "post_ids": [
+                                "6865ec61000000000b02c53b"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 3,
+                          "children": [],
+                          "total_posts_count": 3
+                        },
+                        {
+                          "name": "疏密比例",
+                          "path": "/呈现/视觉/构图编排/空间布局/元素编排/疏密比例",
+                          "id": 15374,
+                          "source_stable_id": 425,
+                          "source_type": "形式",
+                          "description": "画面中元素的密度、留白与面积分配的空间关系处理",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15883,
+                          "element_count": 7,
+                          "elements": [
+                            {
+                              "name": "留白布局",
+                              "count": 1,
+                              "post_ids": [
+                                "682bdbba000000002202b26e"
+                              ]
+                            },
+                            {
+                              "name": "大面积",
+                              "count": 1,
+                              "post_ids": [
+                                "693f94d80000000019025898"
+                              ]
+                            },
+                            {
+                              "name": "外露",
+                              "count": 1,
+                              "post_ids": [
+                                "67862d98000000001a01f443"
+                              ]
+                            },
+                            {
+                              "name": "夸张堆叠",
+                              "count": 1,
+                              "post_ids": [
+                                "68fb6a5c000000000302e5de"
+                              ]
+                            },
+                            {
+                              "name": "多重",
+                              "count": 1,
+                              "post_ids": [
+                                "65604986"
+                              ]
+                            },
+                            {
+                              "name": "堆砌式",
+                              "count": 1,
+                              "post_ids": [
+                                "65203608"
+                              ]
+                            },
+                            {
+                              "name": "堆砌",
+                              "count": 1,
+                              "post_ids": [
+                                "65061667"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 7,
+                          "children": [],
+                          "total_posts_count": 4
+                        },
+                        {
+                          "name": "空间拓展",
+                          "path": "/呈现/视觉/构图编排/空间布局/元素编排/空间拓展",
+                          "id": 15377,
+                          "source_stable_id": 428,
+                          "source_type": "形式",
+                          "description": "通过纵向利用、借景等手法拓展空间感知的处理技巧",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15883,
+                          "element_count": 2,
+                          "elements": [
+                            {
+                              "name": "垂直空间利用",
+                              "count": 2,
+                              "post_ids": [
+                                "696f2f97000000000e00e33c"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 2,
+                          "children": [],
+                          "total_posts_count": 1
+                        },
+                        {
+                          "name": "组合关系",
+                          "path": "/呈现/视觉/构图编排/空间布局/元素编排/组合关系",
+                          "id": 15375,
+                          "source_stable_id": 426,
+                          "source_type": "形式",
+                          "description": "多个元素之间的并置、联动与关联方式",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15883,
+                          "element_count": 7,
+                          "elements": [
+                            {
+                              "name": "联动",
+                              "count": 3,
+                              "post_ids": [
+                                "67ee4e29000000001200f3c2",
+                                "68302e2b000000000f038e8c",
+                                "6900667d000000000300f640"
+                              ]
+                            },
+                            {
+                              "name": "对比式构图",
+                              "count": 1,
+                              "post_ids": [
+                                "6746fb5600000000070260ce"
+                              ]
+                            },
+                            {
+                              "name": "同框",
+                              "count": 1,
+                              "post_ids": [
+                                "68737e97000000000d027b81"
+                              ]
+                            },
+                            {
+                              "name": "元素堆叠",
+                              "count": 1,
+                              "post_ids": [
+                                "65604986"
+                              ]
+                            },
+                            {
+                              "name": "视觉组合",
+                              "count": 1,
+                              "post_ids": [
+                                "65407794"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 7,
+                          "children": [],
+                          "total_posts_count": 5
+                        },
+                        {
+                          "name": "视线焦点",
+                          "path": "/呈现/视觉/构图编排/空间布局/元素编排/视线焦点",
+                          "id": 15372,
+                          "source_stable_id": 378,
+                          "source_type": "形式",
+                          "description": "通过视角、对焦、引导线等手段控制观众视线与注意力",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15883,
+                          "element_count": 23,
+                          "elements": [
+                            {
+                              "name": "引导",
+                              "count": 4,
+                              "post_ids": [
+                                "63676018",
+                                "6970693f000000002102bec2",
+                                "69706a0600000000210282bd",
+                                "6975b3c50000000022020356"
+                              ]
+                            },
+                            {
+                              "name": "延伸式构图",
+                              "count": 1,
+                              "post_ids": [
+                                "6964be3900000000210282a4"
+                              ]
+                            },
+                            {
+                              "name": "视觉聚焦",
+                              "count": 5,
+                              "post_ids": [
+                                "65f4359b00000000140079b5",
+                                "6666dd86000000001500b7ff",
+                                "66f51b90000000002a036660",
+                                "675c19320000000002017d1f",
+                                "6921937a000000001b0278d1"
+                              ]
+                            },
+                            {
+                              "name": "特定",
+                              "count": 2,
+                              "post_ids": [
+                                "672ed3b6000000003c017f82",
+                                "67d55ec7000000000e004e69"
+                              ]
+                            },
+                            {
+                              "name": "瞳孔融合式",
+                              "count": 1,
+                              "post_ids": [
+                                "6634a322000000001e01bcd5"
+                              ]
+                            },
+                            {
+                              "name": "聚焦",
+                              "count": 3,
+                              "post_ids": [
+                                "6732cd8a000000001b02f948",
+                                "67e27e6e000000000b017c96",
+                                "68f9e8400000000005033268"
+                              ]
+                            },
+                            {
+                              "name": "俯拍视角",
+                              "count": 5,
+                              "post_ids": [
+                                "68bf8639000000001c03efd2",
+                                "68ca143d000000001202c3de",
+                                "68db5bd00000000007015474",
+                                "68e9b94d0000000007036a6a",
+                                "68f5976e000000000700dd28"
+                              ]
+                            },
+                            {
+                              "name": "视觉中心",
+                              "count": 2,
+                              "post_ids": [
+                                "62675775",
+                                "65233075"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 23,
+                          "children": [],
+                          "total_posts_count": 20
+                        }
+                      ],
+                      "total_posts_count": 43
+                    },
+                    {
+                      "name": "景别角度",
+                      "path": "/呈现/视觉/构图编排/空间布局/景别角度",
+                      "id": 15366,
+                      "source_stable_id": 1061,
+                      "source_type": "形式",
+                      "description": "拍摄距离、角度与视距的选择",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15905,
+                      "element_count": 2,
+                      "elements": [
+                        {
+                          "name": "拍摄角度",
+                          "count": 2,
+                          "post_ids": [
+                            "672ed3b6000000003c017f82",
+                            "67d55ec7000000000e004e69"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 69,
+                      "children": [
+                        {
+                          "name": "特写近景",
+                          "path": "/呈现/视觉/构图编排/空间布局/景别角度/特写近景",
+                          "id": 15367,
+                          "source_stable_id": 352,
+                          "source_type": "形式",
+                          "description": "近距离放大呈现局部细节与人物的景别选择",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15366,
+                          "element_count": 26,
+                          "elements": [
+                            {
+                              "name": "特写",
+                              "count": 15,
+                              "post_ids": [
+                                "412f4d35be48179908fef312b53cad43",
+                                "65515618",
+                                "6649dbe3000000000c018112",
+                                "664c38f0000000001303c21f",
+                                "6687d458000000000a026f91",
+                                "66daeddb000000002603ea42",
+                                "683d8695000000001200012a",
+                                "692c3402000000000d03b7b7",
+                                "692d3b99000000001e022295",
+                                "6964d4bf000000001a031a54",
+                                "697638e8000000001a025711",
+                                "697a20e9000000001a033338",
+                                "697b64c5000000001a021517",
+                                "d7a04d4550a7c852ac4a16301e600aa5"
+                              ]
+                            },
+                            {
+                              "name": "近景特写",
+                              "count": 1,
+                              "post_ids": [
+                                "4bab077aa99a235a81c41631af69aa78"
+                              ]
+                            },
+                            {
+                              "name": "特写镜头",
+                              "count": 5,
+                              "post_ids": [
+                                "64554023",
+                                "67862d98000000001a01f443",
+                                "67bee0df000000002802acd1",
+                                "67e6398f000000001d005ebb",
+                                "682ede8f000000002202bff2"
+                              ]
+                            },
+                            {
+                              "name": "细节展示",
+                              "count": 4,
+                              "post_ids": [
+                                "6911532d000000000503bd18",
+                                "692d3b99000000001e022295",
+                                "69535514000000001e032b26",
+                                "69672e2d000000001a026263"
+                              ]
+                            },
+                            {
+                              "name": "表情特写",
+                              "count": 1,
+                              "post_ids": [
+                                "64139717"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 26,
+                          "children": [],
+                          "total_posts_count": 18
+                        },
+                        {
+                          "name": "视角选择",
+                          "path": "/呈现/视觉/构图编排/空间布局/景别角度/视角选择",
+                          "id": 15895,
+                          "source_stable_id": 353,
+                          "source_type": "形式",
+                          "description": "全景、俯瞰、多角度等不同拍摄角度与视距的景别",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15366,
+                          "element_count": 0,
+                          "elements": [],
+                          "total_element_count": 41,
+                          "children": [
+                            {
+                              "name": "全景广角",
+                              "path": "/呈现/视觉/构图编排/空间布局/景别角度/视角选择/全景广角",
+                              "id": 15674,
+                              "source_stable_id": 1524,
+                              "source_type": "形式",
+                              "description": "大范围、宽广视野的拍摄视角,包括全景、广角等宽幅取景方式",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15895,
+                              "element_count": 2,
+                              "elements": [
+                                {
+                                  "name": "广角",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "664599b9000000001e01d218"
+                                  ]
+                                },
+                                {
+                                  "name": "全景",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "692d3b99000000001e022295"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 2,
+                              "children": [],
+                              "total_posts_count": 2
+                            },
+                            {
+                              "name": "多角度呈现",
+                              "path": "/呈现/视觉/构图编排/空间布局/景别角度/视角选择/多角度呈现",
+                              "id": 15676,
+                              "source_stable_id": 1526,
+                              "source_type": "形式",
+                              "description": "从多个方位和维度进行拍摄的综合视角策略",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15895,
+                              "element_count": 15,
+                              "elements": [
+                                {
+                                  "name": "多角度",
+                                  "count": 15,
+                                  "post_ids": [
+                                    "6602bd07000000001203348c",
+                                    "68538f7c000000002400805b",
+                                    "6960e87a000000000e00c216",
+                                    "69647323000000001a01ef60",
+                                    "6964d4bf000000001a031a54",
+                                    "6965d491000000000e00f9b0",
+                                    "69679e0e000000000e03ca97",
+                                    "6969068e000000000d008b48",
+                                    "696a5a3e000000001a022b1d",
+                                    "696b658e000000001a01d2ef",
+                                    "696f0da3000000001a029d29",
+                                    "6971878d000000001a01e6cc",
+                                    "6971ec6f000000001a02d248",
+                                    "6978db47000000001a0293e7",
+                                    "697b64c5000000001a021517"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 15,
+                              "children": [],
+                              "total_posts_count": 15
+                            },
+                            {
+                              "name": "特殊视角",
+                              "path": "/呈现/视觉/构图编排/空间布局/景别角度/视角选择/特殊视角",
+                              "id": 15675,
+                              "source_stable_id": 1525,
+                              "source_type": "形式",
+                              "description": "模拟特定观察者或采用非常规角度的拍摄方式,如主观视角、仰拍、借位等",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15895,
+                              "element_count": 24,
+                              "elements": [
+                                {
+                                  "name": "透视",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "685f974300000000120144db"
+                                  ]
+                                },
+                                {
+                                  "name": "借位拍摄",
+                                  "count": 13,
+                                  "post_ids": [
+                                    "648d8edf0000000011013447",
+                                    "65febd8e0000000012035538",
+                                    "661b9936000000001b012aa5",
+                                    "664599b9000000001e01d218",
+                                    "66ee55d200000000270066a8",
+                                    "67440b66000000000202827e",
+                                    "675c19320000000002017d1f",
+                                    "67bc233e000000000b0160fa",
+                                    "6803185a000000000b01ef09",
+                                    "6843fb690000000012001659",
+                                    "6881d560000000001703076c",
+                                    "68a06bea000000001d021202"
+                                  ]
+                                },
+                                {
+                                  "name": "第一视角",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "6965ea53000000000e00f0f1"
+                                  ]
+                                },
+                                {
+                                  "name": "肖像式构图",
+                                  "count": 8,
+                                  "post_ids": [
+                                    "6774ab9a0000000009015a3f",
+                                    "68708544000000000d026732",
+                                    "6874c80e000000000d027767",
+                                    "6882f593000000001100272d",
+                                    "6892d47c0000000025018c4f",
+                                    "68b953e4000000001d00f96f",
+                                    "68f988f2000000000703ada5",
+                                    "69114f150000000007001f30"
+                                  ]
+                                },
+                                {
+                                  "name": "仰视拍摄",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "59583293"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 24,
+                              "children": [],
+                              "total_posts_count": 22
+                            }
+                          ],
+                          "total_posts_count": 38
+                        }
+                      ],
+                      "total_posts_count": 55
+                    },
+                    {
+                      "name": "构图方式",
+                      "path": "/呈现/视觉/构图编排/空间布局/构图方式",
+                      "id": 15365,
+                      "source_stable_id": 1059,
+                      "source_type": "形式",
+                      "description": "画面框架的几何结构与空间分割方式",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15905,
+                      "element_count": 39,
+                      "elements": [
+                        {
+                          "name": "构图",
+                          "count": 34,
+                          "post_ids": [
+                            "44556070",
+                            "46193165",
+                            "47951584",
+                            "4bab077aa99a235a81c41631af69aa78",
+                            "672ed3b6000000003c017f82",
+                            "67b9840d000000000603a241",
+                            "67e6398f000000001d005ebb",
+                            "682a8f11000000002002a511",
+                            "682bdbba000000002202b26e",
+                            "6837f019000000000c03aab2",
+                            "68a06bea000000001d021202",
+                            "68bf8639000000001c03efd2",
+                            "68ca143d000000001202c3de",
+                            "68db5bd00000000007015474",
+                            "68e9b94d0000000007036a6a",
+                            "68f5976e000000000700dd28",
+                            "69185d49000000000d00f94e",
+                            "692a535f0000000019026d5b",
+                            "693f94d80000000019025898",
+                            "696079a10000000022031521",
+                            "6964bc98000000002202c86f",
+                            "696b528900000000210333ea",
+                            "696b5332000000002103c497",
+                            "696b537f00000000220398ad",
+                            "6970693f000000002102bec2",
+                            "697069b7000000002202d264",
+                            "6975b27c000000002202d2fb",
+                            "6975b2d7000000002200b4ae",
+                            "6975b3c50000000022020356",
+                            "b90a1bbdf6dcddcaf4f4ee2f201e1d26"
+                          ]
+                        },
+                        {
+                          "name": "满屏",
+                          "count": 3,
+                          "post_ids": [
+                            "60527248",
+                            "65084923",
+                            "65098787"
+                          ]
+                        },
+                        {
+                          "name": "比例构图",
+                          "count": 1,
+                          "post_ids": [
+                            "64886621"
+                          ]
+                        },
+                        {
+                          "name": "中心化构图",
+                          "count": 1,
+                          "post_ids": [
+                            "47567298"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 86,
+                      "children": [
+                        {
+                          "name": "夸张变形",
+                          "path": "/呈现/视觉/构图编排/空间布局/构图方式/夸张变形",
+                          "id": 15371,
+                          "source_stable_id": 423,
+                          "source_type": "形式",
+                          "description": "通过夸张比例、搞怪角度等打破常规的非传统构图方式",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15365,
+                          "element_count": 4,
+                          "elements": [
+                            {
+                              "name": "搞怪构图",
+                              "count": 1,
+                              "post_ids": [
+                                "67e37ff8000000001c008b5e"
+                              ]
+                            },
+                            {
+                              "name": "趣味错位",
+                              "count": 2,
+                              "post_ids": [
+                                "6803185a000000000b01ef09",
+                                "6879f0f90000000013012f9a"
+                              ]
+                            },
+                            {
+                              "name": "夸张构图",
+                              "count": 1,
+                              "post_ids": [
+                                "664599b9000000001e01d218"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 4,
+                          "children": [],
+                          "total_posts_count": 4
+                        },
+                        {
+                          "name": "对称分割",
+                          "path": "/呈现/视觉/构图编排/空间布局/构图方式/对称分割",
+                          "id": 15368,
+                          "source_stable_id": 420,
+                          "source_type": "形式",
+                          "description": "基于对称轴或几何线条将画面进行对等分割的构图方式",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15365,
+                          "element_count": 27,
+                          "elements": [
+                            {
+                              "name": "几何构图",
+                              "count": 1,
+                              "post_ids": [
+                                "6975b3c50000000022020356"
+                              ]
+                            },
+                            {
+                              "name": "对称构图",
+                              "count": 5,
+                              "post_ids": [
+                                "692a535f0000000019026d5b",
+                                "6970693f000000002102bec2",
+                                "697069b7000000002202d264",
+                                "6975b27c000000002202d2fb",
+                                "6975b2d7000000002200b4ae"
+                              ]
+                            },
+                            {
+                              "name": "几何切割感",
+                              "count": 1,
+                              "post_ids": [
+                                "6964bc98000000002202c86f"
+                              ]
+                            },
+                            {
+                              "name": "上下分屏构图",
+                              "count": 4,
+                              "post_ids": [
+                                "6879f4b1000000000b02c2e0",
+                                "68875186000000002501649d",
+                                "689bf685000000001d0021d3",
+                                "68f1b573000000000702052e"
+                              ]
+                            },
+                            {
+                              "name": "对称式构图",
+                              "count": 6,
+                              "post_ids": [
+                                "58896244",
+                                "64246342",
+                                "64851907",
+                                "65270425",
+                                "65489167",
+                                "65608649"
+                              ]
+                            },
+                            {
+                              "name": "对称式排版",
+                              "count": 1,
+                              "post_ids": [
+                                "65026165"
+                              ]
+                            },
+                            {
+                              "name": "对称式布局",
+                              "count": 1,
+                              "post_ids": [
+                                "64886621"
+                              ]
+                            },
+                            {
+                              "name": "居中对称构图",
+                              "count": 2,
+                              "post_ids": [
+                                "45436779",
+                                "60570460"
+                              ]
+                            },
+                            {
+                              "name": "中心对称布局",
+                              "count": 1,
+                              "post_ids": [
+                                "58933772"
+                              ]
+                            },
+                            {
+                              "name": "居中对称",
+                              "count": 1,
+                              "post_ids": [
+                                "47951584"
+                              ]
+                            },
+                            {
+                              "name": "居中",
+                              "count": 1,
+                              "post_ids": [
+                                "65402572"
+                              ]
+                            },
+                            {
+                              "name": "对称式",
+                              "count": 1,
+                              "post_ids": [
+                                "62675775"
+                              ]
+                            },
+                            {
+                              "name": "镜像对称",
+                              "count": 1,
+                              "post_ids": [
+                                "46193165"
+                              ]
+                            },
+                            {
+                              "name": "镜像式",
+                              "count": 1,
+                              "post_ids": [
+                                "64400730"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 27,
+                          "children": [],
+                          "total_posts_count": 11
+                        },
+                        {
+                          "name": "嵌套突破",
+                          "path": "/呈现/视觉/构图编排/空间布局/构图方式/嵌套突破",
+                          "id": 15370,
+                          "source_stable_id": 422,
+                          "source_type": "形式",
+                          "description": "画面框架的嵌套递归或突破边界的特殊构图效果",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15365,
+                          "element_count": 3,
+                          "elements": [
+                            {
+                              "name": "画框溢出",
+                              "count": 1,
+                              "post_ids": [
+                                "6975b27c000000002202d2fb"
+                              ]
+                            },
+                            {
+                              "name": "无限嵌套",
+                              "count": 1,
+                              "post_ids": [
+                                "692c3402000000000d03b7b7"
+                              ]
+                            },
+                            {
+                              "name": "套娃式",
+                              "count": 1,
+                              "post_ids": [
+                                "665971bb000000001303d005"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 3,
+                          "children": [],
+                          "total_posts_count": 3
+                        },
+                        {
+                          "name": "放射构图",
+                          "path": "/呈现/视觉/构图编排/空间布局/构图方式/放射构图",
+                          "id": 15426,
+                          "source_stable_id": 1169,
+                          "source_type": "形式",
+                          "description": "从中心点向四周发散或汇聚的放射状构图方式",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15365,
+                          "element_count": 2,
+                          "elements": [
+                            {
+                              "name": "放射状",
+                              "count": 2,
+                              "post_ids": [
+                                "64820485",
+                                "65450821"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 2,
+                          "children": [],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "透视纵深",
+                          "path": "/呈现/视觉/构图编排/空间布局/构图方式/透视纵深",
+                          "id": 15369,
+                          "source_stable_id": 421,
+                          "source_type": "形式",
+                          "description": "利用透视线条、空间层次或建筑结构创造画面纵深感的构图方式",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15365,
+                          "element_count": 11,
+                          "elements": [
+                            {
+                              "name": "多层次",
+                              "count": 3,
+                              "post_ids": [
+                                "682bdb47000000002202dfa0",
+                                "6848e2340000000021009f3a",
+                                "688046ef000000002203150e"
+                              ]
+                            },
+                            {
+                              "name": "建筑感构图",
+                              "count": 2,
+                              "post_ids": [
+                                "6837f1270000000012006c8e",
+                                "685b68c300000000150226bd"
+                              ]
+                            },
+                            {
+                              "name": "中心透视",
+                              "count": 3,
+                              "post_ids": [
+                                "6970693f000000002102bec2",
+                                "69706a0600000000210282bd",
+                                "6975b3c50000000022020356"
+                              ]
+                            },
+                            {
+                              "name": "放射状背景",
+                              "count": 1,
+                              "post_ids": [
+                                "690d977d0000000007036331"
+                              ]
+                            },
+                            {
+                              "name": "立体质感",
+                              "count": 1,
+                              "post_ids": [
+                                "64029781"
+                              ]
+                            },
+                            {
+                              "name": "立体化",
+                              "count": 1,
+                              "post_ids": [
+                                "59323915"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 11,
+                          "children": [],
+                          "total_posts_count": 9
+                        }
+                      ],
+                      "total_posts_count": 42
+                    }
+                  ],
+                  "total_posts_count": 115
+                }
+              ],
+              "total_posts_count": 234
+            },
+            {
+              "name": "视觉气质",
+              "path": "/呈现/视觉/视觉气质",
+              "id": 15980,
+              "source_stable_id": 1151,
+              "source_type": "形式",
+              "description": "画面的色彩基调与整体美学风格",
+              "category_nature": "内容",
+              "level": 3,
+              "parent_id": 15983,
+              "element_count": 0,
+              "elements": [],
+              "total_element_count": 448,
+              "children": [
+                {
+                  "name": "色彩调性",
+                  "path": "/呈现/视觉/视觉气质/色彩调性",
+                  "id": 15907,
+                  "source_stable_id": 1051,
+                  "source_type": "形式",
+                  "description": "画面的色彩基调、色温倾向与色彩处理",
+                  "category_nature": "维度",
+                  "level": 4,
+                  "parent_id": 15980,
+                  "element_count": 0,
+                  "elements": [],
+                  "total_element_count": 161,
+                  "children": [
+                    {
+                      "name": "背景底色",
+                      "path": "/呈现/视觉/视觉气质/色彩调性/背景底色",
+                      "id": 15380,
+                      "source_stable_id": 364,
+                      "source_type": "形式",
+                      "description": "画面背景的底色与配色方案",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15907,
+                      "element_count": 33,
+                      "elements": [
+                        {
+                          "name": "绿框白底",
+                          "count": 10,
+                          "post_ids": [
+                            "67206035000000001b02f4b1",
+                            "67244ea7000000001b012d18",
+                            "6726109d000000001901b564",
+                            "6727171b000000001b01114b",
+                            "67284f9c000000001901875a",
+                            "6729dd5300000000190183a8",
+                            "672de546000000001b02cfeb",
+                            "673f1462000000000703b270",
+                            "6746fb5600000000070260ce",
+                            "678ce28d000000001603e3a8"
+                          ]
+                        },
+                        {
+                          "name": "米色背景",
+                          "count": 2,
+                          "post_ids": [
+                            "66c5b638000000001d018e5a",
+                            "67299a19000000001901483f"
+                          ]
+                        },
+                        {
+                          "name": "纯色背景",
+                          "count": 1,
+                          "post_ids": [
+                            "69535514000000001e032b26"
+                          ]
+                        },
+                        {
+                          "name": "纯白背景",
+                          "count": 2,
+                          "post_ids": [
+                            "6874c80e000000000d027767",
+                            "68d76cd100000000120165e4"
+                          ]
+                        },
+                        {
+                          "name": "红金配色",
+                          "count": 17,
+                          "post_ids": [
+                            "47567298",
+                            "58896244",
+                            "64029781",
+                            "64162740",
+                            "64903753",
+                            "65027290",
+                            "65098787",
+                            "65133109",
+                            "65139072",
+                            "65162446",
+                            "65196789",
+                            "65233075",
+                            "65270425",
+                            "65298913",
+                            "65407794",
+                            "65600878",
+                            "65608649"
+                          ]
+                        },
+                        {
+                          "name": "底图",
+                          "count": 1,
+                          "post_ids": [
+                            "65061667"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 33,
+                      "children": [],
+                      "total_posts_count": 15
+                    },
+                    {
+                      "name": "色彩强化",
+                      "path": "/呈现/视觉/视觉气质/色彩调性/色彩强化",
+                      "id": 15896,
+                      "source_stable_id": 363,
+                      "source_type": "形式",
+                      "description": "通过饱和度、对比等手段强化色彩视觉冲击",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15907,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 96,
+                      "children": [
+                        {
+                          "name": "对比度调节",
+                          "path": "/呈现/视觉/视觉气质/色彩调性/色彩强化/对比度调节",
+                          "id": 15668,
+                          "source_stable_id": 1515,
+                          "source_type": "形式",
+                          "description": "通过色彩差异控制视觉层次",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15896,
+                          "element_count": 16,
+                          "elements": [
+                            {
+                              "name": "色彩对比",
+                              "count": 7,
+                              "post_ids": [
+                                "689b158f000000001b03e512",
+                                "6964be3900000000210282a4",
+                                "6964beb3000000002103361a",
+                                "6968ef250000000021033c7c",
+                                "696b537f00000000220398ad",
+                                "696ede36000000001a028e03"
+                              ]
+                            },
+                            {
+                              "name": "深浅对比",
+                              "count": 1,
+                              "post_ids": [
+                                "6969068e000000000d008b48"
+                              ]
+                            },
+                            {
+                              "name": "高饱和对比色调",
+                              "count": 3,
+                              "post_ids": [
+                                "6970693f000000002102bec2",
+                                "697069b7000000002202d264",
+                                "69706a0600000000210282bd"
+                              ]
+                            },
+                            {
+                              "name": "高对比",
+                              "count": 2,
+                              "post_ids": [
+                                "47537727",
+                                "65098787"
+                              ]
+                            },
+                            {
+                              "name": "对比色调",
+                              "count": 1,
+                              "post_ids": [
+                                "64820485"
+                              ]
+                            },
+                            {
+                              "name": "多色",
+                              "count": 1,
+                              "post_ids": [
+                                "64662179"
+                              ]
+                            },
+                            {
+                              "name": "渐变色",
+                              "count": 1,
+                              "post_ids": [
+                                "62675775"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 16,
+                          "children": [],
+                          "total_posts_count": 10
+                        },
+                        {
+                          "name": "局部点缀",
+                          "path": "/呈现/视觉/视觉气质/色彩调性/色彩强化/局部点缀",
+                          "id": 15669,
+                          "source_stable_id": 1516,
+                          "source_type": "形式",
+                          "description": "通过局部色彩强调引导视觉焦点",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15896,
+                          "element_count": 7,
+                          "elements": [
+                            {
+                              "name": "色彩点缀",
+                              "count": 2,
+                              "post_ids": [
+                                "696b658e000000001a01d2ef",
+                                "697638e8000000001a025711"
+                              ]
+                            },
+                            {
+                              "name": "呼应",
+                              "count": 1,
+                              "post_ids": [
+                                "6971ec6f000000001a02d248"
+                              ]
+                            },
+                            {
+                              "name": "跳色",
+                              "count": 3,
+                              "post_ids": [
+                                "681c64ce000000002200554c",
+                                "684e2d44000000002100cca7",
+                                "68538f7c000000002400805b"
+                              ]
+                            },
+                            {
+                              "name": "局部色彩点缀",
+                              "count": 1,
+                              "post_ids": [
+                                "6975b361000000002202d7e8"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 7,
+                          "children": [],
+                          "total_posts_count": 7
+                        },
+                        {
+                          "name": "饱和度调节",
+                          "path": "/呈现/视觉/视觉气质/色彩调性/色彩强化/饱和度调节",
+                          "id": 15941,
+                          "source_stable_id": 1514,
+                          "source_type": "形式",
+                          "description": "通过调整色彩纯度控制视觉强度",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15896,
+                          "element_count": 0,
+                          "elements": [],
+                          "total_element_count": 73,
+                          "children": [
+                            {
+                              "name": "单色饱和度",
+                              "path": "/呈现/视觉/视觉气质/色彩调性/色彩强化/饱和度调节/单色饱和度",
+                              "id": 15670,
+                              "source_stable_id": 1517,
+                              "source_type": "形式",
+                              "description": "单一色彩的饱和度特征呈现",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15941,
+                              "element_count": 55,
+                              "elements": [
+                                {
+                                  "name": "高饱和度",
+                                  "count": 41,
+                                  "post_ids": [
+                                    "46193165",
+                                    "47537727",
+                                    "47951584",
+                                    "58896244",
+                                    "59323915",
+                                    "61822382",
+                                    "62675775",
+                                    "64246342",
+                                    "64456019",
+                                    "64603799",
+                                    "64886621",
+                                    "64903753",
+                                    "64975752",
+                                    "65026165",
+                                    "65091188",
+                                    "65098787",
+                                    "65133109",
+                                    "65162446",
+                                    "65170329",
+                                    "65233075",
+                                    "65407794",
+                                    "65489167",
+                                    "65529862",
+                                    "65571251",
+                                    "65604986",
+                                    "67bee0df000000002802acd1",
+                                    "67e37ff8000000001c008b5e",
+                                    "686f606c00000000120167b5",
+                                    "689b158f000000001b03e512",
+                                    "68c15181000000001b01c358",
+                                    "696078f70000000022038479",
+                                    "696079a10000000022031521",
+                                    "6964573a000000000d00800e",
+                                    "6964be3900000000210282a4",
+                                    "696ede36000000001a028e03",
+                                    "6975b2d7000000002200b4ae",
+                                    "6975b3c50000000022020356",
+                                    "82b864cd83e9a5f376214dbc341d6dad"
+                                  ]
+                                },
+                                {
+                                  "name": "高饱和",
+                                  "count": 12,
+                                  "post_ids": [
+                                    "47567298",
+                                    "60527248",
+                                    "64029781",
+                                    "64816949",
+                                    "64820485",
+                                    "65139072",
+                                    "65196789",
+                                    "65270425",
+                                    "65298913",
+                                    "65450821",
+                                    "65600878",
+                                    "65602591"
+                                  ]
+                                },
+                                {
+                                  "name": "高饱和度中国红",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "65411458"
+                                  ]
+                                },
+                                {
+                                  "name": "高饱和色彩",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "64662179"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 55,
+                              "children": [],
+                              "total_posts_count": 12
+                            },
+                            {
+                              "name": "配色饱和度",
+                              "path": "/呈现/视觉/视觉气质/色彩调性/色彩强化/饱和度调节/配色饱和度",
+                              "id": 15671,
+                              "source_stable_id": 1518,
+                              "source_type": "形式",
+                              "description": "多色搭配的饱和度风格方案",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15941,
+                              "element_count": 18,
+                              "elements": [
+                                {
+                                  "name": "多巴胺配色",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "69756d90000000001a020c81"
+                                  ]
+                                },
+                                {
+                                  "name": "高饱和度色彩",
+                                  "count": 7,
+                                  "post_ids": [
+                                    "59121599",
+                                    "63253503",
+                                    "64886621",
+                                    "65135957",
+                                    "68b15f32000000001d00ef75",
+                                    "68e8cac8000000000700da88",
+                                    "69002ba70000000007008bcc"
+                                  ]
+                                },
+                                {
+                                  "name": "高饱和度配色",
+                                  "count": 9,
+                                  "post_ids": [
+                                    "45436779",
+                                    "58933772",
+                                    "60570460",
+                                    "63146000",
+                                    "64851907",
+                                    "65067062",
+                                    "65091188",
+                                    "65203608",
+                                    "65801945"
+                                  ]
+                                },
+                                {
+                                  "name": "高饱和配色",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "65084923"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 18,
+                              "children": [],
+                              "total_posts_count": 4
+                            }
+                          ],
+                          "total_posts_count": 16
+                        }
+                      ],
+                      "total_posts_count": 30
+                    },
+                    {
+                      "name": "色调倾向",
+                      "path": "/呈现/视觉/视觉气质/色彩调性/色调倾向",
+                      "id": 15379,
+                      "source_stable_id": 362,
+                      "source_type": "形式",
+                      "description": "画面整体的色彩基调与色温方向",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15907,
+                      "element_count": 17,
+                      "elements": [
+                        {
+                          "name": "色彩",
+                          "count": 1,
+                          "post_ids": [
+                            "6964573a000000000d00800e"
+                          ]
+                        },
+                        {
+                          "name": "冷暖对比",
+                          "count": 1,
+                          "post_ids": [
+                            "6837f1270000000012006c8e"
+                          ]
+                        },
+                        {
+                          "name": "蓝紫色调",
+                          "count": 2,
+                          "post_ids": [
+                            "696078f70000000022038479",
+                            "6964be3900000000210282a4"
+                          ]
+                        },
+                        {
+                          "name": "暖调",
+                          "count": 2,
+                          "post_ids": [
+                            "66c5b638000000001d018e5a",
+                            "67299a19000000001901483f"
+                          ]
+                        },
+                        {
+                          "name": "商务蓝",
+                          "count": 2,
+                          "post_ids": [
+                            "68f9fb67000000000400736f",
+                            "69297dde000000001f006b90"
+                          ]
+                        },
+                        {
+                          "name": "主色调",
+                          "count": 2,
+                          "post_ids": [
+                            "68f9fb67000000000400736f",
+                            "69297dde000000001f006b90"
+                          ]
+                        },
+                        {
+                          "name": "暗色调",
+                          "count": 3,
+                          "post_ids": [
+                            "68b10b46000000001c00ca6c",
+                            "68c15181000000001b01c358",
+                            "68ca25bc000000000e023656"
+                          ]
+                        },
+                        {
+                          "name": "暖色调",
+                          "count": 1,
+                          "post_ids": [
+                            "69535514000000001e032b26"
+                          ]
+                        },
+                        {
+                          "name": "金色",
+                          "count": 1,
+                          "post_ids": [
+                            "65098787"
+                          ]
+                        },
+                        {
+                          "name": "红色",
+                          "count": 1,
+                          "post_ids": [
+                            "56380736"
+                          ]
+                        },
+                        {
+                          "name": "中国红",
+                          "count": 1,
+                          "post_ids": [
+                            "65529862"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 17,
+                      "children": [],
+                      "total_posts_count": 12
+                    },
+                    {
+                      "name": "配色组合",
+                      "path": "/呈现/视觉/视觉气质/色彩调性/配色组合",
+                      "id": 15424,
+                      "source_stable_id": 1167,
+                      "source_type": "形式",
+                      "description": "多种颜色的搭配方案与组合运用,如红金、红绿等特定配色",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15907,
+                      "element_count": 15,
+                      "elements": [
+                        {
+                          "name": "配色",
+                          "count": 4,
+                          "post_ids": [
+                            "65170329",
+                            "65489167",
+                            "65571251",
+                            "6969068e000000000d008b48"
+                          ]
+                        },
+                        {
+                          "name": "红黄配色",
+                          "count": 1,
+                          "post_ids": [
+                            "65602591"
+                          ]
+                        },
+                        {
+                          "name": "红金",
+                          "count": 2,
+                          "post_ids": [
+                            "64820485",
+                            "65084923"
+                          ]
+                        },
+                        {
+                          "name": "红金色调",
+                          "count": 2,
+                          "post_ids": [
+                            "64203380",
+                            "65061667"
+                          ]
+                        },
+                        {
+                          "name": "撞色",
+                          "count": 1,
+                          "post_ids": [
+                            "47537727"
+                          ]
+                        },
+                        {
+                          "name": "喜庆配色",
+                          "count": 1,
+                          "post_ids": [
+                            "64816949"
+                          ]
+                        },
+                        {
+                          "name": "红蓝配色",
+                          "count": 1,
+                          "post_ids": [
+                            "65450821"
+                          ]
+                        },
+                        {
+                          "name": "七彩渐变",
+                          "count": 1,
+                          "post_ids": [
+                            "62675775"
+                          ]
+                        },
+                        {
+                          "name": "红白对比",
+                          "count": 1,
+                          "post_ids": [
+                            "60527248"
+                          ]
+                        },
+                        {
+                          "name": "色彩搭配",
+                          "count": 1,
+                          "post_ids": [
+                            "59323915"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 15,
+                      "children": [],
+                      "total_posts_count": 1
+                    }
+                  ],
+                  "total_posts_count": 50
+                },
+                {
+                  "name": "视觉风格",
+                  "path": "/呈现/视觉/视觉气质/视觉风格",
+                  "id": 15976,
+                  "source_stable_id": 1057,
+                  "source_type": "形式",
+                  "description": "画面的整体美学风格与视觉气质",
+                  "category_nature": "维度",
+                  "level": 4,
+                  "parent_id": 15980,
+                  "element_count": 0,
+                  "elements": [],
+                  "total_element_count": 287,
+                  "children": [
+                    {
+                      "name": "氛围基调",
+                      "path": "/呈现/视觉/视觉气质/视觉风格/氛围基调",
+                      "id": 15890,
+                      "source_stable_id": 1072,
+                      "source_type": "形式",
+                      "description": "画面传达的情绪氛围与感受基调",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15976,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 72,
+                      "children": [
+                        {
+                          "name": "庄重宏大",
+                          "path": "/呈现/视觉/视觉气质/视觉风格/氛围基调/庄重宏大",
+                          "id": 15413,
+                          "source_stable_id": 205,
+                          "source_type": "形式",
+                          "description": "严肃庄重、气势恢弘、肃穆深沉的视觉气质",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15890,
+                          "element_count": 5,
+                          "elements": [
+                            {
+                              "name": "科技背景",
+                              "count": 3,
+                              "post_ids": [
+                                "68b10b46000000001c00ca6c",
+                                "68c15181000000001b01c358",
+                                "68ca25bc000000000e023656"
+                              ]
+                            },
+                            {
+                              "name": "正式感",
+                              "count": 2,
+                              "post_ids": [
+                                "6880a7a7000000000b02f5a6",
+                                "68b953e4000000001d00f96f"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 5,
+                          "children": [],
+                          "total_posts_count": 5
+                        },
+                        {
+                          "name": "怀旧复古",
+                          "path": "/呈现/视觉/视觉气质/视觉风格/氛围基调/怀旧复古",
+                          "id": 15412,
+                          "source_stable_id": 204,
+                          "source_type": "形式",
+                          "description": "具有年代感、复古气息、黑白影像质感的视觉氛围",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15890,
+                          "element_count": 5,
+                          "elements": [
+                            {
+                              "name": "老派浪漫",
+                              "count": 2,
+                              "post_ids": [
+                                "6848e2340000000021009f3a",
+                                "685f514f000000001703339d"
+                              ]
+                            },
+                            {
+                              "name": "复古胶片质感",
+                              "count": 2,
+                              "post_ids": [
+                                "696b5332000000002103c497",
+                                "696b537f00000000220398ad"
+                              ]
+                            },
+                            {
+                              "name": "中式复古",
+                              "count": 1,
+                              "post_ids": [
+                                "65529862"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 5,
+                          "children": [],
+                          "total_posts_count": 4
+                        },
+                        {
+                          "name": "柔和舒适",
+                          "path": "/呈现/视觉/视觉气质/视觉风格/氛围基调/柔和舒适",
+                          "id": 15414,
+                          "source_stable_id": 418,
+                          "source_type": "形式",
+                          "description": "生活化、日常、治愈、松弛等轻松温暖的柔和氛围感受",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15890,
+                          "element_count": 45,
+                          "elements": [
+                            {
+                              "name": "生活化",
+                              "count": 31,
+                              "post_ids": [
+                                "12357835",
+                                "2c73223f278ea6aecd70b5b54f0aff21",
+                                "56726652",
+                                "61bdc28b0000000001024896",
+                                "64095002",
+                                "66619827000000000600486f",
+                                "676f8eac000000000902f53e",
+                                "67b2a7f7000000002802a0d7",
+                                "67bafc850000000029036328",
+                                "67d7a294000000001c03eef9",
+                                "6819f25e000000002301cca5",
+                                "684a7e3c0000000023012b8d",
+                                "68f568a1000000000301053d",
+                                "69002ba70000000007008bcc",
+                                "69003bb30000000004015797",
+                                "6901d072000000000703b6a3",
+                                "691acd15000000000402134e",
+                                "693613b9000000001e00ebdd",
+                                "6960e87a000000000e00c216",
+                                "69647323000000001a01ef60",
+                                "6964d4bf000000001a031a54",
+                                "6965d491000000000e00f9b0",
+                                "69679e0e000000000e03ca97",
+                                "6969068e000000000d008b48",
+                                "696a5a3e000000001a022b1d",
+                                "696b658e000000001a01d2ef",
+                                "696f0da3000000001a029d29",
+                                "696f8d95000000001a028641",
+                                "6971878d000000001a01e6cc",
+                                "697638e8000000001a025711",
+                                "e04fd15a06f8c97486e48990e85c8492"
+                              ]
+                            },
+                            {
+                              "name": "松弛感",
+                              "count": 1,
+                              "post_ids": [
+                                "696f8d95000000001a028641"
+                              ]
+                            },
+                            {
+                              "name": "治愈风",
+                              "count": 2,
+                              "post_ids": [
+                                "681c64ce000000002200554c",
+                                "68843a4d000000001c037591"
+                              ]
+                            },
+                            {
+                              "name": "夜景风格",
+                              "count": 2,
+                              "post_ids": [
+                                "6964beb3000000002103361a",
+                                "69706aa0000000002202d723"
+                              ]
+                            },
+                            {
+                              "name": "梦幻",
+                              "count": 1,
+                              "post_ids": [
+                                "6964bee80000000022039e8c"
+                              ]
+                            },
+                            {
+                              "name": "冰爽视觉",
+                              "count": 1,
+                              "post_ids": [
+                                "686f606c00000000120167b5"
+                              ]
+                            },
+                            {
+                              "name": "呼吸感",
+                              "count": 1,
+                              "post_ids": [
+                                "68077d02000000001c02dd81"
+                              ]
+                            },
+                            {
+                              "name": "沉浸式",
+                              "count": 3,
+                              "post_ids": [
+                                "55994947",
+                                "64456019",
+                                "67fd299a000000001c00cf5d"
+                              ]
+                            },
+                            {
+                              "name": "日常",
+                              "count": 1,
+                              "post_ids": [
+                                "692d3b99000000001e022295"
+                              ]
+                            },
+                            {
+                              "name": "治愈系",
+                              "count": 1,
+                              "post_ids": [
+                                "68ca143d000000001202c3de"
+                              ]
+                            },
+                            {
+                              "name": "抒情",
+                              "count": 1,
+                              "post_ids": [
+                                "64314678"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 45,
+                          "children": [],
+                          "total_posts_count": 36
+                        },
+                        {
+                          "name": "欢庆热闹",
+                          "path": "/呈现/视觉/视觉气质/视觉风格/氛围基调/欢庆热闹",
+                          "id": 15430,
+                          "source_stable_id": 1174,
+                          "source_type": "形式",
+                          "description": "喜庆欢快、热闹活泼的情绪氛围",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15890,
+                          "element_count": 17,
+                          "elements": [
+                            {
+                              "name": "节日视觉",
+                              "count": 1,
+                              "post_ids": [
+                                "65604986"
+                              ]
+                            },
+                            {
+                              "name": "喜庆",
+                              "count": 14,
+                              "post_ids": [
+                                "58896244",
+                                "60527248",
+                                "63253503",
+                                "64029781",
+                                "64162740",
+                                "64203380",
+                                "64851184",
+                                "65061667",
+                                "65091188",
+                                "65098787",
+                                "65170329",
+                                "65402572",
+                                "65411458",
+                                "65600878"
+                              ]
+                            },
+                            {
+                              "name": "拜年风格",
+                              "count": 1,
+                              "post_ids": [
+                                "65091188"
+                              ]
+                            },
+                            {
+                              "name": "贺岁视觉",
+                              "count": 1,
+                              "post_ids": [
+                                "64903753"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 17,
+                          "children": [],
+                          "total_posts_count": 0
+                        }
+                      ],
+                      "total_posts_count": 45
+                    },
+                    {
+                      "name": "艺术风格",
+                      "path": "/呈现/视觉/视觉气质/视觉风格/艺术风格",
+                      "id": 15889,
+                      "source_stable_id": 1071,
+                      "source_type": "形式",
+                      "description": "源自特定艺术流派或审美取向的风格化处理",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15976,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 215,
+                      "children": [
+                        {
+                          "name": "传统国风",
+                          "path": "/呈现/视觉/视觉气质/视觉风格/艺术风格/传统国风",
+                          "id": 15425,
+                          "source_stable_id": 1168,
+                          "source_type": "形式",
+                          "description": "中国传统文化审美,包括古典、中式、传统等东方美学风格",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15889,
+                          "element_count": 9,
+                          "elements": [
+                            {
+                              "name": "水墨风",
+                              "count": 1,
+                              "post_ids": [
+                                "21006075"
+                              ]
+                            },
+                            {
+                              "name": "传统",
+                              "count": 4,
+                              "post_ids": [
+                                "47567298",
+                                "64029781",
+                                "64603799",
+                                "65270425"
+                              ]
+                            },
+                            {
+                              "name": "卷轴式",
+                              "count": 1,
+                              "post_ids": [
+                                "64851184"
+                              ]
+                            },
+                            {
+                              "name": "中式审美",
+                              "count": 1,
+                              "post_ids": [
+                                "60570460"
+                              ]
+                            },
+                            {
+                              "name": "中式",
+                              "count": 1,
+                              "post_ids": [
+                                "60570460"
+                              ]
+                            },
+                            {
+                              "name": "中式古典",
+                              "count": 1,
+                              "post_ids": [
+                                "60527248"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 9,
+                          "children": [],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "媒介模拟",
+                          "path": "/呈现/视觉/视觉气质/视觉风格/艺术风格/媒介模拟",
+                          "id": 15410,
+                          "source_stable_id": 370,
+                          "source_type": "形式",
+                          "description": "模拟特定传播媒介视觉形态的风格化处理",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15889,
+                          "element_count": 18,
+                          "elements": [
+                            {
+                              "name": "邮票载体",
+                              "count": 1,
+                              "post_ids": [
+                                "03e3d299faba104965b33d87b5063eff"
+                              ]
+                            },
+                            {
+                              "name": "表情包化",
+                              "count": 4,
+                              "post_ids": [
+                                "6960924b000000001a037a1c",
+                                "6964573a000000000d00800e",
+                                "6964ab0e000000001a035c04"
+                              ]
+                            },
+                            {
+                              "name": "电影感",
+                              "count": 2,
+                              "post_ids": [
+                                "6848e2340000000021009f3a",
+                                "685f514f000000001703339d"
+                              ]
+                            },
+                            {
+                              "name": "拼贴感",
+                              "count": 1,
+                              "post_ids": [
+                                "696079a10000000022031521"
+                              ]
+                            },
+                            {
+                              "name": "表情包风格",
+                              "count": 8,
+                              "post_ids": [
+                                "686cd3a5000000000d0180b0",
+                                "689bf685000000001d0021d3",
+                                "68b69ea9000000001c035a4d",
+                                "68ccd4e40000000012030372",
+                                "68ef83150000000007035f42",
+                                "68f78b950000000007021a20",
+                                "6901d072000000000703b6a3",
+                                "6915dfc400000000070224d9"
+                              ]
+                            },
+                            {
+                              "name": "祝福视频",
+                              "count": 2,
+                              "post_ids": [
+                                "64816949",
+                                "64851184"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 18,
+                          "children": [],
+                          "total_posts_count": 14
+                        },
+                        {
+                          "name": "审美取向",
+                          "path": "/呈现/视觉/视觉气质/视觉风格/艺术风格/审美取向",
+                          "id": 15903,
+                          "source_stable_id": 371,
+                          "source_type": "形式",
+                          "description": "带有特定审美偏好或创意属性的泛化风格概念",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15889,
+                          "element_count": 0,
+                          "elements": [],
+                          "total_element_count": 53,
+                          "children": [
+                            {
+                              "name": "创意表现",
+                              "path": "/呈现/视觉/视觉气质/视觉风格/艺术风格/审美取向/创意表现",
+                              "id": 15610,
+                              "source_stable_id": 1435,
+                              "source_type": "形式",
+                              "description": "强调创意性和艺术化处理的审美风格",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15903,
+                              "element_count": 28,
+                              "elements": [
+                                {
+                                  "name": "艺术化",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "681c64ce000000002200554c",
+                                    "6837f1270000000012006c8e"
+                                  ]
+                                },
+                                {
+                                  "name": "创意展示",
+                                  "count": 13,
+                                  "post_ids": [
+                                    "661b9936000000001b012aa5",
+                                    "662096bc000000000d03035d",
+                                    "6634a322000000001e01bcd5",
+                                    "664599b9000000001e01d218",
+                                    "665971bb000000001303d005",
+                                    "6666b3a10000000015008834",
+                                    "66ee55d200000000270066a8",
+                                    "66f51b90000000002a036660",
+                                    "671f7fab000000003c01fffc",
+                                    "6781e8640000000001001d18",
+                                    "67bc233e000000000b0160fa",
+                                    "6843fb690000000012001659",
+                                    "68c909c3000000001302ad69"
+                                  ]
+                                },
+                                {
+                                  "name": "创意",
+                                  "count": 11,
+                                  "post_ids": [
+                                    "648d8edf0000000011013447",
+                                    "65febd8e0000000012035538",
+                                    "661b9936000000001b012aa5",
+                                    "664599b9000000001e01d218",
+                                    "66ee55d200000000270066a8",
+                                    "67440b66000000000202827e",
+                                    "67bc233e000000000b0160fa",
+                                    "6803185a000000000b01ef09",
+                                    "6843fb690000000012001659",
+                                    "6881d560000000001703076c",
+                                    "68a06bea000000001d021202"
+                                  ]
+                                },
+                                {
+                                  "name": "Q版",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "6727171b000000001b01114b"
+                                  ]
+                                },
+                                {
+                                  "name": "手作质感",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "69535514000000001e032b26"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 28,
+                              "children": [],
+                              "total_posts_count": 23
+                            },
+                            {
+                              "name": "幻想虚构",
+                              "path": "/呈现/视觉/视觉气质/视觉风格/艺术风格/审美取向/幻想虚构",
+                              "id": 15608,
+                              "source_stable_id": 1433,
+                              "source_type": "形式",
+                              "description": "超越现实、具有想象色彩的审美风格",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15903,
+                              "element_count": 3,
+                              "elements": [
+                                {
+                                  "name": "复古科幻风格",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "696b5332000000002103c497",
+                                    "697069b7000000002202d264"
+                                  ]
+                                },
+                                {
+                                  "name": "未来主义",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "689b158f000000001b03e512"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 3,
+                              "children": [],
+                              "total_posts_count": 3
+                            },
+                            {
+                              "name": "概念气质",
+                              "path": "/呈现/视觉/视觉气质/视觉风格/艺术风格/审美取向/概念气质",
+                              "id": 15612,
+                              "source_stable_id": 1437,
+                              "source_type": "形式",
+                              "description": "以抽象概念或气质特征定义的审美取向",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15903,
+                              "element_count": 4,
+                              "elements": [
+                                {
+                                  "name": "高辨识度",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "b64188c6bcb0fb359d8e8075671584d6"
+                                  ]
+                                },
+                                {
+                                  "name": "存在主义",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "68e6ecb90000000003021e34",
+                                    "6911177d0000000007031417"
+                                  ]
+                                },
+                                {
+                                  "name": "经典",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "56380736"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 4,
+                              "children": [],
+                              "total_posts_count": 2
+                            },
+                            {
+                              "name": "民俗传统",
+                              "path": "/呈现/视觉/视觉气质/视觉风格/艺术风格/审美取向/民俗传统",
+                              "id": 15609,
+                              "source_stable_id": 1434,
+                              "source_type": "形式",
+                              "description": "根植于传统文化和民间习俗的审美风格",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15903,
+                              "element_count": 7,
+                              "elements": [
+                                {
+                                  "name": "民俗风",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "65801945"
+                                  ]
+                                },
+                                {
+                                  "name": "喜庆民俗",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "65162446",
+                                    "65196789"
+                                  ]
+                                },
+                                {
+                                  "name": "民俗化",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "65139072",
+                                    "65142392"
+                                  ]
+                                },
+                                {
+                                  "name": "民俗风格",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "65135957"
+                                  ]
+                                },
+                                {
+                                  "name": "乡土风",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "65514975"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 7,
+                              "children": [],
+                              "total_posts_count": 0
+                            },
+                            {
+                              "name": "真实再现",
+                              "path": "/呈现/视觉/视觉气质/视觉风格/艺术风格/审美取向/真实再现",
+                              "id": 15934,
+                              "source_stable_id": 1432,
+                              "source_type": "形式",
+                              "description": "追求真实感和纪实质感的审美风格",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15903,
+                              "element_count": 0,
+                              "elements": [],
+                              "total_element_count": 3,
+                              "children": [
+                                {
+                                  "name": "写实纪实",
+                                  "path": "/呈现/视觉/视觉气质/视觉风格/艺术风格/审美取向/真实再现/写实纪实",
+                                  "id": 15701,
+                                  "source_stable_id": 1573,
+                                  "source_type": "形式",
+                                  "description": "通过写实技法或纪实手法追求高度真实感的视觉风格",
+                                  "category_nature": "领域",
+                                  "level": 8,
+                                  "parent_id": 15934,
+                                  "element_count": 3,
+                                  "elements": [
+                                    {
+                                      "name": "写实风格",
+                                      "count": 3,
+                                      "post_ids": [
+                                        "12357835",
+                                        "56380736",
+                                        "64816949"
+                                      ]
+                                    }
+                                  ],
+                                  "total_element_count": 3,
+                                  "children": [],
+                                  "total_posts_count": 0
+                                }
+                              ],
+                              "total_posts_count": 0
+                            },
+                            {
+                              "name": "群体审美",
+                              "path": "/呈现/视觉/视觉气质/视觉风格/艺术风格/审美取向/群体审美",
+                              "id": 15437,
+                              "source_stable_id": 1182,
+                              "source_type": "形式",
+                              "description": "特定人群审美偏好的视觉风格,如中老年群体偏好的高饱和度、喜庆元素等",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15903,
+                              "element_count": 5,
+                              "elements": [
+                                {
+                                  "name": "中老年审美",
+                                  "count": 3,
+                                  "post_ids": [
+                                    "59121599",
+                                    "65026165",
+                                    "65801945"
+                                  ]
+                                },
+                                {
+                                  "name": "中老年风格",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "65203608"
+                                  ]
+                                },
+                                {
+                                  "name": "祝福视觉",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "65098787"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 5,
+                              "children": [],
+                              "total_posts_count": 0
+                            },
+                            {
+                              "name": "风格融合",
+                              "path": "/呈现/视觉/视觉气质/视觉风格/艺术风格/审美取向/风格融合",
+                              "id": 15611,
+                              "source_stable_id": 1436,
+                              "source_type": "形式",
+                              "description": "融合多种文化或风格的跨界审美取向",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15903,
+                              "element_count": 3,
+                              "elements": [
+                                {
+                                  "name": "多元化",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "6965d491000000000e00f9b0"
+                                  ]
+                                },
+                                {
+                                  "name": "日系风格",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "69535514000000001e032b26"
+                                  ]
+                                },
+                                {
+                                  "name": "跨文化",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "64816949"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 3,
+                              "children": [],
+                              "total_posts_count": 2
+                            }
+                          ],
+                          "total_posts_count": 29
+                        },
+                        {
+                          "name": "极简风格",
+                          "path": "/呈现/视觉/视觉气质/视觉风格/艺术风格/极简风格",
+                          "id": 15409,
+                          "source_stable_id": 369,
+                          "source_type": "形式",
+                          "description": "追求简约、留白与几何化的视觉风格",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15889,
+                          "element_count": 11,
+                          "elements": [
+                            {
+                              "name": "极简主义",
+                              "count": 2,
+                              "post_ids": [
+                                "65eea166000000000d00c6d8",
+                                "682bdbba000000002202b26e"
+                              ]
+                            },
+                            {
+                              "name": "极简风格",
+                              "count": 2,
+                              "post_ids": [
+                                "6975b27c000000002202d2fb",
+                                "6975b3c50000000022020356"
+                              ]
+                            },
+                            {
+                              "name": "极简意境",
+                              "count": 1,
+                              "post_ids": [
+                                "6975b2d7000000002200b4ae"
+                              ]
+                            },
+                            {
+                              "name": "极简几何",
+                              "count": 3,
+                              "post_ids": [
+                                "692a535f0000000019026d5b",
+                                "693f94d80000000019025898",
+                                "6964bc98000000002202c86f"
+                              ]
+                            },
+                            {
+                              "name": "简洁",
+                              "count": 1,
+                              "post_ids": [
+                                "682086dc0000000012003cbd"
+                              ]
+                            },
+                            {
+                              "name": "极简",
+                              "count": 2,
+                              "post_ids": [
+                                "65604986",
+                                "669b52720000000025003596"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 11,
+                          "children": [],
+                          "total_posts_count": 10
+                        },
+                        {
+                          "name": "泛化概括",
+                          "path": "/呈现/视觉/视觉气质/视觉风格/艺术风格/泛化概括",
+                          "id": 15904,
+                          "source_stable_id": 417,
+                          "source_type": "形式",
+                          "description": "对视觉风格、氛围、呈现等上位概念的泛化概述性表达",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15889,
+                          "element_count": 0,
+                          "elements": [],
+                          "total_element_count": 50,
+                          "children": [
+                            {
+                              "name": "构成单元",
+                              "path": "/呈现/视觉/视觉气质/视觉风格/艺术风格/泛化概括/构成单元",
+                              "id": 15602,
+                              "source_stable_id": 1425,
+                              "source_type": "形式",
+                              "description": "组成内容的基本要素和核心部分",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15904,
+                              "element_count": 31,
+                              "elements": [
+                                {
+                                  "name": "呈现",
+                                  "count": 6,
+                                  "post_ids": [
+                                    "03c54bcf569a9f957f3879f5e87cbb19",
+                                    "55327642",
+                                    "64400730",
+                                    "64610880",
+                                    "b9bc7d3c46583a41a76867f0ac7e62f1",
+                                    "d7a04d4550a7c852ac4a16301e600aa5"
+                                  ]
+                                },
+                                {
+                                  "name": "呈现方式",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "accf5d531aaa9ef7b9e6fee360944151"
+                                  ]
+                                },
+                                {
+                                  "name": "元素",
+                                  "count": 4,
+                                  "post_ids": [
+                                    "412f4d35be48179908fef312b53cad43",
+                                    "61bdc28b0000000001024896",
+                                    "6865ec61000000000b02c53b",
+                                    "689b158f000000001b03e512"
+                                  ]
+                                },
+                                {
+                                  "name": "视觉呈现",
+                                  "count": 9,
+                                  "post_ids": [
+                                    "55994947",
+                                    "57028518",
+                                    "61822382",
+                                    "6880a7a7000000000b02f5a6",
+                                    "6892d47c0000000025018c4f",
+                                    "68bf8639000000001c03efd2",
+                                    "68ca143d000000001202c3de",
+                                    "68f5976e000000000700dd28",
+                                    "d7dcfed942f432bd9c75ec4e2cd31b99"
+                                  ]
+                                },
+                                {
+                                  "name": "视觉",
+                                  "count": 10,
+                                  "post_ids": [
+                                    "46193165",
+                                    "47537727",
+                                    "47951584",
+                                    "59121599",
+                                    "65515618",
+                                    "673c37610000000007029ced",
+                                    "6913cafd000000000703402b",
+                                    "692cc7ab000000001b030110",
+                                    "693f425a000000001e00ed26"
+                                  ]
+                                },
+                                {
+                                  "name": "主体",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "65027290"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 31,
+                              "children": [],
+                              "total_posts_count": 12
+                            },
+                            {
+                              "name": "组织方式",
+                              "path": "/呈现/视觉/视觉气质/视觉风格/艺术风格/泛化概括/组织方式",
+                              "id": 15603,
+                              "source_stable_id": 1426,
+                              "source_type": "形式",
+                              "description": "内容的结构安排和组织手法",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15904,
+                              "element_count": 2,
+                              "elements": [
+                                {
+                                  "name": "结合",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "692d3b99000000001e022295"
+                                  ]
+                                },
+                                {
+                                  "name": "视觉设计",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "21006075"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 2,
+                              "children": [],
+                              "total_posts_count": 1
+                            },
+                            {
+                              "name": "表现载体",
+                              "path": "/呈现/视觉/视觉气质/视觉风格/艺术风格/泛化概括/表现载体",
+                              "id": 15600,
+                              "source_stable_id": 1423,
+                              "source_type": "形式",
+                              "description": "呈现内容的媒介形式和表达载体",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15904,
+                              "element_count": 2,
+                              "elements": [
+                                {
+                                  "name": "视觉素材",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "3de8289cfddb37a8b027d60dce4dfdb1"
+                                  ]
+                                },
+                                {
+                                  "name": "表演视频",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "12357835"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 2,
+                              "children": [],
+                              "total_posts_count": 0
+                            },
+                            {
+                              "name": "表达技法",
+                              "path": "/呈现/视觉/视觉气质/视觉风格/艺术风格/泛化概括/表达技法",
+                              "id": 15604,
+                              "source_stable_id": 1427,
+                              "source_type": "形式",
+                              "description": "具体的表达方法和呈现手段",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15904,
+                              "element_count": 1,
+                              "elements": [
+                                {
+                                  "name": "运用",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "6634a322000000001e01bcd5"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 1,
+                              "children": [],
+                              "total_posts_count": 1
+                            },
+                            {
+                              "name": "风格基调",
+                              "path": "/呈现/视觉/视觉气质/视觉风格/艺术风格/泛化概括/风格基调",
+                              "id": 15601,
+                              "source_stable_id": 1424,
+                              "source_type": "形式",
+                              "description": "整体的艺术风格、氛围感受和视觉基调",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15904,
+                              "element_count": 14,
+                              "elements": [
+                                {
+                                  "name": "视觉风格",
+                                  "count": 9,
+                                  "post_ids": [
+                                    "62255386",
+                                    "63253503",
+                                    "64246342",
+                                    "64886621",
+                                    "67e224cc000000000602a6c5",
+                                    "689b158f000000001b03e512",
+                                    "68b15f32000000001d00ef75",
+                                    "6960924b000000001a037a1c",
+                                    "6964ab0e000000001a035c04"
+                                  ]
+                                },
+                                {
+                                  "name": "氛围",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "685b68c300000000150226bd",
+                                    "6865ec61000000000b02c53b"
+                                  ]
+                                },
+                                {
+                                  "name": "风格",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "64662179"
+                                  ]
+                                },
+                                {
+                                  "name": "审美风格",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "64603799"
+                                  ]
+                                },
+                                {
+                                  "name": "图景",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "64855234"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 14,
+                              "children": [],
+                              "total_posts_count": 7
+                            }
+                          ],
+                          "total_posts_count": 19
+                        },
+                        {
+                          "name": "绘画艺术",
+                          "path": "/呈现/视觉/视觉气质/视觉风格/艺术风格/绘画艺术",
+                          "id": 15408,
+                          "source_stable_id": 368,
+                          "source_type": "形式",
+                          "description": "源自特定绘画流派或艺术形式的视觉风格",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15889,
+                          "element_count": 64,
+                          "elements": [
+                            {
+                              "name": "极简插画",
+                              "count": 1,
+                              "post_ids": [
+                                "6951c718000000001e0105b7"
+                              ]
+                            },
+                            {
+                              "name": "治愈系插画",
+                              "count": 8,
+                              "post_ids": [
+                                "661dbf91000000001a0119b6",
+                                "68ec3f9d000000000700de97",
+                                "68f568a1000000000301053d",
+                                "690333e70000000007022604",
+                                "6907ed79000000000703699c",
+                                "691a54bd000000000700be32",
+                                "691f9a9f000000000d00ea0a",
+                                "69434b1f000000001e013f9e"
+                              ]
+                            },
+                            {
+                              "name": "抽象意象",
+                              "count": 1,
+                              "post_ids": [
+                                "6911177d0000000007031417"
+                              ]
+                            },
+                            {
+                              "name": "几何抽象",
+                              "count": 1,
+                              "post_ids": [
+                                "6837f019000000000c03aab2"
+                              ]
+                            },
+                            {
+                              "name": "超现实主义",
+                              "count": 21,
+                              "post_ids": [
+                                "692a535f0000000019026d5b",
+                                "693f94d80000000019025898",
+                                "696078f70000000022038479",
+                                "696079a10000000022031521",
+                                "6964bee80000000022039e8c",
+                                "696b528900000000210333ea",
+                                "696b52dd000000002202c60a",
+                                "696b5332000000002103c497",
+                                "696b537f00000000220398ad",
+                                "6970693f000000002102bec2",
+                                "697069b7000000002202d264",
+                                "69706a0600000000210282bd",
+                                "6975b27c000000002202d2fb",
+                                "6975b32c000000002102bc55",
+                                "6975b361000000002202d7e8",
+                                "6975b3c50000000022020356"
+                              ]
+                            },
+                            {
+                              "name": "点彩式",
+                              "count": 6,
+                              "post_ids": [
+                                "696079a10000000022031521",
+                                "696b528900000000210333ea",
+                                "696b52dd000000002202c60a",
+                                "6970693f000000002102bec2",
+                                "697069b7000000002202d264",
+                                "69706a0600000000210282bd"
+                              ]
+                            },
+                            {
+                              "name": "绘画风格",
+                              "count": 2,
+                              "post_ids": [
+                                "6964be3900000000210282a4",
+                                "6964bee80000000022039e8c"
+                              ]
+                            },
+                            {
+                              "name": "油画质感",
+                              "count": 1,
+                              "post_ids": [
+                                "6964bee80000000022039e8c"
+                              ]
+                            },
+                            {
+                              "name": "笔触",
+                              "count": 1,
+                              "post_ids": [
+                                "6964bee80000000022039e8c"
+                              ]
+                            },
+                            {
+                              "name": "爱德华·霍珀式",
+                              "count": 1,
+                              "post_ids": [
+                                "6964beb3000000002103361a"
+                              ]
+                            },
+                            {
+                              "name": "超现实",
+                              "count": 15,
+                              "post_ids": [
+                                "62675775",
+                                "64662179",
+                                "64886621",
+                                "677b5460000000000b00d33e",
+                                "67862d98000000001a01f443",
+                                "67b2a7f7000000002802a0d7",
+                                "67d7a294000000001c03eef9",
+                                "6803185a000000000b01ef09",
+                                "6810596c000000002301d1a6",
+                                "682ede8f000000002202bff2",
+                                "685e7903000000000b02c13e",
+                                "6881d560000000001703076c",
+                                "68a4107f000000001c00e8e9"
+                              ]
+                            },
+                            {
+                              "name": "抽象",
+                              "count": 1,
+                              "post_ids": [
+                                "682ede8f000000002202bff2"
+                              ]
+                            },
+                            {
+                              "name": "拟人化插画",
+                              "count": 1,
+                              "post_ids": [
+                                "6727171b000000001b01114b"
+                              ]
+                            },
+                            {
+                              "name": "插画式",
+                              "count": 1,
+                              "post_ids": [
+                                "6912d90f00000000050113b3"
+                              ]
+                            },
+                            {
+                              "name": "办公场景插画",
+                              "count": 1,
+                              "post_ids": [
+                                "68f9e8400000000005033268"
+                              ]
+                            },
+                            {
+                              "name": "卡通",
+                              "count": 1,
+                              "post_ids": [
+                                "6965ea53000000000e00f0f1"
+                              ]
+                            },
+                            {
+                              "name": "插画",
+                              "count": 1,
+                              "post_ids": [
+                                "64162740"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 64,
+                          "children": [],
+                          "total_posts_count": 43
+                        },
+                        {
+                          "name": "视觉冲击",
+                          "path": "/呈现/视觉/视觉气质/视觉风格/艺术风格/视觉冲击",
+                          "id": 15411,
+                          "source_stable_id": 372,
+                          "source_type": "形式",
+                          "description": "强调视觉吸引力和冲击效果的风格特征",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15889,
+                          "element_count": 10,
+                          "elements": [
+                            {
+                              "name": "警示性",
+                              "count": 1,
+                              "post_ids": [
+                                "22bcaccb2262e8864af03c8323490832"
+                              ]
+                            },
+                            {
+                              "name": "视觉效果",
+                              "count": 8,
+                              "post_ids": [
+                                "648d8edf0000000011013447",
+                                "64975752",
+                                "66d1ab42000000001f015507",
+                                "6794ca60000000001801ba29",
+                                "67d55ec7000000000e004e69",
+                                "683d8695000000001200012a",
+                                "68a06bea000000001d021202",
+                                "696b52dd000000002202c60a"
+                              ]
+                            },
+                            {
+                              "name": "创意视觉内容",
+                              "count": 1,
+                              "post_ids": [
+                                "67d7a294000000001c03eef9"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 10,
+                          "children": [],
+                          "total_posts_count": 8
+                        }
+                      ],
+                      "total_posts_count": 104
+                    }
+                  ],
+                  "total_posts_count": 133
+                }
+              ],
+              "total_posts_count": 157
+            }
+          ],
+          "total_posts_count": 297
+        }
+      ],
+      "total_posts_count": 297
+    },
+    {
+      "name": "呼吁",
+      "path": "/呼吁",
+      "id": 16008,
+      "source_stable_id": -22,
+      "source_type": "意图",
+      "description": null,
+      "category_nature": null,
+      "level": 1,
+      "parent_id": null,
+      "element_count": 2,
+      "elements": [
+        {
+          "name": "呼吁",
+          "count": 2,
+          "post_ids": [
+            "63712731",
+            "64076321"
+          ]
+        }
+      ],
+      "total_element_count": 2,
+      "children": [],
+      "total_posts_count": 0
+    },
+    {
+      "name": "呼吁保护",
+      "path": "/呼吁保护",
+      "id": 16006,
+      "source_stable_id": -20,
+      "source_type": "意图",
+      "description": null,
+      "category_nature": null,
+      "level": 1,
+      "parent_id": null,
+      "element_count": 1,
+      "elements": [
+        {
+          "name": "呼吁保护",
+          "count": 1,
+          "post_ids": [
+            "64729260"
+          ]
+        }
+      ],
+      "total_element_count": 1,
+      "children": [],
+      "total_posts_count": 0
+    },
+    {
+      "name": "回馈粉丝",
+      "path": "/回馈粉丝",
+      "id": 15997,
+      "source_stable_id": -11,
+      "source_type": "意图",
+      "description": null,
+      "category_nature": null,
+      "level": 1,
+      "parent_id": null,
+      "element_count": 1,
+      "elements": [
+        {
+          "name": "回馈粉丝",
+          "count": 1,
+          "post_ids": [
+            "6687d458000000000a026f91"
+          ]
+        }
+      ],
+      "total_element_count": 1,
+      "children": [],
+      "total_posts_count": 1
+    },
+    {
+      "name": "宣传",
+      "path": "/宣传",
+      "id": 15992,
+      "source_stable_id": -6,
+      "source_type": "意图",
+      "description": null,
+      "category_nature": null,
+      "level": 1,
+      "parent_id": null,
+      "element_count": 4,
+      "elements": [
+        {
+          "name": "宣传",
+          "count": 4,
+          "post_ids": [
+            "04bcda9fc132c52a8eee5d7ba994119d",
+            "6732cd8a000000001b02f948",
+            "6732f52f000000001b013fdb",
+            "6944e9b5000000001e02472d"
+          ]
+        }
+      ],
+      "total_element_count": 4,
+      "children": [],
+      "total_posts_count": 3
+    },
+    {
+      "name": "展示",
+      "path": "/展示",
+      "id": 15995,
+      "source_stable_id": -9,
+      "source_type": "意图",
+      "description": null,
+      "category_nature": null,
+      "level": 1,
+      "parent_id": null,
+      "element_count": 16,
+      "elements": [
+        {
+          "name": "展示",
+          "count": 16,
+          "post_ids": [
+            "12357835",
+            "44556070",
+            "66619827000000000600486f",
+            "6774ab9a0000000009015a3f",
+            "682a8f11000000002002a511",
+            "68708544000000000d026732",
+            "6882f593000000001100272d",
+            "68b953e4000000001d00f96f",
+            "68bf8639000000001c03efd2",
+            "68ca143d000000001202c3de",
+            "68db5bd00000000007015474",
+            "68e9b94d0000000007036a6a",
+            "68f5976e000000000700dd28",
+            "68f988f2000000000703ada5",
+            "69002ba70000000007008bcc",
+            "69114f150000000007001f30"
+          ]
+        }
+      ],
+      "total_element_count": 16,
+      "children": [],
+      "total_posts_count": 14
+    },
+    {
+      "name": "引导",
+      "path": "/引导",
+      "id": 16005,
+      "source_stable_id": -19,
+      "source_type": "意图",
+      "description": null,
+      "category_nature": null,
+      "level": 1,
+      "parent_id": null,
+      "element_count": 2,
+      "elements": [
+        {
+          "name": "引导",
+          "count": 2,
+          "post_ids": [
+            "63972446",
+            "65142392"
+          ]
+        }
+      ],
+      "total_element_count": 2,
+      "children": [],
+      "total_posts_count": 0
+    },
+    {
+      "name": "引导转发",
+      "path": "/引导转发",
+      "id": 16001,
+      "source_stable_id": -15,
+      "source_type": "意图",
+      "description": null,
+      "category_nature": null,
+      "level": 1,
+      "parent_id": null,
+      "element_count": 1,
+      "elements": [
+        {
+          "name": "引导转发",
+          "count": 1,
+          "post_ids": [
+            "65135957"
+          ]
+        }
+      ],
+      "total_element_count": 1,
+      "children": [],
+      "total_posts_count": 0
+    },
+    {
+      "name": "报道",
+      "path": "/报道",
+      "id": 15989,
+      "source_stable_id": -3,
+      "source_type": "意图",
+      "description": null,
+      "category_nature": null,
+      "level": 1,
+      "parent_id": null,
+      "element_count": 13,
+      "elements": [
+        {
+          "name": "报道",
+          "count": 13,
+          "post_ids": [
+            "333bd89e657acbcd9b26201f93cd8993",
+            "3b8bfac263ace2eb578c85c98630e566",
+            "4020e56c08340e92c9862e481c07d2e2",
+            "4bab077aa99a235a81c41631af69aa78",
+            "59c0ba8a450a7d2327b78d72c0697938",
+            "8d43fa69c8f4f5e7d87ec45244cbd97c",
+            "9c87381270abacce95e103b3a000e086",
+            "b64188c6bcb0fb359d8e8075671584d6",
+            "b76365fa6008e98aea8b6876bcc4e3d0",
+            "d7a04d4550a7c852ac4a16301e600aa5",
+            "d7dcfed942f432bd9c75ec4e2cd31b99",
+            "f97823103ca8ad6cd69037958d17ae32",
+            "fc4773ccef61d3092666496328603e9d"
+          ]
+        }
+      ],
+      "total_element_count": 13,
+      "children": [],
+      "total_posts_count": 0
+    },
+    {
+      "name": "招募",
+      "path": "/招募",
+      "id": 15998,
+      "source_stable_id": -12,
+      "source_type": "意图",
+      "description": null,
+      "category_nature": null,
+      "level": 1,
+      "parent_id": null,
+      "element_count": 1,
+      "elements": [
+        {
+          "name": "招募",
+          "count": 1,
+          "post_ids": [
+            "68f9fb67000000000400736f"
+          ]
+        }
+      ],
+      "total_element_count": 1,
+      "children": [],
+      "total_posts_count": 1
+    },
+    {
+      "name": "推广",
+      "path": "/推广",
+      "id": 15994,
+      "source_stable_id": -8,
+      "source_type": "意图",
+      "description": null,
+      "category_nature": null,
+      "level": 1,
+      "parent_id": null,
+      "element_count": 72,
+      "elements": [
+        {
+          "name": "推广",
+          "count": 72,
+          "post_ids": [
+            "65eea166000000000d00c6d8",
+            "67316440000000001b02e75e",
+            "673c37610000000007029ced",
+            "673d9a58000000000702450b",
+            "6781eb19000000000b039867",
+            "67bee0df000000002802acd1",
+            "67e224cc000000000602a6c5",
+            "67e243d0000000001d02495b",
+            "67e27e6e000000000b017c96",
+            "67e6398f000000001d005ebb",
+            "67fd299a000000001c00cf5d",
+            "68077d02000000001c02dd81",
+            "680898fa000000001c01c23e",
+            "6810596c000000002301d1a6",
+            "682ede8f000000002202bff2",
+            "6843ab3f000000002202508e",
+            "684a7e3c0000000023012b8d",
+            "68528a360000000010010c6d",
+            "685e7903000000000b02c13e",
+            "685f974300000000120144db",
+            "686cd3a5000000000d0180b0",
+            "686f606c00000000120167b5",
+            "68737e97000000000d027b81",
+            "68789450000000000b01d4a4",
+            "6879f4b1000000000b02c2e0",
+            "6880a7a7000000000b02f5a6",
+            "688366bd000000000d024147",
+            "68875186000000002501649d",
+            "6892d47c0000000025018c4f",
+            "68946e0d000000002500ef6e",
+            "689b158f000000001b03e512",
+            "68a4107f000000001c00e8e9",
+            "68a43a11000000001c03cc96",
+            "68abe632000000001c0348c0",
+            "68b10b46000000001c00ca6c",
+            "68b15f32000000001d00ef75",
+            "68b69ea9000000001c035a4d",
+            "68be928b000000001c0361ea",
+            "68c15181000000001b01c358",
+            "68c3933e000000001d00a902",
+            "68ca25bc000000000e023656",
+            "68ccd4e40000000012030372",
+            "68d0089400000000120172a5",
+            "68d1ebb8000000001203fd96",
+            "68d610800000000012023282",
+            "68e0f5750000000007015ff9",
+            "68e8cac8000000000700da88",
+            "68ec9d6400000000070389be",
+            "68ecc19400000000050028c1",
+            "68ef83150000000007035f42",
+            "68f0b8140000000007008b05",
+            "68f1b573000000000702052e",
+            "68f1e631000000000503111b",
+            "68f78b950000000007021a20",
+            "68fa029e0000000007022932",
+            "68fa08f60000000005030ddc",
+            "68faf90d0000000005011fa2",
+            "68ff53770000000007000d54",
+            "690075390000000004013a53",
+            "6901d072000000000703b6a3",
+            "69048be90000000005033c79",
+            "690af75a000000000503b57e",
+            "690d977d0000000007036331",
+            "690ed2240000000005002b41",
+            "6912d90f00000000050113b3",
+            "6915dfc400000000070224d9",
+            "69297dde000000001f006b90",
+            "69297e47000000001e028ec3",
+            "692e7906000000001f006ff1",
+            "692fe421000000001f00691a",
+            "69535514000000001e032b26",
+            "69756d90000000001a020c81"
+          ]
+        }
+      ],
+      "total_element_count": 72,
+      "children": [],
+      "total_posts_count": 72
+    },
+    {
+      "name": "揭露",
+      "path": "/揭露",
+      "id": 16004,
+      "source_stable_id": -18,
+      "source_type": "意图",
+      "description": null,
+      "category_nature": null,
+      "level": 1,
+      "parent_id": null,
+      "element_count": 1,
+      "elements": [
+        {
+          "name": "揭露",
+          "count": 1,
+          "post_ids": [
+            "65515618"
+          ]
+        }
+      ],
+      "total_element_count": 1,
+      "children": [],
+      "total_posts_count": 0
+    },
+    {
+      "name": "整顿",
+      "path": "/整顿",
+      "id": 16009,
+      "source_stable_id": -23,
+      "source_type": "意图",
+      "description": null,
+      "category_nature": null,
+      "level": 1,
+      "parent_id": null,
+      "element_count": 1,
+      "elements": [
+        {
+          "name": "整顿",
+          "count": 1,
+          "post_ids": [
+            "63712731"
+          ]
+        }
+      ],
+      "total_element_count": 1,
+      "children": [],
+      "total_posts_count": 0
+    },
+    {
+      "name": "架构",
+      "path": "/架构",
+      "id": 15957,
+      "source_stable_id": 133,
+      "source_type": "形式",
+      "description": "内容中需要理解含义后才能识别的组织策略、逻辑结构和叙事手法",
+      "category_nature": "内容",
+      "level": 1,
+      "parent_id": null,
+      "element_count": 0,
+      "elements": [],
+      "total_element_count": 2010,
+      "children": [
+        {
+          "name": "修辞",
+          "path": "/架构/修辞",
+          "id": 15960,
+          "source_stable_id": 141,
+          "source_type": "形式",
+          "description": "修辞手法、语言风格、表达技巧等语言层面的策略",
+          "category_nature": "内容",
+          "level": 2,
+          "parent_id": 15957,
+          "element_count": 0,
+          "elements": [],
+          "total_element_count": 461,
+          "children": [
+            {
+              "name": "描写刻画",
+              "path": "/架构/修辞/描写刻画",
+              "id": 15961,
+              "source_stable_id": 160,
+              "source_type": "形式",
+              "description": "对事物细节进行精细描绘的表达技巧",
+              "category_nature": "维度",
+              "level": 3,
+              "parent_id": 15960,
+              "element_count": 0,
+              "elements": [],
+              "total_element_count": 20,
+              "children": [
+                {
+                  "name": "细节描绘",
+                  "path": "/架构/修辞/描写刻画/细节描绘",
+                  "id": 15760,
+                  "source_stable_id": 170,
+                  "source_type": "形式",
+                  "description": "对事物细微部分进行精细刻画与描写",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 15961,
+                  "element_count": 0,
+                  "elements": [],
+                  "total_element_count": 20,
+                  "children": [
+                    {
+                      "name": "场景描写",
+                      "path": "/架构/修辞/描写刻画/细节描绘/场景描写",
+                      "id": 15296,
+                      "source_stable_id": 898,
+                      "source_type": "形式",
+                      "description": "将内容置于具体情境中进行描写的手法",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15760,
+                      "element_count": 3,
+                      "elements": [
+                        {
+                          "name": "场景化",
+                          "count": 1,
+                          "post_ids": [
+                            "68f568a1000000000301053d"
+                          ]
+                        },
+                        {
+                          "name": "场景化描述",
+                          "count": 2,
+                          "post_ids": [
+                            "673c37610000000007029ced",
+                            "690af75a000000000503b57e"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 3,
+                      "children": [],
+                      "total_posts_count": 3
+                    },
+                    {
+                      "name": "感官描写",
+                      "path": "/架构/修辞/描写刻画/细节描绘/感官描写",
+                      "id": 15297,
+                      "source_stable_id": 899,
+                      "source_type": "形式",
+                      "description": "借助视觉、听觉、触觉等身体感官体验进行描写",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15760,
+                      "element_count": 2,
+                      "elements": [
+                        {
+                          "name": "感官化",
+                          "count": 1,
+                          "post_ids": [
+                            "68ec3f9d000000000700de97"
+                          ]
+                        },
+                        {
+                          "name": "体感化",
+                          "count": 1,
+                          "post_ids": [
+                            "6776b27d0000000013018545"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 2,
+                      "children": [],
+                      "total_posts_count": 2
+                    },
+                    {
+                      "name": "概括描写",
+                      "path": "/架构/修辞/描写刻画/细节描绘/概括描写",
+                      "id": 15295,
+                      "source_stable_id": 896,
+                      "source_type": "形式",
+                      "description": "对事物进行整体性描绘和刻画的泛化描写手法",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15760,
+                      "element_count": 6,
+                      "elements": [
+                        {
+                          "name": "描写",
+                          "count": 3,
+                          "post_ids": [
+                            "2c73223f278ea6aecd70b5b54f0aff21",
+                            "59c0ba8a450a7d2327b78d72c0697938",
+                            "61db1ae4bd885760b0f5cca9ecacb588"
+                          ]
+                        },
+                        {
+                          "name": "描述",
+                          "count": 2,
+                          "post_ids": [
+                            "57919607",
+                            "d07f1c79dd4ef03b92592fa81d54755b"
+                          ]
+                        },
+                        {
+                          "name": "扫描",
+                          "count": 1,
+                          "post_ids": [
+                            "752267d0ca2695c2ceb816a43d943a6a"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 6,
+                      "children": [],
+                      "total_posts_count": 0
+                    },
+                    {
+                      "name": "精细刻画",
+                      "path": "/架构/修辞/描写刻画/细节描绘/精细刻画",
+                      "id": 15294,
+                      "source_stable_id": 895,
+                      "source_type": "形式",
+                      "description": "对事物细微部分的聚焦式精细描写",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15760,
+                      "element_count": 9,
+                      "elements": [
+                        {
+                          "name": "心理描写",
+                          "count": 1,
+                          "post_ids": [
+                            "bc2f946d57e1c650575962e480eccf31"
+                          ]
+                        },
+                        {
+                          "name": "特定",
+                          "count": 1,
+                          "post_ids": [
+                            "4020e56c08340e92c9862e481c07d2e2"
+                          ]
+                        },
+                        {
+                          "name": "细节放大",
+                          "count": 1,
+                          "post_ids": [
+                            "fc4773ccef61d3092666496328603e9d"
+                          ]
+                        },
+                        {
+                          "name": "心理剖析",
+                          "count": 1,
+                          "post_ids": [
+                            "c84d14e15b8324b91df2cd8cb8304db9"
+                          ]
+                        },
+                        {
+                          "name": "心理揣摩",
+                          "count": 1,
+                          "post_ids": [
+                            "b485a7858fbfc4b74e805bfadf6fce90"
+                          ]
+                        },
+                        {
+                          "name": "细节呈现",
+                          "count": 1,
+                          "post_ids": [
+                            "68538f7c000000002400805b"
+                          ]
+                        },
+                        {
+                          "name": "细节",
+                          "count": 3,
+                          "post_ids": [
+                            "57121511",
+                            "63477609",
+                            "64610880"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 9,
+                      "children": [],
+                      "total_posts_count": 1
+                    }
+                  ],
+                  "total_posts_count": 6
+                }
+              ],
+              "total_posts_count": 6
+            },
+            {
+              "name": "语调风格",
+              "path": "/架构/修辞/语调风格",
+              "id": 15800,
+              "source_stable_id": 331,
+              "source_type": "形式",
+              "description": "内容的语言格调与表达氛围,如幽默、犀利、温情等",
+              "category_nature": "维度",
+              "level": 3,
+              "parent_id": 15960,
+              "element_count": 0,
+              "elements": [],
+              "total_element_count": 155,
+              "children": [
+                {
+                  "name": "平实表达",
+                  "path": "/架构/修辞/语调风格/平实表达",
+                  "id": 15001,
+                  "source_stable_id": 384,
+                  "source_type": "形式",
+                  "description": "简洁直接、朴素不加修饰的文字表达风格",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 15800,
+                  "element_count": 8,
+                  "elements": [
+                    {
+                      "name": "直述式",
+                      "count": 1,
+                      "post_ids": [
+                        "4bab077aa99a235a81c41631af69aa78"
+                      ]
+                    },
+                    {
+                      "name": "权威通稿式",
+                      "count": 1,
+                      "post_ids": [
+                        "d07f1c79dd4ef03b92592fa81d54755b"
+                      ]
+                    },
+                    {
+                      "name": "直白",
+                      "count": 1,
+                      "post_ids": [
+                        "682086dc0000000012003cbd"
+                      ]
+                    },
+                    {
+                      "name": "直白式",
+                      "count": 5,
+                      "post_ids": [
+                        "56977187",
+                        "57028518",
+                        "58933772",
+                        "64886621",
+                        "65026165"
+                      ]
+                    }
+                  ],
+                  "total_element_count": 8,
+                  "children": [],
+                  "total_posts_count": 1
+                },
+                {
+                  "name": "幽默戏谑",
+                  "path": "/架构/修辞/语调风格/幽默戏谑",
+                  "id": 15803,
+                  "source_stable_id": 340,
+                  "source_type": "形式",
+                  "description": "以诙谐、调侃、自嘲、荒诞为特征的语言风格",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 15800,
+                  "element_count": 0,
+                  "elements": [],
+                  "total_element_count": 107,
+                  "children": [
+                    {
+                      "name": "吐槽调侃",
+                      "path": "/架构/修辞/语调风格/幽默戏谑/吐槽调侃",
+                      "id": 15286,
+                      "source_stable_id": 886,
+                      "source_type": "形式",
+                      "description": "对外部事物进行戏谑性评价、调侃或抱怨的幽默表达方式",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15803,
+                      "element_count": 11,
+                      "elements": [
+                        {
+                          "name": "吐槽式",
+                          "count": 1,
+                          "post_ids": [
+                            "6819f25e000000002301cca5"
+                          ]
+                        },
+                        {
+                          "name": "吐槽文案",
+                          "count": 8,
+                          "post_ids": [
+                            "648d8edf0000000011013447",
+                            "6602bd07000000001203348c",
+                            "66d1ab42000000001f015507",
+                            "67389194000000001d038599",
+                            "67fe11bb000000000d017b89",
+                            "6804ddfa000000000b01c901",
+                            "68909e20000000000403fa4e",
+                            "69185d49000000000d00f94e"
+                          ]
+                        },
+                        {
+                          "name": "吐槽",
+                          "count": 2,
+                          "post_ids": [
+                            "64554023",
+                            "64965843"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 11,
+                      "children": [],
+                      "total_posts_count": 9
+                    },
+                    {
+                      "name": "泛幽默表达",
+                      "path": "/架构/修辞/语调风格/幽默戏谑/泛幽默表达",
+                      "id": 15289,
+                      "source_stable_id": 889,
+                      "source_type": "形式",
+                      "description": "不特指某种幽默技法的通用性诙谐风格和幽默内容载体",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15803,
+                      "element_count": 36,
+                      "elements": [
+                        {
+                          "name": "幽默",
+                          "count": 8,
+                          "post_ids": [
+                            "6961b301000000001a02f6af",
+                            "6965adce000000001a02a701",
+                            "69685275000000000e03c790",
+                            "69698d0c000000001a036078",
+                            "696c2b7b000000001a02b944",
+                            "6970373f000000000e00f81d",
+                            "697318f2000000001a01fd50",
+                            "697569b0000000001a02448c"
+                          ]
+                        },
+                        {
+                          "name": "幽默文案",
+                          "count": 12,
+                          "post_ids": [
+                            "6960924b000000001a037a1c",
+                            "6961b301000000001a02f6af",
+                            "6965adce000000001a02a701",
+                            "6966f1df000000001a032514",
+                            "69685275000000000e03c790",
+                            "69698d0c000000001a036078",
+                            "696ad820000000001a022994",
+                            "696c2b7b000000001a02b944",
+                            "6970373f000000000e00f81d",
+                            "697171fd000000000d00bee8",
+                            "697318f2000000001a01fd50",
+                            "697569b0000000001a02448c"
+                          ]
+                        },
+                        {
+                          "name": "幽默化标题",
+                          "count": 11,
+                          "post_ids": [
+                            "65f4359b00000000140079b5",
+                            "6649dbe3000000000c018112",
+                            "66519efa000000001500a2bb",
+                            "6666dd86000000001500b7ff",
+                            "66daeddb000000002603ea42",
+                            "6711d712000000001b012783",
+                            "676535f4000000000b00dfd1",
+                            "6794ca60000000001801ba29",
+                            "67e68c9d00000000060282fb",
+                            "680e2433000000000e004e91",
+                            "68fb6a5c000000000302e5de"
+                          ]
+                        },
+                        {
+                          "name": "趣事",
+                          "count": 2,
+                          "post_ids": [
+                            "6666dd86000000001500b7ff",
+                            "67b9840d000000000603a241"
+                          ]
+                        },
+                        {
+                          "name": "搞笑",
+                          "count": 1,
+                          "post_ids": [
+                            "6602bd07000000001203348c"
+                          ]
+                        },
+                        {
+                          "name": "搞笑段子",
+                          "count": 1,
+                          "post_ids": [
+                            "64631158"
+                          ]
+                        },
+                        {
+                          "name": "单人脱口秀",
+                          "count": 1,
+                          "post_ids": [
+                            "55099131"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 36,
+                      "children": [],
+                      "total_posts_count": 25
+                    },
+                    {
+                      "name": "自嘲解构",
+                      "path": "/架构/修辞/语调风格/幽默戏谑/自嘲解构",
+                      "id": 15285,
+                      "source_stable_id": 885,
+                      "source_type": "形式",
+                      "description": "通过自我贬低、自我调侃或解构常规认知来制造幽默效果的表达方式",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15803,
+                      "element_count": 30,
+                      "elements": [
+                        {
+                          "name": "反鸡汤式",
+                          "count": 8,
+                          "post_ids": [
+                            "6961b301000000001a02f6af",
+                            "6965adce000000001a02a701",
+                            "69685275000000000e03c790",
+                            "69698d0c000000001a036078",
+                            "696c2b7b000000001a02b944",
+                            "6970373f000000000e00f81d",
+                            "697318f2000000001a01fd50",
+                            "697569b0000000001a02448c"
+                          ]
+                        },
+                        {
+                          "name": "自嘲式",
+                          "count": 12,
+                          "post_ids": [
+                            "56726652",
+                            "6879f4b1000000000b02c2e0",
+                            "6915dfc400000000070224d9",
+                            "6961b301000000001a02f6af",
+                            "6965adce000000001a02a701",
+                            "69698d0c000000001a036078",
+                            "696ad820000000001a022994",
+                            "696c2b7b000000001a02b944",
+                            "696ede36000000001a028e03",
+                            "6970373f000000000e00f81d",
+                            "697171fd000000000d00bee8"
+                          ]
+                        },
+                        {
+                          "name": "自嘲叙事",
+                          "count": 7,
+                          "post_ids": [
+                            "66619827000000000600486f",
+                            "67bee0df000000002802acd1",
+                            "67d7a294000000001c03eef9",
+                            "67e6398f000000001d005ebb",
+                            "68077d02000000001c02dd81",
+                            "6810596c000000002301d1a6",
+                            "6819f25e000000002301cca5"
+                          ]
+                        },
+                        {
+                          "name": "财务自嘲",
+                          "count": 3,
+                          "post_ids": [
+                            "686cd3a5000000000d0180b0",
+                            "688366bd000000000d024147",
+                            "68ccd4e40000000012030372"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 30,
+                      "children": [],
+                      "total_posts_count": 23
+                    },
+                    {
+                      "name": "荒诞夸张",
+                      "path": "/架构/修辞/语调风格/幽默戏谑/荒诞夸张",
+                      "id": 15287,
+                      "source_stable_id": 887,
+                      "source_type": "形式",
+                      "description": "通过不合常理、怪诞离奇、极度夸张的方式制造喜剧效果的表达风格",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15803,
+                      "element_count": 19,
+                      "elements": [
+                        {
+                          "name": "解构",
+                          "count": 1,
+                          "post_ids": [
+                            "6960924b000000001a037a1c"
+                          ]
+                        },
+                        {
+                          "name": "发疯文学",
+                          "count": 6,
+                          "post_ids": [
+                            "66619827000000000600486f",
+                            "67e6398f000000001d005ebb",
+                            "6810596c000000002301d1a6",
+                            "68946e0d000000002500ef6e",
+                            "68d1ebb8000000001203fd96",
+                            "68e0f5750000000007015ff9"
+                          ]
+                        },
+                        {
+                          "name": "荒诞化",
+                          "count": 5,
+                          "post_ids": [
+                            "64400730",
+                            "6781eb19000000000b039867",
+                            "67bee0df000000002802acd1",
+                            "68077d02000000001c02dd81",
+                            "680898fa000000001c01c23e"
+                          ]
+                        },
+                        {
+                          "name": "搞怪",
+                          "count": 1,
+                          "post_ids": [
+                            "677b5460000000000b00d33e"
+                          ]
+                        },
+                        {
+                          "name": "搞怪俏皮",
+                          "count": 6,
+                          "post_ids": [
+                            "661b9936000000001b012aa5",
+                            "664599b9000000001e01d218",
+                            "6803185a000000000b01ef09",
+                            "682086dc0000000012003cbd",
+                            "6843fb690000000012001659",
+                            "6879f0f90000000013012f9a"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 19,
+                      "children": [],
+                      "total_posts_count": 18
+                    },
+                    {
+                      "name": "语言游戏",
+                      "path": "/架构/修辞/语调风格/幽默戏谑/语言游戏",
+                      "id": 15288,
+                      "source_stable_id": 888,
+                      "source_type": "形式",
+                      "description": "利用语言本身的特性(如谐音、逻辑消解)制造幽默的修辞技巧",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15803,
+                      "element_count": 11,
+                      "elements": [
+                        {
+                          "name": "废话文学",
+                          "count": 2,
+                          "post_ids": [
+                            "6964ab0e000000001a035c04",
+                            "6966f1df000000001a032514"
+                          ]
+                        },
+                        {
+                          "name": "谐音梗",
+                          "count": 5,
+                          "post_ids": [
+                            "6649dbe3000000000c018112",
+                            "670baf34000000001600f52a",
+                            "671f7fab000000003c01fffc",
+                            "69756d90000000001a020c81"
+                          ]
+                        },
+                        {
+                          "name": "数字谐音",
+                          "count": 1,
+                          "post_ids": [
+                            "65489167"
+                          ]
+                        },
+                        {
+                          "name": "谐音祝福",
+                          "count": 1,
+                          "post_ids": [
+                            "47951584"
+                          ]
+                        },
+                        {
+                          "name": "谐音",
+                          "count": 2,
+                          "post_ids": [
+                            "47951584",
+                            "65450821"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 11,
+                      "children": [],
+                      "total_posts_count": 6
+                    }
+                  ],
+                  "total_posts_count": 61
+                },
+                {
+                  "name": "强硬对抗",
+                  "path": "/架构/修辞/语调风格/强硬对抗",
+                  "id": 15361,
+                  "source_stable_id": 1041,
+                  "source_type": "形式",
+                  "description": "态度坚决、语气强硬、具有攻击性或对抗性的表达风格",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 15800,
+                  "element_count": 8,
+                  "elements": [
+                    {
+                      "name": "断言式",
+                      "count": 1,
+                      "post_ids": [
+                        "9b95ed26ea9f265079b09e2d1032bc7c"
+                      ]
+                    },
+                    {
+                      "name": "强硬",
+                      "count": 1,
+                      "post_ids": [
+                        "f97823103ca8ad6cd69037958d17ae32"
+                      ]
+                    },
+                    {
+                      "name": "冲突式",
+                      "count": 1,
+                      "post_ids": [
+                        "4020e56c08340e92c9862e481c07d2e2"
+                      ]
+                    },
+                    {
+                      "name": "霸气回应式",
+                      "count": 1,
+                      "post_ids": [
+                        "8d43fa69c8f4f5e7d87ec45244cbd97c"
+                      ]
+                    },
+                    {
+                      "name": "严厉质询",
+                      "count": 1,
+                      "post_ids": [
+                        "cb673ebabb42a9499b3532943f8bb974"
+                      ]
+                    },
+                    {
+                      "name": "激进式",
+                      "count": 1,
+                      "post_ids": [
+                        "1068bda1f94431bfb3b91b60073f1e46"
+                      ]
+                    },
+                    {
+                      "name": "愤慨式",
+                      "count": 1,
+                      "post_ids": [
+                        "65515618"
+                      ]
+                    },
+                    {
+                      "name": "密集吐槽",
+                      "count": 1,
+                      "post_ids": [
+                        "64965843"
+                      ]
+                    }
+                  ],
+                  "total_element_count": 8,
+                  "children": [],
+                  "total_posts_count": 0
+                },
+                {
+                  "name": "文学笔触",
+                  "path": "/架构/修辞/语调风格/文学笔触",
+                  "id": 14991,
+                  "source_stable_id": 346,
+                  "source_type": "形式",
+                  "description": "具有文学性、书面化特征的文字表达风格",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 15800,
+                  "element_count": 13,
+                  "elements": [
+                    {
+                      "name": "学术化",
+                      "count": 1,
+                      "post_ids": [
+                        "b90a1bbdf6dcddcaf4f4ee2f201e1d26"
+                      ]
+                    },
+                    {
+                      "name": "文学",
+                      "count": 4,
+                      "post_ids": [
+                        "6965adce000000001a02a701",
+                        "69698d0c000000001a036078",
+                        "696ad820000000001a022994",
+                        "697171fd000000000d00bee8"
+                      ]
+                    },
+                    {
+                      "name": "文本风格",
+                      "count": 4,
+                      "post_ids": [
+                        "6961b301000000001a02f6af",
+                        "696ad820000000001a022994",
+                        "696c2b7b000000001a02b944",
+                        "6970373f000000000e00f81d"
+                      ]
+                    },
+                    {
+                      "name": "文案风格",
+                      "count": 2,
+                      "post_ids": [
+                        "63676018",
+                        "6912d90f00000000050113b3"
+                      ]
+                    },
+                    {
+                      "name": "文风",
+                      "count": 2,
+                      "post_ids": [
+                        "6879f4b1000000000b02c2e0",
+                        "6915dfc400000000070224d9"
+                      ]
+                    }
+                  ],
+                  "total_element_count": 13,
+                  "children": [],
+                  "total_posts_count": 10
+                },
+                {
+                  "name": "祝愿温情",
+                  "path": "/架构/修辞/语调风格/祝愿温情",
+                  "id": 15438,
+                  "source_stable_id": 1183,
+                  "source_type": "形式",
+                  "description": "以传递祝愿、祝福为核心的温情表达风格",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 15800,
+                  "element_count": 2,
+                  "elements": [
+                    {
+                      "name": "祝福风格",
+                      "count": 2,
+                      "post_ids": [
+                        "58933772",
+                        "65067062"
+                      ]
+                    }
+                  ],
+                  "total_element_count": 2,
+                  "children": [],
+                  "total_posts_count": 0
+                },
+                {
+                  "name": "讽刺犀利",
+                  "path": "/架构/修辞/语调风格/讽刺犀利",
+                  "id": 15021,
+                  "source_stable_id": 474,
+                  "source_type": "形式",
+                  "description": "以讽刺、嘲弄或犀利批评为核心语调的表达风格,包括揭露错位现象的讽刺批判、点名批评的直接指责等",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 15800,
+                  "element_count": 3,
+                  "elements": [
+                    {
+                      "name": "讽刺性",
+                      "count": 3,
+                      "post_ids": [
+                        "3b8bfac263ace2eb578c85c98630e566",
+                        "64631158",
+                        "64650216"
+                      ]
+                    }
+                  ],
+                  "total_element_count": 17,
+                  "children": [
+                    {
+                      "name": "批判质疑",
+                      "path": "/架构/修辞/语调风格/讽刺犀利/批判质疑",
+                      "id": 15627,
+                      "source_stable_id": 1455,
+                      "source_type": "形式",
+                      "description": "以直接批评、质询、指责等方式表达否定态度的表达手法",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15021,
+                      "element_count": 2,
+                      "elements": [
+                        {
+                          "name": "引用式抨击",
+                          "count": 1,
+                          "post_ids": [
+                            "49d6570f82c62ca372c932b67467878f"
+                          ]
+                        },
+                        {
+                          "name": "批判语言",
+                          "count": 1,
+                          "post_ids": [
+                            "57028518"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 2,
+                      "children": [],
+                      "total_posts_count": 0
+                    },
+                    {
+                      "name": "讽刺手法",
+                      "path": "/架构/修辞/语调风格/讽刺犀利/讽刺手法",
+                      "id": 15626,
+                      "source_stable_id": 1454,
+                      "source_type": "形式",
+                      "description": "以反讽、嘲弄等间接方式揭露矛盾和错位现象的表达手法",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15021,
+                      "element_count": 12,
+                      "elements": [
+                        {
+                          "name": "政治讽刺",
+                          "count": 1,
+                          "post_ids": [
+                            "49d6570f82c62ca372c932b67467878f"
+                          ]
+                        },
+                        {
+                          "name": "讽刺",
+                          "count": 5,
+                          "post_ids": [
+                            "56977419",
+                            "64442545",
+                            "64456019",
+                            "64631158",
+                            "64975752"
+                          ]
+                        },
+                        {
+                          "name": "反讽式幽默",
+                          "count": 1,
+                          "post_ids": [
+                            "64965843"
+                          ]
+                        },
+                        {
+                          "name": "反讽式对话",
+                          "count": 1,
+                          "post_ids": [
+                            "64958390"
+                          ]
+                        },
+                        {
+                          "name": "反讽式逻辑",
+                          "count": 1,
+                          "post_ids": [
+                            "64935973"
+                          ]
+                        },
+                        {
+                          "name": "讽刺叙事",
+                          "count": 1,
+                          "post_ids": [
+                            "64456019"
+                          ]
+                        },
+                        {
+                          "name": "讽刺剧",
+                          "count": 1,
+                          "post_ids": [
+                            "64442545"
+                          ]
+                        },
+                        {
+                          "name": "反讽式文字",
+                          "count": 1,
+                          "post_ids": [
+                            "63762367"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 12,
+                      "children": [],
+                      "total_posts_count": 0
+                    }
+                  ],
+                  "total_posts_count": 0
+                }
+              ],
+              "total_posts_count": 62
+            },
+            {
+              "name": "辞格意象",
+              "path": "/架构/修辞/辞格意象",
+              "id": 15756,
+              "source_stable_id": 159,
+              "source_type": "形式",
+              "description": "修辞格、意象、具象化等增强表达力的语言技巧",
+              "category_nature": "维度",
+              "level": 3,
+              "parent_id": 15960,
+              "element_count": 0,
+              "elements": [],
+              "total_element_count": 286,
+              "children": [
+                {
+                  "name": "修辞意象",
+                  "path": "/架构/修辞/辞格意象/修辞意象",
+                  "id": 14918,
+                  "source_stable_id": 169,
+                  "source_type": "形式",
+                  "description": "排比、具象化、意象、仪式化等辞格与意象运用",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 15756,
+                  "element_count": 20,
+                  "elements": [
+                    {
+                      "name": "手法",
+                      "count": 16,
+                      "post_ids": [
+                        "21006075",
+                        "3b8bfac263ace2eb578c85c98630e566",
+                        "63477609",
+                        "64589911",
+                        "661b9936000000001b012aa5",
+                        "67aea9de000000001800d129",
+                        "67bc233e000000000b0160fa",
+                        "67ee4e29000000001200f3c2",
+                        "6803185a000000000b01ef09",
+                        "68070ccb000000000f039a1b",
+                        "6881d560000000001703076c",
+                        "696f2f97000000000e00e33c",
+                        "b5245c3e7b1c09af072ea40e41d3cca8",
+                        "b64188c6bcb0fb359d8e8075671584d6",
+                        "ef63cef6ce5336e59ccb523e35f355dd",
+                        "fc4773ccef61d3092666496328603e9d"
+                      ]
+                    },
+                    {
+                      "name": "修辞",
+                      "count": 4,
+                      "post_ids": [
+                        "3b8bfac263ace2eb578c85c98630e566",
+                        "64610874",
+                        "8d43fa69c8f4f5e7d87ec45244cbd97c",
+                        "b90a1bbdf6dcddcaf4f4ee2f201e1d26"
+                      ]
+                    }
+                  ],
+                  "total_element_count": 286,
+                  "children": [
+                    {
+                      "name": "句式辞格",
+                      "path": "/架构/修辞/辞格意象/修辞意象/句式辞格",
+                      "id": 15770,
+                      "source_stable_id": 213,
+                      "source_type": "形式",
+                      "description": "排比、反问、设问等通过特定句式结构产生修辞效果的格式运用",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 14918,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 94,
+                      "children": [
+                        {
+                          "name": "反讽句式",
+                          "path": "/架构/修辞/辞格意象/修辞意象/句式辞格/反讽句式",
+                          "id": 15064,
+                          "source_stable_id": 537,
+                          "source_type": "形式",
+                          "description": "通过正话反说、双关等方式表达隐含意图的句式",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15770,
+                          "element_count": 33,
+                          "elements": [
+                            {
+                              "name": "反讽式",
+                              "count": 27,
+                              "post_ids": [
+                                "55099131",
+                                "55102015",
+                                "55327642",
+                                "56717837",
+                                "57447289",
+                                "59422696",
+                                "62025412",
+                                "62da797f45d5b2a8ebd9149c3b52c719",
+                                "63676018",
+                                "63712731",
+                                "63712737",
+                                "64076321",
+                                "64210278",
+                                "64400730",
+                                "64415308",
+                                "64450659",
+                                "64589911",
+                                "64610874",
+                                "64610880",
+                                "64801086",
+                                "64975752",
+                                "65135248",
+                                "68bf8639000000001c03efd2",
+                                "68ccd4e40000000012030372",
+                                "bc2f946d57e1c650575962e480eccf31",
+                                "d07f1c79dd4ef03b92592fa81d54755b",
+                                "df635f43f39a1fa41c13da96320c45c3"
+                              ]
+                            },
+                            {
+                              "name": "反讽式修辞",
+                              "count": 1,
+                              "post_ids": [
+                                "333bd89e657acbcd9b26201f93cd8993"
+                              ]
+                            },
+                            {
+                              "name": "双关语",
+                              "count": 3,
+                              "post_ids": [
+                                "6649dbe3000000000c018112",
+                                "670baf34000000001600f52a",
+                                "671f7fab000000003c01fffc"
+                              ]
+                            },
+                            {
+                              "name": "反讽式表达",
+                              "count": 2,
+                              "post_ids": [
+                                "63762379",
+                                "64870193"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 33,
+                          "children": [],
+                          "total_posts_count": 5
+                        },
+                        {
+                          "name": "排比句式",
+                          "path": "/架构/修辞/辞格意象/修辞意象/句式辞格/排比句式",
+                          "id": 15062,
+                          "source_stable_id": 534,
+                          "source_type": "形式",
+                          "description": "结构相似、语气一致的句式并列陈述产生的修辞效果",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15770,
+                          "element_count": 21,
+                          "elements": [
+                            {
+                              "name": "重复性",
+                              "count": 2,
+                              "post_ids": [
+                                "3de8289cfddb37a8b027d60dce4dfdb1",
+                                "b64188c6bcb0fb359d8e8075671584d6"
+                              ]
+                            },
+                            {
+                              "name": "排比式",
+                              "count": 11,
+                              "post_ids": [
+                                "55994947",
+                                "57373464",
+                                "57447289",
+                                "57853678",
+                                "57919607",
+                                "59422696",
+                                "60570460",
+                                "64314678",
+                                "65170329",
+                                "65529862",
+                                "65801945"
+                              ]
+                            },
+                            {
+                              "name": "八拜式",
+                              "count": 1,
+                              "post_ids": [
+                                "65139072"
+                              ]
+                            },
+                            {
+                              "name": "排比文案",
+                              "count": 1,
+                              "post_ids": [
+                                "47951584"
+                              ]
+                            },
+                            {
+                              "name": "排比祝福",
+                              "count": 1,
+                              "post_ids": [
+                                "65402572"
+                              ]
+                            },
+                            {
+                              "name": "排比结构",
+                              "count": 1,
+                              "post_ids": [
+                                "65402572"
+                              ]
+                            },
+                            {
+                              "name": "密集排比",
+                              "count": 1,
+                              "post_ids": [
+                                "64965843"
+                              ]
+                            },
+                            {
+                              "name": "清单式排比",
+                              "count": 1,
+                              "post_ids": [
+                                "64504122"
+                              ]
+                            },
+                            {
+                              "name": "对比排比句式",
+                              "count": 1,
+                              "post_ids": [
+                                "56977187"
+                              ]
+                            },
+                            {
+                              "name": "排比句式",
+                              "count": 1,
+                              "post_ids": [
+                                "56977187"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 21,
+                          "children": [],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "问答句式",
+                          "path": "/架构/修辞/辞格意象/修辞意象/句式辞格/问答句式",
+                          "id": 15063,
+                          "source_stable_id": 535,
+                          "source_type": "形式",
+                          "description": "通过问答形式引导思考或强化表达的句式结构",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15770,
+                          "element_count": 2,
+                          "elements": [
+                            {
+                              "name": "质询",
+                              "count": 1,
+                              "post_ids": [
+                                "1068bda1f94431bfb3b91b60073f1e46"
+                              ]
+                            },
+                            {
+                              "name": "发问",
+                              "count": 1,
+                              "post_ids": [
+                                "62948012"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 7,
+                          "children": [
+                            {
+                              "name": "反问式",
+                              "path": "/架构/修辞/辞格意象/修辞意象/句式辞格/问答句式/反问式",
+                              "id": 15066,
+                              "source_stable_id": 539,
+                              "source_type": "形式",
+                              "description": "用疑问形式表达确定意思以加强语气的句式",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15063,
+                              "element_count": 3,
+                              "elements": [
+                                {
+                                  "name": "反问式标题",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "64591962",
+                                    "64729260"
+                                  ]
+                                },
+                                {
+                                  "name": "犀利反问",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "64554023"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 3,
+                              "children": [],
+                              "total_posts_count": 0
+                            },
+                            {
+                              "name": "设问式",
+                              "path": "/架构/修辞/辞格意象/修辞意象/句式辞格/问答句式/设问式",
+                              "id": 15067,
+                              "source_stable_id": 540,
+                              "source_type": "形式",
+                              "description": "通过自问自答引导思考的句式结构",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15063,
+                              "element_count": 2,
+                              "elements": [
+                                {
+                                  "name": "设问式",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "57442193",
+                                    "57853678"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 2,
+                              "children": [],
+                              "total_posts_count": 0
+                            }
+                          ],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "韵律句式",
+                          "path": "/架构/修辞/辞格意象/修辞意象/句式辞格/韵律句式",
+                          "id": 15065,
+                          "source_stable_id": 538,
+                          "source_type": "形式",
+                          "description": "通过押韵、节奏等音韵特征增强记忆和传播效果的句式",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15770,
+                          "element_count": 33,
+                          "elements": [
+                            {
+                              "name": "金句式",
+                              "count": 16,
+                              "post_ids": [
+                                "683f8111000000002102effd",
+                                "68e310c90000000003035444",
+                                "68e6ecb90000000003021e34",
+                                "68f95c43000000000300c650",
+                                "68fff44700000000030390d3",
+                                "690333e70000000007022604",
+                                "6907ed79000000000703699c",
+                                "690a9329000000000700b783",
+                                "6911177d0000000007031417",
+                                "691a54bd000000000700be32",
+                                "693613b9000000001e00ebdd",
+                                "69375a940000000019024af5",
+                                "69434b1f000000001e013f9e",
+                                "6949df27000000001d03e0e9",
+                                "6951c718000000001e0105b7"
+                              ]
+                            },
+                            {
+                              "name": "押韵式",
+                              "count": 5,
+                              "post_ids": [
+                                "64162740",
+                                "64415308",
+                                "64855234",
+                                "65571251",
+                                "696ad820000000001a022994"
+                              ]
+                            },
+                            {
+                              "name": "短句",
+                              "count": 2,
+                              "post_ids": [
+                                "6965adce000000001a02a701",
+                                "6966f1df000000001a032514"
+                              ]
+                            },
+                            {
+                              "name": "押韵",
+                              "count": 2,
+                              "post_ids": [
+                                "59422696",
+                                "65608649"
+                              ]
+                            },
+                            {
+                              "name": "顺口溜",
+                              "count": 3,
+                              "post_ids": [
+                                "64139717",
+                                "64415308",
+                                "65142392"
+                              ]
+                            },
+                            {
+                              "name": "顺口溜式",
+                              "count": 2,
+                              "post_ids": [
+                                "57028518",
+                                "64139717"
+                              ]
+                            },
+                            {
+                              "name": "押韵表达",
+                              "count": 1,
+                              "post_ids": [
+                                "57028518"
+                              ]
+                            },
+                            {
+                              "name": "韵律",
+                              "count": 1,
+                              "post_ids": [
+                                "57028518"
+                              ]
+                            },
+                            {
+                              "name": "节奏化",
+                              "count": 1,
+                              "post_ids": [
+                                "56977187"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 33,
+                          "children": [],
+                          "total_posts_count": 18
+                        }
+                      ],
+                      "total_posts_count": 23
+                    },
+                    {
+                      "name": "意象引述",
+                      "path": "/架构/修辞/辞格意象/修辞意象/意象引述",
+                      "id": 15772,
+                      "source_stable_id": 215,
+                      "source_type": "形式",
+                      "description": "意象运用与引用、语录、仿拟等借助外部意涵的表达方式",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 14918,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 21,
+                      "children": [
+                        {
+                          "name": "引述表达",
+                          "path": "/架构/修辞/辞格意象/修辞意象/意象引述/引述表达",
+                          "id": 15939,
+                          "source_stable_id": 1490,
+                          "source_type": "形式",
+                          "description": "直接引用他人话语、观点或语录的表达方式",
+                          "category_nature": "维度",
+                          "level": 6,
+                          "parent_id": 15772,
+                          "element_count": 0,
+                          "elements": [],
+                          "total_element_count": 14,
+                          "children": [
+                            {
+                              "name": "引用陈述",
+                              "path": "/架构/修辞/辞格意象/修辞意象/意象引述/引述表达/引用陈述",
+                              "id": 15655,
+                              "source_stable_id": 1495,
+                              "source_type": "形式",
+                              "description": "引用他人观点、话语或权威声音的表达",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15939,
+                              "element_count": 12,
+                              "elements": [
+                                {
+                                  "name": "引用式",
+                                  "count": 4,
+                                  "post_ids": [
+                                    "22bcaccb2262e8864af03c8323490832",
+                                    "2a2c642e67822ed8c11f9d306e815a35",
+                                    "4bab077aa99a235a81c41631af69aa78",
+                                    "f97823103ca8ad6cd69037958d17ae32"
+                                  ]
+                                },
+                                {
+                                  "name": "引用",
+                                  "count": 5,
+                                  "post_ids": [
+                                    "0834b527a0fe32c83eb9be0b1cf45140",
+                                    "68e6ecb90000000003021e34",
+                                    "68ec3f9d000000000700de97",
+                                    "6911177d0000000007031417",
+                                    "bc2f946d57e1c650575962e480eccf31"
+                                  ]
+                                },
+                                {
+                                  "name": "引述",
+                                  "count": 3,
+                                  "post_ids": [
+                                    "3de8289cfddb37a8b027d60dce4dfdb1",
+                                    "55d981958a8fd219d9c713fb16c12170",
+                                    "dae634c9aa8c31d38e925750d3fbfeb6"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 12,
+                              "children": [],
+                              "total_posts_count": 3
+                            },
+                            {
+                              "name": "语录金句",
+                              "path": "/架构/修辞/辞格意象/修辞意象/意象引述/引述表达/语录金句",
+                              "id": 15654,
+                              "source_stable_id": 1494,
+                              "source_type": "形式",
+                              "description": "凝练精炼的语句,包括金句、语录等形式",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15939,
+                              "element_count": 2,
+                              "elements": [
+                                {
+                                  "name": "语录",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "68946e0d000000002500ef6e",
+                                    "68d1ebb8000000001203fd96"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 2,
+                              "children": [],
+                              "total_posts_count": 2
+                            }
+                          ],
+                          "total_posts_count": 5
+                        },
+                        {
+                          "name": "改编创作",
+                          "path": "/架构/修辞/辞格意象/修辞意象/意象引述/改编创作",
+                          "id": 15652,
+                          "source_stable_id": 1492,
+                          "source_type": "形式",
+                          "description": "在既有内容基础上重新创作的手法",
+                          "category_nature": "维度",
+                          "level": 6,
+                          "parent_id": 15772,
+                          "element_count": 1,
+                          "elements": [
+                            {
+                              "name": "台词改编",
+                              "count": 1,
+                              "post_ids": [
+                                "60332209"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 1,
+                          "children": [],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "文化借用",
+                          "path": "/架构/修辞/辞格意象/修辞意象/意象引述/文化借用",
+                          "id": 15653,
+                          "source_stable_id": 1493,
+                          "source_type": "形式",
+                          "description": "借用特定文化符号、梗或元素的表达方式",
+                          "category_nature": "维度",
+                          "level": 6,
+                          "parent_id": 15772,
+                          "element_count": 4,
+                          "elements": [
+                            {
+                              "name": "敬酒",
+                              "count": 1,
+                              "post_ids": [
+                                "696d7ac4000000000e03e459"
+                              ]
+                            },
+                            {
+                              "name": "神话梗",
+                              "count": 1,
+                              "post_ids": [
+                                "6960924b000000001a037a1c"
+                              ]
+                            },
+                            {
+                              "name": "中医术语",
+                              "count": 1,
+                              "post_ids": [
+                                "676f8eac000000000902f53e"
+                              ]
+                            },
+                            {
+                              "name": "梗元素",
+                              "count": 1,
+                              "post_ids": [
+                                "65514975"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 4,
+                          "children": [],
+                          "total_posts_count": 3
+                        },
+                        {
+                          "name": "象征手法",
+                          "path": "/架构/修辞/辞格意象/修辞意象/意象引述/象征手法",
+                          "id": 15651,
+                          "source_stable_id": 1491,
+                          "source_type": "形式",
+                          "description": "通过具体事物或形象表达抽象意义的手法",
+                          "category_nature": "维度",
+                          "level": 6,
+                          "parent_id": 15772,
+                          "element_count": 2,
+                          "elements": [
+                            {
+                              "name": "冲突意象",
+                              "count": 1,
+                              "post_ids": [
+                                "64415308"
+                              ]
+                            },
+                            {
+                              "name": "意象",
+                              "count": 1,
+                              "post_ids": [
+                                "56977419"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 2,
+                          "children": [],
+                          "total_posts_count": 0
+                        }
+                      ],
+                      "total_posts_count": 8
+                    },
+                    {
+                      "name": "比拟转化",
+                      "path": "/架构/修辞/辞格意象/修辞意象/比拟转化",
+                      "id": 15771,
+                      "source_stable_id": 214,
+                      "source_type": "形式",
+                      "description": "拟人、具象化、仪式化等通过性质转换增强表达力的修辞手法",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 14918,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 151,
+                      "children": [
+                        {
+                          "name": "具象转化",
+                          "path": "/架构/修辞/辞格意象/修辞意象/比拟转化/具象转化",
+                          "id": 15053,
+                          "source_stable_id": 524,
+                          "source_type": "形式",
+                          "description": "将抽象概念转化为具体形象或通过隐喻建立联系的修辞手法",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15771,
+                          "element_count": 2,
+                          "elements": [
+                            {
+                              "name": "汉字拆解",
+                              "count": 2,
+                              "post_ids": [
+                                "21006075"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 30,
+                          "children": [
+                            {
+                              "name": "具象化表现",
+                              "path": "/架构/修辞/辞格意象/修辞意象/比拟转化/具象转化/具象化表现",
+                              "id": 15056,
+                              "source_stable_id": 528,
+                              "source_type": "形式",
+                              "description": "将抽象概念通过具体形象呈现的表现方式",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15053,
+                              "element_count": 7,
+                              "elements": [
+                                {
+                                  "name": "体验具象化",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "b4fbfb562ad4863ceb0a12e7110f3da7"
+                                  ]
+                                },
+                                {
+                                  "name": "具象化",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "0374cca4a422e5aad9b24d721c7b4291",
+                                    "6912d90f00000000050113b3"
+                                  ]
+                                },
+                                {
+                                  "name": "拟物化",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "44556070"
+                                  ]
+                                },
+                                {
+                                  "name": "生理化",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "56977419"
+                                  ]
+                                },
+                                {
+                                  "name": "极端生理通感",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "56977419"
+                                  ]
+                                },
+                                {
+                                  "name": "社会化",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "56717837"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 7,
+                              "children": [],
+                              "total_posts_count": 1
+                            },
+                            {
+                              "name": "隐喻类比",
+                              "path": "/架构/修辞/辞格意象/修辞意象/比拟转化/具象转化/隐喻类比",
+                              "id": 15057,
+                              "source_stable_id": 529,
+                              "source_type": "形式",
+                              "description": "通过类比或隐喻建立事物间联系的修辞方式",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15053,
+                              "element_count": 2,
+                              "elements": [
+                                {
+                                  "name": "政治隐喻",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "3b8bfac263ace2eb578c85c98630e566",
+                                    "d07f1c79dd4ef03b92592fa81d54755b"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 21,
+                              "children": [
+                                {
+                                  "name": "具象映射",
+                                  "path": "/架构/修辞/辞格意象/修辞意象/比拟转化/具象转化/隐喻类比/具象映射",
+                                  "id": 15291,
+                                  "source_stable_id": 891,
+                                  "source_type": "形式",
+                                  "description": "将抽象概念映射为具体可感事物的隐喻手法",
+                                  "category_nature": "领域",
+                                  "level": 8,
+                                  "parent_id": 15057,
+                                  "element_count": 4,
+                                  "elements": [
+                                    {
+                                      "name": "具象化隐喻",
+                                      "count": 2,
+                                      "post_ids": [
+                                        "6913cafd000000000703402b",
+                                        "693f425a000000001e00ed26"
+                                      ]
+                                    },
+                                    {
+                                      "name": "眼和脑",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "692e7906000000001f006ff1"
+                                      ]
+                                    },
+                                    {
+                                      "name": "烤肉论",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "6882f593000000001100272d"
+                                      ]
+                                    }
+                                  ],
+                                  "total_element_count": 4,
+                                  "children": [],
+                                  "total_posts_count": 4
+                                },
+                                {
+                                  "name": "框架借用",
+                                  "path": "/架构/修辞/辞格意象/修辞意象/比拟转化/具象转化/隐喻类比/框架借用",
+                                  "id": 15843,
+                                  "source_stable_id": 892,
+                                  "source_type": "形式",
+                                  "description": "借用某专业领域的话语体系或框架来类比另一事物的手法",
+                                  "category_nature": "领域",
+                                  "level": 8,
+                                  "parent_id": 15057,
+                                  "element_count": 0,
+                                  "elements": [],
+                                  "total_element_count": 4,
+                                  "children": [
+                                    {
+                                      "name": "医药比拟",
+                                      "path": "/架构/修辞/辞格意象/修辞意象/比拟转化/具象转化/隐喻类比/框架借用/医药比拟",
+                                      "id": 15292,
+                                      "source_stable_id": 893,
+                                      "source_type": "形式",
+                                      "description": "借用医疗、药理等医药领域概念进行类比的手法",
+                                      "category_nature": "领域",
+                                      "level": 9,
+                                      "parent_id": 15843,
+                                      "element_count": 1,
+                                      "elements": [
+                                        {
+                                          "name": "修车如看病",
+                                          "count": 1,
+                                          "post_ids": [
+                                            "64631158"
+                                          ]
+                                        }
+                                      ],
+                                      "total_element_count": 1,
+                                      "children": [],
+                                      "total_posts_count": 0
+                                    },
+                                    {
+                                      "name": "跨域比拟",
+                                      "path": "/架构/修辞/辞格意象/修辞意象/比拟转化/具象转化/隐喻类比/框架借用/跨域比拟",
+                                      "id": 15293,
+                                      "source_stable_id": 894,
+                                      "source_type": "形式",
+                                      "description": "借用科技、历史、职业等非医药领域框架进行类比的手法",
+                                      "category_nature": "领域",
+                                      "level": 9,
+                                      "parent_id": 15843,
+                                      "element_count": 3,
+                                      "elements": [
+                                        {
+                                          "name": "科技隐喻",
+                                          "count": 2,
+                                          "post_ids": [
+                                            "68f568a1000000000301053d",
+                                            "693613b9000000001e00ebdd"
+                                          ]
+                                        },
+                                        {
+                                          "name": "工具人化",
+                                          "count": 1,
+                                          "post_ids": [
+                                            "55102015"
+                                          ]
+                                        }
+                                      ],
+                                      "total_element_count": 3,
+                                      "children": [],
+                                      "total_posts_count": 2
+                                    }
+                                  ],
+                                  "total_posts_count": 2
+                                },
+                                {
+                                  "name": "泛化比拟",
+                                  "path": "/架构/修辞/辞格意象/修辞意象/比拟转化/具象转化/隐喻类比/泛化比拟",
+                                  "id": 15290,
+                                  "source_stable_id": 890,
+                                  "source_type": "形式",
+                                  "description": "通用的类比或隐喻手法,不针对特定领域框架的比拟表达",
+                                  "category_nature": "领域",
+                                  "level": 8,
+                                  "parent_id": 15057,
+                                  "element_count": 11,
+                                  "elements": [
+                                    {
+                                      "name": "隐喻对比",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "412f4d35be48179908fef312b53cad43"
+                                      ]
+                                    },
+                                    {
+                                      "name": "关联",
+                                      "count": 3,
+                                      "post_ids": [
+                                        "59323915",
+                                        "6731b884000000001901b8d3",
+                                        "690d977d0000000007036331"
+                                      ]
+                                    },
+                                    {
+                                      "name": "隐喻",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "65252544"
+                                      ]
+                                    },
+                                    {
+                                      "name": "类比式叙事",
+                                      "count": 2,
+                                      "post_ids": [
+                                        "56603938",
+                                        "64958390"
+                                      ]
+                                    },
+                                    {
+                                      "name": "类比",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "64631158"
+                                      ]
+                                    },
+                                    {
+                                      "name": "类比式",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "64456019"
+                                      ]
+                                    },
+                                    {
+                                      "name": "内容映射",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "60332209"
+                                      ]
+                                    },
+                                    {
+                                      "name": "通俗比喻",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "56726652"
+                                      ]
+                                    }
+                                  ],
+                                  "total_element_count": 11,
+                                  "children": [],
+                                  "total_posts_count": 2
+                                }
+                              ],
+                              "total_posts_count": 8
+                            }
+                          ],
+                          "total_posts_count": 9
+                        },
+                        {
+                          "name": "夸张转化",
+                          "path": "/架构/修辞/辞格意象/修辞意象/比拟转化/夸张转化",
+                          "id": 15052,
+                          "source_stable_id": 523,
+                          "source_type": "形式",
+                          "description": "通过夸大或缩小来增强表达力量的修辞手法",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15771,
+                          "element_count": 29,
+                          "elements": [
+                            {
+                              "name": "夸张",
+                              "count": 26,
+                              "post_ids": [
+                                "6602bd07000000001203348c",
+                                "6666b3a10000000015008834",
+                                "671f7fab000000003c01fffc",
+                                "67440b66000000000202827e",
+                                "6752d19b000000000202b816",
+                                "675fcd19000000000103d470",
+                                "6781eb19000000000b039867",
+                                "67aea9de000000001800d129",
+                                "67b2a7f7000000002802a0d7",
+                                "67b9840d000000000603a241",
+                                "67bafc850000000029036328",
+                                "67e243d0000000001d02495b",
+                                "67ee4e29000000001200f3c2",
+                                "6804ddfa000000000b01c901",
+                                "68070ccb000000000f039a1b",
+                                "68077d02000000001c02dd81",
+                                "680e2433000000000e004e91",
+                                "68302e2b000000000f038e8c",
+                                "68383eb1000000000303e7ef",
+                                "6867d9af000000001203f084",
+                                "6879f0f90000000013012f9a",
+                                "68909e20000000000403fa4e",
+                                "68c14b36000000001d02b44e",
+                                "68c909c3000000001302ad69",
+                                "6900667d000000000300f640",
+                                "69185d49000000000d00f94e"
+                              ]
+                            },
+                            {
+                              "name": "夸张化",
+                              "count": 2,
+                              "post_ids": [
+                                "64975752",
+                                "65514975"
+                              ]
+                            },
+                            {
+                              "name": "极端化修辞",
+                              "count": 1,
+                              "post_ids": [
+                                "65252544"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 29,
+                          "children": [],
+                          "total_posts_count": 26
+                        },
+                        {
+                          "name": "拟人转化",
+                          "path": "/架构/修辞/辞格意象/修辞意象/比拟转化/拟人转化",
+                          "id": 15051,
+                          "source_stable_id": 522,
+                          "source_type": "形式",
+                          "description": "将非人事物赋予人的特征、情感或行为的修辞手法",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15771,
+                          "element_count": 1,
+                          "elements": [
+                            {
+                              "name": "拟人化隐喻",
+                              "count": 1,
+                              "post_ids": [
+                                "9c87381270abacce95e103b3a000e086"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 77,
+                          "children": [
+                            {
+                              "name": "拟人化主体",
+                              "path": "/架构/修辞/辞格意象/修辞意象/比拟转化/拟人转化/拟人化主体",
+                              "id": 15055,
+                              "source_stable_id": 526,
+                              "source_type": "形式",
+                              "description": "将具体事物赋予人的特征的拟人化表现",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15051,
+                              "element_count": 76,
+                              "elements": [
+                                {
+                                  "name": "拟人化",
+                                  "count": 44,
+                                  "post_ids": [
+                                    "62675775",
+                                    "63146000",
+                                    "63253503",
+                                    "64456019",
+                                    "64903753",
+                                    "64975752",
+                                    "65133109",
+                                    "65135248",
+                                    "65298913",
+                                    "6774ab9a0000000009015a3f",
+                                    "684a7e3c0000000023012b8d",
+                                    "6880a7a7000000000b02f5a6",
+                                    "68875186000000002501649d",
+                                    "6892d47c0000000025018c4f",
+                                    "68a4107f000000001c00e8e9",
+                                    "68a43a11000000001c03cc96",
+                                    "68bf8639000000001c03efd2",
+                                    "68ca143d000000001202c3de",
+                                    "68db5bd00000000007015474",
+                                    "68e9b94d0000000007036a6a",
+                                    "68f1b573000000000702052e",
+                                    "68f5976e000000000700dd28",
+                                    "69002ba70000000007008bcc",
+                                    "6901d072000000000703b6a3",
+                                    "6960924b000000001a037a1c",
+                                    "6961b301000000001a02f6af",
+                                    "6964573a000000000d00800e",
+                                    "6964ab0e000000001a035c04",
+                                    "6965adce000000001a02a701",
+                                    "6965ea53000000000e00f0f1",
+                                    "6966f1df000000001a032514",
+                                    "69685275000000000e03c790",
+                                    "69698d0c000000001a036078",
+                                    "696ad820000000001a022994",
+                                    "696c2b7b000000001a02b944",
+                                    "696d7ac4000000000e03e459",
+                                    "696ede36000000001a028e03",
+                                    "6970373f000000000e00f81d",
+                                    "697171fd000000000d00bee8",
+                                    "697318f2000000001a01fd50",
+                                    "697569b0000000001a02448c",
+                                    "99823f406c9b376c3998329e1373930f"
+                                  ]
+                                },
+                                {
+                                  "name": "对话",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "65eea166000000000d00c6d8"
+                                  ]
+                                },
+                                {
+                                  "name": "拟人化猫咪",
+                                  "count": 30,
+                                  "post_ids": [
+                                    "686cd3a5000000000d0180b0",
+                                    "68708544000000000d026732",
+                                    "68737e97000000000d027b81",
+                                    "6874c80e000000000d027767",
+                                    "68789450000000000b01d4a4",
+                                    "688366bd000000000d024147",
+                                    "68946e0d000000002500ef6e",
+                                    "689bf685000000001d0021d3",
+                                    "68abe632000000001c0348c0",
+                                    "68b15f32000000001d00ef75",
+                                    "68b69ea9000000001c035a4d",
+                                    "68b953e4000000001d00f96f",
+                                    "68be928b000000001c0361ea",
+                                    "68c3933e000000001d00a902",
+                                    "68ccd4e40000000012030372",
+                                    "68d0089400000000120172a5",
+                                    "68d1ebb8000000001203fd96",
+                                    "68d610800000000012023282",
+                                    "68d76cd100000000120165e4",
+                                    "68e0f5750000000007015ff9",
+                                    "68e8cac8000000000700da88",
+                                    "68ec9d6400000000070389be",
+                                    "68ef83150000000007035f42",
+                                    "68f0b8140000000007008b05",
+                                    "68f78b950000000007021a20",
+                                    "68f988f2000000000703ada5",
+                                    "68fa029e0000000007022932",
+                                    "68ff53770000000007000d54",
+                                    "690d977d0000000007036331",
+                                    "6915dfc400000000070224d9"
+                                  ]
+                                },
+                                {
+                                  "name": "神话角色拟人化",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "60332209"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 76,
+                              "children": [],
+                              "total_posts_count": 63
+                            }
+                          ],
+                          "total_posts_count": 63
+                        },
+                        {
+                          "name": "符号转化",
+                          "path": "/架构/修辞/辞格意象/修辞意象/比拟转化/符号转化",
+                          "id": 15054,
+                          "source_stable_id": 525,
+                          "source_type": "形式",
+                          "description": "赋予事物象征意义或通过仪式化增强表达的修辞手法",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15771,
+                          "element_count": 15,
+                          "elements": [
+                            {
+                              "name": "仪式化场景",
+                              "count": 1,
+                              "post_ids": [
+                                "b4fbfb562ad4863ceb0a12e7110f3da7"
+                              ]
+                            },
+                            {
+                              "name": "映射",
+                              "count": 2,
+                              "post_ids": [
+                                "04bcda9fc132c52a8eee5d7ba994119d",
+                                "64442545"
+                              ]
+                            },
+                            {
+                              "name": "代称化",
+                              "count": 1,
+                              "post_ids": [
+                                "da753fb9dc1fc7f09ef8e5e7c014ada3"
+                              ]
+                            },
+                            {
+                              "name": "定性标签",
+                              "count": 1,
+                              "post_ids": [
+                                "62da797f45d5b2a8ebd9149c3b52c719"
+                              ]
+                            },
+                            {
+                              "name": "超自然化",
+                              "count": 1,
+                              "post_ids": [
+                                "fc4773ccef61d3092666496328603e9d"
+                              ]
+                            },
+                            {
+                              "name": "色彩叙事",
+                              "count": 1,
+                              "post_ids": [
+                                "b6482cda993c100f39d6eccf65261a24"
+                              ]
+                            },
+                            {
+                              "name": "符号化",
+                              "count": 6,
+                              "post_ids": [
+                                "64975752",
+                                "68708544000000000d026732",
+                                "6874c80e000000000d027767",
+                                "6882f593000000001100272d",
+                                "68b69ea9000000001c035a4d",
+                                "68c3933e000000001d00a902"
+                              ]
+                            },
+                            {
+                              "name": "符号",
+                              "count": 1,
+                              "post_ids": [
+                                "65162446"
+                              ]
+                            },
+                            {
+                              "name": "正义化",
+                              "count": 1,
+                              "post_ids": [
+                                "57447289"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 15,
+                          "children": [],
+                          "total_posts_count": 5
+                        }
+                      ],
+                      "total_posts_count": 97
+                    }
+                  ],
+                  "total_posts_count": 120
+                }
+              ],
+              "total_posts_count": 120
+            }
+          ],
+          "total_posts_count": 150
+        },
+        {
+          "name": "创意",
+          "path": "/架构/创意",
+          "id": 15984,
+          "source_stable_id": 142,
+          "source_type": "形式",
+          "description": "创意手法、反转、对比、错位等创造性表现策略",
+          "category_nature": "内容",
+          "level": 2,
+          "parent_id": 15957,
+          "element_count": 0,
+          "elements": [],
+          "total_element_count": 173,
+          "children": [
+            {
+              "name": "对比反差",
+              "path": "/架构/创意/对比反差",
+              "id": 15962,
+              "source_stable_id": 161,
+              "source_type": "形式",
+              "description": "通过事物间的差异、对照与反转创造表现力",
+              "category_nature": "维度",
+              "level": 3,
+              "parent_id": 15984,
+              "element_count": 0,
+              "elements": [],
+              "total_element_count": 173,
+              "children": [
+                {
+                  "name": "反差错位",
+                  "path": "/架构/创意/对比反差/反差错位",
+                  "id": 15762,
+                  "source_stable_id": 172,
+                  "source_type": "形式",
+                  "description": "利用事物间的巨大差异、身份反差、认知反转创造冲击力",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 15962,
+                  "element_count": 0,
+                  "elements": [],
+                  "total_element_count": 121,
+                  "children": [
+                    {
+                      "name": "定向反差",
+                      "path": "/架构/创意/对比反差/反差错位/定向反差",
+                      "id": 15806,
+                      "source_stable_id": 359,
+                      "source_type": "形式",
+                      "description": "指向特定认知、情感、身份、视觉等具体层面的反差手法",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15762,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 25,
+                      "children": [
+                        {
+                          "name": "情感反差",
+                          "path": "/架构/创意/对比反差/反差错位/定向反差/情感反差",
+                          "id": 15696,
+                          "source_stable_id": 1554,
+                          "source_type": "形式",
+                          "description": "情感状态、心理感受层面的强烈对比与落差",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15806,
+                          "element_count": 1,
+                          "elements": [
+                            {
+                              "name": "情感对比",
+                              "count": 1,
+                              "post_ids": [
+                                "7fc2ebb73d9fefe1e79111dd9b17ad65"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 1,
+                          "children": [],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "感知反差",
+                          "path": "/架构/创意/对比反差/反差错位/定向反差/感知反差",
+                          "id": 15693,
+                          "source_stable_id": 1551,
+                          "source_type": "形式",
+                          "description": "视觉、听觉、图文等感官层面元素之间的不协调或对比",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15806,
+                          "element_count": 16,
+                          "elements": [
+                            {
+                              "name": "图文反差",
+                              "count": 2,
+                              "post_ids": [
+                                "27f97d45367f3d0662d3204b3a4b0fb9",
+                                "99823f406c9b376c3998329e1373930f"
+                              ]
+                            },
+                            {
+                              "name": "视觉反差",
+                              "count": 14,
+                              "post_ids": [
+                                "64729260",
+                                "6602bd07000000001203348c",
+                                "6666b3a10000000015008834",
+                                "67440b66000000000202827e",
+                                "675fcd19000000000103d470",
+                                "67b9840d000000000603a241",
+                                "6804ddfa000000000b01c901",
+                                "680e2433000000000e004e91",
+                                "68302e2b000000000f038e8c",
+                                "68383eb1000000000303e7ef",
+                                "68909e20000000000403fa4e",
+                                "68c909c3000000001302ad69",
+                                "6900667d000000000300f640",
+                                "69185d49000000000d00f94e"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 16,
+                          "children": [],
+                          "total_posts_count": 13
+                        },
+                        {
+                          "name": "认知反差",
+                          "path": "/架构/创意/对比反差/反差错位/定向反差/认知反差",
+                          "id": 15694,
+                          "source_stable_id": 1552,
+                          "source_type": "形式",
+                          "description": "打破常规认知、常识或逻辑预期的反差手法",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15806,
+                          "element_count": 7,
+                          "elements": [
+                            {
+                              "name": "极端反差",
+                              "count": 1,
+                              "post_ids": [
+                                "67bafc850000000029036328"
+                              ]
+                            },
+                            {
+                              "name": "反常识",
+                              "count": 6,
+                              "post_ids": [
+                                "648d8edf0000000011013447",
+                                "66d1ab42000000001f015507",
+                                "6794ca60000000001801ba29",
+                                "67d55ec7000000000e004e69",
+                                "683d8695000000001200012a",
+                                "68a06bea000000001d021202"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 7,
+                          "children": [],
+                          "total_posts_count": 7
+                        },
+                        {
+                          "name": "身份反差",
+                          "path": "/架构/创意/对比反差/反差错位/定向反差/身份反差",
+                          "id": 15695,
+                          "source_stable_id": 1553,
+                          "source_type": "形式",
+                          "description": "身份、阶层、角色等社会属性层面的对比与错位",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15806,
+                          "element_count": 1,
+                          "elements": [
+                            {
+                              "name": "阶层反差",
+                              "count": 1,
+                              "post_ids": [
+                                "64589911"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 1,
+                          "children": [],
+                          "total_posts_count": 0
+                        }
+                      ],
+                      "total_posts_count": 20
+                    },
+                    {
+                      "name": "用途改造",
+                      "path": "/架构/创意/对比反差/反差错位/用途改造",
+                      "id": 14996,
+                      "source_stable_id": 361,
+                      "source_type": "形式",
+                      "description": "物品功能用途的创意改变与DIY改造",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15762,
+                      "element_count": 30,
+                      "elements": [
+                        {
+                          "name": "错位使用",
+                          "count": 5,
+                          "post_ids": [
+                            "67adb23f000000002a00c240",
+                            "67e243d0000000001d02495b",
+                            "682ede8f000000002202bff2",
+                            "68528a360000000010010c6d",
+                            "686f606c00000000120167b5"
+                          ]
+                        },
+                        {
+                          "name": "功能错位",
+                          "count": 1,
+                          "post_ids": [
+                            "67e243d0000000001d02495b"
+                          ]
+                        },
+                        {
+                          "name": "创意改造",
+                          "count": 2,
+                          "post_ids": [
+                            "676535f4000000000b00dfd1",
+                            "6921937a000000001b0278d1"
+                          ]
+                        },
+                        {
+                          "name": "DIY改造",
+                          "count": 6,
+                          "post_ids": [
+                            "662096bc000000000d03035d",
+                            "662ce86d0000000003023f0a",
+                            "66d1ab42000000001f015507",
+                            "676535f4000000000b00dfd1",
+                            "68286f560000000012006015",
+                            "6921937a000000001b0278d1"
+                          ]
+                        },
+                        {
+                          "name": "创意用法",
+                          "count": 1,
+                          "post_ids": [
+                            "69185d49000000000d00f94e"
+                          ]
+                        },
+                        {
+                          "name": "DIY装置",
+                          "count": 5,
+                          "post_ids": [
+                            "65f4359b00000000140079b5",
+                            "6666dd86000000001500b7ff",
+                            "6711d712000000001b012783",
+                            "67c17568000000000603b420",
+                            "69185d49000000000d00f94e"
+                          ]
+                        },
+                        {
+                          "name": "创意化",
+                          "count": 2,
+                          "post_ids": [
+                            "6803185a000000000b01ef09",
+                            "6879f0f90000000013012f9a"
+                          ]
+                        },
+                        {
+                          "name": "功能转换",
+                          "count": 5,
+                          "post_ids": [
+                            "664c38f0000000001303c21f",
+                            "6666dd86000000001500b7ff",
+                            "67389194000000001d038599",
+                            "6752d19b000000000202b816",
+                            "67aea9de000000001800d129"
+                          ]
+                        },
+                        {
+                          "name": "包包造型",
+                          "count": 1,
+                          "post_ids": [
+                            "6649dbe3000000000c018112"
+                          ]
+                        },
+                        {
+                          "name": "创意美食",
+                          "count": 1,
+                          "post_ids": [
+                            "6649dbe3000000000c018112"
+                          ]
+                        },
+                        {
+                          "name": "无害化处理",
+                          "count": 1,
+                          "post_ids": [
+                            "65f4359b00000000140079b5"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 30,
+                      "children": [],
+                      "total_posts_count": 23
+                    },
+                    {
+                      "name": "空间错位",
+                      "path": "/架构/创意/对比反差/反差错位/空间错位",
+                      "id": 14995,
+                      "source_stable_id": 360,
+                      "source_type": "形式",
+                      "description": "场景、空间、比例等物理层面的不匹配与错位效果",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15762,
+                      "element_count": 34,
+                      "elements": [
+                        {
+                          "name": "极端比例",
+                          "count": 7,
+                          "post_ids": [
+                            "6964bc98000000002202c86f",
+                            "696b528900000000210333ea",
+                            "696b5332000000002103c497",
+                            "696b537f00000000220398ad",
+                            "6975b27c000000002202d2fb",
+                            "6975b2d7000000002200b4ae",
+                            "6975b3c50000000022020356"
+                          ]
+                        },
+                        {
+                          "name": "空间重组",
+                          "count": 1,
+                          "post_ids": [
+                            "6975b27c000000002202d2fb"
+                          ]
+                        },
+                        {
+                          "name": "微缩景观",
+                          "count": 3,
+                          "post_ids": [
+                            "67b2a7f7000000002802a0d7",
+                            "67d7a294000000001c03eef9",
+                            "685f974300000000120144db"
+                          ]
+                        },
+                        {
+                          "name": "荒诞场景",
+                          "count": 7,
+                          "post_ids": [
+                            "61bdc28b0000000001024896",
+                            "66619827000000000600486f",
+                            "67b2a7f7000000002802a0d7",
+                            "67bafc850000000029036328",
+                            "67d7a294000000001c03eef9",
+                            "6819f25e000000002301cca5",
+                            "684a7e3c0000000023012b8d"
+                          ]
+                        },
+                        {
+                          "name": "夸张道具",
+                          "count": 7,
+                          "post_ids": [
+                            "65f4359b00000000140079b5",
+                            "662096bc000000000d03035d",
+                            "6666dd86000000001500b7ff",
+                            "66f51b90000000002a036660",
+                            "675c19320000000002017d1f",
+                            "67fe11bb000000000d017b89",
+                            "6921937a000000001b0278d1"
+                          ]
+                        },
+                        {
+                          "name": "伪造",
+                          "count": 1,
+                          "post_ids": [
+                            "67fe11bb000000000d017b89"
+                          ]
+                        },
+                        {
+                          "name": "不协调",
+                          "count": 3,
+                          "post_ids": [
+                            "648d8edf0000000011013447",
+                            "670baf34000000001600f52a",
+                            "67e68c9d00000000060282fb"
+                          ]
+                        },
+                        {
+                          "name": "伪装影子",
+                          "count": 1,
+                          "post_ids": [
+                            "67d55ec7000000000e004e69"
+                          ]
+                        },
+                        {
+                          "name": "场景错位",
+                          "count": 3,
+                          "post_ids": [
+                            "671f7fab000000003c01fffc",
+                            "67b9840d000000000603a241",
+                            "67c17568000000000603b420"
+                          ]
+                        },
+                        {
+                          "name": "内外空间对比",
+                          "count": 1,
+                          "post_ids": [
+                            "65515618"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 34,
+                      "children": [],
+                      "total_posts_count": 29
+                    },
+                    {
+                      "name": "通用反差",
+                      "path": "/架构/创意/对比反差/反差错位/通用反差",
+                      "id": 15805,
+                      "source_stable_id": 358,
+                      "source_type": "形式",
+                      "description": "不指定具体层面的泛化反差对比手法",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15762,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 32,
+                      "children": [
+                        {
+                          "name": "反转冲突",
+                          "path": "/架构/创意/对比反差/反差错位/通用反差/反转冲突",
+                          "id": 15301,
+                          "source_stable_id": 903,
+                          "source_type": "形式",
+                          "description": "通过方向反转或对立力量碰撞产生张力的手法",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15805,
+                          "element_count": 3,
+                          "elements": [
+                            {
+                              "name": "反规训",
+                              "count": 1,
+                              "post_ids": [
+                                "82b864cd83e9a5f376214dbc341d6dad"
+                              ]
+                            },
+                            {
+                              "name": "反传统",
+                              "count": 1,
+                              "post_ids": [
+                                "970bc999f557cf8026c950f254d3ddac"
+                              ]
+                            },
+                            {
+                              "name": "反转",
+                              "count": 1,
+                              "post_ids": [
+                                "56717837"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 3,
+                          "children": [],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "差异对比",
+                          "path": "/架构/创意/对比反差/反差错位/通用反差/差异对比",
+                          "id": 15298,
+                          "source_stable_id": 900,
+                          "source_type": "形式",
+                          "description": "通过事物间显著差异形成对比效果的泛化反差手法",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15805,
+                          "element_count": 20,
+                          "elements": [
+                            {
+                              "name": "反差式",
+                              "count": 6,
+                              "post_ids": [
+                                "444f41a7f46eaee7dfa43d10cb0d10c5",
+                                "56726652",
+                                "64442545",
+                                "82b864cd83e9a5f376214dbc341d6dad",
+                                "970bc999f557cf8026c950f254d3ddac",
+                                "f99ae5be8892806e2d10834f402e89e1"
+                              ]
+                            },
+                            {
+                              "name": "反差感",
+                              "count": 7,
+                              "post_ids": [
+                                "64456019",
+                                "662096bc000000000d03035d",
+                                "67fe11bb000000000d017b89",
+                                "6867d9af000000001203f084",
+                                "686cd3a5000000000d0180b0",
+                                "69114f150000000007001f30",
+                                "e04fd15a06f8c97486e48990e85c8492"
+                              ]
+                            },
+                            {
+                              "name": "多维反差对比",
+                              "count": 1,
+                              "post_ids": [
+                                "c84d14e15b8324b91df2cd8cb8304db9"
+                              ]
+                            },
+                            {
+                              "name": "反差化",
+                              "count": 1,
+                              "post_ids": [
+                                "2c73223f278ea6aecd70b5b54f0aff21"
+                              ]
+                            },
+                            {
+                              "name": "内容反差",
+                              "count": 1,
+                              "post_ids": [
+                                "64801086"
+                              ]
+                            },
+                            {
+                              "name": "对比冲突",
+                              "count": 1,
+                              "post_ids": [
+                                "64591962"
+                              ]
+                            },
+                            {
+                              "name": "反差",
+                              "count": 2,
+                              "post_ids": [
+                                "56717837",
+                                "63762367"
+                              ]
+                            },
+                            {
+                              "name": "强对比",
+                              "count": 1,
+                              "post_ids": [
+                                "57028518"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 20,
+                          "children": [],
+                          "total_posts_count": 5
+                        },
+                        {
+                          "name": "极致处理",
+                          "path": "/架构/创意/对比反差/反差错位/通用反差/极致处理",
+                          "id": 15299,
+                          "source_stable_id": 901,
+                          "source_type": "形式",
+                          "description": "将某种状态或表现推向极端以产生反差效果的手法",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15805,
+                          "element_count": 5,
+                          "elements": [
+                            {
+                              "name": "极致化",
+                              "count": 1,
+                              "post_ids": [
+                                "82b864cd83e9a5f376214dbc341d6dad"
+                              ]
+                            },
+                            {
+                              "name": "极端化",
+                              "count": 2,
+                              "post_ids": [
+                                "55102015",
+                                "89627e4bf8ad865f175c54e3b0ddd2cd"
+                              ]
+                            },
+                            {
+                              "name": "极端",
+                              "count": 2,
+                              "post_ids": [
+                                "61bdc28b0000000001024896",
+                                "690af75a000000000503b57e"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 5,
+                          "children": [],
+                          "total_posts_count": 2
+                        },
+                        {
+                          "name": "置换替代",
+                          "path": "/架构/创意/对比反差/反差错位/通用反差/置换替代",
+                          "id": 15300,
+                          "source_stable_id": 902,
+                          "source_type": "形式",
+                          "description": "通过替换、调换位置或角色产生反差效果的手法",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15805,
+                          "element_count": 4,
+                          "elements": [
+                            {
+                              "name": "张冠李戴",
+                              "count": 1,
+                              "post_ids": [
+                                "3de8289cfddb37a8b027d60dce4dfdb1"
+                              ]
+                            },
+                            {
+                              "name": "错位",
+                              "count": 1,
+                              "post_ids": [
+                                "64631158"
+                              ]
+                            },
+                            {
+                              "name": "替代",
+                              "count": 1,
+                              "post_ids": [
+                                "64076321"
+                              ]
+                            },
+                            {
+                              "name": "置换",
+                              "count": 1,
+                              "post_ids": [
+                                "63712737"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 4,
+                          "children": [],
+                          "total_posts_count": 0
+                        }
+                      ],
+                      "total_posts_count": 7
+                    }
+                  ],
+                  "total_posts_count": 65
+                },
+                {
+                  "name": "并置对比",
+                  "path": "/架构/创意/对比反差/并置对比",
+                  "id": 15761,
+                  "source_stable_id": 171,
+                  "source_type": "形式",
+                  "description": "将两种或多种事物、时空、身份进行并列对照",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 15962,
+                  "element_count": 0,
+                  "elements": [],
+                  "total_element_count": 52,
+                  "children": [
+                    {
+                      "name": "元素嫁接",
+                      "path": "/架构/创意/对比反差/并置对比/元素嫁接",
+                      "id": 15006,
+                      "source_stable_id": 394,
+                      "source_type": "形式",
+                      "description": "将不相关的元素进行创意性并置与融合",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15761,
+                      "element_count": 7,
+                      "elements": [
+                        {
+                          "name": "嫁接",
+                          "count": 1,
+                          "post_ids": [
+                            "697069b7000000002202d264"
+                          ]
+                        },
+                        {
+                          "name": "碰撞",
+                          "count": 1,
+                          "post_ids": [
+                            "685f974300000000120144db"
+                          ]
+                        },
+                        {
+                          "name": "跨界",
+                          "count": 1,
+                          "post_ids": [
+                            "64246342"
+                          ]
+                        },
+                        {
+                          "name": "互联网规则化讽刺",
+                          "count": 1,
+                          "post_ids": [
+                            "65514975"
+                          ]
+                        },
+                        {
+                          "name": "医疗化",
+                          "count": 2,
+                          "post_ids": [
+                            "64442545",
+                            "64631158"
+                          ]
+                        },
+                        {
+                          "name": "取代",
+                          "count": 1,
+                          "post_ids": [
+                            "64210278"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 7,
+                      "children": [],
+                      "total_posts_count": 2
+                    },
+                    {
+                      "name": "属性对比",
+                      "path": "/架构/创意/对比反差/并置对比/属性对比",
+                      "id": 15005,
+                      "source_stable_id": 393,
+                      "source_type": "形式",
+                      "description": "按特定属性维度进行的针对性并置比较",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15761,
+                      "element_count": 6,
+                      "elements": [
+                        {
+                          "name": "身份对比",
+                          "count": 1,
+                          "post_ids": [
+                            "2a2c642e67822ed8c11f9d306e815a35"
+                          ]
+                        },
+                        {
+                          "name": "价格对比",
+                          "count": 2,
+                          "post_ids": [
+                            "690af75a000000000503b57e",
+                            "695f0b2b000000001a027365"
+                          ]
+                        },
+                        {
+                          "name": "反讽式对比",
+                          "count": 1,
+                          "post_ids": [
+                            "64770257"
+                          ]
+                        },
+                        {
+                          "name": "冷热对比",
+                          "count": 1,
+                          "post_ids": [
+                            "64729260"
+                          ]
+                        },
+                        {
+                          "name": "数据化反差",
+                          "count": 1,
+                          "post_ids": [
+                            "64415308"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 6,
+                      "children": [],
+                      "total_posts_count": 2
+                    },
+                    {
+                      "name": "时空对比",
+                      "path": "/架构/创意/对比反差/并置对比/时空对比",
+                      "id": 15003,
+                      "source_stable_id": 391,
+                      "source_type": "形式",
+                      "description": "跨越不同时间或空间维度进行的并置对比",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15761,
+                      "element_count": 12,
+                      "elements": [
+                        {
+                          "name": "历史对比",
+                          "count": 1,
+                          "post_ids": [
+                            "0374cca4a422e5aad9b24d721c7b4291"
+                          ]
+                        },
+                        {
+                          "name": "跨时空",
+                          "count": 2,
+                          "post_ids": [
+                            "89627e4bf8ad865f175c54e3b0ddd2cd",
+                            "99823f406c9b376c3998329e1373930f"
+                          ]
+                        },
+                        {
+                          "name": "跨时空对比",
+                          "count": 1,
+                          "post_ids": [
+                            "c84d14e15b8324b91df2cd8cb8304db9"
+                          ]
+                        },
+                        {
+                          "name": "今昔对比",
+                          "count": 5,
+                          "post_ids": [
+                            "59943231",
+                            "63477609",
+                            "63972446",
+                            "65febd8e0000000012035538",
+                            "692c3402000000000d03b7b7"
+                          ]
+                        },
+                        {
+                          "name": "古今对比",
+                          "count": 2,
+                          "post_ids": [
+                            "65114702"
+                          ]
+                        },
+                        {
+                          "name": "代际对比",
+                          "count": 1,
+                          "post_ids": [
+                            "62948012"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 12,
+                      "children": [],
+                      "total_posts_count": 2
+                    },
+                    {
+                      "name": "状态对比",
+                      "path": "/架构/创意/对比反差/并置对比/状态对比",
+                      "id": 15004,
+                      "source_stable_id": 392,
+                      "source_type": "形式",
+                      "description": "同一对象在不同状态下的前后并置对比",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15761,
+                      "element_count": 6,
+                      "elements": [
+                        {
+                          "name": "前后对比",
+                          "count": 4,
+                          "post_ids": [
+                            "6666b3a10000000015008834",
+                            "67fe11bb000000000d017b89",
+                            "68c14b36000000001d02b44e",
+                            "cb673ebabb42a9499b3532943f8bb974"
+                          ]
+                        },
+                        {
+                          "name": "实验性对比",
+                          "count": 1,
+                          "post_ids": [
+                            "6881d560000000001703076c"
+                          ]
+                        },
+                        {
+                          "name": "舆论对比",
+                          "count": 1,
+                          "post_ids": [
+                            "64450659"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 6,
+                      "children": [],
+                      "total_posts_count": 4
+                    },
+                    {
+                      "name": "通用对比",
+                      "path": "/架构/创意/对比反差/并置对比/通用对比",
+                      "id": 15002,
+                      "source_stable_id": 390,
+                      "source_type": "形式",
+                      "description": "不限定具体对比维度或对象的泛化并置对比手法",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15761,
+                      "element_count": 21,
+                      "elements": [
+                        {
+                          "name": "对比手法",
+                          "count": 1,
+                          "post_ids": [
+                            "2e93c00132e3a6a30c06efb6984ab71a"
+                          ]
+                        },
+                        {
+                          "name": "并置",
+                          "count": 2,
+                          "post_ids": [
+                            "696078f70000000022038479",
+                            "696079a10000000022031521"
+                          ]
+                        },
+                        {
+                          "name": "对比展示",
+                          "count": 1,
+                          "post_ids": [
+                            "66daeddb000000002603ea42"
+                          ]
+                        },
+                        {
+                          "name": "对比视角",
+                          "count": 2,
+                          "post_ids": [
+                            "67e224cc000000000602a6c5",
+                            "68f9e8400000000005033268"
+                          ]
+                        },
+                        {
+                          "name": "对比呈现",
+                          "count": 2,
+                          "post_ids": [
+                            "689bf685000000001d0021d3",
+                            "68d610800000000012023282"
+                          ]
+                        },
+                        {
+                          "name": "对比式",
+                          "count": 12,
+                          "post_ids": [
+                            "55099131",
+                            "55327642",
+                            "56977187",
+                            "63676018",
+                            "63712731",
+                            "63712737",
+                            "64076321",
+                            "64210278",
+                            "64415308",
+                            "64610874",
+                            "64801086",
+                            "65135248"
+                          ]
+                        },
+                        {
+                          "name": "生活化对比",
+                          "count": 1,
+                          "post_ids": [
+                            "57121511"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 21,
+                      "children": [],
+                      "total_posts_count": 7
+                    }
+                  ],
+                  "total_posts_count": 17
+                }
+              ],
+              "total_posts_count": 78
+            }
+          ],
+          "total_posts_count": 78
+        },
+        {
+          "name": "叙事",
+          "path": "/架构/叙事",
+          "id": 15958,
+          "source_stable_id": 139,
+          "source_type": "形式",
+          "description": "叙事视角、叙事结构、剧情编排等叙述层面的组织策略",
+          "category_nature": "内容",
+          "level": 2,
+          "parent_id": 15957,
+          "element_count": 0,
+          "elements": [],
+          "total_element_count": 583,
+          "children": [
+            {
+              "name": "叙事编排",
+              "path": "/架构/叙事/叙事编排",
+              "id": 15753,
+              "source_stable_id": 156,
+              "source_type": "形式",
+              "description": "故事的组织结构与展开方式",
+              "category_nature": "维度",
+              "level": 3,
+              "parent_id": 15958,
+              "element_count": 0,
+              "elements": [],
+              "total_element_count": 479,
+              "children": [
+                {
+                  "name": "故事组织",
+                  "path": "/架构/叙事/叙事编排/故事组织",
+                  "id": 14916,
+                  "source_stable_id": 165,
+                  "source_type": "形式",
+                  "description": "故事的结构安排、情节展开、视角选择等叙事组织",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 15753,
+                  "element_count": 114,
+                  "elements": [
+                    {
+                      "name": "叙事",
+                      "count": 111,
+                      "post_ids": [
+                        "0374cca4a422e5aad9b24d721c7b4291",
+                        "03c54bcf569a9f957f3879f5e87cbb19",
+                        "04bcda9fc132c52a8eee5d7ba994119d",
+                        "0834b527a0fe32c83eb9be0b1cf45140",
+                        "1068bda1f94431bfb3b91b60073f1e46",
+                        "27f97d45367f3d0662d3204b3a4b0fb9",
+                        "3b8bfac263ace2eb578c85c98630e566",
+                        "412f4d35be48179908fef312b53cad43",
+                        "49d6570f82c62ca372c932b67467878f",
+                        "55099131",
+                        "55102015",
+                        "55327642",
+                        "55d981958a8fd219d9c713fb16c12170",
+                        "57442193",
+                        "57853678",
+                        "59121599",
+                        "59583293",
+                        "59943231",
+                        "59c0ba8a450a7d2327b78d72c0697938",
+                        "601c09554a9851f9038026035b95fce9",
+                        "60332209",
+                        "62025412",
+                        "62948012",
+                        "63712731",
+                        "63712737",
+                        "64076321",
+                        "64210278",
+                        "64314678",
+                        "64554023",
+                        "64589911",
+                        "64591962",
+                        "64610874",
+                        "64610880",
+                        "64650216",
+                        "64801086",
+                        "64855234",
+                        "64975752",
+                        "65114702",
+                        "65135248",
+                        "65142392",
+                        "65233075",
+                        "65252544",
+                        "65407794",
+                        "65515618",
+                        "65604986",
+                        "65febd8e0000000012035538",
+                        "662ce86d0000000003023f0a",
+                        "66519efa000000001500a2bb",
+                        "665971bb000000001303d005",
+                        "670baf34000000001600f52a",
+                        "67316440000000001b02e75e",
+                        "6731b884000000001901b8d3",
+                        "673c37610000000007029ced",
+                        "673d9a58000000000702450b",
+                        "675fec1f000000000800c6f4",
+                        "67fe11bb000000000d017b89",
+                        "68070ccb000000000f039a1b",
+                        "68286f560000000012006015",
+                        "68528a360000000010010c6d",
+                        "685e7903000000000b02c13e",
+                        "686cd3a5000000000d0180b0",
+                        "689b158f000000001b03e512",
+                        "689bf685000000001d0021d3",
+                        "68b69ea9000000001c035a4d",
+                        "68ecc19400000000050028c1",
+                        "68ef83150000000007035f42",
+                        "68f78b950000000007021a20",
+                        "68faf90d0000000005011fa2",
+                        "69005a1e0000000004017637",
+                        "690075390000000004013a53",
+                        "6901d072000000000703b6a3",
+                        "6902e20a0000000005030a7b",
+                        "690af75a000000000503b57e",
+                        "690ed1190000000003010bd3",
+                        "690ed2240000000005002b41",
+                        "69114f150000000007001f30",
+                        "69157ac40000000005039157",
+                        "6915dfc400000000070224d9",
+                        "69200dec000000001f00b884",
+                        "69293c52000000001e02d9d6",
+                        "692c3402000000000d03b7b7",
+                        "692e7906000000001f006ff1",
+                        "69328436000000001f006a54",
+                        "693d0b1d000000001e02ba36",
+                        "69437b6d000000001e0381c9",
+                        "6944e9b5000000001e02472d",
+                        "69491c99000000001e02c765",
+                        "694a6caf000000001f00e112",
+                        "7fc2ebb73d9fefe1e79111dd9b17ad65",
+                        "89627e4bf8ad865f175c54e3b0ddd2cd",
+                        "99823f406c9b376c3998329e1373930f",
+                        "9c87381270abacce95e103b3a000e086",
+                        "b485a7858fbfc4b74e805bfadf6fce90",
+                        "b64188c6bcb0fb359d8e8075671584d6",
+                        "b6482cda993c100f39d6eccf65261a24",
+                        "b76365fa6008e98aea8b6876bcc4e3d0",
+                        "d07f1c79dd4ef03b92592fa81d54755b",
+                        "d7a04d4550a7c852ac4a16301e600aa5",
+                        "df635f43f39a1fa41c13da96320c45c3",
+                        "ef63cef6ce5336e59ccb523e35f355dd",
+                        "f97823103ca8ad6cd69037958d17ae32",
+                        "f99ae5be8892806e2d10834f402e89e1",
+                        "fa0633c278660309648633dea6294cb1",
+                        "fc4773ccef61d3092666496328603e9d",
+                        "ff037b4ada852d5835240ffded2f7256"
+                      ]
+                    },
+                    {
+                      "name": "主题",
+                      "count": 3,
+                      "post_ids": [
+                        "46193165",
+                        "62255386",
+                        "65135957"
+                      ]
+                    }
+                  ],
+                  "total_element_count": 479,
+                  "children": [
+                    {
+                      "name": "叙事技法",
+                      "path": "/架构/叙事/叙事编排/故事组织/叙事技法",
+                      "id": 15876,
+                      "source_stable_id": 1030,
+                      "source_type": "形式",
+                      "description": "叙事的观察角度、对照手法与表达技巧",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 14916,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 111,
+                      "children": [
+                        {
+                          "name": "叙事手法",
+                          "path": "/架构/叙事/叙事编排/故事组织/叙事技法/叙事手法",
+                          "id": 15360,
+                          "source_stable_id": 541,
+                          "source_type": "形式",
+                          "description": "叙事的风格特征与表现技巧",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15876,
+                          "element_count": 12,
+                          "elements": [
+                            {
+                              "name": "叙述",
+                              "count": 1,
+                              "post_ids": [
+                                "bc2f946d57e1c650575962e480eccf31"
+                              ]
+                            },
+                            {
+                              "name": "隐喻式叙事",
+                              "count": 1,
+                              "post_ids": [
+                                "b4fbfb562ad4863ceb0a12e7110f3da7"
+                              ]
+                            },
+                            {
+                              "name": "引用式叙事",
+                              "count": 1,
+                              "post_ids": [
+                                "333bd89e657acbcd9b26201f93cd8993"
+                              ]
+                            },
+                            {
+                              "name": "突发性",
+                              "count": 1,
+                              "post_ids": [
+                                "d7dcfed942f432bd9c75ec4e2cd31b99"
+                              ]
+                            },
+                            {
+                              "name": "宿命论述",
+                              "count": 1,
+                              "post_ids": [
+                                "99823f406c9b376c3998329e1373930f"
+                              ]
+                            },
+                            {
+                              "name": "夹叙夹议",
+                              "count": 1,
+                              "post_ids": [
+                                "2e93c00132e3a6a30c06efb6984ab71a"
+                              ]
+                            },
+                            {
+                              "name": "表达方式",
+                              "count": 1,
+                              "post_ids": [
+                                "2e93c00132e3a6a30c06efb6984ab71a"
+                              ]
+                            },
+                            {
+                              "name": "情感化叙事",
+                              "count": 1,
+                              "post_ids": [
+                                "b5245c3e7b1c09af072ea40e41d3cca8"
+                              ]
+                            },
+                            {
+                              "name": "叙事手法",
+                              "count": 1,
+                              "post_ids": [
+                                "64442545"
+                              ]
+                            },
+                            {
+                              "name": "语气",
+                              "count": 1,
+                              "post_ids": [
+                                "64095002"
+                              ]
+                            },
+                            {
+                              "name": "重塑",
+                              "count": 1,
+                              "post_ids": [
+                                "64076321"
+                              ]
+                            },
+                            {
+                              "name": "质问式叙事",
+                              "count": 1,
+                              "post_ids": [
+                                "57121511"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 12,
+                          "children": [],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "叙事视角",
+                          "path": "/架构/叙事/叙事编排/故事组织/叙事技法/叙事视角",
+                          "id": 15358,
+                          "source_stable_id": 184,
+                          "source_type": "形式",
+                          "description": "叙事者的观察角度与聚焦对象选择",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15876,
+                          "element_count": 24,
+                          "elements": [
+                            {
+                              "name": "视角",
+                              "count": 21,
+                              "post_ids": [
+                                "03e3d299faba104965b33d87b5063eff",
+                                "22bcaccb2262e8864af03c8323490832",
+                                "55d981958a8fd219d9c713fb16c12170",
+                                "57121511",
+                                "57853678",
+                                "59583293",
+                                "64610874",
+                                "65114702",
+                                "65252544",
+                                "69002ba70000000007008bcc",
+                                "69005a1e0000000004017637",
+                                "6927e806000000001f007658",
+                                "69375a940000000019024af5",
+                                "6949df27000000001d03e0e9",
+                                "99823f406c9b376c3998329e1373930f",
+                                "9b95ed26ea9f265079b09e2d1032bc7c",
+                                "afb320f2428ca07a2743d96dc21e4127",
+                                "b4fbfb562ad4863ceb0a12e7110f3da7",
+                                "d07f1c79dd4ef03b92592fa81d54755b",
+                                "f97823103ca8ad6cd69037958d17ae32",
+                                "f99ae5be8892806e2d10834f402e89e1"
+                              ]
+                            },
+                            {
+                              "name": "叙事视角",
+                              "count": 3,
+                              "post_ids": [
+                                "6732cd8a000000001b02f948",
+                                "67fd299a000000001c00cf5d",
+                                "e04fd15a06f8c97486e48990e85c8492"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 82,
+                          "children": [
+                            {
+                              "name": "主体身份",
+                              "path": "/架构/叙事/叙事编排/故事组织/叙事技法/叙事视角/主体身份",
+                              "id": 15035,
+                              "source_stable_id": 503,
+                              "source_type": "形式",
+                              "description": "基于叙述者社会角色或属性的视角选择",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15358,
+                              "element_count": 1,
+                              "elements": [
+                                {
+                                  "name": "权谋视角",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "27f97d45367f3d0662d3204b3a4b0fb9"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 12,
+                              "children": [
+                                {
+                                  "name": "专业角色",
+                                  "path": "/架构/叙事/叙事编排/故事组织/叙事技法/叙事视角/主体身份/专业角色",
+                                  "id": 15042,
+                                  "source_stable_id": 511,
+                                  "source_type": "形式",
+                                  "description": "以专业领域或学科角度进行叙述",
+                                  "category_nature": "领域",
+                                  "level": 8,
+                                  "parent_id": 15035,
+                                  "element_count": 1,
+                                  "elements": [
+                                    {
+                                      "name": "投资视角",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "69200dec000000001f00b884"
+                                      ]
+                                    }
+                                  ],
+                                  "total_element_count": 1,
+                                  "children": [],
+                                  "total_posts_count": 1
+                                },
+                                {
+                                  "name": "代际关系",
+                                  "path": "/架构/叙事/叙事编排/故事组织/叙事技法/叙事视角/主体身份/代际关系",
+                                  "id": 15043,
+                                  "source_stable_id": 512,
+                                  "source_type": "形式",
+                                  "description": "基于代际或亲子关系的叙述视角",
+                                  "category_nature": "领域",
+                                  "level": 8,
+                                  "parent_id": 15035,
+                                  "element_count": 4,
+                                  "elements": [
+                                    {
+                                      "name": "亲子化叙事",
+                                      "count": 4,
+                                      "post_ids": [
+                                        "68b953e4000000001d00f96f",
+                                        "68db5bd00000000007015474",
+                                        "68e9b94d0000000007036a6a",
+                                        "68f5976e000000000700dd28"
+                                      ]
+                                    }
+                                  ],
+                                  "total_element_count": 4,
+                                  "children": [],
+                                  "total_posts_count": 4
+                                },
+                                {
+                                  "name": "弱势群体",
+                                  "path": "/架构/叙事/叙事编排/故事组织/叙事技法/叙事视角/主体身份/弱势群体",
+                                  "id": 15041,
+                                  "source_stable_id": 510,
+                                  "source_type": "形式",
+                                  "description": "以弱势或受害者的身份进行叙述",
+                                  "category_nature": "领域",
+                                  "level": 8,
+                                  "parent_id": 15035,
+                                  "element_count": 1,
+                                  "elements": [
+                                    {
+                                      "name": "受害者视角",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "693d0b1d000000001e02ba36"
+                                      ]
+                                    }
+                                  ],
+                                  "total_element_count": 1,
+                                  "children": [],
+                                  "total_posts_count": 1
+                                },
+                                {
+                                  "name": "社会阶层",
+                                  "path": "/架构/叙事/叙事编排/故事组织/叙事技法/叙事视角/主体身份/社会阶层",
+                                  "id": 15040,
+                                  "source_stable_id": 509,
+                                  "source_type": "形式",
+                                  "description": "以普通民众或平民阶层的立场进行叙述",
+                                  "category_nature": "领域",
+                                  "level": 8,
+                                  "parent_id": 15035,
+                                  "element_count": 5,
+                                  "elements": [
+                                    {
+                                      "name": "平民化视角",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "65135248"
+                                      ]
+                                    },
+                                    {
+                                      "name": "草根化",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "64958390"
+                                      ]
+                                    },
+                                    {
+                                      "name": "平民视角",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "63762379"
+                                      ]
+                                    },
+                                    {
+                                      "name": "阶级叙事",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "57853678"
+                                      ]
+                                    },
+                                    {
+                                      "name": "底层视角",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "56726652"
+                                      ]
+                                    }
+                                  ],
+                                  "total_element_count": 5,
+                                  "children": [],
+                                  "total_posts_count": 0
+                                }
+                              ],
+                              "total_posts_count": 6
+                            },
+                            {
+                              "name": "人称结构",
+                              "path": "/架构/叙事/叙事编排/故事组织/叙事技法/叙事视角/人称结构",
+                              "id": 15813,
+                              "source_stable_id": 502,
+                              "source_type": "形式",
+                              "description": "基于叙述者与故事关系的人称选择",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15358,
+                              "element_count": 0,
+                              "elements": [],
+                              "total_element_count": 33,
+                              "children": [
+                                {
+                                  "name": "第一人称",
+                                  "path": "/架构/叙事/叙事编排/故事组织/叙事技法/叙事视角/人称结构/第一人称",
+                                  "id": 15038,
+                                  "source_stable_id": 507,
+                                  "source_type": "形式",
+                                  "description": "以第一人称作为叙述主体的视角",
+                                  "category_nature": "领域",
+                                  "level": 8,
+                                  "parent_id": 15813,
+                                  "element_count": 28,
+                                  "elements": [
+                                    {
+                                      "name": "内心独白式",
+                                      "count": 5,
+                                      "post_ids": [
+                                        "66619827000000000600486f",
+                                        "6781eb19000000000b039867",
+                                        "67e243d0000000001d02495b",
+                                        "67e6398f000000001d005ebb",
+                                        "685f974300000000120144db"
+                                      ]
+                                    },
+                                    {
+                                      "name": "第一人称视角",
+                                      "count": 18,
+                                      "post_ids": [
+                                        "6634a322000000001e01bcd5",
+                                        "664c38f0000000001303c21f",
+                                        "6666dd86000000001500b7ff",
+                                        "66f51b90000000002a036660",
+                                        "6711d712000000001b012783",
+                                        "675c19320000000002017d1f",
+                                        "6781e8640000000001001d18",
+                                        "6794ca60000000001801ba29",
+                                        "67aea9de000000001800d129",
+                                        "67b9840d000000000603a241",
+                                        "67c17568000000000603b420",
+                                        "680e2433000000000e004e91",
+                                        "68383eb1000000000303e7ef",
+                                        "68909e20000000000403fa4e",
+                                        "68c14b36000000001d02b44e",
+                                        "68c909c3000000001302ad69",
+                                        "69185d49000000000d00f94e",
+                                        "6921937a000000001b0278d1"
+                                      ]
+                                    },
+                                    {
+                                      "name": "文字叙事",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "68f78b950000000007021a20"
+                                      ]
+                                    },
+                                    {
+                                      "name": "第一人称叙事",
+                                      "count": 3,
+                                      "post_ids": [
+                                        "63477609",
+                                        "64770257",
+                                        "64965843"
+                                      ]
+                                    },
+                                    {
+                                      "name": "第一人称旁白",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "56717837"
+                                      ]
+                                    }
+                                  ],
+                                  "total_element_count": 28,
+                                  "children": [],
+                                  "total_posts_count": 24
+                                },
+                                {
+                                  "name": "第三人称",
+                                  "path": "/架构/叙事/叙事编排/故事组织/叙事技法/叙事视角/人称结构/第三人称",
+                                  "id": 15039,
+                                  "source_stable_id": 508,
+                                  "source_type": "形式",
+                                  "description": "以第三人称或外部观察者作为叙述主体的视角",
+                                  "category_nature": "领域",
+                                  "level": 8,
+                                  "parent_id": 15813,
+                                  "element_count": 5,
+                                  "elements": [
+                                    {
+                                      "name": "旁观视角",
+                                      "count": 5,
+                                      "post_ids": [
+                                        "6666dd86000000001500b7ff",
+                                        "6781e8640000000001001d18",
+                                        "67aea9de000000001800d129",
+                                        "680e2433000000000e004e91",
+                                        "68909e20000000000403fa4e"
+                                      ]
+                                    }
+                                  ],
+                                  "total_element_count": 5,
+                                  "children": [],
+                                  "total_posts_count": 5
+                                }
+                              ],
+                              "total_posts_count": 24
+                            },
+                            {
+                              "name": "情感态度",
+                              "path": "/架构/叙事/叙事编排/故事组织/叙事技法/叙事视角/情感态度",
+                              "id": 15036,
+                              "source_stable_id": 505,
+                              "source_type": "形式",
+                              "description": "带有明显情感色彩的叙述视角",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15358,
+                              "element_count": 7,
+                              "elements": [
+                                {
+                                  "name": "宠溺视角",
+                                  "count": 7,
+                                  "post_ids": [
+                                    "665971bb000000001303d005",
+                                    "66ee55d200000000270066a8",
+                                    "67440b66000000000202827e",
+                                    "6752d19b000000000202b816",
+                                    "675fcd19000000000103d470",
+                                    "67bc233e000000000b0160fa",
+                                    "68302e2b000000000f038e8c"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 7,
+                              "children": [],
+                              "total_posts_count": 7
+                            },
+                            {
+                              "name": "观察范围",
+                              "path": "/架构/叙事/叙事编排/故事组织/叙事技法/叙事视角/观察范围",
+                              "id": 15037,
+                              "source_stable_id": 506,
+                              "source_type": "形式",
+                              "description": "基于观察空间或地域范围的视角选择",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15358,
+                              "element_count": 3,
+                              "elements": [
+                                {
+                                  "name": "内部权力斗争",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "d07f1c79dd4ef03b92592fa81d54755b"
+                                  ]
+                                },
+                                {
+                                  "name": "微观",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "2c73223f278ea6aecd70b5b54f0aff21"
+                                  ]
+                                },
+                                {
+                                  "name": "多方视角",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "b5245c3e7b1c09af072ea40e41d3cca8"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 3,
+                              "children": [],
+                              "total_posts_count": 0
+                            },
+                            {
+                              "name": "非人视角",
+                              "path": "/架构/叙事/叙事编排/故事组织/叙事技法/叙事视角/非人视角",
+                              "id": 15814,
+                              "source_stable_id": 504,
+                              "source_type": "形式",
+                              "description": "以非人类主体作为叙述者的视角",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15358,
+                              "element_count": 0,
+                              "elements": [],
+                              "total_element_count": 3,
+                              "children": [
+                                {
+                                  "name": "动物视角",
+                                  "path": "/架构/叙事/叙事编排/故事组织/叙事技法/叙事视角/非人视角/动物视角",
+                                  "id": 15044,
+                                  "source_stable_id": 513,
+                                  "source_type": "形式",
+                                  "description": "以动物作为叙述主体或观察者的视角",
+                                  "category_nature": "领域",
+                                  "level": 8,
+                                  "parent_id": 15814,
+                                  "element_count": 2,
+                                  "elements": [
+                                    {
+                                      "name": "动物视角",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "6921937a000000001b0278d1"
+                                      ]
+                                    },
+                                    {
+                                      "name": "猫咪视角",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "68ef83150000000007035f42"
+                                      ]
+                                    }
+                                  ],
+                                  "total_element_count": 2,
+                                  "children": [],
+                                  "total_posts_count": 2
+                                },
+                                {
+                                  "name": "机器视角",
+                                  "path": "/架构/叙事/叙事编排/故事组织/叙事技法/叙事视角/非人视角/机器视角",
+                                  "id": 15045,
+                                  "source_stable_id": 514,
+                                  "source_type": "形式",
+                                  "description": "以机器或人工智能作为叙述主体的视角",
+                                  "category_nature": "领域",
+                                  "level": 8,
+                                  "parent_id": 15814,
+                                  "element_count": 1,
+                                  "elements": [
+                                    {
+                                      "name": "机器人视角",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "68f9e8400000000005033268"
+                                      ]
+                                    }
+                                  ],
+                                  "total_element_count": 1,
+                                  "children": [],
+                                  "total_posts_count": 1
+                                }
+                              ],
+                              "total_posts_count": 3
+                            }
+                          ],
+                          "total_posts_count": 46
+                        },
+                        {
+                          "name": "对照叙事",
+                          "path": "/架构/叙事/叙事编排/故事组织/叙事技法/对照叙事",
+                          "id": 15359,
+                          "source_stable_id": 187,
+                          "source_type": "形式",
+                          "description": "通过对比并列组织的叙事方式",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15876,
+                          "element_count": 17,
+                          "elements": [
+                            {
+                              "name": "对比叙事",
+                              "count": 2,
+                              "post_ids": [
+                                "2c73223f278ea6aecd70b5b54f0aff21",
+                                "62da797f45d5b2a8ebd9149c3b52c719"
+                              ]
+                            },
+                            {
+                              "name": "二元对立式",
+                              "count": 1,
+                              "post_ids": [
+                                "1068bda1f94431bfb3b91b60073f1e46"
+                              ]
+                            },
+                            {
+                              "name": "人物对比",
+                              "count": 1,
+                              "post_ids": [
+                                "89627e4bf8ad865f175c54e3b0ddd2cd"
+                              ]
+                            },
+                            {
+                              "name": "命运类比",
+                              "count": 1,
+                              "post_ids": [
+                                "99823f406c9b376c3998329e1373930f"
+                              ]
+                            },
+                            {
+                              "name": "人物互文",
+                              "count": 1,
+                              "post_ids": [
+                                "99823f406c9b376c3998329e1373930f"
+                              ]
+                            },
+                            {
+                              "name": "对比描写",
+                              "count": 1,
+                              "post_ids": [
+                                "b485a7858fbfc4b74e805bfadf6fce90"
+                              ]
+                            },
+                            {
+                              "name": "对话对比",
+                              "count": 1,
+                              "post_ids": [
+                                "68f568a1000000000301053d"
+                              ]
+                            },
+                            {
+                              "name": "强关联",
+                              "count": 1,
+                              "post_ids": [
+                                "676535f4000000000b00dfd1"
+                              ]
+                            },
+                            {
+                              "name": "双主题",
+                              "count": 1,
+                              "post_ids": [
+                                "66daeddb000000002603ea42"
+                              ]
+                            },
+                            {
+                              "name": "反差感叙事",
+                              "count": 2,
+                              "post_ids": [
+                                "673d9a58000000000702450b",
+                                "69005a1e0000000004017637"
+                              ]
+                            },
+                            {
+                              "name": "毕业前后对比",
+                              "count": 1,
+                              "post_ids": [
+                                "68875186000000002501649d"
+                              ]
+                            },
+                            {
+                              "name": "对比式叙事",
+                              "count": 3,
+                              "post_ids": [
+                                "63762367",
+                                "63762379",
+                                "64870193"
+                              ]
+                            },
+                            {
+                              "name": "二元对立",
+                              "count": 1,
+                              "post_ids": [
+                                "57853678"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 17,
+                          "children": [],
+                          "total_posts_count": 6
+                        }
+                      ],
+                      "total_posts_count": 51
+                    },
+                    {
+                      "name": "脉络铺排",
+                      "path": "/架构/叙事/叙事编排/故事组织/脉络铺排",
+                      "id": 15875,
+                      "source_stable_id": 1029,
+                      "source_type": "形式",
+                      "description": "故事的时间线索、结构框架与情节展开安排",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 14916,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 216,
+                      "children": [
+                        {
+                          "name": "情节推进",
+                          "path": "/架构/叙事/叙事编排/故事组织/脉络铺排/情节推进",
+                          "id": 15357,
+                          "source_stable_id": 185,
+                          "source_type": "形式",
+                          "description": "情节展开方式与戏剧张力构建",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15875,
+                          "element_count": 1,
+                          "elements": [
+                            {
+                              "name": "情节",
+                              "count": 1,
+                              "post_ids": [
+                                "63477609"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 97,
+                          "children": [
+                            {
+                              "name": "戏剧手法",
+                              "path": "/架构/叙事/叙事编排/故事组织/脉络铺排/情节推进/戏剧手法",
+                              "id": 15879,
+                              "source_stable_id": 551,
+                              "source_type": "形式",
+                              "description": "制造戏剧效果与情感张力的策略",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15357,
+                              "element_count": 0,
+                              "elements": [],
+                              "total_element_count": 53,
+                              "children": [
+                                {
+                                  "name": "冲突张力",
+                                  "path": "/架构/叙事/叙事编排/故事组织/脉络铺排/情节推进/戏剧手法/冲突张力",
+                                  "id": 15077,
+                                  "source_stable_id": 556,
+                                  "source_type": "形式",
+                                  "description": "通过刻画对立关系增强戏剧张力",
+                                  "category_nature": "领域",
+                                  "level": 8,
+                                  "parent_id": 15879,
+                                  "element_count": 8,
+                                  "elements": [
+                                    {
+                                      "name": "冲突点",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "0374cca4a422e5aad9b24d721c7b4291"
+                                      ]
+                                    },
+                                    {
+                                      "name": "王室禁忌",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "7fc2ebb73d9fefe1e79111dd9b17ad65"
+                                      ]
+                                    },
+                                    {
+                                      "name": "冲突",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "7fc2ebb73d9fefe1e79111dd9b17ad65"
+                                      ]
+                                    },
+                                    {
+                                      "name": "冲突性",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "2c73223f278ea6aecd70b5b54f0aff21"
+                                      ]
+                                    },
+                                    {
+                                      "name": "剥夺",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "b5245c3e7b1c09af072ea40e41d3cca8"
+                                      ]
+                                    },
+                                    {
+                                      "name": "反击",
+                                      "count": 3,
+                                      "post_ids": [
+                                        "64400730",
+                                        "64958390"
+                                      ]
+                                    }
+                                  ],
+                                  "total_element_count": 8,
+                                  "children": [],
+                                  "total_posts_count": 0
+                                },
+                                {
+                                  "name": "悬念揭秘",
+                                  "path": "/架构/叙事/叙事编排/故事组织/脉络铺排/情节推进/戏剧手法/悬念揭秘",
+                                  "id": 15076,
+                                  "source_stable_id": 555,
+                                  "source_type": "形式",
+                                  "description": "通过控制信息披露节奏制造悬念或揭示真相",
+                                  "category_nature": "领域",
+                                  "level": 8,
+                                  "parent_id": 15879,
+                                  "element_count": 7,
+                                  "elements": [
+                                    {
+                                      "name": "解密式",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "970bc999f557cf8026c950f254d3ddac"
+                                      ]
+                                    },
+                                    {
+                                      "name": "幕后细节",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "7fc2ebb73d9fefe1e79111dd9b17ad65"
+                                      ]
+                                    },
+                                    {
+                                      "name": "揭秘",
+                                      "count": 2,
+                                      "post_ids": [
+                                        "64650216",
+                                        "7fc2ebb73d9fefe1e79111dd9b17ad65"
+                                      ]
+                                    },
+                                    {
+                                      "name": "揭秘式",
+                                      "count": 2,
+                                      "post_ids": [
+                                        "661b9936000000001b012aa5",
+                                        "67d55ec7000000000e004e69"
+                                      ]
+                                    },
+                                    {
+                                      "name": "开箱式",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "65515618"
+                                      ]
+                                    }
+                                  ],
+                                  "total_element_count": 7,
+                                  "children": [],
+                                  "total_posts_count": 2
+                                },
+                                {
+                                  "name": "转折反转",
+                                  "path": "/架构/叙事/叙事编排/故事组织/脉络铺排/情节推进/戏剧手法/转折反转",
+                                  "id": 15075,
+                                  "source_stable_id": 554,
+                                  "source_type": "形式",
+                                  "description": "情节走向发生意料之外变化的手法",
+                                  "category_nature": "领域",
+                                  "level": 8,
+                                  "parent_id": 15879,
+                                  "element_count": 38,
+                                  "elements": [
+                                    {
+                                      "name": "逻辑反转式",
+                                      "count": 16,
+                                      "post_ids": [
+                                        "6960924b000000001a037a1c",
+                                        "6961b301000000001a02f6af",
+                                        "6964573a000000000d00800e",
+                                        "6964ab0e000000001a035c04",
+                                        "6965adce000000001a02a701",
+                                        "6966f1df000000001a032514",
+                                        "69685275000000000e03c790",
+                                        "69698d0c000000001a036078",
+                                        "696c2b7b000000001a02b944",
+                                        "696d7ac4000000000e03e459",
+                                        "6970373f000000000e00f81d",
+                                        "697171fd000000000d00bee8",
+                                        "697318f2000000001a01fd50",
+                                        "697569b0000000001a02448c"
+                                      ]
+                                    },
+                                    {
+                                      "name": "反转式",
+                                      "count": 3,
+                                      "post_ids": [
+                                        "67862d98000000001a01f443",
+                                        "67adb23f000000002a00c240",
+                                        "67e243d0000000001d02495b"
+                                      ]
+                                    },
+                                    {
+                                      "name": "叙事转折",
+                                      "count": 13,
+                                      "post_ids": [
+                                        "661b9936000000001b012aa5",
+                                        "662096bc000000000d03035d",
+                                        "6634a322000000001e01bcd5",
+                                        "664599b9000000001e01d218",
+                                        "665971bb000000001303d005",
+                                        "6666b3a10000000015008834",
+                                        "66ee55d200000000270066a8",
+                                        "66f51b90000000002a036660",
+                                        "671f7fab000000003c01fffc",
+                                        "6781e8640000000001001d18",
+                                        "67bc233e000000000b0160fa",
+                                        "6843fb690000000012001659",
+                                        "68c909c3000000001302ad69"
+                                      ]
+                                    },
+                                    {
+                                      "name": "反转揭秘",
+                                      "count": 4,
+                                      "post_ids": [
+                                        "66d1ab42000000001f015507",
+                                        "670baf34000000001600f52a",
+                                        "67e68c9d00000000060282fb",
+                                        "68383eb1000000000303e7ef"
+                                      ]
+                                    },
+                                    {
+                                      "name": "反转叙事",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "6649dbe3000000000c018112"
+                                      ]
+                                    },
+                                    {
+                                      "name": "反转剧情",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "64631158"
+                                      ]
+                                    }
+                                  ],
+                                  "total_element_count": 38,
+                                  "children": [],
+                                  "total_posts_count": 35
+                                }
+                              ],
+                              "total_posts_count": 36
+                            },
+                            {
+                              "name": "推进策略",
+                              "path": "/架构/叙事/叙事编排/故事组织/脉络铺排/情节推进/推进策略",
+                              "id": 15878,
+                              "source_stable_id": 550,
+                              "source_type": "形式",
+                              "description": "情节展开的组织方式与驱动逻辑",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15357,
+                              "element_count": 0,
+                              "elements": [],
+                              "total_element_count": 43,
+                              "children": [
+                                {
+                                  "name": "线性推进",
+                                  "path": "/架构/叙事/叙事编排/故事组织/脉络铺排/情节推进/推进策略/线性推进",
+                                  "id": 15073,
+                                  "source_stable_id": 552,
+                                  "source_type": "形式",
+                                  "description": "情节按层次或强度逐步深入的展开方式",
+                                  "category_nature": "领域",
+                                  "level": 8,
+                                  "parent_id": 15878,
+                                  "element_count": 4,
+                                  "elements": [
+                                    {
+                                      "name": "情绪递进式",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "1068bda1f94431bfb3b91b60073f1e46"
+                                      ]
+                                    },
+                                    {
+                                      "name": "递进式",
+                                      "count": 3,
+                                      "post_ids": [
+                                        "65139072",
+                                        "682086dc0000000012003cbd",
+                                        "68fb6a5c000000000302e5de"
+                                      ]
+                                    }
+                                  ],
+                                  "total_element_count": 4,
+                                  "children": [],
+                                  "total_posts_count": 2
+                                },
+                                {
+                                  "name": "驱动机制",
+                                  "path": "/架构/叙事/叙事编排/故事组织/脉络铺排/情节推进/推进策略/驱动机制",
+                                  "id": 15074,
+                                  "source_stable_id": 553,
+                                  "source_type": "形式",
+                                  "description": "驱动情节发展的核心逻辑与叙事方式",
+                                  "category_nature": "领域",
+                                  "level": 8,
+                                  "parent_id": 15878,
+                                  "element_count": 39,
+                                  "elements": [
+                                    {
+                                      "name": "感性叙事",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "65eea166000000000d00c6d8"
+                                      ]
+                                    },
+                                    {
+                                      "name": "剧情化",
+                                      "count": 25,
+                                      "post_ids": [
+                                        "12357835",
+                                        "680898fa000000001c01c23e",
+                                        "682ede8f000000002202bff2",
+                                        "684a7e3c0000000023012b8d",
+                                        "68528a360000000010010c6d",
+                                        "685f974300000000120144db",
+                                        "686cd3a5000000000d0180b0",
+                                        "686f606c00000000120167b5",
+                                        "68789450000000000b01d4a4",
+                                        "6892d47c0000000025018c4f",
+                                        "68946e0d000000002500ef6e",
+                                        "68a43a11000000001c03cc96",
+                                        "68b15f32000000001d00ef75",
+                                        "68be928b000000001c0361ea",
+                                        "68c3933e000000001d00a902",
+                                        "68d0089400000000120172a5",
+                                        "68d610800000000012023282",
+                                        "68e0f5750000000007015ff9",
+                                        "68e8cac8000000000700da88",
+                                        "68ec9d6400000000070389be",
+                                        "68f0b8140000000007008b05",
+                                        "68f1b573000000000702052e",
+                                        "68f78b950000000007021a20",
+                                        "68fa029e0000000007022932",
+                                        "68ff53770000000007000d54"
+                                      ]
+                                    },
+                                    {
+                                      "name": "故事化叙事",
+                                      "count": 10,
+                                      "post_ids": [
+                                        "664c38f0000000001303c21f",
+                                        "66519efa000000001500a2bb",
+                                        "6752d19b000000000202b816",
+                                        "675fcd19000000000103d470",
+                                        "675fec1f000000000800c6f4",
+                                        "67c17568000000000603b420",
+                                        "67fe11bb000000000d017b89",
+                                        "68070ccb000000000f039a1b",
+                                        "6867d9af000000001203f084",
+                                        "6900667d000000000300f640"
+                                      ]
+                                    },
+                                    {
+                                      "name": "愿望驱动式",
+                                      "count": 2,
+                                      "post_ids": [
+                                        "665971bb000000001303d005",
+                                        "675fec1f000000000800c6f4"
+                                      ]
+                                    },
+                                    {
+                                      "name": "因果报应式",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "57447289"
+                                      ]
+                                    }
+                                  ],
+                                  "total_element_count": 39,
+                                  "children": [],
+                                  "total_posts_count": 36
+                                }
+                              ],
+                              "total_posts_count": 38
+                            }
+                          ],
+                          "total_posts_count": 73
+                        },
+                        {
+                          "name": "时序编排",
+                          "path": "/架构/叙事/叙事编排/故事组织/脉络铺排/时序编排",
+                          "id": 15356,
+                          "source_stable_id": 186,
+                          "source_type": "形式",
+                          "description": "故事在时间维度上的安排与节奏分段",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15875,
+                          "element_count": 8,
+                          "elements": [
+                            {
+                              "name": "纵向时间",
+                              "count": 1,
+                              "post_ids": [
+                                "4020e56c08340e92c9862e481c07d2e2"
+                              ]
+                            },
+                            {
+                              "name": "回顾",
+                              "count": 2,
+                              "post_ids": [
+                                "6965d491000000000e00f9b0",
+                                "696b658e000000001a01d2ef"
+                              ]
+                            },
+                            {
+                              "name": "时间轴",
+                              "count": 3,
+                              "post_ids": [
+                                "66619827000000000600486f",
+                                "6729dd5300000000190183a8"
+                              ]
+                            },
+                            {
+                              "name": "高密度",
+                              "count": 2,
+                              "post_ids": [
+                                "47567298",
+                                "56726652"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 17,
+                          "children": [
+                            {
+                              "name": "回溯追忆",
+                              "path": "/架构/叙事/叙事编排/故事组织/脉络铺排/时序编排/回溯追忆",
+                              "id": 15317,
+                              "source_stable_id": 948,
+                              "source_type": "形式",
+                              "description": "对过往事件的回望、追溯与倒叙式呈现",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15356,
+                              "element_count": 1,
+                              "elements": [
+                                {
+                                  "name": "溯源",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "04bcda9fc132c52a8eee5d7ba994119d"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 1,
+                              "children": [],
+                              "total_posts_count": 0
+                            },
+                            {
+                              "name": "时空交织",
+                              "path": "/架构/叙事/叙事编排/故事组织/脉络铺排/时序编排/时空交织",
+                              "id": 15316,
+                              "source_stable_id": 947,
+                              "source_type": "形式",
+                              "description": "跨越不同时空维度的交错、并行与关联的叙事安排",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15356,
+                              "element_count": 2,
+                              "elements": [
+                                {
+                                  "name": "时间跨度",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "7fc2ebb73d9fefe1e79111dd9b17ad65"
+                                  ]
+                                },
+                                {
+                                  "name": "跨时空关联",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "b485a7858fbfc4b74e805bfadf6fce90"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 2,
+                              "children": [],
+                              "total_posts_count": 0
+                            },
+                            {
+                              "name": "线性编年",
+                              "path": "/架构/叙事/叙事编排/故事组织/脉络铺排/时序编排/线性编年",
+                              "id": 15315,
+                              "source_stable_id": 946,
+                              "source_type": "形式",
+                              "description": "按时间先后顺序线性推进的叙事时序安排",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15356,
+                              "element_count": 5,
+                              "elements": [
+                                {
+                                  "name": "履历式",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "accf5d531aaa9ef7b9e6fee360944151"
+                                  ]
+                                },
+                                {
+                                  "name": "历时性",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "62da797f45d5b2a8ebd9149c3b52c719"
+                                  ]
+                                },
+                                {
+                                  "name": "编年史",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "c84d14e15b8324b91df2cd8cb8304db9"
+                                  ]
+                                },
+                                {
+                                  "name": "轨迹",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "b6482cda993c100f39d6eccf65261a24"
+                                  ]
+                                },
+                                {
+                                  "name": "编年体",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "2e93c00132e3a6a30c06efb6984ab71a"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 5,
+                              "children": [],
+                              "total_posts_count": 0
+                            },
+                            {
+                              "name": "节奏分段",
+                              "path": "/架构/叙事/叙事编排/故事组织/脉络铺排/时序编排/节奏分段",
+                              "id": 15318,
+                              "source_stable_id": 949,
+                              "source_type": "形式",
+                              "description": "叙事的节奏控制、阶段分割与时间压缩等结构性安排",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15356,
+                              "element_count": 1,
+                              "elements": [
+                                {
+                                  "name": "分波次",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "accf5d531aaa9ef7b9e6fee360944151"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 1,
+                              "children": [],
+                              "total_posts_count": 0
+                            }
+                          ],
+                          "total_posts_count": 4
+                        },
+                        {
+                          "name": "结构编排",
+                          "path": "/架构/叙事/叙事编排/故事组织/脉络铺排/结构编排",
+                          "id": 15877,
+                          "source_stable_id": 542,
+                          "source_type": "形式",
+                          "description": "内容各部分的组织安排与框架设计",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15875,
+                          "element_count": 0,
+                          "elements": [],
+                          "total_element_count": 102,
+                          "children": [
+                            {
+                              "name": "叙事位置",
+                              "path": "/架构/叙事/叙事编排/故事组织/脉络铺排/结构编排/叙事位置",
+                              "id": 15078,
+                              "source_stable_id": 557,
+                              "source_type": "形式",
+                              "description": "叙事内容在时间轴上的特定位置",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15877,
+                              "element_count": 4,
+                              "elements": [
+                                {
+                                  "name": "节点",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "59c0ba8a450a7d2327b78d72c0697938"
+                                  ]
+                                },
+                                {
+                                  "name": "结尾",
+                                  "count": 3,
+                                  "post_ids": [
+                                    "64770257",
+                                    "665971bb000000001303d005",
+                                    "67284f9c000000001901875a"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 4,
+                              "children": [],
+                              "total_posts_count": 2
+                            },
+                            {
+                              "name": "局部结构",
+                              "path": "/架构/叙事/叙事编排/故事组织/脉络铺排/结构编排/局部结构",
+                              "id": 15614,
+                              "source_stable_id": 1441,
+                              "source_type": "形式",
+                              "description": "内容结构中特定部分的组织安排,如开头、结尾等",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15877,
+                              "element_count": 1,
+                              "elements": [
+                                {
+                                  "name": "结尾结构",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "60332209"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 1,
+                              "children": [],
+                              "total_posts_count": 0
+                            },
+                            {
+                              "name": "框架类型",
+                              "path": "/架构/叙事/叙事编排/故事组织/脉络铺排/结构编排/框架类型",
+                              "id": 15935,
+                              "source_stable_id": 1438,
+                              "source_type": "形式",
+                              "description": "各种结构框架的类型与形式,包括通用框架概念和特定载体的结构形式",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15877,
+                              "element_count": 0,
+                              "elements": [],
+                              "total_element_count": 87,
+                              "children": [
+                                {
+                                  "name": "具体形式",
+                                  "path": "/架构/叙事/叙事编排/故事组织/脉络铺排/结构编排/框架类型/具体形式",
+                                  "id": 15617,
+                                  "source_stable_id": 1444,
+                                  "source_type": "形式",
+                                  "description": "具体的结构形式与组织模式",
+                                  "category_nature": "领域",
+                                  "level": 8,
+                                  "parent_id": 15935,
+                                  "element_count": 2,
+                                  "elements": [
+                                    {
+                                      "name": "祝福结构",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "65571251"
+                                      ]
+                                    },
+                                    {
+                                      "name": "分段式叙事结构",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "56717837"
+                                      ]
+                                    }
+                                  ],
+                                  "total_element_count": 2,
+                                  "children": [],
+                                  "total_posts_count": 0
+                                },
+                                {
+                                  "name": "载体框架",
+                                  "path": "/架构/叙事/叙事编排/故事组织/脉络铺排/结构编排/框架类型/载体框架",
+                                  "id": 15616,
+                                  "source_stable_id": 1443,
+                                  "source_type": "形式",
+                                  "description": "特定内容载体或表达形式的结构框架",
+                                  "category_nature": "领域",
+                                  "level": 8,
+                                  "parent_id": 15935,
+                                  "element_count": 2,
+                                  "elements": [
+                                    {
+                                      "name": "评论结构",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "22bcaccb2262e8864af03c8323490832"
+                                      ]
+                                    },
+                                    {
+                                      "name": "书信式",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "64314678"
+                                      ]
+                                    }
+                                  ],
+                                  "total_element_count": 2,
+                                  "children": [],
+                                  "total_posts_count": 0
+                                },
+                                {
+                                  "name": "通用框架",
+                                  "path": "/架构/叙事/叙事编排/故事组织/脉络铺排/结构编排/框架类型/通用框架",
+                                  "id": 15615,
+                                  "source_stable_id": 1442,
+                                  "source_type": "形式",
+                                  "description": "泛化的结构框架概念,不限定特定载体或形式",
+                                  "category_nature": "领域",
+                                  "level": 8,
+                                  "parent_id": 15935,
+                                  "element_count": 83,
+                                  "elements": [
+                                    {
+                                      "name": "结构",
+                                      "count": 31,
+                                      "post_ids": [
+                                        "333bd89e657acbcd9b26201f93cd8993",
+                                        "44556070",
+                                        "59323915",
+                                        "59c0ba8a450a7d2327b78d72c0697938",
+                                        "63712737",
+                                        "64203380",
+                                        "64442545",
+                                        "64801086",
+                                        "6687d458000000000a026f91",
+                                        "66d1ab42000000001f015507",
+                                        "670baf34000000001600f52a",
+                                        "672ed3b6000000003c017f82",
+                                        "67e68c9d00000000060282fb",
+                                        "68383eb1000000000303e7ef",
+                                        "68538f7c000000002400805b",
+                                        "685b68c300000000150226bd",
+                                        "68f1af7c0000000005003459",
+                                        "6960924b000000001a037a1c",
+                                        "6961b301000000001a02f6af",
+                                        "6964573a000000000d00800e",
+                                        "6964ab0e000000001a035c04",
+                                        "6965adce000000001a02a701",
+                                        "6966f1df000000001a032514",
+                                        "69685275000000000e03c790",
+                                        "696c2b7b000000001a02b944",
+                                        "696ede36000000001a028e03",
+                                        "6970373f000000000e00f81d",
+                                        "9b95ed26ea9f265079b09e2d1032bc7c",
+                                        "b6482cda993c100f39d6eccf65261a24",
+                                        "c8fa9b4d1526d3345bcb15c7d196b79d",
+                                        "e04fd15a06f8c97486e48990e85c8492"
+                                      ]
+                                    },
+                                    {
+                                      "name": "叙事结构",
+                                      "count": 51,
+                                      "post_ids": [
+                                        "03e3d299faba104965b33d87b5063eff",
+                                        "21006075",
+                                        "2a2c642e67822ed8c11f9d306e815a35",
+                                        "2e93c00132e3a6a30c06efb6984ab71a",
+                                        "4020e56c08340e92c9862e481c07d2e2",
+                                        "444f41a7f46eaee7dfa43d10cb0d10c5",
+                                        "4bab077aa99a235a81c41631af69aa78",
+                                        "56977187",
+                                        "57028518",
+                                        "62255386",
+                                        "63676018",
+                                        "64400730",
+                                        "64415308",
+                                        "64450659",
+                                        "64589911",
+                                        "64631158",
+                                        "64935973",
+                                        "65135957",
+                                        "65139072",
+                                        "65270425",
+                                        "661dbf91000000001a0119b6",
+                                        "66619827000000000600486f",
+                                        "6781eb19000000000b039867",
+                                        "67862d98000000001a01f443",
+                                        "67adb23f000000002a00c240",
+                                        "67bafc850000000029036328",
+                                        "67e243d0000000001d02495b",
+                                        "680898fa000000001c01c23e",
+                                        "682086dc0000000012003cbd",
+                                        "683f8111000000002102effd",
+                                        "68e310c90000000003035444",
+                                        "68ec3f9d000000000700de97",
+                                        "68f95c43000000000300c650",
+                                        "68fb6a5c000000000302e5de",
+                                        "68fff44700000000030390d3",
+                                        "690a9329000000000700b783",
+                                        "6913cafd000000000703402b",
+                                        "691a54bd000000000700be32",
+                                        "691f9a9f000000000d00ea0a",
+                                        "692cc7ab000000001b030110",
+                                        "692e7ccf000000001f00a137",
+                                        "693613b9000000001e00ebdd",
+                                        "69375a940000000019024af5",
+                                        "693f425a000000001e00ed26",
+                                        "69434b1f000000001e013f9e",
+                                        "6951c718000000001e0105b7",
+                                        "82b864cd83e9a5f376214dbc341d6dad",
+                                        "8d43fa69c8f4f5e7d87ec45244cbd97c",
+                                        "970bc999f557cf8026c950f254d3ddac",
+                                        "accf5d531aaa9ef7b9e6fee360944151",
+                                        "c84d14e15b8324b91df2cd8cb8304db9"
+                                      ]
+                                    },
+                                    {
+                                      "name": "叙事逻辑",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "dae634c9aa8c31d38e925750d3fbfeb6"
+                                      ]
+                                    }
+                                  ],
+                                  "total_element_count": 83,
+                                  "children": [],
+                                  "total_posts_count": 45
+                                }
+                              ],
+                              "total_posts_count": 45
+                            },
+                            {
+                              "name": "背景铺垫",
+                              "path": "/架构/叙事/叙事编排/故事组织/脉络铺排/结构编排/背景铺垫",
+                              "id": 15613,
+                              "source_stable_id": 1439,
+                              "source_type": "形式",
+                              "description": "为主要内容提供背景信息、环境设定与铺垫的结构安排",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15877,
+                              "element_count": 10,
+                              "elements": [
+                                {
+                                  "name": "背景关联",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "62da797f45d5b2a8ebd9149c3b52c719"
+                                  ]
+                                },
+                                {
+                                  "name": "叙事背景",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "64095002",
+                                    "b90a1bbdf6dcddcaf4f4ee2f201e1d26"
+                                  ]
+                                },
+                                {
+                                  "name": "背景",
+                                  "count": 7,
+                                  "post_ids": [
+                                    "03c54bcf569a9f957f3879f5e87cbb19",
+                                    "64203380",
+                                    "64851184",
+                                    "65402572",
+                                    "65600878",
+                                    "65604986",
+                                    "6880a7a7000000000b02f5a6"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 10,
+                              "children": [],
+                              "total_posts_count": 1
+                            }
+                          ],
+                          "total_posts_count": 48
+                        }
+                      ],
+                      "total_posts_count": 104
+                    },
+                    {
+                      "name": "角色书写",
+                      "path": "/架构/叙事/叙事编排/故事组织/角色书写",
+                      "id": 15874,
+                      "source_stable_id": 1028,
+                      "source_type": "形式",
+                      "description": "围绕叙事主体的人物刻画与角色线索组织",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 14916,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 38,
+                      "children": [
+                        {
+                          "name": "人物叙事",
+                          "path": "/架构/叙事/叙事编排/故事组织/角色书写/人物叙事",
+                          "id": 15354,
+                          "source_stable_id": 188,
+                          "source_type": "形式",
+                          "description": "围绕人物生平事迹展开的叙事组织",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15874,
+                          "element_count": 17,
+                          "elements": [
+                            {
+                              "name": "创业样本",
+                              "count": 9,
+                              "post_ids": [
+                                "6731b884000000001901b8d3",
+                                "68f1e631000000000503111b",
+                                "68faf90d0000000005011fa2",
+                                "6902e20a0000000005030a7b",
+                                "69048be90000000005033c79",
+                                "690af75a000000000503b57e",
+                                "69394a0b000000001f006ce6",
+                                "69491c99000000001e02c765",
+                                "694a6caf000000001f00e112"
+                              ]
+                            },
+                            {
+                              "name": "人物/创业叙事",
+                              "count": 8,
+                              "post_ids": [
+                                "6732f52f000000001b013fdb",
+                                "673d9a58000000000702450b",
+                                "69005a1e0000000004017637",
+                                "6927e806000000001f007658",
+                                "69491c99000000001e02c765",
+                                "694a6caf000000001f00e112"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 17,
+                          "children": [],
+                          "total_posts_count": 13
+                        },
+                        {
+                          "name": "角色塑造",
+                          "path": "/架构/叙事/叙事编排/故事组织/角色书写/角色塑造",
+                          "id": 15355,
+                          "source_stable_id": 337,
+                          "source_type": "形式",
+                          "description": "为叙事主体设定的人格特征、身份标签与形象定位",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15874,
+                          "element_count": 18,
+                          "elements": [
+                            {
+                              "name": "人设",
+                              "count": 8,
+                              "post_ids": [
+                                "662ce86d0000000003023f0a",
+                                "67389194000000001d038599",
+                                "676535f4000000000b00dfd1",
+                                "6804ddfa000000000b01c901",
+                                "68286f560000000012006015",
+                                "68c14b36000000001d02b44e",
+                                "68c909c3000000001302ad69",
+                                "b9bc7d3c46583a41a76867f0ac7e62f1"
+                              ]
+                            },
+                            {
+                              "name": "打工人设",
+                              "count": 8,
+                              "post_ids": [
+                                "662096bc000000000d03035d",
+                                "671f7fab000000003c01fffc",
+                                "67b9840d000000000603a241",
+                                "67c17568000000000603b420",
+                                "67ee4e29000000001200f3c2",
+                                "67fe11bb000000000d017b89",
+                                "68070ccb000000000f039a1b",
+                                "6867d9af000000001203f084"
+                              ]
+                            },
+                            {
+                              "name": "人物形象",
+                              "count": 1,
+                              "post_ids": [
+                                "64935973"
+                              ]
+                            },
+                            {
+                              "name": "人物设定",
+                              "count": 1,
+                              "post_ids": [
+                                "64456019"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 21,
+                          "children": [
+                            {
+                              "name": "个体塑造",
+                              "path": "/架构/叙事/叙事编排/故事组织/角色书写/角色塑造/个体塑造",
+                              "id": 15319,
+                              "source_stable_id": 952,
+                              "source_type": "形式",
+                              "description": "对个体人物形象的刻画、重塑与性格定性",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15355,
+                              "element_count": 3,
+                              "elements": [
+                                {
+                                  "name": "正面重塑",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "444f41a7f46eaee7dfa43d10cb0d10c5"
+                                  ]
+                                },
+                                {
+                                  "name": "隐忍式",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "444f41a7f46eaee7dfa43d10cb0d10c5"
+                                  ]
+                                },
+                                {
+                                  "name": "调皮捣蛋型",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "2c73223f278ea6aecd70b5b54f0aff21"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 3,
+                              "children": [],
+                              "total_posts_count": 0
+                            }
+                          ],
+                          "total_posts_count": 15
+                        }
+                      ],
+                      "total_posts_count": 28
+                    }
+                  ],
+                  "total_posts_count": 173
+                }
+              ],
+              "total_posts_count": 173
+            },
+            {
+              "name": "叙事风格",
+              "path": "/架构/叙事/叙事风格",
+              "id": 15754,
+              "source_stable_id": 157,
+              "source_type": "形式",
+              "description": "叙述的整体格调与体裁",
+              "category_nature": "维度",
+              "level": 3,
+              "parent_id": 15958,
+              "element_count": 0,
+              "elements": [],
+              "total_element_count": 104,
+              "children": [
+                {
+                  "name": "体裁格调",
+                  "path": "/架构/叙事/叙事风格/体裁格调",
+                  "id": 14917,
+                  "source_stable_id": 166,
+                  "source_type": "形式",
+                  "description": "宏大叙事、纪实、传记、影视化、演讲式等叙事体裁与整体格调",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 15754,
+                  "element_count": 6,
+                  "elements": [
+                    {
+                      "name": "悲剧",
+                      "count": 1,
+                      "post_ids": [
+                        "2c73223f278ea6aecd70b5b54f0aff21"
+                      ]
+                    },
+                    {
+                      "name": "攻略式",
+                      "count": 2,
+                      "post_ids": [
+                        "69672e2d000000001a026263",
+                        "696f2f97000000000e00e33c"
+                      ]
+                    },
+                    {
+                      "name": "反讽式叙事",
+                      "count": 3,
+                      "post_ids": [
+                        "64504122",
+                        "64585144",
+                        "65514975"
+                      ]
+                    }
+                  ],
+                  "total_element_count": 104,
+                  "children": [
+                    {
+                      "name": "宏大庄严",
+                      "path": "/架构/叙事/叙事风格/体裁格调/宏大庄严",
+                      "id": 14926,
+                      "source_stable_id": 192,
+                      "source_type": "形式",
+                      "description": "严肃宏大、带有崇高感或批判力度的叙事格调",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 14917,
+                      "element_count": 5,
+                      "elements": [
+                        {
+                          "name": "宏大叙事",
+                          "count": 1,
+                          "post_ids": [
+                            "9b95ed26ea9f265079b09e2d1032bc7c"
+                          ]
+                        },
+                        {
+                          "name": "叙事基调",
+                          "count": 1,
+                          "post_ids": [
+                            "22bcaccb2262e8864af03c8323490832"
+                          ]
+                        },
+                        {
+                          "name": "叙事风格",
+                          "count": 1,
+                          "post_ids": [
+                            "d7dcfed942f432bd9c75ec4e2cd31b99"
+                          ]
+                        },
+                        {
+                          "name": "传奇",
+                          "count": 1,
+                          "post_ids": [
+                            "27f97d45367f3d0662d3204b3a4b0fb9"
+                          ]
+                        },
+                        {
+                          "name": "宏大叙事话术",
+                          "count": 1,
+                          "post_ids": [
+                            "64729260"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 5,
+                      "children": [],
+                      "total_posts_count": 0
+                    },
+                    {
+                      "name": "平实亲近",
+                      "path": "/架构/叙事/叙事风格/体裁格调/平实亲近",
+                      "id": 14927,
+                      "source_stable_id": 193,
+                      "source_type": "形式",
+                      "description": "贴近日常生活、质朴亲民的叙事格调",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 14917,
+                      "element_count": 9,
+                      "elements": [
+                        {
+                          "name": "表达",
+                          "count": 1,
+                          "post_ids": [
+                            "27f97d45367f3d0662d3204b3a4b0fb9"
+                          ]
+                        },
+                        {
+                          "name": "碎碎念式",
+                          "count": 3,
+                          "post_ids": [
+                            "6923b4b2000000001e03531a",
+                            "695f0b2b000000001a027365",
+                            "6965ea53000000000e00f0f1"
+                          ]
+                        },
+                        {
+                          "name": "怀旧式",
+                          "count": 2,
+                          "post_ids": [
+                            "55099131",
+                            "65135248"
+                          ]
+                        },
+                        {
+                          "name": "草根式",
+                          "count": 1,
+                          "post_ids": [
+                            "64958390"
+                          ]
+                        },
+                        {
+                          "name": "民生化",
+                          "count": 2,
+                          "post_ids": [
+                            "55099131",
+                            "63676018"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 9,
+                      "children": [],
+                      "total_posts_count": 3
+                    },
+                    {
+                      "name": "影视传记",
+                      "path": "/架构/叙事/叙事风格/体裁格调/影视传记",
+                      "id": 14925,
+                      "source_stable_id": 191,
+                      "source_type": "形式",
+                      "description": "具有影视化、传记式、沉浸式特征的戏剧性叙事体裁",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 14917,
+                      "element_count": 12,
+                      "elements": [
+                        {
+                          "name": "传记式",
+                          "count": 2,
+                          "post_ids": [
+                            "03e3d299faba104965b33d87b5063eff",
+                            "82b864cd83e9a5f376214dbc341d6dad"
+                          ]
+                        },
+                        {
+                          "name": "沉浸式",
+                          "count": 5,
+                          "post_ids": [
+                            "61bdc28b0000000001024896",
+                            "68a4107f000000001c00e8e9",
+                            "691d3112000000001e036559",
+                            "69756d90000000001a020c81"
+                          ]
+                        },
+                        {
+                          "name": "情景剧式",
+                          "count": 1,
+                          "post_ids": [
+                            "68070ccb000000000f039a1b"
+                          ]
+                        },
+                        {
+                          "name": "传奇式",
+                          "count": 1,
+                          "post_ids": [
+                            "69005a1e0000000004017637"
+                          ]
+                        },
+                        {
+                          "name": "余华式",
+                          "count": 1,
+                          "post_ids": [
+                            "68ff53770000000007000d54"
+                          ]
+                        },
+                        {
+                          "name": "情景剧",
+                          "count": 1,
+                          "post_ids": [
+                            "64631158"
+                          ]
+                        },
+                        {
+                          "name": "情景短剧",
+                          "count": 1,
+                          "post_ids": [
+                            "64442545"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 12,
+                      "children": [],
+                      "total_posts_count": 7
+                    },
+                    {
+                      "name": "曲艺说唱",
+                      "path": "/架构/叙事/叙事风格/体裁格调/曲艺说唱",
+                      "id": 15282,
+                      "source_stable_id": 870,
+                      "source_type": "形式",
+                      "description": "以快板、数来宝等传统曲艺形式为载体的说唱表演体裁,兼具节奏韵律与口语说唱的艺术特征",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 14917,
+                      "element_count": 8,
+                      "elements": [
+                        {
+                          "name": "韵律说唱",
+                          "count": 1,
+                          "post_ids": [
+                            "65142392"
+                          ]
+                        },
+                        {
+                          "name": "快板式",
+                          "count": 1,
+                          "post_ids": [
+                            "65142392"
+                          ]
+                        },
+                        {
+                          "name": "节奏口播",
+                          "count": 1,
+                          "post_ids": [
+                            "65142392"
+                          ]
+                        },
+                        {
+                          "name": "快板说唱",
+                          "count": 1,
+                          "post_ids": [
+                            "64139717"
+                          ]
+                        },
+                        {
+                          "name": "快板节奏",
+                          "count": 1,
+                          "post_ids": [
+                            "64139717"
+                          ]
+                        },
+                        {
+                          "name": "说唱表演",
+                          "count": 1,
+                          "post_ids": [
+                            "63972446"
+                          ]
+                        },
+                        {
+                          "name": "快板表演",
+                          "count": 1,
+                          "post_ids": [
+                            "63972446"
+                          ]
+                        },
+                        {
+                          "name": "民间歌谣式",
+                          "count": 1,
+                          "post_ids": [
+                            "57028518"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 8,
+                      "children": [],
+                      "total_posts_count": 0
+                    },
+                    {
+                      "name": "演说交流",
+                      "path": "/架构/叙事/叙事风格/体裁格调/演说交流",
+                      "id": 14924,
+                      "source_stable_id": 190,
+                      "source_type": "形式",
+                      "description": "以演讲、科普讲解、对话等口头讲述为形式的叙事体裁",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 14917,
+                      "element_count": 1,
+                      "elements": [
+                        {
+                          "name": "表述",
+                          "count": 1,
+                          "post_ids": [
+                            "63762379"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 38,
+                      "children": [
+                        {
+                          "name": "体验讲述",
+                          "path": "/架构/叙事/叙事风格/体裁格调/演说交流/体验讲述",
+                          "id": 15072,
+                          "source_stable_id": 549,
+                          "source_type": "形式",
+                          "description": "强调亲身感受与体验的讲述形式",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 14924,
+                          "element_count": 4,
+                          "elements": [
+                            {
+                              "name": "经验传承式",
+                              "count": 1,
+                              "post_ids": [
+                                "e04fd15a06f8c97486e48990e85c8492"
+                              ]
+                            },
+                            {
+                              "name": "体验",
+                              "count": 1,
+                              "post_ids": [
+                                "67bafc850000000029036328"
+                              ]
+                            },
+                            {
+                              "name": "体验式",
+                              "count": 2,
+                              "post_ids": [
+                                "672ed3b6000000003c017f82",
+                                "68302e2b000000000f038e8c"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 4,
+                          "children": [],
+                          "total_posts_count": 3
+                        },
+                        {
+                          "name": "对话访谈",
+                          "path": "/架构/叙事/叙事风格/体裁格调/演说交流/对话访谈",
+                          "id": 15070,
+                          "source_stable_id": 545,
+                          "source_type": "形式",
+                          "description": "对话、访谈等双向交流形式",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 14924,
+                          "element_count": 6,
+                          "elements": [
+                            {
+                              "name": "对话式叙事结构",
+                              "count": 1,
+                              "post_ids": [
+                                "61db1ae4bd885760b0f5cca9ecacb588"
+                              ]
+                            },
+                            {
+                              "name": "专访式",
+                              "count": 1,
+                              "post_ids": [
+                                "8d43fa69c8f4f5e7d87ec45244cbd97c"
+                              ]
+                            },
+                            {
+                              "name": "对话式",
+                              "count": 1,
+                              "post_ids": [
+                                "67adb23f000000002a00c240"
+                              ]
+                            },
+                            {
+                              "name": "深度访谈式",
+                              "count": 1,
+                              "post_ids": [
+                                "69200dec000000001f00b884"
+                              ]
+                            },
+                            {
+                              "name": "对话式结构",
+                              "count": 1,
+                              "post_ids": [
+                                "65514975"
+                              ]
+                            },
+                            {
+                              "name": "谈",
+                              "count": 1,
+                              "post_ids": [
+                                "65114702"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 6,
+                          "children": [],
+                          "total_posts_count": 2
+                        },
+                        {
+                          "name": "演讲宣讲",
+                          "path": "/架构/叙事/叙事风格/体裁格调/演说交流/演讲宣讲",
+                          "id": 15068,
+                          "source_stable_id": 543,
+                          "source_type": "形式",
+                          "description": "演讲、宣讲等单向正式讲述形式",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 14924,
+                          "element_count": 2,
+                          "elements": [
+                            {
+                              "name": "演说式",
+                              "count": 2,
+                              "post_ids": [
+                                "64589911",
+                                "64610880"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 5,
+                          "children": [
+                            {
+                              "name": "正式演讲",
+                              "path": "/架构/叙事/叙事风格/体裁格调/演说交流/演讲宣讲/正式演讲",
+                              "id": 15071,
+                              "source_stable_id": 547,
+                              "source_type": "形式",
+                              "description": "演讲、演说、宣讲等正式公开讲述形式",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15068,
+                              "element_count": 3,
+                              "elements": [
+                                {
+                                  "name": "演讲视频",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "65114702"
+                                  ]
+                                },
+                                {
+                                  "name": "演讲式",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "57028518",
+                                    "59422696"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 3,
+                              "children": [],
+                              "total_posts_count": 0
+                            }
+                          ],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "科普教学",
+                          "path": "/架构/叙事/叙事风格/体裁格调/演说交流/科普教学",
+                          "id": 15069,
+                          "source_stable_id": 544,
+                          "source_type": "形式",
+                          "description": "科普讲解、教学等知识传授形式",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 14924,
+                          "element_count": 22,
+                          "elements": [
+                            {
+                              "name": "科普",
+                              "count": 19,
+                              "post_ids": [
+                                "661dbf91000000001a0119b6",
+                                "67206035000000001b02f4b1",
+                                "683f8111000000002102effd",
+                                "68e310c90000000003035444",
+                                "68ec3f9d000000000700de97",
+                                "68ecc19400000000050028c1",
+                                "68f95c43000000000300c650",
+                                "68fff44700000000030390d3",
+                                "690a9329000000000700b783",
+                                "6913cafd000000000703402b",
+                                "691a54bd000000000700be32",
+                                "691f9a9f000000000d00ea0a",
+                                "692cc7ab000000001b030110",
+                                "693613b9000000001e00ebdd",
+                                "69375a940000000019024af5",
+                                "693f425a000000001e00ed26",
+                                "69434b1f000000001e013f9e",
+                                "6951c718000000001e0105b7"
+                              ]
+                            },
+                            {
+                              "name": "教学结构",
+                              "count": 3,
+                              "post_ids": [
+                                "661b9936000000001b012aa5",
+                                "67d55ec7000000000e004e69",
+                                "691d3112000000001e036559"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 22,
+                          "children": [],
+                          "total_posts_count": 21
+                        }
+                      ],
+                      "total_posts_count": 26
+                    },
+                    {
+                      "name": "纪实记录",
+                      "path": "/架构/叙事/叙事风格/体裁格调/纪实记录",
+                      "id": 14923,
+                      "source_stable_id": 189,
+                      "source_type": "形式",
+                      "description": "基于真实事件的纪实、历史档案、口述历史等记录性叙事体裁",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 14917,
+                      "element_count": 26,
+                      "elements": [
+                        {
+                          "name": "纪实性",
+                          "count": 4,
+                          "post_ids": [
+                            "3a8712377c1ad3ad44d0f0271e28532d",
+                            "64801086",
+                            "67bafc850000000029036328",
+                            "d7dcfed942f432bd9c75ec4e2cd31b99"
+                          ]
+                        },
+                        {
+                          "name": "纪实",
+                          "count": 2,
+                          "post_ids": [
+                            "65febd8e0000000012035538",
+                            "6732cd8a000000001b02f948"
+                          ]
+                        },
+                        {
+                          "name": "深度报道",
+                          "count": 19,
+                          "post_ids": [
+                            "68ecc19400000000050028c1",
+                            "68ef800d0000000005011094",
+                            "68fa08f60000000005030ddc",
+                            "68faf90d0000000005011fa2",
+                            "690075390000000004013a53",
+                            "6902e20a0000000005030a7b",
+                            "69048be90000000005033c79",
+                            "690ed1190000000003010bd3",
+                            "690ed2240000000005002b41",
+                            "69157ac40000000005039157",
+                            "692006ef000000001f008b41",
+                            "69293c52000000001e02d9d6",
+                            "6932744c000000001f00c9f3",
+                            "69328436000000001f006a54",
+                            "69363584000000001f006a4c",
+                            "69394a0b000000001f006ce6",
+                            "69437b6d000000001e0381c9",
+                            "6944e9b5000000001e02472d",
+                            "694a6caf000000001f00e112"
+                          ]
+                        },
+                        {
+                          "name": "纪实感",
+                          "count": 1,
+                          "post_ids": [
+                            "62255386"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 26,
+                      "children": [],
+                      "total_posts_count": 22
+                    }
+                  ],
+                  "total_posts_count": 57
+                }
+              ],
+              "total_posts_count": 57
+            }
+          ],
+          "total_posts_count": 188
+        },
+        {
+          "name": "策略",
+          "path": "/架构/策略",
+          "id": 15750,
+          "source_stable_id": 143,
+          "source_type": "形式",
+          "description": "互动引导、情感调动、认知影响等功能性传播策略",
+          "category_nature": "内容",
+          "level": 2,
+          "parent_id": 15957,
+          "element_count": 0,
+          "elements": [],
+          "total_element_count": 405,
+          "children": [
+            {
+              "name": "互动引导",
+              "path": "/架构/策略/互动引导",
+              "id": 15757,
+              "source_stable_id": 162,
+              "source_type": "形式",
+              "description": "引导受众参与互动、采取行动的策略",
+              "category_nature": "维度",
+              "level": 3,
+              "parent_id": 15750,
+              "element_count": 0,
+              "elements": [],
+              "total_element_count": 116,
+              "children": [
+                {
+                  "name": "受众互动",
+                  "path": "/架构/策略/互动引导/受众互动",
+                  "id": 14919,
+                  "source_stable_id": 173,
+                  "source_type": "形式",
+                  "description": "引导受众参与反馈、评论、转发等互动行为",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 15757,
+                  "element_count": 1,
+                  "elements": [
+                    {
+                      "name": "交互设计",
+                      "count": 1,
+                      "post_ids": [
+                        "65203608"
+                      ]
+                    }
+                  ],
+                  "total_element_count": 28,
+                  "children": [
+                    {
+                      "name": "互动载体",
+                      "path": "/架构/策略/互动引导/受众互动/互动载体",
+                      "id": 15011,
+                      "source_stable_id": 413,
+                      "source_type": "形式",
+                      "description": "承载互动功能的工具、组件和媒介形式",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 14919,
+                      "element_count": 1,
+                      "elements": [
+                        {
+                          "name": "交互排版",
+                          "count": 1,
+                          "post_ids": [
+                            "65133109"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 1,
+                      "children": [],
+                      "total_posts_count": 0
+                    },
+                    {
+                      "name": "指令引导",
+                      "path": "/架构/策略/互动引导/受众互动/指令引导",
+                      "id": 15010,
+                      "source_stable_id": 412,
+                      "source_type": "形式",
+                      "description": "通过语言指令直接引导受众评论、转发、关注等行为的互动策略",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 14919,
+                      "element_count": 1,
+                      "elements": [
+                        {
+                          "name": "互动指令",
+                          "count": 1,
+                          "post_ids": [
+                            "64816949"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 13,
+                      "children": [
+                        {
+                          "name": "定向指令",
+                          "path": "/架构/策略/互动引导/受众互动/指令引导/定向指令",
+                          "id": 15014,
+                          "source_stable_id": 416,
+                          "source_type": "形式",
+                          "description": "针对特定行为的精准引导指令,如转发、求助、强制互动等",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15010,
+                          "element_count": 4,
+                          "elements": [
+                            {
+                              "name": "求助式结尾",
+                              "count": 1,
+                              "post_ids": [
+                                "67b9840d000000000603a241"
+                              ]
+                            },
+                            {
+                              "name": "提示",
+                              "count": 1,
+                              "post_ids": [
+                                "695f0b2b000000001a027365"
+                              ]
+                            },
+                            {
+                              "name": "强交互",
+                              "count": 1,
+                              "post_ids": [
+                                "64314678"
+                              ]
+                            },
+                            {
+                              "name": "分享引导",
+                              "count": 1,
+                              "post_ids": [
+                                "55994947"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 4,
+                          "children": [],
+                          "total_posts_count": 2
+                        },
+                        {
+                          "name": "通用引导",
+                          "path": "/架构/策略/互动引导/受众互动/指令引导/通用引导",
+                          "id": 15013,
+                          "source_stable_id": 415,
+                          "source_type": "形式",
+                          "description": "泛化的互动引导概念与通用性引导策略",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15010,
+                          "element_count": 8,
+                          "elements": [
+                            {
+                              "name": "互动式",
+                              "count": 3,
+                              "post_ids": [
+                                "59c0ba8a450a7d2327b78d72c0697938",
+                                "62255386",
+                                "6911532d000000000503bd18"
+                              ]
+                            },
+                            {
+                              "name": "互动",
+                              "count": 1,
+                              "post_ids": [
+                                "685f974300000000120144db"
+                              ]
+                            },
+                            {
+                              "name": "互动式引导",
+                              "count": 1,
+                              "post_ids": [
+                                "64585144"
+                              ]
+                            },
+                            {
+                              "name": "结尾引导",
+                              "count": 2,
+                              "post_ids": [
+                                "62255386",
+                                "64554023"
+                              ]
+                            },
+                            {
+                              "name": "互动引导",
+                              "count": 1,
+                              "post_ids": [
+                                "56603938"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 8,
+                          "children": [],
+                          "total_posts_count": 2
+                        }
+                      ],
+                      "total_posts_count": 4
+                    },
+                    {
+                      "name": "活动参与",
+                      "path": "/架构/策略/互动引导/受众互动/活动参与",
+                      "id": 15012,
+                      "source_stable_id": 414,
+                      "source_type": "形式",
+                      "description": "设计的互动活动形式与受众深度参与机制",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 14919,
+                      "element_count": 6,
+                      "elements": [
+                        {
+                          "name": "挑战",
+                          "count": 1,
+                          "post_ids": [
+                            "68528a360000000010010c6d"
+                          ]
+                        },
+                        {
+                          "name": "发布",
+                          "count": 1,
+                          "post_ids": [
+                            "69297e47000000001e028ec3"
+                          ]
+                        },
+                        {
+                          "name": "产业对接会",
+                          "count": 2,
+                          "post_ids": [
+                            "68f9fb67000000000400736f"
+                          ]
+                        },
+                        {
+                          "name": "1V1精准对接",
+                          "count": 1,
+                          "post_ids": [
+                            "68f9fb67000000000400736f"
+                          ]
+                        },
+                        {
+                          "name": "打卡",
+                          "count": 1,
+                          "post_ids": [
+                            "691acd15000000000402134e"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 6,
+                      "children": [],
+                      "total_posts_count": 4
+                    },
+                    {
+                      "name": "社交扩散",
+                      "path": "/架构/策略/互动引导/受众互动/社交扩散",
+                      "id": 15807,
+                      "source_stable_id": 442,
+                      "source_type": "形式",
+                      "description": "利用社交关系链和互动行为实现内容传播与扩散的策略,如裂变、接力等形式",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 14919,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 7,
+                      "children": [
+                        {
+                          "name": "传播行为",
+                          "path": "/架构/策略/互动引导/受众互动/社交扩散/传播行为",
+                          "id": 15642,
+                          "source_stable_id": 1479,
+                          "source_type": "形式",
+                          "description": "用户在社交平台上的具体转发、分享等互动行为",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15807,
+                          "element_count": 2,
+                          "elements": [
+                            {
+                              "name": "专属分享",
+                              "count": 1,
+                              "post_ids": [
+                                "64855234"
+                              ]
+                            },
+                            {
+                              "name": "转发互动",
+                              "count": 1,
+                              "post_ids": [
+                                "63972446"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 2,
+                          "children": [],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "引导机制",
+                          "path": "/架构/策略/互动引导/受众互动/社交扩散/引导机制",
+                          "id": 15641,
+                          "source_stable_id": 1478,
+                          "source_type": "形式",
+                          "description": "引导用户进行转发、分享等社交行为的手法和机制",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15807,
+                          "element_count": 2,
+                          "elements": [
+                            {
+                              "name": "社交引导",
+                              "count": 1,
+                              "post_ids": [
+                                "65402572"
+                              ]
+                            },
+                            {
+                              "name": "接力式动员",
+                              "count": 1,
+                              "post_ids": [
+                                "63762379"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 2,
+                          "children": [],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "裂变策略",
+                          "path": "/架构/策略/互动引导/受众互动/社交扩散/裂变策略",
+                          "id": 15643,
+                          "source_stable_id": 1480,
+                          "source_type": "形式",
+                          "description": "利用社交关系链实现指数级增长的传播策略",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15807,
+                          "element_count": 3,
+                          "elements": [
+                            {
+                              "name": "社交裂变",
+                              "count": 1,
+                              "post_ids": [
+                                "65801945"
+                              ]
+                            },
+                            {
+                              "name": "社群化",
+                              "count": 2,
+                              "post_ids": [
+                                "57373464",
+                                "57919607"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 3,
+                          "children": [],
+                          "total_posts_count": 0
+                        }
+                      ],
+                      "total_posts_count": 0
+                    }
+                  ],
+                  "total_posts_count": 8
+                },
+                {
+                  "name": "号召动员",
+                  "path": "/架构/策略/互动引导/号召动员",
+                  "id": 15763,
+                  "source_stable_id": 174,
+                  "source_type": "形式",
+                  "description": "呼吁、号召、感召等具有指令性和感染力的行动引导",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 15757,
+                  "element_count": 0,
+                  "elements": [],
+                  "total_element_count": 25,
+                  "children": [
+                    {
+                      "name": "呼吁号召",
+                      "path": "/架构/策略/互动引导/号召动员/呼吁号召",
+                      "id": 15059,
+                      "source_stable_id": 531,
+                      "source_type": "形式",
+                      "description": "带有号召性和感染力的表达方式",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15763,
+                      "element_count": 17,
+                      "elements": [
+                        {
+                          "name": "劝导式",
+                          "count": 2,
+                          "post_ids": [
+                            "64662179",
+                            "65142392"
+                          ]
+                        },
+                        {
+                          "name": "号召式互动",
+                          "count": 1,
+                          "post_ids": [
+                            "65252544"
+                          ]
+                        },
+                        {
+                          "name": "号召式",
+                          "count": 4,
+                          "post_ids": [
+                            "57442193",
+                            "64076321",
+                            "64554023",
+                            "65114702"
+                          ]
+                        },
+                        {
+                          "name": "行动号召",
+                          "count": 1,
+                          "post_ids": [
+                            "64870193"
+                          ]
+                        },
+                        {
+                          "name": "呼吁式",
+                          "count": 4,
+                          "post_ids": [
+                            "60332209",
+                            "63712731",
+                            "64210278",
+                            "64801086"
+                          ]
+                        },
+                        {
+                          "name": "倡议",
+                          "count": 1,
+                          "post_ids": [
+                            "64610874"
+                          ]
+                        },
+                        {
+                          "name": "强烈呼吁",
+                          "count": 1,
+                          "post_ids": [
+                            "64095002"
+                          ]
+                        },
+                        {
+                          "name": "呼吁式结尾",
+                          "count": 2,
+                          "post_ids": [
+                            "59583293",
+                            "63762367"
+                          ]
+                        },
+                        {
+                          "name": "群体呼吁",
+                          "count": 1,
+                          "post_ids": [
+                            "63712737"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 17,
+                      "children": [],
+                      "total_posts_count": 0
+                    },
+                    {
+                      "name": "情感动员",
+                      "path": "/架构/策略/互动引导/号召动员/情感动员",
+                      "id": 15060,
+                      "source_stable_id": 532,
+                      "source_type": "形式",
+                      "description": "情感化、煽动性的动员表达",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15763,
+                      "element_count": 1,
+                      "elements": [
+                        {
+                          "name": "动员式",
+                          "count": 1,
+                          "post_ids": [
+                            "57447289"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 1,
+                      "children": [],
+                      "total_posts_count": 0
+                    },
+                    {
+                      "name": "指令引导",
+                      "path": "/架构/策略/互动引导/号召动员/指令引导",
+                      "id": 15058,
+                      "source_stable_id": 530,
+                      "source_type": "形式",
+                      "description": "直接、明确的行动指令和操作引导",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15763,
+                      "element_count": 6,
+                      "elements": [
+                        {
+                          "name": "强引导",
+                          "count": 3,
+                          "post_ids": [
+                            "64816949",
+                            "64855234",
+                            "65203608"
+                          ]
+                        },
+                        {
+                          "name": "引导式",
+                          "count": 2,
+                          "post_ids": [
+                            "65133109",
+                            "65196789"
+                          ]
+                        },
+                        {
+                          "name": "强引导性",
+                          "count": 1,
+                          "post_ids": [
+                            "65067062"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 6,
+                      "children": [],
+                      "total_posts_count": 0
+                    },
+                    {
+                      "name": "特定诉求",
+                      "path": "/架构/策略/互动引导/号召动员/特定诉求",
+                      "id": 15061,
+                      "source_stable_id": 533,
+                      "source_type": "形式",
+                      "description": "针对特定目标或群体的号召",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15763,
+                      "element_count": 1,
+                      "elements": [
+                        {
+                          "name": "硬核互助",
+                          "count": 1,
+                          "post_ids": [
+                            "56717837"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 1,
+                      "children": [],
+                      "total_posts_count": 0
+                    }
+                  ],
+                  "total_posts_count": 0
+                },
+                {
+                  "name": "实用指引",
+                  "path": "/架构/策略/互动引导/实用指引",
+                  "id": 15802,
+                  "source_stable_id": 338,
+                  "source_type": "形式",
+                  "description": "为受众提供具体操作建议、攻略或行为指引的内容",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 15757,
+                  "element_count": 0,
+                  "elements": [],
+                  "total_element_count": 63,
+                  "children": [
+                    {
+                      "name": "功能演示",
+                      "path": "/架构/策略/互动引导/实用指引/功能演示",
+                      "id": 15047,
+                      "source_stable_id": 518,
+                      "source_type": "形式",
+                      "description": "应用场景与功能展示",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15802,
+                      "element_count": 7,
+                      "elements": [
+                        {
+                          "name": "多功能用法",
+                          "count": 1,
+                          "post_ids": [
+                            "69185d49000000000d00f94e"
+                          ]
+                        },
+                        {
+                          "name": "功能化",
+                          "count": 3,
+                          "post_ids": [
+                            "66519efa000000001500a2bb",
+                            "67aea9de000000001800d129",
+                            "67ee4e29000000001200f3c2"
+                          ]
+                        },
+                        {
+                          "name": "应用展示",
+                          "count": 2,
+                          "post_ids": [
+                            "662ce86d0000000003023f0a",
+                            "67389194000000001d038599"
+                          ]
+                        },
+                        {
+                          "name": "场景演示",
+                          "count": 1,
+                          "post_ids": [
+                            "67fd299a000000001c00cf5d"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 7,
+                      "children": [],
+                      "total_posts_count": 7
+                    },
+                    {
+                      "name": "方法建议",
+                      "path": "/架构/策略/互动引导/实用指引/方法建议",
+                      "id": 15046,
+                      "source_stable_id": 517,
+                      "source_type": "形式",
+                      "description": "零散的方法论与改进建议",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15802,
+                      "element_count": 5,
+                      "elements": [
+                        {
+                          "name": "技巧",
+                          "count": 3,
+                          "post_ids": [
+                            "662ce86d0000000003023f0a",
+                            "67389194000000001d038599",
+                            "67d55ec7000000000e004e69"
+                          ]
+                        },
+                        {
+                          "name": "建议",
+                          "count": 2,
+                          "post_ids": [
+                            "67206035000000001b02f4b1",
+                            "676f8eac000000000902f53e"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 5,
+                      "children": [],
+                      "total_posts_count": 5
+                    },
+                    {
+                      "name": "系统攻略",
+                      "path": "/架构/策略/互动引导/实用指引/系统攻略",
+                      "id": 15815,
+                      "source_stable_id": 515,
+                      "source_type": "形式",
+                      "description": "系统性的经验总结与完整指导方案",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15802,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 51,
+                      "children": [
+                        {
+                          "name": "专项攻略",
+                          "path": "/架构/策略/互动引导/实用指引/系统攻略/专项攻略",
+                          "id": 15050,
+                          "source_stable_id": 521,
+                          "source_type": "形式",
+                          "description": "特定领域或主题的系统性攻略",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15815,
+                          "element_count": 9,
+                          "elements": [
+                            {
+                              "name": "装修设计",
+                              "count": 9,
+                              "post_ids": [
+                                "65eea166000000000d00c6d8",
+                                "6837f019000000000c03aab2",
+                                "6837f1270000000012006c8e",
+                                "6850c82a000000002100f096",
+                                "68538f7c000000002400805b",
+                                "6858eb52000000001203044b",
+                                "685f514f000000001703339d",
+                                "687ee6fc000000001c032bb1",
+                                "68843a4d000000001c037591"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 9,
+                          "children": [],
+                          "total_posts_count": 9
+                        },
+                        {
+                          "name": "通用攻略",
+                          "path": "/架构/策略/互动引导/实用指引/系统攻略/通用攻略",
+                          "id": 15048,
+                          "source_stable_id": 519,
+                          "source_type": "形式",
+                          "description": "不限定主题的泛化攻略与指南",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15815,
+                          "element_count": 38,
+                          "elements": [
+                            {
+                              "name": "攻略",
+                              "count": 8,
+                              "post_ids": [
+                                "68a8241a000000001c011403",
+                                "68f1af7c0000000005003459",
+                                "69003bb30000000004015797",
+                                "691d3112000000001e036559",
+                                "6923b4b2000000001e03531a",
+                                "692fa7e0000000001e039786",
+                                "693a2428000000001e027639",
+                                "e04fd15a06f8c97486e48990e85c8492"
+                              ]
+                            },
+                            {
+                              "name": "行动指南",
+                              "count": 20,
+                              "post_ids": [
+                                "661dbf91000000001a0119b6",
+                                "683f8111000000002102effd",
+                                "68e310c90000000003035444",
+                                "68e6ecb90000000003021e34",
+                                "68ec3f9d000000000700de97",
+                                "68f568a1000000000301053d",
+                                "68f95c43000000000300c650",
+                                "68fff44700000000030390d3",
+                                "6907ed79000000000703699c",
+                                "690a9329000000000700b783",
+                                "6911177d0000000007031417",
+                                "6913cafd000000000703402b",
+                                "691a54bd000000000700be32",
+                                "691f9a9f000000000d00ea0a",
+                                "692cc7ab000000001b030110",
+                                "693613b9000000001e00ebdd",
+                                "69375a940000000019024af5",
+                                "693f425a000000001e00ed26",
+                                "69434b1f000000001e013f9e",
+                                "6951c718000000001e0105b7"
+                              ]
+                            },
+                            {
+                              "name": "指南",
+                              "count": 2,
+                              "post_ids": [
+                                "6727171b000000001b01114b",
+                                "6776b27d0000000013018545"
+                              ]
+                            },
+                            {
+                              "name": "游玩指南",
+                              "count": 8,
+                              "post_ids": [
+                                "68a8241a000000001c011403",
+                                "68f1af7c0000000005003459",
+                                "69003bb30000000004015797",
+                                "6923b4b2000000001e03531a",
+                                "692fa7e0000000001e039786",
+                                "693a2428000000001e027639"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 38,
+                          "children": [],
+                          "total_posts_count": 29
+                        },
+                        {
+                          "name": "避坑指引",
+                          "path": "/架构/策略/互动引导/实用指引/系统攻略/避坑指引",
+                          "id": 15049,
+                          "source_stable_id": 520,
+                          "source_type": "形式",
+                          "description": "以规避风险为核心的指引内容",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15815,
+                          "element_count": 4,
+                          "elements": [
+                            {
+                              "name": "避坑指南",
+                              "count": 4,
+                              "post_ids": [
+                                "68a8241a000000001c011403",
+                                "68f1af7c0000000005003459",
+                                "6923b4b2000000001e03531a",
+                                "693a2428000000001e027639"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 4,
+                          "children": [],
+                          "total_posts_count": 4
+                        }
+                      ],
+                      "total_posts_count": 38
+                    }
+                  ],
+                  "total_posts_count": 48
+                }
+              ],
+              "total_posts_count": 56
+            },
+            {
+              "name": "商业融入",
+              "path": "/架构/策略/商业融入",
+              "id": 15801,
+              "source_stable_id": 332,
+              "source_type": "形式",
+              "description": "在内容中融入品牌、产品等商业要素的策略",
+              "category_nature": "维度",
+              "level": 3,
+              "parent_id": 15750,
+              "element_count": 0,
+              "elements": [],
+              "total_element_count": 135,
+              "children": [
+                {
+                  "name": "场景植入",
+                  "path": "/架构/策略/商业融入/场景植入",
+                  "id": 14990,
+                  "source_stable_id": 341,
+                  "source_type": "形式",
+                  "description": "将品牌产品或商业信息自然融入内容场景中",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 15801,
+                  "element_count": 135,
+                  "elements": [
+                    {
+                      "name": "产品植入",
+                      "count": 100,
+                      "post_ids": [
+                        "661b9936000000001b012aa5",
+                        "662096bc000000000d03035d",
+                        "6634a322000000001e01bcd5",
+                        "664599b9000000001e01d218",
+                        "664c38f0000000001303c21f",
+                        "66519efa000000001500a2bb",
+                        "665971bb000000001303d005",
+                        "6666b3a10000000015008834",
+                        "66ee55d200000000270066a8",
+                        "66f51b90000000002a036660",
+                        "6711d712000000001b012783",
+                        "671f7fab000000003c01fffc",
+                        "672ed3b6000000003c017f82",
+                        "67440b66000000000202827e",
+                        "6752d19b000000000202b816",
+                        "675fcd19000000000103d470",
+                        "675fec1f000000000800c6f4",
+                        "676535f4000000000b00dfd1",
+                        "6781e8640000000001001d18",
+                        "67aea9de000000001800d129",
+                        "67bc233e000000000b0160fa",
+                        "67c17568000000000603b420",
+                        "67ee4e29000000001200f3c2",
+                        "67fe11bb000000000d017b89",
+                        "6803185a000000000b01ef09",
+                        "68070ccb000000000f039a1b",
+                        "680898fa000000001c01c23e",
+                        "680e2433000000000e004e91",
+                        "68286f560000000012006015",
+                        "682ede8f000000002202bff2",
+                        "68302e2b000000000f038e8c",
+                        "68383eb1000000000303e7ef",
+                        "6843fb690000000012001659",
+                        "684a7e3c0000000023012b8d",
+                        "68528a360000000010010c6d",
+                        "685f974300000000120144db",
+                        "6867d9af000000001203f084",
+                        "686cd3a5000000000d0180b0",
+                        "686f606c00000000120167b5",
+                        "68737e97000000000d027b81",
+                        "68789450000000000b01d4a4",
+                        "6879f0f90000000013012f9a",
+                        "6879f4b1000000000b02c2e0",
+                        "6880a7a7000000000b02f5a6",
+                        "6881d560000000001703076c",
+                        "688366bd000000000d024147",
+                        "68875186000000002501649d",
+                        "6892d47c0000000025018c4f",
+                        "68946e0d000000002500ef6e",
+                        "68a43a11000000001c03cc96",
+                        "68abe632000000001c0348c0",
+                        "68b15f32000000001d00ef75",
+                        "68b69ea9000000001c035a4d",
+                        "68be928b000000001c0361ea",
+                        "68c14b36000000001d02b44e",
+                        "68c3933e000000001d00a902",
+                        "68c909c3000000001302ad69",
+                        "68d0089400000000120172a5",
+                        "68d1ebb8000000001203fd96",
+                        "68d610800000000012023282",
+                        "68e0f5750000000007015ff9",
+                        "68e8cac8000000000700da88",
+                        "68ec9d6400000000070389be",
+                        "68ef83150000000007035f42",
+                        "68f0b8140000000007008b05",
+                        "68f1b573000000000702052e",
+                        "68f78b950000000007021a20",
+                        "68fa029e0000000007022932",
+                        "68ff53770000000007000d54",
+                        "6900667d000000000300f640",
+                        "6915dfc400000000070224d9"
+                      ]
+                    },
+                    {
+                      "name": "品牌广告",
+                      "count": 1,
+                      "post_ids": [
+                        "6810596c000000002301d1a6"
+                      ]
+                    },
+                    {
+                      "name": "促销标语",
+                      "count": 1,
+                      "post_ids": [
+                        "6921937a000000001b0278d1"
+                      ]
+                    },
+                    {
+                      "name": "场景化植入",
+                      "count": 12,
+                      "post_ids": [
+                        "661b9936000000001b012aa5",
+                        "662096bc000000000d03035d",
+                        "6634a322000000001e01bcd5",
+                        "664599b9000000001e01d218",
+                        "66ee55d200000000270066a8",
+                        "6711d712000000001b012783",
+                        "67440b66000000000202827e",
+                        "676535f4000000000b00dfd1",
+                        "68286f560000000012006015",
+                        "68302e2b000000000f038e8c",
+                        "68c14b36000000001d02b44e",
+                        "68c909c3000000001302ad69"
+                      ]
+                    },
+                    {
+                      "name": "政要背书",
+                      "count": 3,
+                      "post_ids": [
+                        "6732cd8a000000001b02f948",
+                        "69297dde000000001f006b90",
+                        "6944e9b5000000001e02472d"
+                      ]
+                    },
+                    {
+                      "name": "定位",
+                      "count": 2,
+                      "post_ids": [
+                        "692006ef000000001f008b41",
+                        "69293c52000000001e02d9d6"
+                      ]
+                    },
+                    {
+                      "name": "背景",
+                      "count": 2,
+                      "post_ids": [
+                        "67316440000000001b02e75e",
+                        "690ed2240000000005002b41"
+                      ]
+                    },
+                    {
+                      "name": "切入",
+                      "count": 1,
+                      "post_ids": [
+                        "690ed1190000000003010bd3"
+                      ]
+                    },
+                    {
+                      "name": "出海用云的默认选项",
+                      "count": 1,
+                      "post_ids": [
+                        "67fd299a000000001c00cf5d"
+                      ]
+                    },
+                    {
+                      "name": "益智功能导向",
+                      "count": 1,
+                      "post_ids": [
+                        "69672e2d000000001a026263"
+                      ]
+                    },
+                    {
+                      "name": "植入",
+                      "count": 2,
+                      "post_ids": [
+                        "6911532d000000000503bd18",
+                        "691acd15000000000402134e"
+                      ]
+                    },
+                    {
+                      "name": "场景化",
+                      "count": 9,
+                      "post_ids": [
+                        "68737e97000000000d027b81",
+                        "6879f4b1000000000b02c2e0",
+                        "6880a7a7000000000b02f5a6",
+                        "688366bd000000000d024147",
+                        "68875186000000002501649d",
+                        "68abe632000000001c0348c0",
+                        "68b69ea9000000001c035a4d",
+                        "68ef83150000000007035f42",
+                        "6915dfc400000000070224d9"
+                      ]
+                    }
+                  ],
+                  "total_element_count": 135,
+                  "children": [],
+                  "total_posts_count": 85
+                }
+              ],
+              "total_posts_count": 85
+            },
+            {
+              "name": "情感调动",
+              "path": "/架构/策略/情感调动",
+              "id": 15963,
+              "source_stable_id": 163,
+              "source_type": "形式",
+              "description": "通过情感激发影响受众的策略",
+              "category_nature": "维度",
+              "level": 3,
+              "parent_id": 15750,
+              "element_count": 0,
+              "elements": [],
+              "total_element_count": 62,
+              "children": [
+                {
+                  "name": "情感激发",
+                  "path": "/架构/策略/情感调动/情感激发",
+                  "id": 15764,
+                  "source_stable_id": 175,
+                  "source_type": "形式",
+                  "description": "情感化表达、情感共鸣、怀旧等激发受众情感的策略",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 15963,
+                  "element_count": 0,
+                  "elements": [],
+                  "total_element_count": 62,
+                  "children": [
+                    {
+                      "name": "共鸣触发",
+                      "path": "/架构/策略/情感调动/情感激发/共鸣触发",
+                      "id": 14930,
+                      "source_stable_id": 208,
+                      "source_type": "形式",
+                      "description": "引发受众认同、情感共振与情绪波动的策略",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15764,
+                      "element_count": 28,
+                      "elements": [
+                        {
+                          "name": "同命相怜式",
+                          "count": 1,
+                          "post_ids": [
+                            "b90a1bbdf6dcddcaf4f4ee2f201e1d26"
+                          ]
+                        },
+                        {
+                          "name": "高共鸣",
+                          "count": 17,
+                          "post_ids": [
+                            "683f8111000000002102effd",
+                            "68e310c90000000003035444",
+                            "68e6ecb90000000003021e34",
+                            "68f95c43000000000300c650",
+                            "68fff44700000000030390d3",
+                            "690333e70000000007022604",
+                            "6907ed79000000000703699c",
+                            "690a9329000000000700b783",
+                            "691f9a9f000000000d00ea0a",
+                            "693f425a000000001e00ed26",
+                            "69434b1f000000001e013f9e",
+                            "6965adce000000001a02a701",
+                            "6966f1df000000001a032514",
+                            "69685275000000000e03c790",
+                            "69698d0c000000001a036078",
+                            "697171fd000000000d00bee8",
+                            "697569b0000000001a02448c"
+                          ]
+                        },
+                        {
+                          "name": "共鸣场景",
+                          "count": 3,
+                          "post_ids": [
+                            "6781e8640000000001001d18",
+                            "67aea9de000000001800d129",
+                            "680e2433000000000e004e91"
+                          ]
+                        },
+                        {
+                          "name": "共鸣式",
+                          "count": 4,
+                          "post_ids": [
+                            "59422696",
+                            "688366bd000000000d024147",
+                            "68875186000000002501649d",
+                            "68e8cac8000000000700da88"
+                          ]
+                        },
+                        {
+                          "name": "情感引导",
+                          "count": 1,
+                          "post_ids": [
+                            "59587187"
+                          ]
+                        },
+                        {
+                          "name": "情感共鸣式",
+                          "count": 2,
+                          "post_ids": [
+                            "62948012",
+                            "63676018"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 28,
+                      "children": [],
+                      "total_posts_count": 23
+                    },
+                    {
+                      "name": "升华感召",
+                      "path": "/架构/策略/情感调动/情感激发/升华感召",
+                      "id": 14931,
+                      "source_stable_id": 210,
+                      "source_type": "形式",
+                      "description": "将内容提升至更高精神维度或价值高度的情感处理",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15764,
+                      "element_count": 4,
+                      "elements": [
+                        {
+                          "name": "愿景",
+                          "count": 1,
+                          "post_ids": [
+                            "55d981958a8fd219d9c713fb16c12170"
+                          ]
+                        },
+                        {
+                          "name": "使命化",
+                          "count": 1,
+                          "post_ids": [
+                            "fc4773ccef61d3092666496328603e9d"
+                          ]
+                        },
+                        {
+                          "name": "祈福",
+                          "count": 2,
+                          "post_ids": [
+                            "690d977d0000000007036331"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 4,
+                      "children": [],
+                      "total_posts_count": 1
+                    },
+                    {
+                      "name": "怀缅追思",
+                      "path": "/架构/策略/情感调动/情感激发/怀缅追思",
+                      "id": 14932,
+                      "source_stable_id": 211,
+                      "source_type": "形式",
+                      "description": "引发怀念、追忆等指向过去的回忆性情感",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15764,
+                      "element_count": 1,
+                      "elements": [
+                        {
+                          "name": "怀旧",
+                          "count": 1,
+                          "post_ids": [
+                            "59587187"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 1,
+                      "children": [],
+                      "total_posts_count": 0
+                    },
+                    {
+                      "name": "情感渲染",
+                      "path": "/架构/策略/情感调动/情感激发/情感渲染",
+                      "id": 15768,
+                      "source_stable_id": 209,
+                      "source_type": "形式",
+                      "description": "通过情感化语言与氛围营造激发特定情绪的手法",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15764,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 24,
+                      "children": [
+                        {
+                          "name": "情感传递",
+                          "path": "/架构/策略/情感调动/情感激发/情感渲染/情感传递",
+                          "id": 15628,
+                          "source_stable_id": 1459,
+                          "source_type": "形式",
+                          "description": "将内在情感通过语言或行为外显化传递给受众的方式",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15768,
+                          "element_count": 12,
+                          "elements": [
+                            {
+                              "name": "情绪表达",
+                              "count": 10,
+                              "post_ids": [
+                                "6964573a000000000d00800e",
+                                "6964ab0e000000001a035c04",
+                                "696ad820000000001a022994",
+                                "696c2b7b000000001a02b944",
+                                "696d7ac4000000000e03e459",
+                                "696ede36000000001a028e03",
+                                "6970373f000000000e00f81d",
+                                "697171fd000000000d00bee8",
+                                "697318f2000000001a01fd50",
+                                "697569b0000000001a02448c"
+                              ]
+                            },
+                            {
+                              "name": "真情流露",
+                              "count": 2,
+                              "post_ids": [
+                                "65febd8e0000000012035538",
+                                "682086dc0000000012003cbd"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 12,
+                          "children": [],
+                          "total_posts_count": 12
+                        },
+                        {
+                          "name": "情感功能",
+                          "path": "/架构/策略/情感调动/情感激发/情感渲染/情感功能",
+                          "id": 15629,
+                          "source_stable_id": 1460,
+                          "source_type": "形式",
+                          "description": "情感表达所产生的特定功能效果,如解压、关怀等",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15768,
+                          "element_count": 4,
+                          "elements": [
+                            {
+                              "name": "生活解压",
+                              "count": 4,
+                              "post_ids": [
+                                "6965adce000000001a02a701",
+                                "69698d0c000000001a036078",
+                                "696ad820000000001a022994",
+                                "697171fd000000000d00bee8"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 4,
+                          "children": [],
+                          "total_posts_count": 4
+                        },
+                        {
+                          "name": "情感强度控制",
+                          "path": "/架构/策略/情感调动/情感激发/情感渲染/情感强度控制",
+                          "id": 15937,
+                          "source_stable_id": 1456,
+                          "source_type": "形式",
+                          "description": "通过调节情感表达的强弱程度来影响受众感受的手法",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15768,
+                          "element_count": 0,
+                          "elements": [],
+                          "total_element_count": 8,
+                          "children": [
+                            {
+                              "name": "情绪化风格",
+                              "path": "/架构/策略/情感调动/情感激发/情感渲染/情感强度控制/情绪化风格",
+                              "id": 15630,
+                              "source_stable_id": 1462,
+                              "source_type": "形式",
+                              "description": "带有强烈主观色彩和情感倾向的表达风格",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15937,
+                              "element_count": 5,
+                              "elements": [
+                                {
+                                  "name": "情绪化",
+                                  "count": 3,
+                                  "post_ids": [
+                                    "64139717",
+                                    "64554023",
+                                    "64729260"
+                                  ]
+                                },
+                                {
+                                  "name": "情绪化演绎",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "64504122"
+                                  ]
+                                },
+                                {
+                                  "name": "情绪递进",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "56977419"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 5,
+                              "children": [],
+                              "total_posts_count": 0
+                            },
+                            {
+                              "name": "温和情感",
+                              "path": "/架构/策略/情感调动/情感激发/情感渲染/情感强度控制/温和情感",
+                              "id": 15631,
+                              "source_stable_id": 1463,
+                              "source_type": "形式",
+                              "description": "富有情感色彩但不过度激烈的柔和表达方式",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15937,
+                              "element_count": 3,
+                              "elements": [
+                                {
+                                  "name": "情感化",
+                                  "count": 3,
+                                  "post_ids": [
+                                    "03e3d299faba104965b33d87b5063eff",
+                                    "21006075",
+                                    "65801945"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 3,
+                              "children": [],
+                              "total_posts_count": 0
+                            }
+                          ],
+                          "total_posts_count": 0
+                        }
+                      ],
+                      "total_posts_count": 14
+                    },
+                    {
+                      "name": "情绪基调",
+                      "path": "/架构/策略/情感调动/情感激发/情绪基调",
+                      "id": 15769,
+                      "source_stable_id": 212,
+                      "source_type": "形式",
+                      "description": "赋予内容特定情绪色彩与感受倾向的基调设定",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15764,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 5,
+                      "children": [
+                        {
+                          "name": "基调设定",
+                          "path": "/架构/策略/情感调动/情感激发/情绪基调/基调设定",
+                          "id": 15632,
+                          "source_stable_id": 1464,
+                          "source_type": "形式",
+                          "description": "对内容整体情感倾向和氛围的定义与确立",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15769,
+                          "element_count": 2,
+                          "elements": [
+                            {
+                              "name": "定调",
+                              "count": 1,
+                              "post_ids": [
+                                "4020e56c08340e92c9862e481c07d2e2"
+                              ]
+                            },
+                            {
+                              "name": "正能量",
+                              "count": 1,
+                              "post_ids": [
+                                "61822382"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 2,
+                          "children": [],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "悲沉色彩",
+                          "path": "/架构/策略/情感调动/情感激发/情绪基调/悲沉色彩",
+                          "id": 15633,
+                          "source_stable_id": 1466,
+                          "source_type": "形式",
+                          "description": "悲伤、沉重、压抑等低沉消极的情绪基调",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15769,
+                          "element_count": 3,
+                          "elements": [
+                            {
+                              "name": "悲剧性",
+                              "count": 1,
+                              "post_ids": [
+                                "2e93c00132e3a6a30c06efb6984ab71a"
+                              ]
+                            },
+                            {
+                              "name": "无奈",
+                              "count": 2,
+                              "post_ids": [
+                                "67b9840d000000000603a241",
+                                "68909e20000000000403fa4e"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 3,
+                          "children": [],
+                          "total_posts_count": 2
+                        }
+                      ],
+                      "total_posts_count": 2
+                    }
+                  ],
+                  "total_posts_count": 36
+                }
+              ],
+              "total_posts_count": 36
+            },
+            {
+              "name": "认知引导",
+              "path": "/架构/策略/认知引导",
+              "id": 14915,
+              "source_stable_id": 164,
+              "source_type": "形式",
+              "description": "通过信息框架和话语设计影响受众认知",
+              "category_nature": "维度",
+              "level": 3,
+              "parent_id": 15750,
+              "element_count": 2,
+              "elements": [
+                {
+                  "name": "实用性",
+                  "count": 2,
+                  "post_ids": [
+                    "6911532d000000000503bd18",
+                    "691acd15000000000402134e"
+                  ]
+                }
+              ],
+              "total_element_count": 92,
+              "children": [
+                {
+                  "name": "话语影响",
+                  "path": "/架构/策略/认知引导/话语影响",
+                  "id": 14920,
+                  "source_stable_id": 176,
+                  "source_type": "形式",
+                  "description": "话术、警示、悬疑标题等通过语言框架影响受众认知",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 14915,
+                  "element_count": 1,
+                  "elements": [
+                    {
+                      "name": "评论式引导",
+                      "count": 1,
+                      "post_ids": [
+                        "64958390"
+                      ]
+                    }
+                  ],
+                  "total_element_count": 90,
+                  "children": [
+                    {
+                      "name": "权威借用",
+                      "path": "/架构/策略/认知引导/话语影响/权威借用",
+                      "id": 14997,
+                      "source_stable_id": 373,
+                      "source_type": "形式",
+                      "description": "通过借助权威人物或机构的影响力增强内容可信度与说服力",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 14920,
+                      "element_count": 30,
+                      "elements": [
+                        {
+                          "name": "背书",
+                          "count": 8,
+                          "post_ids": [
+                            "661dbf91000000001a0119b6",
+                            "68e310c90000000003035444",
+                            "68fff44700000000030390d3",
+                            "6907ed79000000000703699c",
+                            "690a9329000000000700b783",
+                            "6913cafd000000000703402b",
+                            "693613b9000000001e00ebdd",
+                            "df635f43f39a1fa41c13da96320c45c3"
+                          ]
+                        },
+                        {
+                          "name": "向佐同款",
+                          "count": 1,
+                          "post_ids": [
+                            "6781eb19000000000b039867"
+                          ]
+                        },
+                        {
+                          "name": "权威背书",
+                          "count": 18,
+                          "post_ids": [
+                            "6731b884000000001901b8d3",
+                            "6732cd8a000000001b02f948",
+                            "6732f52f000000001b013fdb",
+                            "673d9a58000000000702450b",
+                            "67fd299a000000001c00cf5d",
+                            "689b158f000000001b03e512",
+                            "68b10b46000000001c00ca6c",
+                            "68ecc19400000000050028c1",
+                            "68f9fb67000000000400736f",
+                            "68fa08f60000000005030ddc",
+                            "6902e20a0000000005030a7b",
+                            "69297dde000000001f006b90",
+                            "69297e47000000001e028ec3",
+                            "69363584000000001f006a4c",
+                            "69394a0b000000001f006ce6",
+                            "69437b6d000000001e0381c9",
+                            "6944e9b5000000001e02472d",
+                            "69491c99000000001e02c765"
+                          ]
+                        },
+                        {
+                          "name": "专业背景",
+                          "count": 1,
+                          "post_ids": [
+                            "690075390000000004013a53"
+                          ]
+                        },
+                        {
+                          "name": "专业研报",
+                          "count": 1,
+                          "post_ids": [
+                            "67e224cc000000000602a6c5"
+                          ]
+                        },
+                        {
+                          "name": "名人背书",
+                          "count": 1,
+                          "post_ids": [
+                            "673c37610000000007029ced"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 30,
+                      "children": [],
+                      "total_posts_count": 29
+                    },
+                    {
+                      "name": "标题操控",
+                      "path": "/架构/策略/认知引导/话语影响/标题操控",
+                      "id": 14998,
+                      "source_stable_id": 374,
+                      "source_type": "形式",
+                      "description": "通过标题的悬念、冲击力或设问等设计手法吸引注意力和引导点击",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 14920,
+                      "element_count": 1,
+                      "elements": [
+                        {
+                          "name": "标题引导",
+                          "count": 1,
+                          "post_ids": [
+                            "970bc999f557cf8026c950f254d3ddac"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 6,
+                      "children": [
+                        {
+                          "name": "反差构建",
+                          "path": "/架构/策略/认知引导/话语影响/标题操控/反差构建",
+                          "id": 15662,
+                          "source_stable_id": 1505,
+                          "source_type": "形式",
+                          "description": "利用认知冲突、情感对比或反讽手法设计的标题",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 14998,
+                          "element_count": 1,
+                          "elements": [
+                            {
+                              "name": "反差式标题",
+                              "count": 1,
+                              "post_ids": [
+                                "56603938"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 1,
+                          "children": [],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "引用呈现",
+                          "path": "/架构/策略/认知引导/话语影响/标题操控/引用呈现",
+                          "id": 15663,
+                          "source_stable_id": 1506,
+                          "source_type": "形式",
+                          "description": "直接引用或截取文中人物原话作为标题的呈现方式",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 14998,
+                          "element_count": 2,
+                          "elements": [
+                            {
+                              "name": "引用式标题",
+                              "count": 1,
+                              "post_ids": [
+                                "da753fb9dc1fc7f09ef8e5e7c014ada3"
+                              ]
+                            },
+                            {
+                              "name": "引述标题",
+                              "count": 1,
+                              "post_ids": [
+                                "1068bda1f94431bfb3b91b60073f1e46"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 2,
+                          "children": [],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "情绪冲击",
+                          "path": "/架构/策略/认知引导/话语影响/标题操控/情绪冲击",
+                          "id": 15940,
+                          "source_stable_id": 1504,
+                          "source_type": "形式",
+                          "description": "通过强情感词汇、符号和极端表达制造冲击力的标题设计手法",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 14998,
+                          "element_count": 0,
+                          "elements": [],
+                          "total_element_count": 2,
+                          "children": [
+                            {
+                              "name": "极端冲击",
+                              "path": "/架构/策略/认知引导/话语影响/标题操控/情绪冲击/极端冲击",
+                              "id": 15665,
+                              "source_stable_id": 1510,
+                              "source_type": "形式",
+                              "description": "使用极端、攻击性或惊悚词汇制造强烈冲击力的标题形式",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15940,
+                              "element_count": 1,
+                              "elements": [
+                                {
+                                  "name": "抨击式标题",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "c8fa9b4d1526d3345bcb15c7d196b79d"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 1,
+                              "children": [],
+                              "total_posts_count": 0
+                            },
+                            {
+                              "name": "警示提醒",
+                              "path": "/架构/策略/认知引导/话语影响/标题操控/情绪冲击/警示提醒",
+                              "id": 15664,
+                              "source_stable_id": 1508,
+                              "source_type": "形式",
+                              "description": "使用提醒、注意等警示性词汇构成的标题形式",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15940,
+                              "element_count": 1,
+                              "elements": [
+                                {
+                                  "name": "警示性标题",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "63477609"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 1,
+                              "children": [],
+                              "total_posts_count": 0
+                            }
+                          ],
+                          "total_posts_count": 0
+                        }
+                      ],
+                      "total_posts_count": 0
+                    },
+                    {
+                      "name": "立场引导",
+                      "path": "/架构/策略/认知引导/话语影响/立场引导",
+                      "id": 15000,
+                      "source_stable_id": 376,
+                      "source_type": "形式",
+                      "description": "通过价值观输出、警示告诫或立场暗示等方式引导受众认知方向",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 14920,
+                      "element_count": 7,
+                      "elements": [
+                        {
+                          "name": "警示",
+                          "count": 1,
+                          "post_ids": [
+                            "bc2f946d57e1c650575962e480eccf31"
+                          ]
+                        },
+                        {
+                          "name": "政治叙事",
+                          "count": 1,
+                          "post_ids": [
+                            "601c09554a9851f9038026035b95fce9"
+                          ]
+                        },
+                        {
+                          "name": "政治化",
+                          "count": 1,
+                          "post_ids": [
+                            "22bcaccb2262e8864af03c8323490832"
+                          ]
+                        },
+                        {
+                          "name": "警示性",
+                          "count": 2,
+                          "post_ids": [
+                            "692cc7ab000000001b030110",
+                            "693d0b1d000000001e02ba36"
+                          ]
+                        },
+                        {
+                          "name": "道德化",
+                          "count": 1,
+                          "post_ids": [
+                            "65801945"
+                          ]
+                        },
+                        {
+                          "name": "论调",
+                          "count": 1,
+                          "post_ids": [
+                            "56977187"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 7,
+                      "children": [],
+                      "total_posts_count": 2
+                    },
+                    {
+                      "name": "话术策略",
+                      "path": "/架构/策略/认知引导/话语影响/话术策略",
+                      "id": 14999,
+                      "source_stable_id": 375,
+                      "source_type": "形式",
+                      "description": "为达到特定传播目的而设计的语言表达技巧与表述方式",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 14920,
+                      "element_count": 1,
+                      "elements": [
+                        {
+                          "name": "破除",
+                          "count": 1,
+                          "post_ids": [
+                            "601c09554a9851f9038026035b95fce9"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 46,
+                      "children": [
+                        {
+                          "name": "利益诉求",
+                          "path": "/架构/策略/认知引导/话语影响/话术策略/利益诉求",
+                          "id": 15842,
+                          "source_stable_id": 871,
+                          "source_type": "形式",
+                          "description": "通过强调受众切身利益来吸引注意和引导行为的表达策略",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 14999,
+                          "element_count": 0,
+                          "elements": [],
+                          "total_element_count": 2,
+                          "children": [
+                            {
+                              "name": "成本优势",
+                              "path": "/架构/策略/认知引导/话语影响/话术策略/利益诉求/成本优势",
+                              "id": 15284,
+                              "source_stable_id": 876,
+                              "source_type": "形式",
+                              "description": "强调经济成本低廉的表达策略",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15842,
+                              "element_count": 2,
+                              "elements": [
+                                {
+                                  "name": "低价体验",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "67bafc850000000029036328"
+                                  ]
+                                },
+                                {
+                                  "name": "低成本",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "691d3112000000001e036559"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 2,
+                              "children": [],
+                              "total_posts_count": 2
+                            }
+                          ],
+                          "total_posts_count": 2
+                        },
+                        {
+                          "name": "引导话术",
+                          "path": "/架构/策略/认知引导/话语影响/话术策略/引导话术",
+                          "id": 15022,
+                          "source_stable_id": 475,
+                          "source_type": "形式",
+                          "description": "为诱导用户完成特定动作而设计的语言表达",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 14999,
+                          "element_count": 4,
+                          "elements": [
+                            {
+                              "name": "结论引导",
+                              "count": 1,
+                              "post_ids": [
+                                "0374cca4a422e5aad9b24d721c7b4291"
+                              ]
+                            },
+                            {
+                              "name": "卖点说明",
+                              "count": 1,
+                              "post_ids": [
+                                "6881d560000000001703076c"
+                              ]
+                            },
+                            {
+                              "name": "极轻量化",
+                              "count": 1,
+                              "post_ids": [
+                                "690075390000000004013a53"
+                              ]
+                            },
+                            {
+                              "name": "痛点直击式",
+                              "count": 1,
+                              "post_ids": [
+                                "68ecc19400000000050028c1"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 4,
+                          "children": [],
+                          "total_posts_count": 3
+                        },
+                        {
+                          "name": "心理操控",
+                          "path": "/架构/策略/认知引导/话语影响/话术策略/心理操控",
+                          "id": 15025,
+                          "source_stable_id": 478,
+                          "source_type": "形式",
+                          "description": "利用心理机制影响受众认知的话术手法",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 14999,
+                          "element_count": 9,
+                          "elements": [
+                            {
+                              "name": "避重就轻",
+                              "count": 1,
+                              "post_ids": [
+                                "61db1ae4bd885760b0f5cca9ecacb588"
+                              ]
+                            },
+                            {
+                              "name": "保护性点名",
+                              "count": 1,
+                              "post_ids": [
+                                "8d43fa69c8f4f5e7d87ec45244cbd97c"
+                              ]
+                            },
+                            {
+                              "name": "法律恐吓",
+                              "count": 1,
+                              "post_ids": [
+                                "df635f43f39a1fa41c13da96320c45c3"
+                              ]
+                            },
+                            {
+                              "name": "反思话术",
+                              "count": 1,
+                              "post_ids": [
+                                "692cc7ab000000001b030110"
+                              ]
+                            },
+                            {
+                              "name": "反向心理",
+                              "count": 1,
+                              "post_ids": [
+                                "683d8695000000001200012a"
+                              ]
+                            },
+                            {
+                              "name": "误导性",
+                              "count": 3,
+                              "post_ids": [
+                                "648d8edf0000000011013447",
+                                "670baf34000000001600f52a",
+                                "6781e8640000000001001d18"
+                              ]
+                            },
+                            {
+                              "name": "单一化",
+                              "count": 1,
+                              "post_ids": [
+                                "55102015"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 9,
+                          "children": [],
+                          "total_posts_count": 5
+                        },
+                        {
+                          "name": "策略规划",
+                          "path": "/架构/策略/认知引导/话语影响/话术策略/策略规划",
+                          "id": 15283,
+                          "source_stable_id": 872,
+                          "source_type": "形式",
+                          "description": "内容创作前的受众分析、议题选择和方向设定等策略性决策",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 14999,
+                          "element_count": 11,
+                          "elements": [
+                            {
+                              "name": "手段",
+                              "count": 2,
+                              "post_ids": [
+                                "bc2f946d57e1c650575962e480eccf31",
+                                "df635f43f39a1fa41c13da96320c45c3"
+                              ]
+                            },
+                            {
+                              "name": "策略",
+                              "count": 3,
+                              "post_ids": [
+                                "8d43fa69c8f4f5e7d87ec45244cbd97c",
+                                "b76365fa6008e98aea8b6876bcc4e3d0",
+                                "fa0633c278660309648633dea6294cb1"
+                              ]
+                            },
+                            {
+                              "name": "多渠道",
+                              "count": 1,
+                              "post_ids": [
+                                "cb673ebabb42a9499b3532943f8bb974"
+                              ]
+                            },
+                            {
+                              "name": "高频",
+                              "count": 2,
+                              "post_ids": [
+                                "64662179",
+                                "64820485"
+                              ]
+                            },
+                            {
+                              "name": "话题",
+                              "count": 1,
+                              "post_ids": [
+                                "64554023"
+                              ]
+                            },
+                            {
+                              "name": "议题选择",
+                              "count": 1,
+                              "post_ids": [
+                                "63676018"
+                              ]
+                            },
+                            {
+                              "name": "预设",
+                              "count": 1,
+                              "post_ids": [
+                                "55102015"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 11,
+                          "children": [],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "表达风格",
+                          "path": "/架构/策略/认知引导/话语影响/话术策略/表达风格",
+                          "id": 15023,
+                          "source_stable_id": 476,
+                          "source_type": "形式",
+                          "description": "特定的语言风格和表述方式",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 14999,
+                          "element_count": 14,
+                          "elements": [
+                            {
+                              "name": "语态",
+                              "count": 1,
+                              "post_ids": [
+                                "49d6570f82c62ca372c932b67467878f"
+                              ]
+                            },
+                            {
+                              "name": "引领式",
+                              "count": 1,
+                              "post_ids": [
+                                "55d981958a8fd219d9c713fb16c12170"
+                              ]
+                            },
+                            {
+                              "name": "预判式",
+                              "count": 1,
+                              "post_ids": [
+                                "0374cca4a422e5aad9b24d721c7b4291"
+                              ]
+                            },
+                            {
+                              "name": "口语化",
+                              "count": 11,
+                              "post_ids": [
+                                "648d8edf0000000011013447",
+                                "6602bd07000000001203348c",
+                                "66d1ab42000000001f015507",
+                                "67389194000000001d038599",
+                                "67fe11bb000000000d017b89",
+                                "6804ddfa000000000b01c901",
+                                "68909e20000000000403fa4e",
+                                "6912d90f00000000050113b3",
+                                "69185d49000000000d00f94e",
+                                "6965adce000000001a02a701",
+                                "6966f1df000000001a032514"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 14,
+                          "children": [],
+                          "total_posts_count": 11
+                        },
+                        {
+                          "name": "规避审核",
+                          "path": "/架构/策略/认知引导/话语影响/话术策略/规避审核",
+                          "id": 15024,
+                          "source_stable_id": 477,
+                          "source_type": "形式",
+                          "description": "针对平台审核机制的文字处理技巧",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 14999,
+                          "element_count": 5,
+                          "elements": [
+                            {
+                              "name": "拼音化",
+                              "count": 2,
+                              "post_ids": [
+                                "67206035000000001b02f4b1",
+                                "673f1462000000000703b270"
+                              ]
+                            },
+                            {
+                              "name": "敏感词处理",
+                              "count": 2,
+                              "post_ids": [
+                                "67206035000000001b02f4b1",
+                                "673f1462000000000703b270"
+                              ]
+                            },
+                            {
+                              "name": "医疗化术语",
+                              "count": 1,
+                              "post_ids": [
+                                "64631158"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 5,
+                          "children": [],
+                          "total_posts_count": 2
+                        }
+                      ],
+                      "total_posts_count": 22
+                    }
+                  ],
+                  "total_posts_count": 50
+                }
+              ],
+              "total_posts_count": 52
+            }
+          ],
+          "total_posts_count": 178
+        },
+        {
+          "name": "逻辑",
+          "path": "/架构/逻辑",
+          "id": 15959,
+          "source_stable_id": 140,
+          "source_type": "形式",
+          "description": "论证结构、信息编排、因果链条等逻辑层面的组织策略",
+          "category_nature": "内容",
+          "level": 2,
+          "parent_id": 15957,
+          "element_count": 0,
+          "elements": [],
+          "total_element_count": 388,
+          "children": [
+            {
+              "name": "信息编排",
+              "path": "/架构/逻辑/信息编排",
+              "id": 15755,
+              "source_stable_id": 158,
+              "source_type": "形式",
+              "description": "信息的组织、排列与论证结构",
+              "category_nature": "维度",
+              "level": 3,
+              "parent_id": 15959,
+              "element_count": 0,
+              "elements": [],
+              "total_element_count": 388,
+              "children": [
+                {
+                  "name": "归纳论证",
+                  "path": "/架构/逻辑/信息编排/归纳论证",
+                  "id": 15759,
+                  "source_stable_id": 168,
+                  "source_type": "形式",
+                  "description": "总结提炼、数据支撑、事实论据等信息归纳与论证",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 15755,
+                  "element_count": 0,
+                  "elements": [],
+                  "total_element_count": 242,
+                  "children": [
+                    {
+                      "name": "事实支撑",
+                      "path": "/架构/逻辑/信息编排/归纳论证/事实支撑",
+                      "id": 15766,
+                      "source_stable_id": 200,
+                      "source_type": "形式",
+                      "description": "通过事实、素材、论据等客观材料来证明观点",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15759,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 46,
+                      "children": [
+                        {
+                          "name": "材料论据",
+                          "path": "/架构/逻辑/信息编排/归纳论证/事实支撑/材料论据",
+                          "id": 15080,
+                          "source_stable_id": 559,
+                          "source_type": "形式",
+                          "description": "通过素材、论据、佐证等抽象材料和论证手法来支撑观点",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15766,
+                          "element_count": 27,
+                          "elements": [
+                            {
+                              "name": "支撑",
+                              "count": 2,
+                              "post_ids": [
+                                "62255386",
+                                "ff037b4ada852d5835240ffded2f7256"
+                              ]
+                            },
+                            {
+                              "name": "论据",
+                              "count": 4,
+                              "post_ids": [
+                                "2a2c642e67822ed8c11f9d306e815a35",
+                                "49d6570f82c62ca372c932b67467878f",
+                                "62da797f45d5b2a8ebd9149c3b52c719",
+                                "9b95ed26ea9f265079b09e2d1032bc7c"
+                              ]
+                            },
+                            {
+                              "name": "证据链条",
+                              "count": 1,
+                              "post_ids": [
+                                "55d981958a8fd219d9c713fb16c12170"
+                              ]
+                            },
+                            {
+                              "name": "证言",
+                              "count": 1,
+                              "post_ids": [
+                                "04bcda9fc132c52a8eee5d7ba994119d"
+                              ]
+                            },
+                            {
+                              "name": "具体",
+                              "count": 1,
+                              "post_ids": [
+                                "61db1ae4bd885760b0f5cca9ecacb588"
+                              ]
+                            },
+                            {
+                              "name": "佐证",
+                              "count": 11,
+                              "post_ids": [
+                                "67316440000000001b02e75e",
+                                "6732cd8a000000001b02f948",
+                                "6732f52f000000001b013fdb",
+                                "67e27e6e000000000b017c96",
+                                "68ef800d0000000005011094",
+                                "69005a1e0000000004017637",
+                                "6902e20a0000000005030a7b",
+                                "690ed2240000000005002b41",
+                                "69157ac40000000005039157",
+                                "69328436000000001f006a54",
+                                "dae634c9aa8c31d38e925750d3fbfeb6"
+                              ]
+                            },
+                            {
+                              "name": "素材",
+                              "count": 7,
+                              "post_ids": [
+                                "63762367",
+                                "64210278",
+                                "64591962",
+                                "64870193",
+                                "67244ea7000000001b012d18",
+                                "67284f9c000000001901875a",
+                                "b485a7858fbfc4b74e805bfadf6fce90"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 27,
+                          "children": [],
+                          "total_posts_count": 12
+                        },
+                        {
+                          "name": "案例实证",
+                          "path": "/架构/逻辑/信息编排/归纳论证/事实支撑/案例实证",
+                          "id": 15079,
+                          "source_stable_id": 558,
+                          "source_type": "形式",
+                          "description": "通过具体案例、实例、典型样本等真实事例来证明观点",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15766,
+                          "element_count": 15,
+                          "elements": [
+                            {
+                              "name": "案例",
+                              "count": 1,
+                              "post_ids": [
+                                "333bd89e657acbcd9b26201f93cd8993"
+                              ]
+                            },
+                            {
+                              "name": "装修案例",
+                              "count": 6,
+                              "post_ids": [
+                                "681c64ce000000002200554c",
+                                "682bdb47000000002202dfa0",
+                                "682bdbba000000002202b26e",
+                                "6865ec61000000000b02c53b",
+                                "687ee6fc000000001c032bb1",
+                                "68843a4d000000001c037591"
+                              ]
+                            },
+                            {
+                              "name": "多案例",
+                              "count": 1,
+                              "post_ids": [
+                                "676535f4000000000b00dfd1"
+                              ]
+                            },
+                            {
+                              "name": "实证案例",
+                              "count": 2,
+                              "post_ids": [
+                                "68f1e631000000000503111b",
+                                "6944e9b5000000001e02472d"
+                              ]
+                            },
+                            {
+                              "name": "案例/样本",
+                              "count": 4,
+                              "post_ids": [
+                                "6902e20a0000000005030a7b",
+                                "690ed1190000000003010bd3",
+                                "692006ef000000001f008b41",
+                                "69363584000000001f006a4c"
+                              ]
+                            },
+                            {
+                              "name": "典型",
+                              "count": 1,
+                              "post_ids": [
+                                "59587187"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 15,
+                          "children": [],
+                          "total_posts_count": 13
+                        },
+                        {
+                          "name": "视觉证据",
+                          "path": "/架构/逻辑/信息编排/归纳论证/事实支撑/视觉证据",
+                          "id": 15081,
+                          "source_stable_id": 560,
+                          "source_type": "形式",
+                          "description": "通过图片、成果展示等视觉材料作为证明依据",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15766,
+                          "element_count": 4,
+                          "elements": [
+                            {
+                              "name": "艺术佐证",
+                              "count": 1,
+                              "post_ids": [
+                                "89627e4bf8ad865f175c54e3b0ddd2cd"
+                              ]
+                            },
+                            {
+                              "name": "视觉证据",
+                              "count": 3,
+                              "post_ids": [
+                                "648d8edf0000000011013447",
+                                "670baf34000000001600f52a",
+                                "6781e8640000000001001d18"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 4,
+                          "children": [],
+                          "total_posts_count": 3
+                        }
+                      ],
+                      "total_posts_count": 27
+                    },
+                    {
+                      "name": "分析解读",
+                      "path": "/架构/逻辑/信息编排/归纳论证/分析解读",
+                      "id": 14929,
+                      "source_stable_id": 202,
+                      "source_type": "形式",
+                      "description": "对事物进行拆解分析、评价与多维解读",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15759,
+                      "element_count": 3,
+                      "elements": [
+                        {
+                          "name": "观察",
+                          "count": 2,
+                          "post_ids": [
+                            "55994947",
+                            "62255386"
+                          ]
+                        },
+                        {
+                          "name": "维度",
+                          "count": 1,
+                          "post_ids": [
+                            "55327642"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 120,
+                      "children": [
+                        {
+                          "name": "因果推理",
+                          "path": "/架构/逻辑/信息编排/归纳论证/分析解读/因果推理",
+                          "id": 15033,
+                          "source_stable_id": 500,
+                          "source_type": "形式",
+                          "description": "对事物的成因、演化逻辑进行推导分析的手法",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 14929,
+                          "element_count": 16,
+                          "elements": [
+                            {
+                              "name": "因果推导式",
+                              "count": 1,
+                              "post_ids": [
+                                "0374cca4a422e5aad9b24d721c7b4291"
+                              ]
+                            },
+                            {
+                              "name": "因果倒置",
+                              "count": 2,
+                              "post_ids": [
+                                "d07f1c79dd4ef03b92592fa81d54755b",
+                                "df635f43f39a1fa41c13da96320c45c3"
+                              ]
+                            },
+                            {
+                              "name": "逻辑",
+                              "count": 5,
+                              "post_ids": [
+                                "64591962",
+                                "68f1e631000000000503111b",
+                                "690075390000000004013a53",
+                                "69394a0b000000001f006ce6",
+                                "afb320f2428ca07a2743d96dc21e4127"
+                              ]
+                            },
+                            {
+                              "name": "成因剖析",
+                              "count": 6,
+                              "post_ids": [
+                                "683f8111000000002102effd",
+                                "68f568a1000000000301053d",
+                                "68f95c43000000000300c650",
+                                "6911177d0000000007031417",
+                                "692cc7ab000000001b030110",
+                                "6951c718000000001e0105b7"
+                              ]
+                            },
+                            {
+                              "name": "归因",
+                              "count": 1,
+                              "post_ids": [
+                                "62948012"
+                              ]
+                            },
+                            {
+                              "name": "分析",
+                              "count": 1,
+                              "post_ids": [
+                                "57853678"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 16,
+                          "children": [],
+                          "total_posts_count": 9
+                        },
+                        {
+                          "name": "复盘总结",
+                          "path": "/架构/逻辑/信息编排/归纳论证/分析解读/复盘总结",
+                          "id": 15034,
+                          "source_stable_id": 501,
+                          "source_type": "形式",
+                          "description": "对过去事件进行回顾、总结和归纳的手法",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 14929,
+                          "element_count": 7,
+                          "elements": [
+                            {
+                              "name": "传播梳理",
+                              "count": 1,
+                              "post_ids": [
+                                "cb673ebabb42a9499b3532943f8bb974"
+                              ]
+                            },
+                            {
+                              "name": "复盘",
+                              "count": 6,
+                              "post_ids": [
+                                "68f1e631000000000503111b",
+                                "68fa08f60000000005030ddc",
+                                "68faf90d0000000005011fa2",
+                                "69157ac40000000005039157",
+                                "692006ef000000001f008b41",
+                                "69363584000000001f006a4c"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 7,
+                          "children": [],
+                          "total_posts_count": 6
+                        },
+                        {
+                          "name": "对比分析",
+                          "path": "/架构/逻辑/信息编排/归纳论证/分析解读/对比分析",
+                          "id": 15029,
+                          "source_stable_id": 496,
+                          "source_type": "形式",
+                          "description": "从多个维度或角度进行并列比较的分析手法",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 14929,
+                          "element_count": 50,
+                          "elements": [
+                            {
+                              "name": "概念对比",
+                              "count": 1,
+                              "post_ids": [
+                                "9c87381270abacce95e103b3a000e086"
+                              ]
+                            },
+                            {
+                              "name": "对比",
+                              "count": 28,
+                              "post_ids": [
+                                "03e3d299faba104965b33d87b5063eff",
+                                "04bcda9fc132c52a8eee5d7ba994119d",
+                                "3b8bfac263ace2eb578c85c98630e566",
+                                "4020e56c08340e92c9862e481c07d2e2",
+                                "55099131",
+                                "55102015",
+                                "55327642",
+                                "57373464",
+                                "57919607",
+                                "59422696",
+                                "62025412",
+                                "63676018",
+                                "63712737",
+                                "64095002",
+                                "64139717",
+                                "64610880",
+                                "64650216",
+                                "65135248",
+                                "68ef800d0000000005011094",
+                                "69293c52000000001e02d9d6",
+                                "69328436000000001f006a54",
+                                "752267d0ca2695c2ceb816a43d943a6a",
+                                "b5245c3e7b1c09af072ea40e41d3cca8",
+                                "b6482cda993c100f39d6eccf65261a24",
+                                "c8fa9b4d1526d3345bcb15c7d196b79d",
+                                "dae634c9aa8c31d38e925750d3fbfeb6"
+                              ]
+                            },
+                            {
+                              "name": "对比讨论",
+                              "count": 1,
+                              "post_ids": [
+                                "61db1ae4bd885760b0f5cca9ecacb588"
+                              ]
+                            },
+                            {
+                              "name": "多维",
+                              "count": 11,
+                              "post_ids": [
+                                "03e3d299faba104965b33d87b5063eff",
+                                "4020e56c08340e92c9862e481c07d2e2",
+                                "67e224cc000000000602a6c5",
+                                "683f8111000000002102effd",
+                                "68f568a1000000000301053d",
+                                "68f95c43000000000300c650",
+                                "6911177d0000000007031417",
+                                "692cc7ab000000001b030110",
+                                "69394a0b000000001f006ce6",
+                                "6951c718000000001e0105b7",
+                                "7fc2ebb73d9fefe1e79111dd9b17ad65"
+                              ]
+                            },
+                            {
+                              "name": "名单对比",
+                              "count": 1,
+                              "post_ids": [
+                                "0834b527a0fe32c83eb9be0b1cf45140"
+                              ]
+                            },
+                            {
+                              "name": "多维度",
+                              "count": 2,
+                              "post_ids": [
+                                "55327642",
+                                "89627e4bf8ad865f175c54e3b0ddd2cd"
+                              ]
+                            },
+                            {
+                              "name": "商业视角",
+                              "count": 5,
+                              "post_ids": [
+                                "67316440000000001b02e75e",
+                                "690075390000000004013a53",
+                                "69048be90000000005033c79",
+                                "690ed1190000000003010bd3",
+                                "69363584000000001f006a4c"
+                              ]
+                            },
+                            {
+                              "name": "成本效益对比",
+                              "count": 1,
+                              "post_ids": [
+                                "64585144"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 50,
+                          "children": [],
+                          "total_posts_count": 16
+                        },
+                        {
+                          "name": "拆解剖析",
+                          "path": "/架构/逻辑/信息编排/归纳论证/分析解读/拆解剖析",
+                          "id": 15030,
+                          "source_stable_id": 497,
+                          "source_type": "形式",
+                          "description": "对复杂事物进行深度拆分、剖析和细化讲解的手法",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 14929,
+                          "element_count": 37,
+                          "elements": [
+                            {
+                              "name": "价值剥离",
+                              "count": 1,
+                              "post_ids": [
+                                "ff037b4ada852d5835240ffded2f7256"
+                              ]
+                            },
+                            {
+                              "name": "动机拆解",
+                              "count": 1,
+                              "post_ids": [
+                                "62da797f45d5b2a8ebd9149c3b52c719"
+                              ]
+                            },
+                            {
+                              "name": "拆解",
+                              "count": 9,
+                              "post_ids": [
+                                "27f97d45367f3d0662d3204b3a4b0fb9",
+                                "57853678",
+                                "65252544",
+                                "661dbf91000000001a0119b6",
+                                "68ec3f9d000000000700de97",
+                                "691f9a9f000000000d00ea0a",
+                                "693f425a000000001e00ed26",
+                                "6949df27000000001d03e0e9",
+                                "fa0633c278660309648633dea6294cb1"
+                              ]
+                            },
+                            {
+                              "name": "深度",
+                              "count": 1,
+                              "post_ids": [
+                                "c84d14e15b8324b91df2cd8cb8304db9"
+                              ]
+                            },
+                            {
+                              "name": "细节拆解",
+                              "count": 1,
+                              "post_ids": [
+                                "b5245c3e7b1c09af072ea40e41d3cca8"
+                              ]
+                            },
+                            {
+                              "name": "案例拆解",
+                              "count": 2,
+                              "post_ids": [
+                                "6913cafd000000000703402b",
+                                "691a54bd000000000700be32"
+                              ]
+                            },
+                            {
+                              "name": "深度解析/分析",
+                              "count": 16,
+                              "post_ids": [
+                                "68f1e631000000000503111b",
+                                "68fa08f60000000005030ddc",
+                                "69005a1e0000000004017637",
+                                "690af75a000000000503b57e",
+                                "690ed2240000000005002b41",
+                                "69145e8e0000000005003350",
+                                "692006ef000000001f008b41",
+                                "69200dec000000001f00b884",
+                                "6927e806000000001f007658",
+                                "692e7906000000001f006ff1",
+                                "692e7ccf000000001f00a137",
+                                "6932744c000000001f00c9f3",
+                                "69491c99000000001e02c765"
+                              ]
+                            },
+                            {
+                              "name": "解析/解码",
+                              "count": 3,
+                              "post_ids": [
+                                "69297dde000000001f006b90",
+                                "69297e47000000001e028ec3",
+                                "69328436000000001f006a54"
+                              ]
+                            },
+                            {
+                              "name": "行业拆解",
+                              "count": 2,
+                              "post_ids": [
+                                "69145e8e0000000005003350",
+                                "692e7ccf000000001f00a137"
+                              ]
+                            },
+                            {
+                              "name": "包装套路",
+                              "count": 1,
+                              "post_ids": [
+                                "65515618"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 37,
+                          "children": [],
+                          "total_posts_count": 23
+                        },
+                        {
+                          "name": "解读说明",
+                          "path": "/架构/逻辑/信息编排/归纳论证/分析解读/解读说明",
+                          "id": 15031,
+                          "source_stable_id": 498,
+                          "source_type": "形式",
+                          "description": "对内容进行通俗化阐释和说明的手法",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 14929,
+                          "element_count": 4,
+                          "elements": [
+                            {
+                              "name": "解释",
+                              "count": 1,
+                              "post_ids": [
+                                "0834b527a0fe32c83eb9be0b1cf45140"
+                              ]
+                            },
+                            {
+                              "name": "寓意化解读",
+                              "count": 2,
+                              "post_ids": [
+                                "665971bb000000001303d005",
+                                "6687d458000000000a026f91"
+                              ]
+                            },
+                            {
+                              "name": "定义",
+                              "count": 1,
+                              "post_ids": [
+                                "55102015"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 4,
+                          "children": [],
+                          "total_posts_count": 2
+                        },
+                        {
+                          "name": "评价判断",
+                          "path": "/架构/逻辑/信息编排/归纳论证/分析解读/评价判断",
+                          "id": 15032,
+                          "source_stable_id": 499,
+                          "source_type": "形式",
+                          "description": "对事物进行价值判断、批判或反思的手法",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 14929,
+                          "element_count": 3,
+                          "elements": [
+                            {
+                              "name": "评论",
+                              "count": 1,
+                              "post_ids": [
+                                "65252544"
+                              ]
+                            },
+                            {
+                              "name": "评论式",
+                              "count": 1,
+                              "post_ids": [
+                                "64935973"
+                              ]
+                            },
+                            {
+                              "name": "评述",
+                              "count": 1,
+                              "post_ids": [
+                                "64610874"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 3,
+                          "children": [],
+                          "total_posts_count": 0
+                        }
+                      ],
+                      "total_posts_count": 42
+                    },
+                    {
+                      "name": "对比论证",
+                      "path": "/架构/逻辑/信息编排/归纳论证/对比论证",
+                      "id": 15015,
+                      "source_stable_id": 437,
+                      "source_type": "形式",
+                      "description": "通过不同对象、维度或状态的对照来阐述观点与论证逻辑的手法",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15759,
+                      "element_count": 7,
+                      "elements": [
+                        {
+                          "name": "高对比度",
+                          "count": 4,
+                          "post_ids": [
+                            "59323915",
+                            "64603799",
+                            "64662179",
+                            "65489167"
+                          ]
+                        },
+                        {
+                          "name": "对比观点",
+                          "count": 1,
+                          "post_ids": [
+                            "64650216"
+                          ]
+                        },
+                        {
+                          "name": "对比批判",
+                          "count": 1,
+                          "post_ids": [
+                            "57028518"
+                          ]
+                        },
+                        {
+                          "name": "对比内容",
+                          "count": 1,
+                          "post_ids": [
+                            "55327642"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 7,
+                      "children": [],
+                      "total_posts_count": 0
+                    },
+                    {
+                      "name": "归纳提炼",
+                      "path": "/架构/逻辑/信息编排/归纳论证/归纳提炼",
+                      "id": 15767,
+                      "source_stable_id": 203,
+                      "source_type": "形式",
+                      "description": "对信息进行总结、归纳与结构化整理",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15759,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 33,
+                      "children": [
+                        {
+                          "name": "概括浓缩",
+                          "path": "/架构/逻辑/信息编排/归纳论证/归纳提炼/概括浓缩",
+                          "id": 15681,
+                          "source_stable_id": 1531,
+                          "source_type": "形式",
+                          "description": "将信息压缩提炼为精简核心内容",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15767,
+                          "element_count": 17,
+                          "elements": [
+                            {
+                              "name": "总结提炼",
+                              "count": 14,
+                              "post_ids": [
+                                "683f8111000000002102effd",
+                                "68e310c90000000003035444",
+                                "68e6ecb90000000003021e34",
+                                "68f95c43000000000300c650",
+                                "68fff44700000000030390d3",
+                                "690333e70000000007022604",
+                                "6907ed79000000000703699c",
+                                "690a9329000000000700b783",
+                                "691a54bd000000000700be32",
+                                "693613b9000000001e00ebdd",
+                                "69375a940000000019024af5",
+                                "69434b1f000000001e013f9e",
+                                "6949df27000000001d03e0e9",
+                                "6951c718000000001e0105b7"
+                              ]
+                            },
+                            {
+                              "name": "划重点",
+                              "count": 2,
+                              "post_ids": [
+                                "67e224cc000000000602a6c5",
+                                "692fe421000000001f00691a"
+                              ]
+                            },
+                            {
+                              "name": "总结",
+                              "count": 1,
+                              "post_ids": [
+                                "59422696"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 17,
+                          "children": [],
+                          "total_posts_count": 16
+                        },
+                        {
+                          "name": "结构梳理",
+                          "path": "/架构/逻辑/信息编排/归纳论证/归纳提炼/结构梳理",
+                          "id": 15682,
+                          "source_stable_id": 1532,
+                          "source_type": "形式",
+                          "description": "将信息进行系统整理和结构化重组",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15767,
+                          "element_count": 12,
+                          "elements": [
+                            {
+                              "name": "全方位",
+                              "count": 8,
+                              "post_ids": [
+                                "56726652",
+                                "68a4107f000000001c00e8e9",
+                                "68f1af7c0000000005003459",
+                                "69003bb30000000004015797",
+                                "6923b4b2000000001e03531a",
+                                "692fa7e0000000001e039786",
+                                "693a2428000000001e027639",
+                                "df635f43f39a1fa41c13da96320c45c3"
+                              ]
+                            },
+                            {
+                              "name": "保姆级",
+                              "count": 4,
+                              "post_ids": [
+                                "68a8241a000000001c011403",
+                                "68f1af7c0000000005003459",
+                                "6923b4b2000000001e03531a",
+                                "693a2428000000001e027639"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 12,
+                          "children": [],
+                          "total_posts_count": 7
+                        },
+                        {
+                          "name": "转化阐释",
+                          "path": "/架构/逻辑/信息编排/归纳论证/归纳提炼/转化阐释",
+                          "id": 15683,
+                          "source_stable_id": 1533,
+                          "source_type": "形式",
+                          "description": "将信息转换形式或进行解释性补充",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15767,
+                          "element_count": 4,
+                          "elements": [
+                            {
+                              "name": "说明",
+                              "count": 2,
+                              "post_ids": [
+                                "67284f9c000000001901875a",
+                                "673f1462000000000703b270"
+                              ]
+                            },
+                            {
+                              "name": "披露",
+                              "count": 1,
+                              "post_ids": [
+                                "692006ef000000001f008b41"
+                              ]
+                            },
+                            {
+                              "name": "复盘式",
+                              "count": 1,
+                              "post_ids": [
+                                "693d0b1d000000001e02ba36"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 4,
+                          "children": [],
+                          "total_posts_count": 4
+                        }
+                      ],
+                      "total_posts_count": 27
+                    },
+                    {
+                      "name": "数据实证",
+                      "path": "/架构/逻辑/信息编排/归纳论证/数据实证",
+                      "id": 15765,
+                      "source_stable_id": 199,
+                      "source_type": "形式",
+                      "description": "通过具体数字、数据量化和数据对比进行论证",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15759,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 19,
+                      "children": [
+                        {
+                          "name": "数据叙事",
+                          "path": "/架构/逻辑/信息编排/归纳论证/数据实证/数据叙事",
+                          "id": 15649,
+                          "source_stable_id": 1488,
+                          "source_type": "形式",
+                          "description": "以数据为核心的组织逻辑和讲述方式",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15765,
+                          "element_count": 6,
+                          "elements": [
+                            {
+                              "name": "数据化分析与叙事",
+                              "count": 6,
+                              "post_ids": [
+                                "673c37610000000007029ced",
+                                "67e224cc000000000602a6c5",
+                                "68f9e8400000000005033268",
+                                "6912d90f00000000050113b3",
+                                "69145e8e0000000005003350",
+                                "69437b6d000000001e0381c9"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 6,
+                          "children": [],
+                          "total_posts_count": 6
+                        },
+                        {
+                          "name": "数据呈现",
+                          "path": "/架构/逻辑/信息编排/归纳论证/数据实证/数据呈现",
+                          "id": 15647,
+                          "source_stable_id": 1486,
+                          "source_type": "形式",
+                          "description": "将信息转化为数字形式进行展示",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15765,
+                          "element_count": 7,
+                          "elements": [
+                            {
+                              "name": "数据化呈现",
+                              "count": 1,
+                              "post_ids": [
+                                "04bcda9fc132c52a8eee5d7ba994119d"
+                              ]
+                            },
+                            {
+                              "name": "数据化",
+                              "count": 2,
+                              "post_ids": [
+                                "4020e56c08340e92c9862e481c07d2e2",
+                                "afb320f2428ca07a2743d96dc21e4127"
+                              ]
+                            },
+                            {
+                              "name": "数据",
+                              "count": 1,
+                              "post_ids": [
+                                "da753fb9dc1fc7f09ef8e5e7c014ada3"
+                              ]
+                            },
+                            {
+                              "name": "数据化/量化",
+                              "count": 2,
+                              "post_ids": [
+                                "690ed1190000000003010bd3",
+                                "69363584000000001f006a4c"
+                              ]
+                            },
+                            {
+                              "name": "数字序列",
+                              "count": 1,
+                              "post_ids": [
+                                "65407794"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 7,
+                          "children": [],
+                          "total_posts_count": 2
+                        },
+                        {
+                          "name": "数据对比",
+                          "path": "/架构/逻辑/信息编排/归纳论证/数据实证/数据对比",
+                          "id": 15648,
+                          "source_stable_id": 1487,
+                          "source_type": "形式",
+                          "description": "通过数据比较进行论证",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15765,
+                          "element_count": 4,
+                          "elements": [
+                            {
+                              "name": "数据对比",
+                              "count": 1,
+                              "post_ids": [
+                                "df635f43f39a1fa41c13da96320c45c3"
+                              ]
+                            },
+                            {
+                              "name": "量化对比",
+                              "count": 2,
+                              "post_ids": [
+                                "64589911"
+                              ]
+                            },
+                            {
+                              "name": "成本对比",
+                              "count": 1,
+                              "post_ids": [
+                                "64450659"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 4,
+                          "children": [],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "数据计算",
+                          "path": "/架构/逻辑/信息编排/归纳论证/数据实证/数据计算",
+                          "id": 15650,
+                          "source_stable_id": 1489,
+                          "source_type": "形式",
+                          "description": "涉及数据转换、换算和计算的处理方式",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15765,
+                          "element_count": 2,
+                          "elements": [
+                            {
+                              "name": "数据化成果",
+                              "count": 1,
+                              "post_ids": [
+                                "69293c52000000001e02d9d6"
+                              ]
+                            },
+                            {
+                              "name": "数据换算",
+                              "count": 1,
+                              "post_ids": [
+                                "6912d90f00000000050113b3"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 2,
+                          "children": [],
+                          "total_posts_count": 2
+                        }
+                      ],
+                      "total_posts_count": 9
+                    },
+                    {
+                      "name": "逻辑推论",
+                      "path": "/架构/逻辑/信息编排/归纳论证/逻辑推论",
+                      "id": 14928,
+                      "source_stable_id": 201,
+                      "source_type": "形式",
+                      "description": "通过推理、因果、辩证等逻辑方式进行论证",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15759,
+                      "element_count": 17,
+                      "elements": [
+                        {
+                          "name": "论证",
+                          "count": 8,
+                          "post_ids": [
+                            "0374cca4a422e5aad9b24d721c7b4291",
+                            "57853678",
+                            "64415308",
+                            "69145e8e0000000005003350",
+                            "752267d0ca2695c2ceb816a43d943a6a",
+                            "9c87381270abacce95e103b3a000e086",
+                            "d07f1c79dd4ef03b92592fa81d54755b",
+                            "df635f43f39a1fa41c13da96320c45c3"
+                          ]
+                        },
+                        {
+                          "name": "论述",
+                          "count": 3,
+                          "post_ids": [
+                            "412f4d35be48179908fef312b53cad43",
+                            "b4fbfb562ad4863ceb0a12e7110f3da7",
+                            "c8fa9b4d1526d3345bcb15c7d196b79d"
+                          ]
+                        },
+                        {
+                          "name": "问题解决式",
+                          "count": 4,
+                          "post_ids": [
+                            "662ce86d0000000003023f0a",
+                            "66519efa000000001500a2bb",
+                            "67fe11bb000000000d017b89",
+                            "68286f560000000012006015"
+                          ]
+                        },
+                        {
+                          "name": "逻辑对冲",
+                          "count": 1,
+                          "post_ids": [
+                            "64400730"
+                          ]
+                        },
+                        {
+                          "name": "对称性逻辑",
+                          "count": 1,
+                          "post_ids": [
+                            "64400730"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 17,
+                      "children": [],
+                      "total_posts_count": 5
+                    }
+                  ],
+                  "total_posts_count": 86
+                },
+                {
+                  "name": "条目列举",
+                  "path": "/架构/逻辑/信息编排/条目列举",
+                  "id": 15758,
+                  "source_stable_id": 167,
+                  "source_type": "形式",
+                  "description": "清单、排名、分段等将内容条目化排列的编排方式",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 15755,
+                  "element_count": 0,
+                  "elements": [],
+                  "total_element_count": 143,
+                  "children": [
+                    {
+                      "name": "分段结构",
+                      "path": "/架构/逻辑/信息编排/条目列举/分段结构",
+                      "id": 15804,
+                      "source_stable_id": 350,
+                      "source_type": "形式",
+                      "description": "将内容按逻辑框架分段、分步、分模块组织的编排",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15758,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 78,
+                      "children": [
+                        {
+                          "name": "板块并列",
+                          "path": "/架构/逻辑/信息编排/条目列举/分段结构/板块并列",
+                          "id": 15008,
+                          "source_stable_id": 410,
+                          "source_type": "形式",
+                          "description": "按模块、章节、区域等并列逻辑组织内容的分段方式",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15804,
+                          "element_count": 16,
+                          "elements": [
+                            {
+                              "name": "两段式",
+                              "count": 1,
+                              "post_ids": [
+                                "664c38f0000000001303c21f"
+                              ]
+                            },
+                            {
+                              "name": "分章节",
+                              "count": 5,
+                              "post_ids": [
+                                "21006075",
+                                "6729657b000000001b01149d",
+                                "67e224cc000000000602a6c5",
+                                "692e7ccf000000001f00a137",
+                                "692fe421000000001f00691a"
+                              ]
+                            },
+                            {
+                              "name": "模块化结构",
+                              "count": 1,
+                              "post_ids": [
+                                "6726109d000000001901b564"
+                              ]
+                            },
+                            {
+                              "name": "分维度",
+                              "count": 2,
+                              "post_ids": [
+                                "65571251",
+                                "67206035000000001b02f4b1"
+                              ]
+                            },
+                            {
+                              "name": "模块化",
+                              "count": 2,
+                              "post_ids": [
+                                "68f9fb67000000000400736f",
+                                "69145e8e0000000005003350"
+                              ]
+                            },
+                            {
+                              "name": "分层",
+                              "count": 1,
+                              "post_ids": [
+                                "6735b1a0000000001b0137f5"
+                              ]
+                            },
+                            {
+                              "name": "分区域导览",
+                              "count": 1,
+                              "post_ids": [
+                                "68f1af7c0000000005003459"
+                              ]
+                            },
+                            {
+                              "name": "分段式",
+                              "count": 3,
+                              "post_ids": [
+                                "65133109",
+                                "65135957",
+                                "65233075"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 16,
+                          "children": [],
+                          "total_posts_count": 11
+                        },
+                        {
+                          "name": "流程递进",
+                          "path": "/架构/逻辑/信息编排/条目列举/分段结构/流程递进",
+                          "id": 15007,
+                          "source_stable_id": 409,
+                          "source_type": "形式",
+                          "description": "按顺序、步骤、阶段等递进逻辑组织内容的分段方式",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15804,
+                          "element_count": 37,
+                          "elements": [
+                            {
+                              "name": "分步骤",
+                              "count": 27,
+                              "post_ids": [
+                                "64203380",
+                                "65402572",
+                                "661dbf91000000001a0119b6",
+                                "672ed3b6000000003c017f82",
+                                "676f8eac000000000902f53e",
+                                "6781eb19000000000b039867",
+                                "680898fa000000001c01c23e",
+                                "683f8111000000002102effd",
+                                "68e310c90000000003035444",
+                                "68e6ecb90000000003021e34",
+                                "68ec3f9d000000000700de97",
+                                "68f568a1000000000301053d",
+                                "68f95c43000000000300c650",
+                                "68fff44700000000030390d3",
+                                "6907ed79000000000703699c",
+                                "690a9329000000000700b783",
+                                "6911177d0000000007031417",
+                                "6913cafd000000000703402b",
+                                "691a54bd000000000700be32",
+                                "691d3112000000001e036559",
+                                "691f9a9f000000000d00ea0a",
+                                "692cc7ab000000001b030110",
+                                "693613b9000000001e00ebdd",
+                                "69375a940000000019024af5",
+                                "693f425a000000001e00ed26",
+                                "69434b1f000000001e013f9e",
+                                "6951c718000000001e0105b7"
+                              ]
+                            },
+                            {
+                              "name": "分阶段",
+                              "count": 2,
+                              "post_ids": [
+                                "64631158",
+                                "65eea166000000000d00c6d8"
+                              ]
+                            },
+                            {
+                              "name": "方法",
+                              "count": 1,
+                              "post_ids": [
+                                "6776b27d0000000013018545"
+                              ]
+                            },
+                            {
+                              "name": "分时段",
+                              "count": 1,
+                              "post_ids": [
+                                "6729dd5300000000190183a8"
+                              ]
+                            },
+                            {
+                              "name": "分阶段祛湿调理法",
+                              "count": 1,
+                              "post_ids": [
+                                "6729657b000000001b01149d"
+                              ]
+                            },
+                            {
+                              "name": "分餐次",
+                              "count": 1,
+                              "post_ids": [
+                                "6726109d000000001901b564"
+                              ]
+                            },
+                            {
+                              "name": "演进逻辑",
+                              "count": 1,
+                              "post_ids": [
+                                "69145e8e0000000005003350"
+                              ]
+                            },
+                            {
+                              "name": "端到端",
+                              "count": 1,
+                              "post_ids": [
+                                "690075390000000004013a53"
+                              ]
+                            },
+                            {
+                              "name": "流程呈现",
+                              "count": 1,
+                              "post_ids": [
+                                "64631158"
+                              ]
+                            },
+                            {
+                              "name": "层层递进",
+                              "count": 1,
+                              "post_ids": [
+                                "64450659"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 37,
+                          "children": [],
+                          "total_posts_count": 32
+                        },
+                        {
+                          "name": "规范框架",
+                          "path": "/架构/逻辑/信息编排/条目列举/分段结构/规范框架",
+                          "id": 15009,
+                          "source_stable_id": 411,
+                          "source_type": "形式",
+                          "description": "以标准化、结构化方式整体组织内容的框架性分段",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15804,
+                          "element_count": 25,
+                          "elements": [
+                            {
+                              "name": "方案",
+                              "count": 1,
+                              "post_ids": [
+                                "6837f019000000000c03aab2"
+                              ]
+                            },
+                            {
+                              "name": "内容结构",
+                              "count": 1,
+                              "post_ids": [
+                                "664c38f0000000001303c21f"
+                              ]
+                            },
+                            {
+                              "name": "标准化",
+                              "count": 11,
+                              "post_ids": [
+                                "66c5b638000000001d018e5a",
+                                "6729657b000000001b01149d",
+                                "67299a19000000001901483f",
+                                "673f1462000000000703b270",
+                                "6746fb5600000000070260ce",
+                                "678ce28d000000001603e3a8",
+                                "68b10b46000000001c00ca6c",
+                                "68c15181000000001b01c358",
+                                "68ca25bc000000000e023656",
+                                "69297dde000000001f006b90",
+                                "69297e47000000001e028ec3"
+                              ]
+                            },
+                            {
+                              "name": "建议体系",
+                              "count": 2,
+                              "post_ids": [
+                                "6727171b000000001b01114b",
+                                "675c0669000000000600cfd7"
+                              ]
+                            },
+                            {
+                              "name": "科普结构",
+                              "count": 1,
+                              "post_ids": [
+                                "67206035000000001b02f4b1"
+                              ]
+                            },
+                            {
+                              "name": "结构化",
+                              "count": 9,
+                              "post_ids": [
+                                "67e224cc000000000602a6c5",
+                                "68ef800d0000000005011094",
+                                "68fa08f60000000005030ddc",
+                                "69048be90000000005033c79",
+                                "690ed1190000000003010bd3",
+                                "692fe421000000001f00691a",
+                                "6932744c000000001f00c9f3",
+                                "69394a0b000000001f006ce6",
+                                "69437b6d000000001e0381c9"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 25,
+                          "children": [],
+                          "total_posts_count": 25
+                        }
+                      ],
+                      "total_posts_count": 60
+                    },
+                    {
+                      "name": "模板映射",
+                      "path": "/架构/逻辑/信息编排/条目列举/模板映射",
+                      "id": 14994,
+                      "source_stable_id": 351,
+                      "source_type": "形式",
+                      "description": "按固定模板或对应关系组织内容的编排",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15758,
+                      "element_count": 30,
+                      "elements": [
+                        {
+                          "name": "分类",
+                          "count": 4,
+                          "post_ids": [
+                            "67244ea7000000001b012d18",
+                            "689b158f000000001b03e512",
+                            "68ca25bc000000000e023656",
+                            "bc2f946d57e1c650575962e480eccf31"
+                          ]
+                        },
+                        {
+                          "name": "配方",
+                          "count": 3,
+                          "post_ids": [
+                            "67299a19000000001901483f",
+                            "6746fb5600000000070260ce",
+                            "678ce28d000000001603e3a8"
+                          ]
+                        },
+                        {
+                          "name": "配方模板",
+                          "count": 6,
+                          "post_ids": [
+                            "66c5b638000000001d018e5a",
+                            "6729657b000000001b01149d",
+                            "67299a19000000001901483f",
+                            "673f1462000000000703b270",
+                            "6746fb5600000000070260ce",
+                            "678ce28d000000001603e3a8"
+                          ]
+                        },
+                        {
+                          "name": "对症",
+                          "count": 6,
+                          "post_ids": [
+                            "66c5b638000000001d018e5a",
+                            "6729657b000000001b01149d",
+                            "67299a19000000001901483f",
+                            "6746fb5600000000070260ce",
+                            "675c0669000000000600cfd7",
+                            "678ce28d000000001603e3a8"
+                          ]
+                        },
+                        {
+                          "name": "索引",
+                          "count": 6,
+                          "post_ids": [
+                            "66c5b638000000001d018e5a",
+                            "6729657b000000001b01149d",
+                            "67299a19000000001901483f",
+                            "6746fb5600000000070260ce",
+                            "675c0669000000000600cfd7",
+                            "678ce28d000000001603e3a8"
+                          ]
+                        },
+                        {
+                          "name": "内外兼修",
+                          "count": 2,
+                          "post_ids": [
+                            "6727171b000000001b01114b",
+                            "675c0669000000000600cfd7"
+                          ]
+                        },
+                        {
+                          "name": "对症茶饮",
+                          "count": 1,
+                          "post_ids": [
+                            "6729657b000000001b01149d"
+                          ]
+                        },
+                        {
+                          "name": "段位制",
+                          "count": 1,
+                          "post_ids": [
+                            "67284f9c000000001901875a"
+                          ]
+                        },
+                        {
+                          "name": "游戏化",
+                          "count": 1,
+                          "post_ids": [
+                            "67284f9c000000001901875a"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 30,
+                      "children": [],
+                      "total_posts_count": 12
+                    },
+                    {
+                      "name": "盘点汇编",
+                      "path": "/架构/逻辑/信息编排/条目列举/盘点汇编",
+                      "id": 14993,
+                      "source_stable_id": 349,
+                      "source_type": "形式",
+                      "description": "对同类内容进行系统梳理、集合展示的编排",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15758,
+                      "element_count": 16,
+                      "elements": [
+                        {
+                          "name": "穿搭合集",
+                          "count": 2,
+                          "post_ids": [
+                            "6965d491000000000e00f9b0",
+                            "696b658e000000001a01d2ef"
+                          ]
+                        },
+                        {
+                          "name": "装修灵感",
+                          "count": 6,
+                          "post_ids": [
+                            "6848e2340000000021009f3a",
+                            "684e2d44000000002100cca7",
+                            "68538f7c000000002400805b",
+                            "6858eb52000000001203044b",
+                            "685b68c300000000150226bd",
+                            "685f514f000000001703339d"
+                          ]
+                        },
+                        {
+                          "name": "合集",
+                          "count": 3,
+                          "post_ids": [
+                            "66619827000000000600486f",
+                            "676535f4000000000b00dfd1",
+                            "69672e2d000000001a026263"
+                          ]
+                        },
+                        {
+                          "name": "合集式结构",
+                          "count": 1,
+                          "post_ids": [
+                            "676535f4000000000b00dfd1"
+                          ]
+                        },
+                        {
+                          "name": "多样化",
+                          "count": 4,
+                          "post_ids": [
+                            "12357835",
+                            "69003bb30000000004015797",
+                            "692fa7e0000000001e039786",
+                            "693a2428000000001e027639"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 16,
+                      "children": [],
+                      "total_posts_count": 14
+                    },
+                    {
+                      "name": "逐条罗列",
+                      "path": "/架构/逻辑/信息编排/条目列举/逐条罗列",
+                      "id": 14992,
+                      "source_stable_id": 347,
+                      "source_type": "形式",
+                      "description": "将内容以条目、列表、名单等方式逐一展现的编排",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15758,
+                      "element_count": 1,
+                      "elements": [
+                        {
+                          "name": "清单式叙事",
+                          "count": 1,
+                          "post_ids": [
+                            "56977419"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 19,
+                      "children": [
+                        {
+                          "name": "定向列举",
+                          "path": "/架构/逻辑/信息编排/条目列举/逐条罗列/定向列举",
+                          "id": 15083,
+                          "source_stable_id": 563,
+                          "source_type": "形式",
+                          "description": "针对特定内容类型(名单、款式、痛点等)的专门列举方式",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 14992,
+                          "element_count": 3,
+                          "elements": [
+                            {
+                              "name": "并列名单",
+                              "count": 1,
+                              "post_ids": [
+                                "8d43fa69c8f4f5e7d87ec45244cbd97c"
+                              ]
+                            },
+                            {
+                              "name": "名单式",
+                              "count": 1,
+                              "post_ids": [
+                                "ef63cef6ce5336e59ccb523e35f355dd"
+                              ]
+                            },
+                            {
+                              "name": "多款式",
+                              "count": 1,
+                              "post_ids": [
+                                "6649dbe3000000000c018112"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 3,
+                          "children": [],
+                          "total_posts_count": 1
+                        },
+                        {
+                          "name": "通用列举",
+                          "path": "/架构/逻辑/信息编排/条目列举/逐条罗列/通用列举",
+                          "id": 15082,
+                          "source_stable_id": 561,
+                          "source_type": "形式",
+                          "description": "以清单、条目、列表等通用形式逐一展现内容的列举方式",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 14992,
+                          "element_count": 15,
+                          "elements": [
+                            {
+                              "name": "清单式",
+                              "count": 8,
+                              "post_ids": [
+                                "6726109d000000001901b564",
+                                "6729dd5300000000190183a8",
+                                "676f8eac000000000902f53e",
+                                "68a8241a000000001c011403",
+                                "69003bb30000000004015797",
+                                "6923b4b2000000001e03531a",
+                                "692fa7e0000000001e039786",
+                                "bc2f946d57e1c650575962e480eccf31"
+                              ]
+                            },
+                            {
+                              "name": "分条目",
+                              "count": 2,
+                              "post_ids": [
+                                "65270425",
+                                "65411458"
+                              ]
+                            },
+                            {
+                              "name": "清单",
+                              "count": 4,
+                              "post_ids": [
+                                "62948012",
+                                "64504122",
+                                "64610880",
+                                "64965843"
+                              ]
+                            },
+                            {
+                              "name": "罗列",
+                              "count": 1,
+                              "post_ids": [
+                                "57121511"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 15,
+                          "children": [],
+                          "total_posts_count": 7
+                        }
+                      ],
+                      "total_posts_count": 8
+                    }
+                  ],
+                  "total_posts_count": 80
+                },
+                {
+                  "name": "运作机制",
+                  "path": "/架构/逻辑/信息编排/运作机制",
+                  "id": 15016,
+                  "source_stable_id": 438,
+                  "source_type": "形式",
+                  "description": "内容运作的预设流程、规则或系统性组织方式",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 15755,
+                  "element_count": 3,
+                  "elements": [
+                    {
+                      "name": "机制",
+                      "count": 1,
+                      "post_ids": [
+                        "64870193"
+                      ]
+                    },
+                    {
+                      "name": "进驻",
+                      "count": 1,
+                      "post_ids": [
+                        "63712737"
+                      ]
+                    },
+                    {
+                      "name": "模式",
+                      "count": 1,
+                      "post_ids": [
+                        "62025412"
+                      ]
+                    }
+                  ],
+                  "total_element_count": 3,
+                  "children": [],
+                  "total_posts_count": 0
+                }
+              ],
+              "total_posts_count": 122
+            }
+          ],
+          "total_posts_count": 122
+        }
+      ],
+      "total_posts_count": 276
+    },
+    {
+      "name": "活动",
+      "path": "/活动",
+      "id": 15999,
+      "source_stable_id": -13,
+      "source_type": "意图",
+      "description": null,
+      "category_nature": null,
+      "level": 1,
+      "parent_id": null,
+      "element_count": 1,
+      "elements": [
+        {
+          "name": "活动",
+          "count": 1,
+          "post_ids": [
+            "68b10b46000000001c00ca6c"
+          ]
+        }
+      ],
+      "total_element_count": 1,
+      "children": [],
+      "total_posts_count": 1
+    },
+    {
+      "name": "理念",
+      "path": "/理念",
+      "id": 15944,
+      "source_stable_id": 39,
+      "source_type": "实质",
+      "description": "内容中涉及的抽象要素——方法、知识、观点、事件、趋势等概念性内容",
+      "category_nature": "内容",
+      "level": 1,
+      "parent_id": null,
+      "element_count": 0,
+      "elements": [],
+      "total_element_count": 1272,
+      "children": [
+        {
+          "name": "事件",
+          "path": "/理念/事件",
+          "id": 15715,
+          "source_stable_id": 43,
+          "source_type": "实质",
+          "description": "发生的事情,包括个人事件、公共事件、历史事件等",
+          "category_nature": "内容",
+          "level": 2,
+          "parent_id": 15944,
+          "element_count": 0,
+          "elements": [],
+          "total_element_count": 119,
+          "children": [
+            {
+              "name": "个人事件",
+              "path": "/理念/事件/个人事件",
+              "id": 15721,
+              "source_stable_id": 51,
+              "source_type": "实质",
+              "description": "个人经历的具体事情或成就",
+              "category_nature": "维度",
+              "level": 3,
+              "parent_id": 15715,
+              "element_count": 0,
+              "elements": [],
+              "total_element_count": 31,
+              "children": [
+                {
+                  "name": "事迹",
+                  "path": "/理念/事件/个人事件/事迹",
+                  "id": 15727,
+                  "source_stable_id": 61,
+                  "source_type": "实质",
+                  "description": "个人的重要行为、成就或经历",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 15721,
+                  "element_count": 0,
+                  "elements": [],
+                  "total_element_count": 22,
+                  "children": [
+                    {
+                      "name": "励志感人",
+                      "path": "/理念/事件/个人事件/事迹/励志感人",
+                      "id": 14939,
+                      "source_stable_id": 233,
+                      "source_type": "实质",
+                      "description": "奋斗励志、克服苦难、感人至深的个人经历和抉择",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15727,
+                      "element_count": 1,
+                      "elements": [
+                        {
+                          "name": "天才创业",
+                          "count": 1,
+                          "post_ids": [
+                            "67316440000000001b02e75e"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 1,
+                      "children": [],
+                      "total_posts_count": 1
+                    },
+                    {
+                      "name": "品德奉献",
+                      "path": "/理念/事件/个人事件/事迹/品德奉献",
+                      "id": 15777,
+                      "source_stable_id": 231,
+                      "source_type": "实质",
+                      "description": "清廉自律、捐助济世、科研奉献等高尚品德行为",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15727,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 3,
+                      "children": [
+                        {
+                          "name": "助人奉献",
+                          "path": "/理念/事件/个人事件/事迹/品德奉献/助人奉献",
+                          "id": 15690,
+                          "source_stable_id": 1543,
+                          "source_type": "实质",
+                          "description": "个人层面对他人的直接帮助、救护、扶持和无私付出",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15777,
+                          "element_count": 1,
+                          "elements": [
+                            {
+                              "name": "长子奉献",
+                              "count": 1,
+                              "post_ids": [
+                                "63477609"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 1,
+                          "children": [],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "慈善公益",
+                          "path": "/理念/事件/个人事件/事迹/品德奉献/慈善公益",
+                          "id": 15689,
+                          "source_stable_id": 1542,
+                          "source_type": "实质",
+                          "description": "捐赠、慈善活动、公益行为等无偿贡献社会的事迹",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15777,
+                          "element_count": 2,
+                          "elements": [
+                            {
+                              "name": "慈善事迹",
+                              "count": 1,
+                              "post_ids": [
+                                "2e93c00132e3a6a30c06efb6984ab71a"
+                              ]
+                            },
+                            {
+                              "name": "慈善瞬间",
+                              "count": 1,
+                              "post_ids": [
+                                "03e3d299faba104965b33d87b5063eff"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 2,
+                          "children": [],
+                          "total_posts_count": 0
+                        }
+                      ],
+                      "total_posts_count": 0
+                    },
+                    {
+                      "name": "生平经历",
+                      "path": "/理念/事件/个人事件/事迹/生平经历",
+                      "id": 15778,
+                      "source_stable_id": 232,
+                      "source_type": "实质",
+                      "description": "个人的人生轨迹、履历背景和重要经历",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15727,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 18,
+                      "children": [
+                        {
+                          "name": "个人经历",
+                          "path": "/理念/事件/个人事件/事迹/生平经历/个人经历",
+                          "id": 15248,
+                          "source_stable_id": 806,
+                          "source_type": "实质",
+                          "description": "普通个体的生活经历、人生回忆和个人体验",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15778,
+                          "element_count": 6,
+                          "elements": [
+                            {
+                              "name": "往事回忆",
+                              "count": 1,
+                              "post_ids": [
+                                "601c09554a9851f9038026035b95fce9"
+                              ]
+                            },
+                            {
+                              "name": "棉条门事件",
+                              "count": 1,
+                              "post_ids": [
+                                "970bc999f557cf8026c950f254d3ddac"
+                              ]
+                            },
+                            {
+                              "name": "三十年情史",
+                              "count": 1,
+                              "post_ids": [
+                                "444f41a7f46eaee7dfa43d10cb0d10c5"
+                              ]
+                            },
+                            {
+                              "name": "结婚喜讯",
+                              "count": 1,
+                              "post_ids": [
+                                "65febd8e0000000012035538"
+                              ]
+                            },
+                            {
+                              "name": "经历",
+                              "count": 2,
+                              "post_ids": [
+                                "691acd15000000000402134e",
+                                "693d0b1d000000001e02ba36"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 6,
+                          "children": [],
+                          "total_posts_count": 3
+                        },
+                        {
+                          "name": "历史名人生平",
+                          "path": "/理念/事件/个人事件/事迹/生平经历/历史名人生平",
+                          "id": 15246,
+                          "source_stable_id": 803,
+                          "source_type": "实质",
+                          "description": "历史上重要人物的生平轨迹、事迹和经历",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15778,
+                          "element_count": 1,
+                          "elements": [
+                            {
+                              "name": "生平",
+                              "count": 1,
+                              "post_ids": [
+                                "03e3d299faba104965b33d87b5063eff"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 4,
+                          "children": [
+                            {
+                              "name": "传奇往事",
+                              "path": "/理念/事件/个人事件/事迹/生平经历/历史名人生平/传奇往事",
+                              "id": 15249,
+                              "source_stable_id": 809,
+                              "source_type": "实质",
+                              "description": "带有传奇色彩的历史人物故事和不平凡往事",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15246,
+                              "element_count": 1,
+                              "elements": [
+                                {
+                                  "name": "戴安娜·弗里兰人物志",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "82b864cd83e9a5f376214dbc341d6dad"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 1,
+                              "children": [],
+                              "total_posts_count": 0
+                            },
+                            {
+                              "name": "王室人物生平",
+                              "path": "/理念/事件/个人事件/事迹/生平经历/历史名人生平/王室人物生平",
+                              "id": 15314,
+                              "source_stable_id": 944,
+                              "source_type": "实质",
+                              "description": "王室成员及王室关联人物的生命历程、重要经历和人生轨迹,包括王妃、王后、君主等王室人物的完整生平事迹",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15246,
+                              "element_count": 2,
+                              "elements": [
+                                {
+                                  "name": "戴安娜·德·普瓦捷传奇",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "89627e4bf8ad865f175c54e3b0ddd2cd"
+                                  ]
+                                },
+                                {
+                                  "name": "戴安娜王妃生平",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "2e93c00132e3a6a30c06efb6984ab71a"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 2,
+                              "children": [],
+                              "total_posts_count": 0
+                            }
+                          ],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "教育职业背景",
+                          "path": "/理念/事件/个人事件/事迹/生平经历/教育职业背景",
+                          "id": 15247,
+                          "source_stable_id": 804,
+                          "source_type": "实质",
+                          "description": "个人的教育经历、职业履历和专业背景",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15778,
+                          "element_count": 8,
+                          "elements": [
+                            {
+                              "name": "人物履历",
+                              "count": 5,
+                              "post_ids": [
+                                "673d9a58000000000702450b",
+                                "68faf90d0000000005011fa2",
+                                "6902e20a0000000005030a7b",
+                                "69394a0b000000001f006ce6",
+                                "6944e9b5000000001e02472d"
+                              ]
+                            },
+                            {
+                              "name": "第三次创业",
+                              "count": 1,
+                              "post_ids": [
+                                "69437b6d000000001e0381c9"
+                              ]
+                            },
+                            {
+                              "name": "公益社工背景",
+                              "count": 1,
+                              "post_ids": [
+                                "69005a1e0000000004017637"
+                              ]
+                            },
+                            {
+                              "name": "医学世家出身",
+                              "count": 1,
+                              "post_ids": [
+                                "6732f52f000000001b013fdb"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 8,
+                          "children": [],
+                          "total_posts_count": 8
+                        }
+                      ],
+                      "total_posts_count": 11
+                    }
+                  ],
+                  "total_posts_count": 12
+                },
+                {
+                  "name": "趣闻轶事",
+                  "path": "/理念/事件/个人事件/趣闻轶事",
+                  "id": 15017,
+                  "source_stable_id": 280,
+                  "source_type": "实质",
+                  "description": "日常生活中有趣、幽默或意外的小事件和逸闻趣事",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 15721,
+                  "element_count": 9,
+                  "elements": [
+                    {
+                      "name": "红绳剧烈抖动",
+                      "count": 1,
+                      "post_ids": [
+                        "fc4773ccef61d3092666496328603e9d"
+                      ]
+                    },
+                    {
+                      "name": "尴尬事件",
+                      "count": 1,
+                      "post_ids": [
+                        "d7dcfed942f432bd9c75ec4e2cd31b99"
+                      ]
+                    },
+                    {
+                      "name": "历史轶事",
+                      "count": 1,
+                      "post_ids": [
+                        "7fc2ebb73d9fefe1e79111dd9b17ad65"
+                      ]
+                    },
+                    {
+                      "name": "轶事",
+                      "count": 3,
+                      "post_ids": [
+                        "27f97d45367f3d0662d3204b3a4b0fb9",
+                        "b485a7858fbfc4b74e805bfadf6fce90",
+                        "b5245c3e7b1c09af072ea40e41d3cca8"
+                      ]
+                    },
+                    {
+                      "name": "乌龙事件",
+                      "count": 1,
+                      "post_ids": [
+                        "68909e20000000000403fa4e"
+                      ]
+                    },
+                    {
+                      "name": "生活糗事",
+                      "count": 1,
+                      "post_ids": [
+                        "6794ca60000000001801ba29"
+                      ]
+                    },
+                    {
+                      "name": "大爷吐槽春晚",
+                      "count": 1,
+                      "post_ids": [
+                        "64554023"
+                      ]
+                    }
+                  ],
+                  "total_element_count": 9,
+                  "children": [],
+                  "total_posts_count": 2
+                }
+              ],
+              "total_posts_count": 14
+            },
+            {
+              "name": "历史事件",
+              "path": "/理念/事件/历史事件",
+              "id": 14892,
+              "source_stable_id": 79,
+              "source_type": "实质",
+              "description": "具有重要历史意义的公共事件,如战争、变革、重大历史节点等",
+              "category_nature": "维度",
+              "level": 3,
+              "parent_id": 15715,
+              "element_count": 3,
+              "elements": [
+                {
+                  "name": "历史",
+                  "count": 2,
+                  "post_ids": [
+                    "27f97d45367f3d0662d3204b3a4b0fb9",
+                    "9b95ed26ea9f265079b09e2d1032bc7c"
+                  ]
+                },
+                {
+                  "name": "历史影像",
+                  "count": 1,
+                  "post_ids": [
+                    "03e3d299faba104965b33d87b5063eff"
+                  ]
+                }
+              ],
+              "total_element_count": 11,
+              "children": [
+                {
+                  "name": "国家大事",
+                  "path": "/理念/事件/历史事件/国家大事",
+                  "id": 14903,
+                  "source_stable_id": 110,
+                  "source_type": "实质",
+                  "description": "战争、阅兵、政治变革等具有重大历史意义的国家级事件",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 14892,
+                  "element_count": 1,
+                  "elements": [
+                    {
+                      "name": "河南暴雨",
+                      "count": 1,
+                      "post_ids": [
+                        "60332209"
+                      ]
+                    }
+                  ],
+                  "total_element_count": 8,
+                  "children": [
+                    {
+                      "name": "国家建设",
+                      "path": "/理念/事件/历史事件/国家大事/国家建设",
+                      "id": 14942,
+                      "source_stable_id": 242,
+                      "source_type": "实质",
+                      "description": "国家基础设施建设、发展成就和历史性变迁",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 14903,
+                      "element_count": 2,
+                      "elements": [
+                        {
+                          "name": "交公粮",
+                          "count": 2,
+                          "post_ids": [
+                            "59587187"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 2,
+                      "children": [],
+                      "total_posts_count": 0
+                    },
+                    {
+                      "name": "外交博弈",
+                      "path": "/理念/事件/历史事件/国家大事/外交博弈",
+                      "id": 15965,
+                      "source_stable_id": 239,
+                      "source_type": "实质",
+                      "description": "国际关系、大国角力、外交谈判等国际政治事件",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 14903,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 2,
+                      "children": [
+                        {
+                          "name": "具体事件",
+                          "path": "/理念/事件/历史事件/国家大事/外交博弈/具体事件",
+                          "id": 15930,
+                          "source_stable_id": 1409,
+                          "source_type": "实质",
+                          "description": "具体的历史外交事件,包括外交访问、条约文件、重大变局等",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15965,
+                          "element_count": 0,
+                          "elements": [],
+                          "total_element_count": 2,
+                          "children": [
+                            {
+                              "name": "外交访问",
+                              "path": "/理念/事件/历史事件/国家大事/外交博弈/具体事件/外交访问",
+                              "id": 15593,
+                              "source_stable_id": 1412,
+                              "source_type": "实质",
+                              "description": "国家领导人或外交官员的正式访问活动",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15930,
+                              "element_count": 1,
+                              "elements": [
+                                {
+                                  "name": "访问泰国",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "b485a7858fbfc4b74e805bfadf6fce90"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 1,
+                              "children": [],
+                              "total_posts_count": 0
+                            },
+                            {
+                              "name": "条约文件",
+                              "path": "/理念/事件/历史事件/国家大事/外交博弈/具体事件/条约文件",
+                              "id": 15594,
+                              "source_stable_id": 1413,
+                              "source_type": "实质",
+                              "description": "国际条约、公告、协议等外交文件及相关事件",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15930,
+                              "element_count": 1,
+                              "elements": [
+                                {
+                                  "name": "事件",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "b5245c3e7b1c09af072ea40e41d3cca8"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 1,
+                              "children": [],
+                              "total_posts_count": 0
+                            }
+                          ],
+                          "total_posts_count": 0
+                        }
+                      ],
+                      "total_posts_count": 0
+                    },
+                    {
+                      "name": "战争冲突",
+                      "path": "/理念/事件/历史事件/国家大事/战争冲突",
+                      "id": 15779,
+                      "source_stable_id": 238,
+                      "source_type": "实质",
+                      "description": "战争、军事行动、武力对抗等军事类国家重大事件",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 14903,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 2,
+                      "children": [
+                        {
+                          "name": "现代军事行动",
+                          "path": "/理念/事件/历史事件/国家大事/战争冲突/现代军事行动",
+                          "id": 15585,
+                          "source_stable_id": 1394,
+                          "source_type": "实质",
+                          "description": "当代发生的军事演习、军事对抗等军事活动",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15779,
+                          "element_count": 2,
+                          "elements": [
+                            {
+                              "name": "正义使命-2025演习",
+                              "count": 1,
+                              "post_ids": [
+                                "d07f1c79dd4ef03b92592fa81d54755b"
+                              ]
+                            },
+                            {
+                              "name": "正义使命-2025围台军演",
+                              "count": 1,
+                              "post_ids": [
+                                "afb320f2428ca07a2743d96dc21e4127"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 2,
+                          "children": [],
+                          "total_posts_count": 0
+                        }
+                      ],
+                      "total_posts_count": 0
+                    },
+                    {
+                      "name": "政治变革",
+                      "path": "/理念/事件/历史事件/国家大事/政治变革",
+                      "id": 14941,
+                      "source_stable_id": 240,
+                      "source_type": "实质",
+                      "description": "政治运动、制度变革、重大决策等改变国家走向的政治事件",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 14903,
+                      "element_count": 1,
+                      "elements": [
+                        {
+                          "name": "二二八",
+                          "count": 1,
+                          "post_ids": [
+                            "333bd89e657acbcd9b26201f93cd8993"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 1,
+                      "children": [],
+                      "total_posts_count": 0
+                    }
+                  ],
+                  "total_posts_count": 0
+                }
+              ],
+              "total_posts_count": 0
+            },
+            {
+              "name": "商业事件",
+              "path": "/理念/事件/商业事件",
+              "id": 15969,
+              "source_stable_id": 255,
+              "source_type": "实质",
+              "description": "企业融资、行业峰会、商业活动等商业领域发生的事件",
+              "category_nature": "维度",
+              "level": 3,
+              "parent_id": 15715,
+              "element_count": 0,
+              "elements": [],
+              "total_element_count": 54,
+              "children": [
+                {
+                  "name": "企业动态",
+                  "path": "/理念/事件/商业事件/企业动态",
+                  "id": 15790,
+                  "source_stable_id": 272,
+                  "source_type": "实质",
+                  "description": "企业经营中的破产、促销、产品发布等非融资类商业事件",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 15969,
+                  "element_count": 0,
+                  "elements": [],
+                  "total_element_count": 13,
+                  "children": [
+                    {
+                      "name": "企业融资上市",
+                      "path": "/理念/事件/商业事件/企业动态/企业融资上市",
+                      "id": 15544,
+                      "source_stable_id": 1333,
+                      "source_type": "实质",
+                      "description": "企业通过资本市场进行IPO、挂牌上市等融资活动",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15790,
+                      "element_count": 1,
+                      "elements": [
+                        {
+                          "name": "遇见小面挂牌上市",
+                          "count": 1,
+                          "post_ids": [
+                            "69363584000000001f006a4c"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 1,
+                      "children": [],
+                      "total_posts_count": 1
+                    },
+                    {
+                      "name": "品牌合作事件",
+                      "path": "/理念/事件/商业事件/企业动态/品牌合作事件",
+                      "id": 15546,
+                      "source_stable_id": 1336,
+                      "source_type": "实质",
+                      "description": "品牌之间的联名、跨界合作等商业合作事件",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15790,
+                      "element_count": 1,
+                      "elements": [
+                        {
+                          "name": "雀巢咖啡×线条小狗联名",
+                          "count": 1,
+                          "post_ids": [
+                            "685e7903000000000b02c13e"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 1,
+                      "children": [],
+                      "total_posts_count": 1
+                    },
+                    {
+                      "name": "机构公共事件",
+                      "path": "/理念/事件/商业事件/企业动态/机构公共事件",
+                      "id": 15547,
+                      "source_stable_id": 1337,
+                      "source_type": "实质",
+                      "description": "大学、媒体等非企业机构的政策调整、改革等公共事件",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15790,
+                      "element_count": 1,
+                      "elements": [
+                        {
+                          "name": "春晚改革",
+                          "count": 1,
+                          "post_ids": [
+                            "64585144"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 1,
+                      "children": [],
+                      "total_posts_count": 0
+                    },
+                    {
+                      "name": "营销推广活动",
+                      "path": "/理念/事件/商业事件/企业动态/营销推广活动",
+                      "id": 15545,
+                      "source_stable_id": 1335,
+                      "source_type": "实质",
+                      "description": "企业开展的促销、补贴、互动活动等营销推广行为",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15790,
+                      "element_count": 10,
+                      "elements": [
+                        {
+                          "name": "支付宝碰一下",
+                          "count": 1,
+                          "post_ids": [
+                            "685f974300000000120144db"
+                          ]
+                        },
+                        {
+                          "name": "空调促销活动",
+                          "count": 1,
+                          "post_ids": [
+                            "684a7e3c0000000023012b8d"
+                          ]
+                        },
+                        {
+                          "name": "iPhone 13全系半价换电池",
+                          "count": 1,
+                          "post_ids": [
+                            "695f0b2b000000001a027365"
+                          ]
+                        },
+                        {
+                          "name": "限时活动",
+                          "count": 1,
+                          "post_ids": [
+                            "695f0b2b000000001a027365"
+                          ]
+                        },
+                        {
+                          "name": "小红书市集",
+                          "count": 1,
+                          "post_ids": [
+                            "69535514000000001e032b26"
+                          ]
+                        },
+                        {
+                          "name": "美食活动",
+                          "count": 1,
+                          "post_ids": [
+                            "68ef83150000000007035f42"
+                          ]
+                        },
+                        {
+                          "name": "支付宝看图猜名挑战",
+                          "count": 1,
+                          "post_ids": [
+                            "68d1ebb8000000001203fd96"
+                          ]
+                        },
+                        {
+                          "name": "支付宝健康挑战赛",
+                          "count": 1,
+                          "post_ids": [
+                            "68d1ebb8000000001203fd96"
+                          ]
+                        },
+                        {
+                          "name": "淘宝国家补贴",
+                          "count": 1,
+                          "post_ids": [
+                            "688366bd000000000d024147"
+                          ]
+                        },
+                        {
+                          "name": "天猫超级88活动",
+                          "count": 1,
+                          "post_ids": [
+                            "686cd3a5000000000d0180b0"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 10,
+                      "children": [],
+                      "total_posts_count": 8
+                    }
+                  ],
+                  "total_posts_count": 10
+                },
+                {
+                  "name": "创投活动",
+                  "path": "/理念/事件/商业事件/创投活动",
+                  "id": 15783,
+                  "source_stable_id": 256,
+                  "source_type": "实质",
+                  "description": "企业融资、创投峰会、行业会议等商业投资领域的事件活动",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 15969,
+                  "element_count": 0,
+                  "elements": [],
+                  "total_element_count": 41,
+                  "children": [
+                    {
+                      "name": "上市事件",
+                      "path": "/理念/事件/商业事件/创投活动/上市事件",
+                      "id": 15540,
+                      "source_stable_id": 1329,
+                      "source_type": "实质",
+                      "description": "企业首次公开募股及上市申请等IPO相关事件",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15783,
+                      "element_count": 6,
+                      "elements": [
+                        {
+                          "name": "港股IPO",
+                          "count": 2,
+                          "post_ids": [
+                            "69157ac40000000005039157",
+                            "694a6caf000000001f00e112"
+                          ]
+                        },
+                        {
+                          "name": "移芯通信IPO事件",
+                          "count": 1,
+                          "post_ids": [
+                            "69394a0b000000001f006ce6"
+                          ]
+                        },
+                        {
+                          "name": "摩尔线程IPO",
+                          "count": 1,
+                          "post_ids": [
+                            "69328436000000001f006a54"
+                          ]
+                        },
+                        {
+                          "name": "希迪智驾IPO",
+                          "count": 2,
+                          "post_ids": [
+                            "6731b884000000001901b8d3"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 6,
+                      "children": [],
+                      "total_posts_count": 5
+                    },
+                    {
+                      "name": "融资事件",
+                      "path": "/理念/事件/商业事件/创投活动/融资事件",
+                      "id": 15539,
+                      "source_stable_id": 1328,
+                      "source_type": "实质",
+                      "description": "企业通过出让股权获取外部资金的各类融资活动",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15783,
+                      "element_count": 11,
+                      "elements": [
+                        {
+                          "name": "融资事件",
+                          "count": 1,
+                          "post_ids": [
+                            "69491c99000000001e02c765"
+                          ]
+                        },
+                        {
+                          "name": "巨额融资",
+                          "count": 4,
+                          "post_ids": [
+                            "6932744c000000001f00c9f3",
+                            "69437b6d000000001e0381c9",
+                            "69491c99000000001e02c765"
+                          ]
+                        },
+                        {
+                          "name": "融资历程",
+                          "count": 6,
+                          "post_ids": [
+                            "68f1e631000000000503111b",
+                            "68fa08f60000000005030ddc",
+                            "68faf90d0000000005011fa2",
+                            "69157ac40000000005039157",
+                            "692006ef000000001f008b41",
+                            "69363584000000001f006a4c"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 11,
+                      "children": [],
+                      "total_posts_count": 9
+                    },
+                    {
+                      "name": "行业峰会",
+                      "path": "/理念/事件/商业事件/创投活动/行业峰会",
+                      "id": 15541,
+                      "source_stable_id": 1330,
+                      "source_type": "实质",
+                      "description": "商业、技术、创投等领域的峰会、论坛、大会等会议活动",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15783,
+                      "element_count": 20,
+                      "elements": [
+                        {
+                          "name": "活动",
+                          "count": 5,
+                          "post_ids": [
+                            "675fec1f000000000800c6f4",
+                            "6781eb19000000000b039867",
+                            "68b10b46000000001c00ca6c",
+                            "68c15181000000001b01c358",
+                            "68ca25bc000000000e023656"
+                          ]
+                        },
+                        {
+                          "name": "re:Invent 2025技术大会",
+                          "count": 1,
+                          "post_ids": [
+                            "692fe421000000001f00691a"
+                          ]
+                        },
+                        {
+                          "name": "云计算技术大会",
+                          "count": 1,
+                          "post_ids": [
+                            "692fe421000000001f00691a"
+                          ]
+                        },
+                        {
+                          "name": "多城巡演",
+                          "count": 1,
+                          "post_ids": [
+                            "692fe421000000001f00691a"
+                          ]
+                        },
+                        {
+                          "name": "ADD数据应用场景大会",
+                          "count": 2,
+                          "post_ids": [
+                            "6912d90f00000000050113b3",
+                            "69297e47000000001e028ec3"
+                          ]
+                        },
+                        {
+                          "name": "行业会议/活动",
+                          "count": 6,
+                          "post_ids": [
+                            "68b10b46000000001c00ca6c",
+                            "68c15181000000001b01c358",
+                            "68ca25bc000000000e023656",
+                            "6912d90f00000000050113b3",
+                            "69297dde000000001f006b90",
+                            "69297e47000000001e028ec3"
+                          ]
+                        },
+                        {
+                          "name": "DEMO CHINA",
+                          "count": 1,
+                          "post_ids": [
+                            "68b10b46000000001c00ca6c"
+                          ]
+                        },
+                        {
+                          "name": "2025亚马逊云科技出海大会",
+                          "count": 1,
+                          "post_ids": [
+                            "67fd299a000000001c00cf5d"
+                          ]
+                        },
+                        {
+                          "name": "出海行业大会",
+                          "count": 1,
+                          "post_ids": [
+                            "67fd299a000000001c00cf5d"
+                          ]
+                        },
+                        {
+                          "name": "StartmeupHK",
+                          "count": 1,
+                          "post_ids": [
+                            "6732cd8a000000001b02f948"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 20,
+                      "children": [],
+                      "total_posts_count": 11
+                    },
+                    {
+                      "name": "行业报告",
+                      "path": "/理念/事件/商业事件/创投活动/行业报告",
+                      "id": 15543,
+                      "source_stable_id": 1332,
+                      "source_type": "实质",
+                      "description": "创投领域的研究报告、洞察报告等信息发布",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15783,
+                      "element_count": 2,
+                      "elements": [
+                        {
+                          "name": "2024中国企业创投发展报告",
+                          "count": 1,
+                          "post_ids": [
+                            "67e27e6e000000000b017c96"
+                          ]
+                        },
+                        {
+                          "name": "2024AIGC创新应用洞察",
+                          "count": 1,
+                          "post_ids": [
+                            "6735b1a0000000001b0137f5"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 2,
+                      "children": [],
+                      "total_posts_count": 2
+                    },
+                    {
+                      "name": "评选榜单",
+                      "path": "/理念/事件/商业事件/创投活动/评选榜单",
+                      "id": 15542,
+                      "source_stable_id": 1331,
+                      "source_type": "实质",
+                      "description": "创投领域的评选、排名、榜单等竞评活动",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15783,
+                      "element_count": 2,
+                      "elements": [
+                        {
+                          "name": "2025硬科技创变者50强评选",
+                          "count": 1,
+                          "post_ids": [
+                            "689b158f000000001b03e512"
+                          ]
+                        },
+                        {
+                          "name": "评选活动",
+                          "count": 1,
+                          "post_ids": [
+                            "689b158f000000001b03e512"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 2,
+                      "children": [],
+                      "total_posts_count": 1
+                    }
+                  ],
+                  "total_posts_count": 27
+                }
+              ],
+              "total_posts_count": 36
+            },
+            {
+              "name": "时政事件",
+              "path": "/理念/事件/时政事件",
+              "id": 15880,
+              "source_stable_id": 1045,
+              "source_type": "实质",
+              "description": "当代政治活动中发生的选举、政策变动等时事性公共事件",
+              "category_nature": "维度",
+              "level": 3,
+              "parent_id": 15715,
+              "element_count": 0,
+              "elements": [],
+              "total_element_count": 23,
+              "children": [
+                {
+                  "name": "政务活动",
+                  "path": "/理念/事件/时政事件/政务活动",
+                  "id": 15364,
+                  "source_stable_id": 1049,
+                  "source_type": "实质",
+                  "description": "政党内部事务、人事变动、行政处分等非选举类时政活动事件",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 15880,
+                  "element_count": 9,
+                  "elements": [
+                    {
+                      "name": "郑丽文高举谢龙介手",
+                      "count": 1,
+                      "post_ids": [
+                        "59c0ba8a450a7d2327b78d72c0697938"
+                      ]
+                    },
+                    {
+                      "name": "董事会改选",
+                      "count": 1,
+                      "post_ids": [
+                        "ef63cef6ce5336e59ccb523e35f355dd"
+                      ]
+                    },
+                    {
+                      "name": "官方惩戒",
+                      "count": 1,
+                      "post_ids": [
+                        "62da797f45d5b2a8ebd9149c3b52c719"
+                      ]
+                    },
+                    {
+                      "name": "国民党时隔9年首发年终奖",
+                      "count": 1,
+                      "post_ids": [
+                        "03c54bcf569a9f957f3879f5e87cbb19"
+                      ]
+                    },
+                    {
+                      "name": "国民党发放奖金",
+                      "count": 1,
+                      "post_ids": [
+                        "03c54bcf569a9f957f3879f5e87cbb19"
+                      ]
+                    },
+                    {
+                      "name": "民众党民代大换血",
+                      "count": 1,
+                      "post_ids": [
+                        "0834b527a0fe32c83eb9be0b1cf45140"
+                      ]
+                    },
+                    {
+                      "name": "高金素梅被查",
+                      "count": 1,
+                      "post_ids": [
+                        "22bcaccb2262e8864af03c8323490832"
+                      ]
+                    },
+                    {
+                      "name": "赖清德遭呕吐喷溅",
+                      "count": 1,
+                      "post_ids": [
+                        "d7dcfed942f432bd9c75ec4e2cd31b99"
+                      ]
+                    },
+                    {
+                      "name": "柯建铭时代终结",
+                      "count": 1,
+                      "post_ids": [
+                        "b76365fa6008e98aea8b6876bcc4e3d0"
+                      ]
+                    }
+                  ],
+                  "total_element_count": 9,
+                  "children": [],
+                  "total_posts_count": 0
+                },
+                {
+                  "name": "选举活动",
+                  "path": "/理念/事件/时政事件/选举活动",
+                  "id": 15363,
+                  "source_stable_id": 1048,
+                  "source_type": "实质",
+                  "description": "各级选举、党内竞选和选举合作等政治选举事件",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 15880,
+                  "element_count": 14,
+                  "elements": [
+                    {
+                      "name": "政治选举",
+                      "count": 1,
+                      "post_ids": [
+                        "9c87381270abacce95e103b3a000e086"
+                      ]
+                    },
+                    {
+                      "name": "国民党主席选举",
+                      "count": 2,
+                      "post_ids": [
+                        "b4fbfb562ad4863ceb0a12e7110f3da7",
+                        "b64188c6bcb0fb359d8e8075671584d6"
+                      ]
+                    },
+                    {
+                      "name": "郑丽文接棒国民党主席",
+                      "count": 1,
+                      "post_ids": [
+                        "b9bc7d3c46583a41a76867f0ac7e62f1"
+                      ]
+                    },
+                    {
+                      "name": "2028年台湾地区领导人选举",
+                      "count": 1,
+                      "post_ids": [
+                        "8d43fa69c8f4f5e7d87ec45244cbd97c"
+                      ]
+                    },
+                    {
+                      "name": "台湾选举",
+                      "count": 1,
+                      "post_ids": [
+                        "8d43fa69c8f4f5e7d87ec45244cbd97c"
+                      ]
+                    },
+                    {
+                      "name": "蓝白合",
+                      "count": 2,
+                      "post_ids": [
+                        "752267d0ca2695c2ceb816a43d943a6a",
+                        "8d43fa69c8f4f5e7d87ec45244cbd97c"
+                      ]
+                    },
+                    {
+                      "name": "2026台南市长选举",
+                      "count": 1,
+                      "post_ids": [
+                        "59c0ba8a450a7d2327b78d72c0697938"
+                      ]
+                    },
+                    {
+                      "name": "台南市长选举",
+                      "count": 1,
+                      "post_ids": [
+                        "59c0ba8a450a7d2327b78d72c0697938"
+                      ]
+                    },
+                    {
+                      "name": "第四次政党轮替",
+                      "count": 1,
+                      "post_ids": [
+                        "2a2c642e67822ed8c11f9d306e815a35"
+                      ]
+                    },
+                    {
+                      "name": "2026台湾县市长选战博弈",
+                      "count": 1,
+                      "post_ids": [
+                        "fa0633c278660309648633dea6294cb1"
+                      ]
+                    },
+                    {
+                      "name": "台湾县市长选举",
+                      "count": 2,
+                      "post_ids": [
+                        "752267d0ca2695c2ceb816a43d943a6a"
+                      ]
+                    }
+                  ],
+                  "total_element_count": 14,
+                  "children": [],
+                  "total_posts_count": 0
+                }
+              ],
+              "total_posts_count": 0
+            }
+          ],
+          "total_posts_count": 47
+        },
+        {
+          "name": "现象",
+          "path": "/理念/现象",
+          "id": 15737,
+          "source_stable_id": 88,
+          "source_type": "实质",
+          "description": "可观察的生活状态、社会趋势和规律性模式",
+          "category_nature": "内容",
+          "level": 2,
+          "parent_id": 15944,
+          "element_count": 0,
+          "elements": [],
+          "total_element_count": 237,
+          "children": [
+            {
+              "name": "生活状态",
+              "path": "/理念/现象/生活状态",
+              "id": 14895,
+              "source_stable_id": 89,
+              "source_type": "实质",
+              "description": "不同人生阶段和群体的生活现状与经历",
+              "category_nature": "维度",
+              "level": 3,
+              "parent_id": 15737,
+              "element_count": 5,
+              "elements": [
+                {
+                  "name": "退休生活",
+                  "count": 3,
+                  "post_ids": [
+                    "21006075"
+                  ]
+                },
+                {
+                  "name": "见闻",
+                  "count": 2,
+                  "post_ids": [
+                    "62025412",
+                    "62255386"
+                  ]
+                }
+              ],
+              "total_element_count": 87,
+              "children": [
+                {
+                  "name": "个人境遇",
+                  "path": "/理念/现象/生活状态/个人境遇",
+                  "id": 15748,
+                  "source_stable_id": 128,
+                  "source_type": "实质",
+                  "description": "个人的生活条件、物质状态、日常细节等具体生存状况",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 14895,
+                  "element_count": 0,
+                  "elements": [],
+                  "total_element_count": 82,
+                  "children": [
+                    {
+                      "name": "生活状态",
+                      "path": "/理念/现象/生活状态/个人境遇/生活状态",
+                      "id": 15821,
+                      "source_stable_id": 597,
+                      "source_type": "实质",
+                      "description": "日常生活的整体状态、节奏和具体细节",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15748,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 14,
+                      "children": [
+                        {
+                          "name": "特殊环境",
+                          "path": "/理念/现象/生活状态/个人境遇/生活状态/特殊环境",
+                          "id": 15475,
+                          "source_stable_id": 1239,
+                          "source_type": "实质",
+                          "description": "特定制度、机构或身份背景下的生活状态",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15821,
+                          "element_count": 3,
+                          "elements": [
+                            {
+                              "name": "监所生活",
+                              "count": 1,
+                              "post_ids": [
+                                "e04fd15a06f8c97486e48990e85c8492"
+                              ]
+                            },
+                            {
+                              "name": "监狱生存",
+                              "count": 1,
+                              "post_ids": [
+                                "e04fd15a06f8c97486e48990e85c8492"
+                              ]
+                            },
+                            {
+                              "name": "王室生活",
+                              "count": 1,
+                              "post_ids": [
+                                "b5245c3e7b1c09af072ea40e41d3cca8"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 3,
+                          "children": [],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "生存压力",
+                          "path": "/理念/现象/生活状态/个人境遇/生活状态/生存压力",
+                          "id": 15476,
+                          "source_stable_id": 1240,
+                          "source_type": "实质",
+                          "description": "生活中面临的压力、困境和挑战",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15821,
+                          "element_count": 3,
+                          "elements": [
+                            {
+                              "name": "断层",
+                              "count": 1,
+                              "post_ids": [
+                                "62948012"
+                              ]
+                            },
+                            {
+                              "name": "重复折腾",
+                              "count": 1,
+                              "post_ids": [
+                                "57121511"
+                              ]
+                            },
+                            {
+                              "name": "重压",
+                              "count": 1,
+                              "post_ids": [
+                                "55102015"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 3,
+                          "children": [],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "生活品质",
+                          "path": "/理念/现象/生活状态/个人境遇/生活状态/生活品质",
+                          "id": 15473,
+                          "source_stable_id": 1237,
+                          "source_type": "实质",
+                          "description": "物质条件、生活水平和生活方式相关的状态描述",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15821,
+                          "element_count": 1,
+                          "elements": [
+                            {
+                              "name": "物质",
+                              "count": 1,
+                              "post_ids": [
+                                "57919607"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 1,
+                          "children": [],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "生活概况",
+                          "path": "/理念/现象/生活状态/个人境遇/生活状态/生活概况",
+                          "id": 15472,
+                          "source_stable_id": 1236,
+                          "source_type": "实质",
+                          "description": "对个人或群体生活状态的整体性描述和概括",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15821,
+                          "element_count": 4,
+                          "elements": [
+                            {
+                              "name": "生活",
+                              "count": 2,
+                              "post_ids": [
+                                "65eea166000000000d00c6d8",
+                                "68909e20000000000403fa4e"
+                              ]
+                            },
+                            {
+                              "name": "群体状态",
+                              "count": 1,
+                              "post_ids": [
+                                "62025412"
+                              ]
+                            },
+                            {
+                              "name": "生存状态",
+                              "count": 1,
+                              "post_ids": [
+                                "55102015"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 4,
+                          "children": [],
+                          "total_posts_count": 2
+                        },
+                        {
+                          "name": "生活细节",
+                          "path": "/理念/现象/生活状态/个人境遇/生活状态/生活细节",
+                          "id": 15474,
+                          "source_stable_id": 1238,
+                          "source_type": "实质",
+                          "description": "日常生活中的具体琐事、片段和细节描写",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15821,
+                          "element_count": 3,
+                          "elements": [
+                            {
+                              "name": "吃货备忘",
+                              "count": 1,
+                              "post_ids": [
+                                "68528a360000000010010c6d"
+                              ]
+                            },
+                            {
+                              "name": "养宠烦恼",
+                              "count": 1,
+                              "post_ids": [
+                                "68fb6a5c000000000302e5de"
+                              ]
+                            },
+                            {
+                              "name": "生存细节",
+                              "count": 1,
+                              "post_ids": [
+                                "64770257"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 3,
+                          "children": [],
+                          "total_posts_count": 2
+                        }
+                      ],
+                      "total_posts_count": 4
+                    },
+                    {
+                      "name": "经济境遇",
+                      "path": "/理念/现象/生活状态/个人境遇/经济境遇",
+                      "id": 15106,
+                      "source_stable_id": 596,
+                      "source_type": "实质",
+                      "description": "经济压力、生存成本、物质条件等财务相关的生活状况",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15748,
+                      "element_count": 9,
+                      "elements": [
+                        {
+                          "name": "生存困境",
+                          "count": 1,
+                          "post_ids": [
+                            "3b8bfac263ace2eb578c85c98630e566"
+                          ]
+                        },
+                        {
+                          "name": "财务困境",
+                          "count": 1,
+                          "post_ids": [
+                            "03c54bcf569a9f957f3879f5e87cbb19"
+                          ]
+                        },
+                        {
+                          "name": "生活困境",
+                          "count": 2,
+                          "post_ids": [
+                            "55994947",
+                            "64770257"
+                          ]
+                        },
+                        {
+                          "name": "步步赶不上",
+                          "count": 1,
+                          "post_ids": [
+                            "64504122"
+                          ]
+                        },
+                        {
+                          "name": "夹缝生存",
+                          "count": 1,
+                          "post_ids": [
+                            "64504122"
+                          ]
+                        },
+                        {
+                          "name": "电费",
+                          "count": 1,
+                          "post_ids": [
+                            "64095002"
+                          ]
+                        },
+                        {
+                          "name": "房贷压力",
+                          "count": 1,
+                          "post_ids": [
+                            "59583293"
+                          ]
+                        },
+                        {
+                          "name": "生活成本高昂",
+                          "count": 1,
+                          "post_ids": [
+                            "56977419"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 9,
+                      "children": [],
+                      "total_posts_count": 0
+                    },
+                    {
+                      "name": "群体境遇",
+                      "path": "/理念/现象/生活状态/个人境遇/群体境遇",
+                      "id": 15108,
+                      "source_stable_id": 599,
+                      "source_type": "实质",
+                      "description": "特定群体(农民、军人、老年人等)的生存状况",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15748,
+                      "element_count": 5,
+                      "elements": [
+                        {
+                          "name": "农村少年",
+                          "count": 1,
+                          "post_ids": [
+                            "673d9a58000000000702450b"
+                          ]
+                        },
+                        {
+                          "name": "底层生活",
+                          "count": 3,
+                          "post_ids": [
+                            "64610880",
+                            "64855234"
+                          ]
+                        },
+                        {
+                          "name": "战士艰苦环境",
+                          "count": 1,
+                          "post_ids": [
+                            "63762367"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 5,
+                      "children": [],
+                      "total_posts_count": 1
+                    },
+                    {
+                      "name": "职场境遇",
+                      "path": "/理念/现象/生活状态/个人境遇/职场境遇",
+                      "id": 15105,
+                      "source_stable_id": 595,
+                      "source_type": "实质",
+                      "description": "职场环境中的工作状态、压力和生存状况",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15748,
+                      "element_count": 21,
+                      "elements": [
+                        {
+                          "name": "打工人现状",
+                          "count": 3,
+                          "post_ids": [
+                            "6960924b000000001a037a1c",
+                            "696d7ac4000000000e03e459",
+                            "696ede36000000001a028e03"
+                          ]
+                        },
+                        {
+                          "name": "职场生活",
+                          "count": 1,
+                          "post_ids": [
+                            "696d7ac4000000000e03e459"
+                          ]
+                        },
+                        {
+                          "name": "职场摸鱼",
+                          "count": 2,
+                          "post_ids": [
+                            "68528a360000000010010c6d",
+                            "685e7903000000000b02c13e"
+                          ]
+                        },
+                        {
+                          "name": "早起困倦",
+                          "count": 1,
+                          "post_ids": [
+                            "67d7a294000000001c03eef9"
+                          ]
+                        },
+                        {
+                          "name": "防老板摸鱼",
+                          "count": 2,
+                          "post_ids": [
+                            "662096bc000000000d03035d",
+                            "67ee4e29000000001200f3c2"
+                          ]
+                        },
+                        {
+                          "name": "娱乐与工作",
+                          "count": 2,
+                          "post_ids": [
+                            "671f7fab000000003c01fffc",
+                            "67c17568000000000603b420"
+                          ]
+                        },
+                        {
+                          "name": "崩溃又自洽",
+                          "count": 2,
+                          "post_ids": [
+                            "671f7fab000000003c01fffc",
+                            "67c17568000000000603b420"
+                          ]
+                        },
+                        {
+                          "name": "移动办公",
+                          "count": 1,
+                          "post_ids": [
+                            "671f7fab000000003c01fffc"
+                          ]
+                        },
+                        {
+                          "name": "打工生活",
+                          "count": 1,
+                          "post_ids": [
+                            "68ff53770000000007000d54"
+                          ]
+                        },
+                        {
+                          "name": "职场透明人",
+                          "count": 1,
+                          "post_ids": [
+                            "68f78b950000000007021a20"
+                          ]
+                        },
+                        {
+                          "name": "处境",
+                          "count": 1,
+                          "post_ids": [
+                            "68f78b950000000007021a20"
+                          ]
+                        },
+                        {
+                          "name": "卑微感",
+                          "count": 1,
+                          "post_ids": [
+                            "68f78b950000000007021a20"
+                          ]
+                        },
+                        {
+                          "name": "崩溃现状",
+                          "count": 2,
+                          "post_ids": [
+                            "68946e0d000000002500ef6e",
+                            "68d1ebb8000000001203fd96"
+                          ]
+                        },
+                        {
+                          "name": "一周精神状态",
+                          "count": 1,
+                          "post_ids": [
+                            "68737e97000000000d027b81"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 21,
+                      "children": [],
+                      "total_posts_count": 15
+                    },
+                    {
+                      "name": "身心状态",
+                      "path": "/理念/现象/生活状态/个人境遇/身心状态",
+                      "id": 15107,
+                      "source_stable_id": 598,
+                      "source_type": "实质",
+                      "description": "身体健康、心理情绪等个人身心层面的具体状况",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15748,
+                      "element_count": 33,
+                      "elements": [
+                        {
+                          "name": "生活话题",
+                          "count": 6,
+                          "post_ids": [
+                            "6965adce000000001a02a701",
+                            "6966f1df000000001a032514",
+                            "69685275000000000e03c790",
+                            "69698d0c000000001a036078",
+                            "697171fd000000000d00bee8",
+                            "697569b0000000001a02448c"
+                          ]
+                        },
+                        {
+                          "name": "情绪变化",
+                          "count": 1,
+                          "post_ids": [
+                            "66619827000000000600486f"
+                          ]
+                        },
+                        {
+                          "name": "护肤需求",
+                          "count": 13,
+                          "post_ids": [
+                            "661b9936000000001b012aa5",
+                            "662096bc000000000d03035d",
+                            "6634a322000000001e01bcd5",
+                            "664599b9000000001e01d218",
+                            "665971bb000000001303d005",
+                            "6666b3a10000000015008834",
+                            "66ee55d200000000270066a8",
+                            "66f51b90000000002a036660",
+                            "671f7fab000000003c01fffc",
+                            "6781e8640000000001001d18",
+                            "67bc233e000000000b0160fa",
+                            "6843fb690000000012001659",
+                            "68c909c3000000001302ad69"
+                          ]
+                        },
+                        {
+                          "name": "问题场景",
+                          "count": 2,
+                          "post_ids": [
+                            "675fcd19000000000103d470",
+                            "6843fb690000000012001659"
+                          ]
+                        },
+                        {
+                          "name": "晒后",
+                          "count": 2,
+                          "post_ids": [
+                            "675fcd19000000000103d470",
+                            "6843fb690000000012001659"
+                          ]
+                        },
+                        {
+                          "name": "厌学心态",
+                          "count": 2,
+                          "post_ids": [
+                            "68b69ea9000000001c035a4d",
+                            "68c3933e000000001d00a902"
+                          ]
+                        },
+                        {
+                          "name": "饮食双标",
+                          "count": 2,
+                          "post_ids": [
+                            "689bf685000000001d0021d3"
+                          ]
+                        },
+                        {
+                          "name": "情感缺失",
+                          "count": 2,
+                          "post_ids": [
+                            "55102015",
+                            "65135248"
+                          ]
+                        },
+                        {
+                          "name": "生活压力",
+                          "count": 1,
+                          "post_ids": [
+                            "64965843"
+                          ]
+                        },
+                        {
+                          "name": "生存现状",
+                          "count": 2,
+                          "post_ids": [
+                            "59422696",
+                            "64770257"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 33,
+                      "children": [],
+                      "total_posts_count": 24
+                    }
+                  ],
+                  "total_posts_count": 41
+                }
+              ],
+              "total_posts_count": 41
+            },
+            {
+              "name": "社会趋势",
+              "path": "/理念/现象/社会趋势",
+              "id": 15785,
+              "source_stable_id": 258,
+              "source_type": "实质",
+              "description": "社会经济、商业创投、技术发展等领域可观察的趋势性变化",
+              "category_nature": "维度",
+              "level": 3,
+              "parent_id": 15737,
+              "element_count": 0,
+              "elements": [],
+              "total_element_count": 52,
+              "children": [
+                {
+                  "name": "商业创投",
+                  "path": "/理念/现象/社会趋势/商业创投",
+                  "id": 14946,
+                  "source_stable_id": 259,
+                  "source_type": "实质",
+                  "description": "创业热潮、技术替代、行业变迁等商业投资领域的趋势现象",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 15785,
+                  "element_count": 37,
+                  "elements": [
+                    {
+                      "name": "技术替代",
+                      "count": 1,
+                      "post_ids": [
+                        "ff037b4ada852d5835240ffded2f7256"
+                      ]
+                    },
+                    {
+                      "name": "学霸创业",
+                      "count": 12,
+                      "post_ids": [
+                        "6731b884000000001901b8d3",
+                        "68ecc19400000000050028c1",
+                        "68f1e631000000000503111b",
+                        "68faf90d0000000005011fa2",
+                        "6902e20a0000000005030a7b",
+                        "69048be90000000005033c79",
+                        "690af75a000000000503b57e",
+                        "69157ac40000000005039157",
+                        "692e7906000000001f006ff1",
+                        "69394a0b000000001f006ce6",
+                        "69491c99000000001e02c765",
+                        "694a6caf000000001f00e112"
+                      ]
+                    },
+                    {
+                      "name": "精英创业",
+                      "count": 6,
+                      "post_ids": [
+                        "6732f52f000000001b013fdb",
+                        "68faf90d0000000005011fa2",
+                        "6902e20a0000000005030a7b",
+                        "6927e806000000001f007658",
+                        "6944e9b5000000001e02472d",
+                        "69491c99000000001e02c765"
+                      ]
+                    },
+                    {
+                      "name": "赛道爆发",
+                      "count": 1,
+                      "post_ids": [
+                        "69437b6d000000001e0381c9"
+                      ]
+                    },
+                    {
+                      "name": "行业趋势",
+                      "count": 4,
+                      "post_ids": [
+                        "6735b1a0000000001b0137f5",
+                        "673c37610000000007029ced",
+                        "67e224cc000000000602a6c5",
+                        "69437b6d000000001e0381c9"
+                      ]
+                    },
+                    {
+                      "name": "国产替代",
+                      "count": 6,
+                      "post_ids": [
+                        "68f1e631000000000503111b",
+                        "690075390000000004013a53",
+                        "6902e20a0000000005030a7b",
+                        "690af75a000000000503b57e",
+                        "69328436000000001f006a54",
+                        "69394a0b000000001f006ce6"
+                      ]
+                    },
+                    {
+                      "name": "跨界创业",
+                      "count": 2,
+                      "post_ids": [
+                        "690ed2240000000005002b41",
+                        "69363584000000001f006a4c"
+                      ]
+                    },
+                    {
+                      "name": "科技创业",
+                      "count": 2,
+                      "post_ids": [
+                        "6902e20a0000000005030a7b",
+                        "6927e806000000001f007658"
+                      ]
+                    },
+                    {
+                      "name": "热门赛道",
+                      "count": 3,
+                      "post_ids": [
+                        "6732cd8a000000001b02f948",
+                        "67e27e6e000000000b017c96",
+                        "68f9e8400000000005033268"
+                      ]
+                    }
+                  ],
+                  "total_element_count": 37,
+                  "children": [],
+                  "total_posts_count": 26
+                },
+                {
+                  "name": "社会变迁",
+                  "path": "/理念/现象/社会趋势/社会变迁",
+                  "id": 15027,
+                  "source_stable_id": 493,
+                  "source_type": "实质",
+                  "description": "社会结构、文化形态、生活方式等各方面的历史演变与更替趋势",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 15785,
+                  "element_count": 12,
+                  "elements": [
+                    {
+                      "name": "女性觉醒",
+                      "count": 1,
+                      "post_ids": [
+                        "99823f406c9b376c3998329e1373930f"
+                      ]
+                    },
+                    {
+                      "name": "科技化",
+                      "count": 1,
+                      "post_ids": [
+                        "65135248"
+                      ]
+                    },
+                    {
+                      "name": "流失",
+                      "count": 1,
+                      "post_ids": [
+                        "64729260"
+                      ]
+                    },
+                    {
+                      "name": "社会变迁",
+                      "count": 4,
+                      "post_ids": [
+                        "55099131",
+                        "62948012",
+                        "63676018",
+                        "64139717"
+                      ]
+                    },
+                    {
+                      "name": "价值重构",
+                      "count": 1,
+                      "post_ids": [
+                        "64076321"
+                      ]
+                    },
+                    {
+                      "name": "时代变迁",
+                      "count": 1,
+                      "post_ids": [
+                        "63676018"
+                      ]
+                    },
+                    {
+                      "name": "年味消亡",
+                      "count": 1,
+                      "post_ids": [
+                        "62948012"
+                      ]
+                    },
+                    {
+                      "name": "春节年味流失",
+                      "count": 1,
+                      "post_ids": [
+                        "62948012"
+                      ]
+                    },
+                    {
+                      "name": "消失",
+                      "count": 1,
+                      "post_ids": [
+                        "62948012"
+                      ]
+                    }
+                  ],
+                  "total_element_count": 12,
+                  "children": [],
+                  "total_posts_count": 0
+                },
+                {
+                  "name": "经济变迁",
+                  "path": "/理念/现象/社会趋势/经济变迁",
+                  "id": 15026,
+                  "source_stable_id": 484,
+                  "source_type": "实质",
+                  "description": "货币购买力、工资水平、物价等经济指标在不同历史时期的变化趋势和对比现象",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 15785,
+                  "element_count": 3,
+                  "elements": [
+                    {
+                      "name": "资产价值重构",
+                      "count": 1,
+                      "post_ids": [
+                        "ff037b4ada852d5835240ffded2f7256"
+                      ]
+                    },
+                    {
+                      "name": "资产贬值",
+                      "count": 1,
+                      "post_ids": [
+                        "ff037b4ada852d5835240ffded2f7256"
+                      ]
+                    },
+                    {
+                      "name": "电费上涨",
+                      "count": 1,
+                      "post_ids": [
+                        "64095002"
+                      ]
+                    }
+                  ],
+                  "total_element_count": 3,
+                  "children": [],
+                  "total_posts_count": 0
+                }
+              ],
+              "total_posts_count": 26
+            },
+            {
+              "name": "社会问题",
+              "path": "/理念/现象/社会问题",
+              "id": 15743,
+              "source_stable_id": 106,
+              "source_type": "实质",
+              "description": "民生痛点、社会矛盾等可观察的社会问题",
+              "category_nature": "维度",
+              "level": 3,
+              "parent_id": 15737,
+              "element_count": 0,
+              "elements": [],
+              "total_element_count": 98,
+              "children": [
+                {
+                  "name": "文化精神",
+                  "path": "/理念/现象/社会问题/文化精神",
+                  "id": 15845,
+                  "source_stable_id": 930,
+                  "source_type": "实质",
+                  "description": "社会道德风气、价值观讨论及阶层认同等文化精神层面的问题与现象",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 15743,
+                  "element_count": 0,
+                  "elements": [],
+                  "total_element_count": 47,
+                  "children": [
+                    {
+                      "name": "价值观反思",
+                      "path": "/理念/现象/社会问题/文化精神/价值观反思",
+                      "id": 15311,
+                      "source_stable_id": 869,
+                      "source_type": "实质",
+                      "description": "对社会价值观、文化现象的批判性反思",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15845,
+                      "element_count": 4,
+                      "elements": [
+                        {
+                          "name": "中西",
+                          "count": 1,
+                          "post_ids": [
+                            "64729260"
+                          ]
+                        },
+                        {
+                          "name": "他国娱乐化",
+                          "count": 1,
+                          "post_ids": [
+                            "63712731"
+                          ]
+                        },
+                        {
+                          "name": "他国现状",
+                          "count": 1,
+                          "post_ids": [
+                            "63712731"
+                          ]
+                        },
+                        {
+                          "name": "“消失”的中国男人",
+                          "count": 1,
+                          "post_ids": [
+                            "55102015"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 4,
+                      "children": [],
+                      "total_posts_count": 0
+                    },
+                    {
+                      "name": "社会阶层",
+                      "path": "/理念/现象/社会问题/文化精神/社会阶层",
+                      "id": 15307,
+                      "source_stable_id": 854,
+                      "source_type": "实质",
+                      "description": "阶层矛盾、城乡差异、体制内外等社会分层问题",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15845,
+                      "element_count": 11,
+                      "elements": [
+                        {
+                          "name": "身份反差",
+                          "count": 1,
+                          "post_ids": [
+                            "f97823103ca8ad6cd69037958d17ae32"
+                          ]
+                        },
+                        {
+                          "name": "阶层对立",
+                          "count": 2,
+                          "post_ids": [
+                            "64610874",
+                            "65252544"
+                          ]
+                        },
+                        {
+                          "name": "代际冲突",
+                          "count": 1,
+                          "post_ids": [
+                            "64965843"
+                          ]
+                        },
+                        {
+                          "name": "底层",
+                          "count": 1,
+                          "post_ids": [
+                            "64770257"
+                          ]
+                        },
+                        {
+                          "name": "社会阶层对立",
+                          "count": 1,
+                          "post_ids": [
+                            "64770257"
+                          ]
+                        },
+                        {
+                          "name": "阶层反差",
+                          "count": 1,
+                          "post_ids": [
+                            "64650216"
+                          ]
+                        },
+                        {
+                          "name": "阶层收入",
+                          "count": 1,
+                          "post_ids": [
+                            "64610880"
+                          ]
+                        },
+                        {
+                          "name": "阶层隔阂",
+                          "count": 1,
+                          "post_ids": [
+                            "64589911"
+                          ]
+                        },
+                        {
+                          "name": "阶层错位讽刺",
+                          "count": 1,
+                          "post_ids": [
+                            "64415308"
+                          ]
+                        },
+                        {
+                          "name": "男女差异",
+                          "count": 1,
+                          "post_ids": [
+                            "55327642"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 11,
+                      "children": [],
+                      "total_posts_count": 0
+                    },
+                    {
+                      "name": "社会风气",
+                      "path": "/理念/现象/社会问题/文化精神/社会风气",
+                      "id": 15846,
+                      "source_stable_id": 855,
+                      "source_type": "实质",
+                      "description": "社会道德、行业乱象、社会失序等社会风气问题",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15845,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 32,
+                      "children": [
+                        {
+                          "name": "一般现象",
+                          "path": "/理念/现象/社会问题/文化精神/社会风气/一般现象",
+                          "id": 15436,
+                          "source_stable_id": 1181,
+                          "source_type": "实质",
+                          "description": "一般性的社会现象、社会生活状态描述",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15846,
+                          "element_count": 11,
+                          "elements": [
+                            {
+                              "name": "社会现象",
+                              "count": 3,
+                              "post_ids": [
+                                "62255386",
+                                "63972446",
+                                "64139717"
+                              ]
+                            },
+                            {
+                              "name": "社会生存现状",
+                              "count": 1,
+                              "post_ids": [
+                                "59422696"
+                              ]
+                            },
+                            {
+                              "name": "社会现实",
+                              "count": 4,
+                              "post_ids": [
+                                "56977187",
+                                "57028518",
+                                "57447289"
+                              ]
+                            },
+                            {
+                              "name": "社会风貌",
+                              "count": 1,
+                              "post_ids": [
+                                "57373464"
+                              ]
+                            },
+                            {
+                              "name": "社会生活",
+                              "count": 2,
+                              "post_ids": [
+                                "55994947"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 11,
+                          "children": [],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "特定事件",
+                          "path": "/理念/现象/社会问题/文化精神/社会风气/特定事件",
+                          "id": 15435,
+                          "source_stable_id": 1179,
+                          "source_type": "实质",
+                          "description": "具体的社会现象或事件案例",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15846,
+                          "element_count": 3,
+                          "elements": [
+                            {
+                              "name": "脑腐化",
+                              "count": 1,
+                              "post_ids": [
+                                "683f8111000000002102effd"
+                              ]
+                            },
+                            {
+                              "name": "浴室玻璃爆炸",
+                              "count": 1,
+                              "post_ids": [
+                                "693d0b1d000000001e02ba36"
+                              ]
+                            },
+                            {
+                              "name": "断亲现象",
+                              "count": 1,
+                              "post_ids": [
+                                "63477609"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 3,
+                          "children": [],
+                          "total_posts_count": 2
+                        },
+                        {
+                          "name": "社会失序",
+                          "path": "/理念/现象/社会问题/文化精神/社会风气/社会失序",
+                          "id": 15433,
+                          "source_stable_id": 1177,
+                          "source_type": "实质",
+                          "description": "社会运行逻辑错位、反常现象、极端状态等失序问题",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15846,
+                          "element_count": 2,
+                          "elements": [
+                            {
+                              "name": "社会反常现象",
+                              "count": 1,
+                              "post_ids": [
+                                "62255386"
+                              ]
+                            },
+                            {
+                              "name": "社会失序",
+                              "count": 1,
+                              "post_ids": [
+                                "62025412"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 2,
+                          "children": [],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "行业乱象",
+                          "path": "/理念/现象/社会问题/文化精神/社会风气/行业乱象",
+                          "id": 15431,
+                          "source_stable_id": 1175,
+                          "source_type": "实质",
+                          "description": "行业内存在的不规范、不诚信行为和负面现象",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15846,
+                          "element_count": 7,
+                          "elements": [
+                            {
+                              "name": "社会乱象",
+                              "count": 3,
+                              "post_ids": [
+                                "62025412",
+                                "64456019",
+                                "64975752"
+                              ]
+                            },
+                            {
+                              "name": "乱象",
+                              "count": 1,
+                              "post_ids": [
+                                "64631158"
+                              ]
+                            },
+                            {
+                              "name": "修车乱象",
+                              "count": 1,
+                              "post_ids": [
+                                "64442545"
+                              ]
+                            },
+                            {
+                              "name": "行业乱象",
+                              "count": 1,
+                              "post_ids": [
+                                "64442545"
+                              ]
+                            },
+                            {
+                              "name": "行业互害",
+                              "count": 1,
+                              "post_ids": [
+                                "62025412"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 7,
+                          "children": [],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "负面现象",
+                          "path": "/理念/现象/社会问题/文化精神/社会风气/负面现象",
+                          "id": 15434,
+                          "source_stable_id": 1178,
+                          "source_type": "实质",
+                          "description": "社会中存在的消极、负面的事件或行为",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15846,
+                          "element_count": 4,
+                          "elements": [
+                            {
+                              "name": "当代生活痛点",
+                              "count": 1,
+                              "post_ids": [
+                                "64965843"
+                              ]
+                            },
+                            {
+                              "name": "社会不公平现象",
+                              "count": 1,
+                              "post_ids": [
+                                "64870193"
+                              ]
+                            },
+                            {
+                              "name": "扎心真相",
+                              "count": 1,
+                              "post_ids": [
+                                "57447289"
+                              ]
+                            },
+                            {
+                              "name": "社会评价差异",
+                              "count": 1,
+                              "post_ids": [
+                                "55327642"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 4,
+                          "children": [],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "道德失范",
+                          "path": "/理念/现象/社会问题/文化精神/社会风气/道德失范",
+                          "id": 15432,
+                          "source_stable_id": 1176,
+                          "source_type": "实质",
+                          "description": "社会道德水平下降、腐败、潜规则等道德失范现象",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15846,
+                          "element_count": 5,
+                          "elements": [
+                            {
+                              "name": "执政腐败",
+                              "count": 1,
+                              "post_ids": [
+                                "2a2c642e67822ed8c11f9d306e815a35"
+                              ]
+                            },
+                            {
+                              "name": "社会利益与道德冲突",
+                              "count": 1,
+                              "post_ids": [
+                                "57028518"
+                              ]
+                            },
+                            {
+                              "name": "社会潜规则",
+                              "count": 3,
+                              "post_ids": [
+                                "56977187",
+                                "57028518"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 5,
+                          "children": [],
+                          "total_posts_count": 0
+                        }
+                      ],
+                      "total_posts_count": 2
+                    }
+                  ],
+                  "total_posts_count": 2
+                },
+                {
+                  "name": "民生生活",
+                  "path": "/理念/现象/社会问题/民生生活",
+                  "id": 15302,
+                  "source_stable_id": 929,
+                  "source_type": "实质",
+                  "description": "与民众日常生活密切相关的社会议题,涵盖医疗、教育、婚恋、住房、文娱等日常领域",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 15743,
+                  "element_count": 16,
+                  "elements": [
+                    {
+                      "name": "民生痛点",
+                      "count": 5,
+                      "post_ids": [
+                        "60332209",
+                        "64554023",
+                        "64870193",
+                        "64935973",
+                        "64958390"
+                      ]
+                    },
+                    {
+                      "name": "底层百姓心声",
+                      "count": 1,
+                      "post_ids": [
+                        "64870193"
+                      ]
+                    },
+                    {
+                      "name": "社会治理",
+                      "count": 1,
+                      "post_ids": [
+                        "64870193"
+                      ]
+                    },
+                    {
+                      "name": "社会民生",
+                      "count": 3,
+                      "post_ids": [
+                        "59583293",
+                        "62255386",
+                        "64610880"
+                      ]
+                    },
+                    {
+                      "name": "现状",
+                      "count": 2,
+                      "post_ids": [
+                        "55994947",
+                        "64450659"
+                      ]
+                    },
+                    {
+                      "name": "社会议题",
+                      "count": 2,
+                      "post_ids": [
+                        "56726652",
+                        "63972446"
+                      ]
+                    },
+                    {
+                      "name": "社会痛点",
+                      "count": 1,
+                      "post_ids": [
+                        "59583293"
+                      ]
+                    },
+                    {
+                      "name": "社会话题",
+                      "count": 1,
+                      "post_ids": [
+                        "55102015"
+                      ]
+                    }
+                  ],
+                  "total_element_count": 46,
+                  "children": [
+                    {
+                      "name": "利益矛盾",
+                      "path": "/理念/现象/社会问题/民生生活/利益矛盾",
+                      "id": 15308,
+                      "source_stable_id": 856,
+                      "source_type": "实质",
+                      "description": "利益冲突、利益对立、霸王条款等利益相关矛盾",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15302,
+                      "element_count": 11,
+                      "elements": [
+                        {
+                          "name": "利益驱动",
+                          "count": 1,
+                          "post_ids": [
+                            "62da797f45d5b2a8ebd9149c3b52c719"
+                          ]
+                        },
+                        {
+                          "name": "利益格局",
+                          "count": 1,
+                          "post_ids": [
+                            "65252544"
+                          ]
+                        },
+                        {
+                          "name": "利益冲突",
+                          "count": 3,
+                          "post_ids": [
+                            "57853678",
+                            "63477609",
+                            "65252544"
+                          ]
+                        },
+                        {
+                          "name": "霸王条款",
+                          "count": 3,
+                          "post_ids": [
+                            "64400730",
+                            "64935973",
+                            "64958390"
+                          ]
+                        },
+                        {
+                          "name": "倒置",
+                          "count": 1,
+                          "post_ids": [
+                            "62025412"
+                          ]
+                        },
+                        {
+                          "name": "利益对立",
+                          "count": 1,
+                          "post_ids": [
+                            "57442193"
+                          ]
+                        },
+                        {
+                          "name": "利益交换",
+                          "count": 1,
+                          "post_ids": [
+                            "56977187"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 11,
+                      "children": [],
+                      "total_posts_count": 0
+                    },
+                    {
+                      "name": "医疗卫生",
+                      "path": "/理念/现象/社会问题/民生生活/医疗卫生",
+                      "id": 15305,
+                      "source_stable_id": 853,
+                      "source_type": "实质",
+                      "description": "医疗事故、医疗资源、医疗保障等医疗卫生领域问题",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15302,
+                      "element_count": 5,
+                      "elements": [
+                        {
+                          "name": "医疗乱象",
+                          "count": 1,
+                          "post_ids": [
+                            "64631158"
+                          ]
+                        },
+                        {
+                          "name": "医疗难民",
+                          "count": 1,
+                          "post_ids": [
+                            "64450659"
+                          ]
+                        },
+                        {
+                          "name": "医疗资源挤兑",
+                          "count": 1,
+                          "post_ids": [
+                            "64450659"
+                          ]
+                        },
+                        {
+                          "name": "医疗民生",
+                          "count": 1,
+                          "post_ids": [
+                            "57121511"
+                          ]
+                        },
+                        {
+                          "name": "医疗痛点",
+                          "count": 1,
+                          "post_ids": [
+                            "57121511"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 5,
+                      "children": [],
+                      "total_posts_count": 0
+                    },
+                    {
+                      "name": "婚恋现象",
+                      "path": "/理念/现象/社会问题/民生生活/婚恋现象",
+                      "id": 15310,
+                      "source_stable_id": 863,
+                      "source_type": "实质",
+                      "description": "引发社会关注的婚恋关系现象,如忘年恋、老少恋等",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15302,
+                      "element_count": 3,
+                      "elements": [
+                        {
+                          "name": "多角",
+                          "count": 1,
+                          "post_ids": [
+                            "970bc999f557cf8026c950f254d3ddac"
+                          ]
+                        },
+                        {
+                          "name": "权力姐弟恋",
+                          "count": 1,
+                          "post_ids": [
+                            "27f97d45367f3d0662d3204b3a4b0fb9"
+                          ]
+                        },
+                        {
+                          "name": "王室婚姻",
+                          "count": 1,
+                          "post_ids": [
+                            "2e93c00132e3a6a30c06efb6984ab71a"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 3,
+                      "children": [],
+                      "total_posts_count": 0
+                    },
+                    {
+                      "name": "教育议题",
+                      "path": "/理念/现象/社会问题/民生生活/教育议题",
+                      "id": 15306,
+                      "source_stable_id": 864,
+                      "source_type": "实质",
+                      "description": "教育领域的社会议题,如教育焦虑、教育现状等",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15302,
+                      "element_count": 1,
+                      "elements": [
+                        {
+                          "name": "高等教育现状",
+                          "count": 1,
+                          "post_ids": [
+                            "56603938"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 1,
+                      "children": [],
+                      "total_posts_count": 0
+                    },
+                    {
+                      "name": "文娱争议",
+                      "path": "/理念/现象/社会问题/民生生活/文娱争议",
+                      "id": 15309,
+                      "source_stable_id": 862,
+                      "source_type": "实质",
+                      "description": "文化娱乐领域引发的社会争议,如春晚、明星待遇等",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15302,
+                      "element_count": 10,
+                      "elements": [
+                        {
+                          "name": "军籍争议",
+                          "count": 1,
+                          "post_ids": [
+                            "64801086"
+                          ]
+                        },
+                        {
+                          "name": "观众阶层",
+                          "count": 1,
+                          "post_ids": [
+                            "64650216"
+                          ]
+                        },
+                        {
+                          "name": "春晚成本",
+                          "count": 1,
+                          "post_ids": [
+                            "64650216"
+                          ]
+                        },
+                        {
+                          "name": "春晚现状",
+                          "count": 2,
+                          "post_ids": [
+                            "64610874"
+                          ]
+                        },
+                        {
+                          "name": "占比争议",
+                          "count": 1,
+                          "post_ids": [
+                            "64591962"
+                          ]
+                        },
+                        {
+                          "name": "春晚花费",
+                          "count": 1,
+                          "post_ids": [
+                            "64589911"
+                          ]
+                        },
+                        {
+                          "name": "演员收入",
+                          "count": 1,
+                          "post_ids": [
+                            "64589911"
+                          ]
+                        },
+                        {
+                          "name": "明星军籍问题",
+                          "count": 1,
+                          "post_ids": [
+                            "63762379"
+                          ]
+                        },
+                        {
+                          "name": "明星高待遇",
+                          "count": 1,
+                          "post_ids": [
+                            "63762367"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 10,
+                      "children": [],
+                      "total_posts_count": 0
+                    }
+                  ],
+                  "total_posts_count": 0
+                },
+                {
+                  "name": "经济形势",
+                  "path": "/理念/现象/社会问题/经济形势",
+                  "id": 15844,
+                  "source_stable_id": 928,
+                  "source_type": "实质",
+                  "description": "宏观视角下的经济结构性问题,关注农业发展、就业形势、产业变迁等结构性议题",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 15743,
+                  "element_count": 0,
+                  "elements": [],
+                  "total_element_count": 3,
+                  "children": [
+                    {
+                      "name": "农村农业",
+                      "path": "/理念/现象/社会问题/经济形势/农村农业",
+                      "id": 15304,
+                      "source_stable_id": 852,
+                      "source_type": "实质",
+                      "description": "农村发展、农业生产、农民生活等农村相关问题",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15844,
+                      "element_count": 3,
+                      "elements": [
+                        {
+                          "name": "农民生计痛点",
+                          "count": 1,
+                          "post_ids": [
+                            "60332209"
+                          ]
+                        },
+                        {
+                          "name": "农业困境",
+                          "count": 1,
+                          "post_ids": [
+                            "60332209"
+                          ]
+                        },
+                        {
+                          "name": "农民负担",
+                          "count": 1,
+                          "post_ids": [
+                            "59943231"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 3,
+                      "children": [],
+                      "total_posts_count": 0
+                    }
+                  ],
+                  "total_posts_count": 0
+                },
+                {
+                  "name": "舆论传播",
+                  "path": "/理念/现象/社会问题/舆论传播",
+                  "id": 15303,
+                  "source_stable_id": 868,
+                  "source_type": "实质",
+                  "description": "社会议题在网络中的扩散传播、舆论形成和讨论方式,包括谣言、未经证实信息的流通等现象",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 15743,
+                  "element_count": 2,
+                  "elements": [
+                    {
+                      "name": "社会热点",
+                      "count": 2,
+                      "post_ids": [
+                        "57442193",
+                        "57853678"
+                      ]
+                    }
+                  ],
+                  "total_element_count": 2,
+                  "children": [],
+                  "total_posts_count": 0
+                }
+              ],
+              "total_posts_count": 2
+            }
+          ],
+          "total_posts_count": 69
+        },
+        {
+          "name": "知识",
+          "path": "/理念/知识",
+          "id": 15982,
+          "source_stable_id": 44,
+          "source_type": "实质",
+          "description": "人类的认识和经验,包括概念、原理、理论等认知性内容",
+          "category_nature": "内容",
+          "level": 2,
+          "parent_id": 15944,
+          "element_count": 0,
+          "elements": [],
+          "total_element_count": 763,
+          "children": [
+            {
+              "name": "方法",
+              "path": "/理念/知识/方法",
+              "id": 15954,
+              "source_stable_id": 96,
+              "source_type": "实质",
+              "description": "解决问题的技巧、策略和操作步骤",
+              "category_nature": "维度",
+              "level": 3,
+              "parent_id": 15982,
+              "element_count": 0,
+              "elements": [],
+              "total_element_count": 41,
+              "children": [
+                {
+                  "name": "生活技巧",
+                  "path": "/理念/知识/方法/生活技巧",
+                  "id": 15745,
+                  "source_stable_id": 114,
+                  "source_type": "实质",
+                  "description": "日常生活中实用的操作方法和指导性内容",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 15954,
+                  "element_count": 0,
+                  "elements": [],
+                  "total_element_count": 41,
+                  "children": [
+                    {
+                      "name": "健康养生",
+                      "path": "/理念/知识/方法/生活技巧/健康养生",
+                      "id": 15182,
+                      "source_stable_id": 714,
+                      "source_type": "实质",
+                      "description": "身体健康维护和养生保健的方法",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15745,
+                      "element_count": 2,
+                      "elements": [
+                        {
+                          "name": "危机应对",
+                          "count": 1,
+                          "post_ids": [
+                            "ff037b4ada852d5835240ffded2f7256"
+                          ]
+                        },
+                        {
+                          "name": "养生细节",
+                          "count": 1,
+                          "post_ids": [
+                            "89627e4bf8ad865f175c54e3b0ddd2cd"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 24,
+                      "children": [
+                        {
+                          "name": "中医养生",
+                          "path": "/理念/知识/方法/生活技巧/健康养生/中医养生",
+                          "id": 15188,
+                          "source_stable_id": 721,
+                          "source_type": "实质",
+                          "description": "基于中医理论的养生保健方法",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15182,
+                          "element_count": 6,
+                          "elements": [
+                            {
+                              "name": "中式养生",
+                              "count": 2,
+                              "post_ids": [
+                                "66c5b638000000001d018e5a",
+                                "678ce28d000000001603e3a8"
+                              ]
+                            },
+                            {
+                              "name": "穴位按摩",
+                              "count": 1,
+                              "post_ids": [
+                                "6776b27d0000000013018545"
+                              ]
+                            },
+                            {
+                              "name": "气血养发",
+                              "count": 1,
+                              "post_ids": [
+                                "676f8eac000000000902f53e"
+                              ]
+                            },
+                            {
+                              "name": "对应调理",
+                              "count": 1,
+                              "post_ids": [
+                                "675c0669000000000600cfd7"
+                              ]
+                            },
+                            {
+                              "name": "泡脚配方",
+                              "count": 1,
+                              "post_ids": [
+                                "67284f9c000000001901875a"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 6,
+                          "children": [],
+                          "total_posts_count": 6
+                        },
+                        {
+                          "name": "皮肤护理",
+                          "path": "/理念/知识/方法/生活技巧/健康养生/皮肤护理",
+                          "id": 15187,
+                          "source_stable_id": 720,
+                          "source_type": "实质",
+                          "description": "保养和改善皮肤状态的方法",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15182,
+                          "element_count": 6,
+                          "elements": [
+                            {
+                              "name": "黄金美容法",
+                              "count": 1,
+                              "post_ids": [
+                                "89627e4bf8ad865f175c54e3b0ddd2cd"
+                              ]
+                            },
+                            {
+                              "name": "黄金美容",
+                              "count": 1,
+                              "post_ids": [
+                                "27f97d45367f3d0662d3204b3a4b0fb9"
+                              ]
+                            },
+                            {
+                              "name": "中医祛痘",
+                              "count": 1,
+                              "post_ids": [
+                                "675c0669000000000600cfd7"
+                              ]
+                            },
+                            {
+                              "name": "养脸习惯",
+                              "count": 1,
+                              "post_ids": [
+                                "6727171b000000001b01114b"
+                              ]
+                            },
+                            {
+                              "name": "养肤",
+                              "count": 1,
+                              "post_ids": [
+                                "6727171b000000001b01114b"
+                              ]
+                            },
+                            {
+                              "name": "修护方案",
+                              "count": 1,
+                              "post_ids": [
+                                "68789450000000000b01d4a4"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 6,
+                          "children": [],
+                          "total_posts_count": 3
+                        },
+                        {
+                          "name": "饮食调理",
+                          "path": "/理念/知识/方法/生活技巧/健康养生/饮食调理",
+                          "id": 15186,
+                          "source_stable_id": 719,
+                          "source_type": "实质",
+                          "description": "通过饮食调节身体健康的方法",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15182,
+                          "element_count": 10,
+                          "elements": [
+                            {
+                              "name": "煮苹果水配方",
+                              "count": 3,
+                              "post_ids": [
+                                "66c5b638000000001d018e5a",
+                                "678ce28d000000001603e3a8"
+                              ]
+                            },
+                            {
+                              "name": "养发饮食",
+                              "count": 1,
+                              "post_ids": [
+                                "676f8eac000000000902f53e"
+                              ]
+                            },
+                            {
+                              "name": "养生搭配",
+                              "count": 1,
+                              "post_ids": [
+                                "67299a19000000001901483f"
+                              ]
+                            },
+                            {
+                              "name": "祛湿食疗方案",
+                              "count": 1,
+                              "post_ids": [
+                                "6729657b000000001b01149d"
+                              ]
+                            },
+                            {
+                              "name": "减脂饮食",
+                              "count": 1,
+                              "post_ids": [
+                                "6726109d000000001901b564"
+                              ]
+                            },
+                            {
+                              "name": "计划",
+                              "count": 1,
+                              "post_ids": [
+                                "6726109d000000001901b564"
+                              ]
+                            },
+                            {
+                              "name": "食谱",
+                              "count": 1,
+                              "post_ids": [
+                                "6726109d000000001901b564"
+                              ]
+                            },
+                            {
+                              "name": "抗衰饮食",
+                              "count": 1,
+                              "post_ids": [
+                                "67244ea7000000001b012d18"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 10,
+                          "children": [],
+                          "total_posts_count": 7
+                        }
+                      ],
+                      "total_posts_count": 12
+                    },
+                    {
+                      "name": "办事指南",
+                      "path": "/理念/知识/方法/生活技巧/办事指南",
+                      "id": 15184,
+                      "source_stable_id": 716,
+                      "source_type": "实质",
+                      "description": "办理事务和获取服务的操作指引",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15745,
+                      "element_count": 9,
+                      "elements": [
+                        {
+                          "name": "配套信息",
+                          "count": 6,
+                          "post_ids": [
+                            "68a4107f000000001c00e8e9",
+                            "68f1af7c0000000005003459",
+                            "69003bb30000000004015797",
+                            "6923b4b2000000001e03531a",
+                            "692fa7e0000000001e039786",
+                            "693a2428000000001e027639"
+                          ]
+                        },
+                        {
+                          "name": "游玩信息",
+                          "count": 2,
+                          "post_ids": [
+                            "6911532d000000000503bd18",
+                            "691acd15000000000402134e"
+                          ]
+                        },
+                        {
+                          "name": "汽车修理流程",
+                          "count": 1,
+                          "post_ids": [
+                            "64442545"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 9,
+                      "children": [],
+                      "total_posts_count": 8
+                    },
+                    {
+                      "name": "安全防护",
+                      "path": "/理念/知识/方法/生活技巧/安全防护",
+                      "id": 15183,
+                      "source_stable_id": 715,
+                      "source_type": "实质",
+                      "description": "规避风险和保护自身安全的方法",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15745,
+                      "element_count": 3,
+                      "elements": [
+                        {
+                          "name": "防护建议",
+                          "count": 2,
+                          "post_ids": [
+                            "693d0b1d000000001e02ba36"
+                          ]
+                        },
+                        {
+                          "name": "安全建议",
+                          "count": 1,
+                          "post_ids": [
+                            "693d0b1d000000001e02ba36"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 3,
+                      "children": [],
+                      "total_posts_count": 1
+                    },
+                    {
+                      "name": "居家生活",
+                      "path": "/理念/知识/方法/生活技巧/居家生活",
+                      "id": 15185,
+                      "source_stable_id": 718,
+                      "source_type": "实质",
+                      "description": "家庭日常生活的实用方法",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15745,
+                      "element_count": 5,
+                      "elements": [
+                        {
+                          "name": "海边万物皆可拍",
+                          "count": 2,
+                          "post_ids": [
+                            "67bc233e000000000b0160fa",
+                            "6843fb690000000012001659"
+                          ]
+                        },
+                        {
+                          "name": "家居收纳方案",
+                          "count": 1,
+                          "post_ids": [
+                            "696f2f97000000000e00e33c"
+                          ]
+                        },
+                        {
+                          "name": "食物形态差异",
+                          "count": 1,
+                          "post_ids": [
+                            "689bf685000000001d0021d3"
+                          ]
+                        },
+                        {
+                          "name": "传统农耕技艺",
+                          "count": 1,
+                          "post_ids": [
+                            "59943231"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 5,
+                      "children": [],
+                      "total_posts_count": 4
+                    }
+                  ],
+                  "total_posts_count": 25
+                }
+              ],
+              "total_posts_count": 25
+            },
+            {
+              "name": "概念",
+              "path": "/理念/知识/概念",
+              "id": 15948,
+              "source_stable_id": 52,
+              "source_type": "实质",
+              "description": "抽象的认知范畴和思维单元",
+              "category_nature": "维度",
+              "level": 3,
+              "parent_id": 15982,
+              "element_count": 0,
+              "elements": [],
+              "total_element_count": 722,
+              "children": [
+                {
+                  "name": "公共管理",
+                  "path": "/理念/知识/概念/公共管理",
+                  "id": 15808,
+                  "source_stable_id": 453,
+                  "source_type": "实质",
+                  "description": "涉及社会治理、公共政策及政务服务等方面的知识范畴",
+                  "category_nature": "维度",
+                  "level": 4,
+                  "parent_id": 15948,
+                  "element_count": 0,
+                  "elements": [],
+                  "total_element_count": 14,
+                  "children": [
+                    {
+                      "name": "农业农村",
+                      "path": "/理念/知识/概念/公共管理/农业农村",
+                      "id": 15018,
+                      "source_stable_id": 461,
+                      "source_type": "实质",
+                      "description": "农村政策法规、农业生产管理、农村经济制度及农产品相关规范",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15808,
+                      "element_count": 2,
+                      "elements": [
+                        {
+                          "name": "秸秆禁烧政策",
+                          "count": 2,
+                          "post_ids": [
+                            "59943231"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 2,
+                      "children": [],
+                      "total_posts_count": 0
+                    },
+                    {
+                      "name": "医疗卫生",
+                      "path": "/理念/知识/概念/公共管理/医疗卫生",
+                      "id": 15809,
+                      "source_stable_id": 460,
+                      "source_type": "实质",
+                      "description": "医疗保险制度、医疗改革政策、医疗服务规范及相关知识内容",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15808,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 8,
+                      "children": [
+                        {
+                          "name": "医保制度",
+                          "path": "/理念/知识/概念/公共管理/医疗卫生/医保制度",
+                          "id": 15453,
+                          "source_stable_id": 1210,
+                          "source_type": "实质",
+                          "description": "医疗保险的制度设计、政策法规及付费方式等",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15809,
+                          "element_count": 1,
+                          "elements": [
+                            {
+                              "name": "半福利性",
+                              "count": 1,
+                              "post_ids": [
+                                "64450659"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 1,
+                          "children": [],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "医疗改革",
+                          "path": "/理念/知识/概念/公共管理/医疗卫生/医疗改革",
+                          "id": 15454,
+                          "source_stable_id": 1212,
+                          "source_type": "实质",
+                          "description": "医疗卫生体制改革及医疗体系建设相关内容",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15809,
+                          "element_count": 1,
+                          "elements": [
+                            {
+                              "name": "医疗体系",
+                              "count": 1,
+                              "post_ids": [
+                                "64450659"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 1,
+                          "children": [],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "医疗服务",
+                          "path": "/理念/知识/概念/公共管理/医疗卫生/医疗服务",
+                          "id": 15455,
+                          "source_stable_id": 1213,
+                          "source_type": "实质",
+                          "description": "医疗机构服务、就医流程、医疗资源配置等",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15809,
+                          "element_count": 6,
+                          "elements": [
+                            {
+                              "name": "国民家底",
+                              "count": 1,
+                              "post_ids": [
+                                "64450659"
+                              ]
+                            },
+                            {
+                              "name": "医疗资源",
+                              "count": 1,
+                              "post_ids": [
+                                "64450659"
+                              ]
+                            },
+                            {
+                              "name": "食品安全",
+                              "count": 1,
+                              "post_ids": [
+                                "62025412"
+                              ]
+                            },
+                            {
+                              "name": "全国互认",
+                              "count": 1,
+                              "post_ids": [
+                                "57121511"
+                              ]
+                            },
+                            {
+                              "name": "异地就医",
+                              "count": 1,
+                              "post_ids": [
+                                "57121511"
+                              ]
+                            },
+                            {
+                              "name": "就医成本",
+                              "count": 1,
+                              "post_ids": [
+                                "57121511"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 6,
+                          "children": [],
+                          "total_posts_count": 0
+                        }
+                      ],
+                      "total_posts_count": 0
+                    },
+                    {
+                      "name": "政策法规",
+                      "path": "/理念/知识/概念/公共管理/政策法规",
+                      "id": 15810,
+                      "source_stable_id": 467,
+                      "source_type": "实质",
+                      "description": "国家及地方政府出台的各类政策文件、法规条款、行业规定及政策方向,涵盖殡葬、生育、福利等领域的制度性内容",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15808,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 2,
+                      "children": [
+                        {
+                          "name": "发展战略",
+                          "path": "/理念/知识/概念/公共管理/政策法规/发展战略",
+                          "id": 15470,
+                          "source_stable_id": 1233,
+                          "source_type": "实质",
+                          "description": "国家级发展战略、区域开放政策、教育工程等宏观战略类政策",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15810,
+                          "element_count": 1,
+                          "elements": [
+                            {
+                              "name": "211",
+                              "count": 1,
+                              "post_ids": [
+                                "56603938"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 1,
+                          "children": [],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "行业规制",
+                          "path": "/理念/知识/概念/公共管理/政策法规/行业规制",
+                          "id": 15471,
+                          "source_stable_id": 1234,
+                          "source_type": "实质",
+                          "description": "殡葬、电信、技术等特定行业的管理条例、标准和禁令",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15810,
+                          "element_count": 1,
+                          "elements": [
+                            {
+                              "name": "流量清零政策",
+                              "count": 1,
+                              "post_ids": [
+                                "64935973"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 1,
+                          "children": [],
+                          "total_posts_count": 0
+                        }
+                      ],
+                      "total_posts_count": 0
+                    },
+                    {
+                      "name": "补贴福利",
+                      "path": "/理念/知识/概念/公共管理/补贴福利",
+                      "id": 15971,
+                      "source_stable_id": 462,
+                      "source_type": "实质",
+                      "description": "国家或地方政府向特定群体发放的各类经济补贴和福利待遇",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15808,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 2,
+                      "children": [
+                        {
+                          "name": "补贴制度",
+                          "path": "/理念/知识/概念/公共管理/补贴福利/补贴制度",
+                          "id": 15920,
+                          "source_stable_id": 1277,
+                          "source_type": "实质",
+                          "description": "关于补贴福利的通用概念、政策规定和项目清单",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15971,
+                          "element_count": 0,
+                          "elements": [],
+                          "total_element_count": 2,
+                          "children": [
+                            {
+                              "name": "项目清单",
+                              "path": "/理念/知识/概念/公共管理/补贴福利/补贴制度/项目清单",
+                              "id": 15504,
+                              "source_stable_id": 1279,
+                              "source_type": "实质",
+                              "description": "列举各类补贴福利项目的清单和集合",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15920,
+                              "element_count": 2,
+                              "elements": [
+                                {
+                                  "name": "公益分配",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "64650216"
+                                  ]
+                                },
+                                {
+                                  "name": "民生项目",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "64589911"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 2,
+                              "children": [],
+                              "total_posts_count": 0
+                            }
+                          ],
+                          "total_posts_count": 0
+                        }
+                      ],
+                      "total_posts_count": 0
+                    }
+                  ],
+                  "total_posts_count": 0
+                },
+                {
+                  "name": "历史",
+                  "path": "/理念/知识/概念/历史",
+                  "id": 15955,
+                  "source_stable_id": 117,
+                  "source_type": "实质",
+                  "description": "历史事实、历史文化知识等认知性内容",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 15948,
+                  "element_count": 0,
+                  "elements": [],
+                  "total_element_count": 4,
+                  "children": [
+                    {
+                      "name": "历史文化",
+                      "path": "/理念/知识/概念/历史/历史文化",
+                      "id": 15823,
+                      "source_stable_id": 602,
+                      "source_type": "实质",
+                      "description": "历史中的文化传统与人文知识",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15955,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 1,
+                      "children": [
+                        {
+                          "name": "传统文化",
+                          "path": "/理念/知识/概念/历史/历史文化/传统文化",
+                          "id": 15112,
+                          "source_stable_id": 610,
+                          "source_type": "实质",
+                          "description": "传统文化知识",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15823,
+                          "element_count": 1,
+                          "elements": [
+                            {
+                              "name": "历史文化",
+                              "count": 1,
+                              "post_ids": [
+                                "04bcda9fc132c52a8eee5d7ba994119d"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 1,
+                          "children": [],
+                          "total_posts_count": 0
+                        }
+                      ],
+                      "total_posts_count": 0
+                    },
+                    {
+                      "name": "历史知识形态",
+                      "path": "/理念/知识/概念/历史/历史知识形态",
+                      "id": 15822,
+                      "source_stable_id": 601,
+                      "source_type": "实质",
+                      "description": "历史知识的不同表现形式",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15955,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 3,
+                      "children": [
+                        {
+                          "name": "历史叙事",
+                          "path": "/理念/知识/概念/历史/历史知识形态/历史叙事",
+                          "id": 15111,
+                          "source_stable_id": 609,
+                          "source_type": "实质",
+                          "description": "历史叙事与故事",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15822,
+                          "element_count": 1,
+                          "elements": [
+                            {
+                              "name": "历史故事",
+                              "count": 1,
+                              "post_ids": [
+                                "444f41a7f46eaee7dfa43d10cb0d10c5"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 1,
+                          "children": [],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "历史文献",
+                          "path": "/理念/知识/概念/历史/历史知识形态/历史文献",
+                          "id": 15110,
+                          "source_stable_id": 608,
+                          "source_type": "实质",
+                          "description": "历史资料与文献素材",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15822,
+                          "element_count": 1,
+                          "elements": [
+                            {
+                              "name": "编年史",
+                              "count": 1,
+                              "post_ids": [
+                                "444f41a7f46eaee7dfa43d10cb0d10c5"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 1,
+                          "children": [],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "史实记录",
+                          "path": "/理念/知识/概念/历史/历史知识形态/史实记录",
+                          "id": 15109,
+                          "source_stable_id": 606,
+                          "source_type": "实质",
+                          "description": "历史事实与真相的记录",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15822,
+                          "element_count": 1,
+                          "elements": [
+                            {
+                              "name": "王室历史",
+                              "count": 1,
+                              "post_ids": [
+                                "b485a7858fbfc4b74e805bfadf6fce90"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 1,
+                          "children": [],
+                          "total_posts_count": 0
+                        }
+                      ],
+                      "total_posts_count": 0
+                    }
+                  ],
+                  "total_posts_count": 0
+                },
+                {
+                  "name": "商业经营",
+                  "path": "/理念/知识/概念/商业经营",
+                  "id": 15784,
+                  "source_stable_id": 257,
+                  "source_type": "实质",
+                  "description": "商业运营、行业趋势、技术创新、市场策略等商业领域的概念和信息",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 15948,
+                  "element_count": 0,
+                  "elements": [],
+                  "total_element_count": 178,
+                  "children": [
+                    {
+                      "name": "产品服务",
+                      "path": "/理念/知识/概念/商业经营/产品服务",
+                      "id": 15793,
+                      "source_stable_id": 283,
+                      "source_type": "实质",
+                      "description": "产品特性、使用效果、市场品类等与产品和服务相关的商业概念",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15784,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 24,
+                      "children": [
+                        {
+                          "name": "产品特征",
+                          "path": "/理念/知识/概念/商业经营/产品服务/产品特征",
+                          "id": 15497,
+                          "source_stable_id": 1266,
+                          "source_type": "实质",
+                          "description": "产品本身具备的属性、性能、工艺等固有特征",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15793,
+                          "element_count": 6,
+                          "elements": [
+                            {
+                              "name": "产品特性",
+                              "count": 3,
+                              "post_ids": [
+                                "66519efa000000001500a2bb",
+                                "67aea9de000000001800d129",
+                                "67ee4e29000000001200f3c2"
+                              ]
+                            },
+                            {
+                              "name": "工业级",
+                              "count": 1,
+                              "post_ids": [
+                                "69048be90000000005033c79"
+                              ]
+                            },
+                            {
+                              "name": "性能",
+                              "count": 1,
+                              "post_ids": [
+                                "68f1e631000000000503111b"
+                              ]
+                            },
+                            {
+                              "name": "机型",
+                              "count": 1,
+                              "post_ids": [
+                                "695f0b2b000000001a027365"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 6,
+                          "children": [],
+                          "total_posts_count": 6
+                        },
+                        {
+                          "name": "产品矩阵",
+                          "path": "/理念/知识/概念/商业经营/产品服务/产品矩阵",
+                          "id": 15502,
+                          "source_stable_id": 1271,
+                          "source_type": "实质",
+                          "description": "产品系统、产品组合和平台机制",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15793,
+                          "element_count": 2,
+                          "elements": [
+                            {
+                              "name": "狼族自动化产品矩阵",
+                              "count": 1,
+                              "post_ids": [
+                                "68ef800d0000000005011094"
+                              ]
+                            },
+                            {
+                              "name": "转发机制",
+                              "count": 1,
+                              "post_ids": [
+                                "64095002"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 2,
+                          "children": [],
+                          "total_posts_count": 1
+                        },
+                        {
+                          "name": "价值定价",
+                          "path": "/理念/知识/概念/商业经营/产品服务/价值定价",
+                          "id": 15500,
+                          "source_stable_id": 1269,
+                          "source_type": "实质",
+                          "description": "产品的价值评估、价格信息和优惠策略",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15793,
+                          "element_count": 2,
+                          "elements": [
+                            {
+                              "name": "价格公示",
+                              "count": 1,
+                              "post_ids": [
+                                "65eea166000000000d00c6d8"
+                              ]
+                            },
+                            {
+                              "name": "优惠信息",
+                              "count": 1,
+                              "post_ids": [
+                                "695f0b2b000000001a027365"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 2,
+                          "children": [],
+                          "total_posts_count": 2
+                        },
+                        {
+                          "name": "使用场景",
+                          "path": "/理念/知识/概念/商业经营/产品服务/使用场景",
+                          "id": 15498,
+                          "source_stable_id": 1267,
+                          "source_type": "实质",
+                          "description": "产品使用后的效果表现和实际应用环境",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15793,
+                          "element_count": 5,
+                          "elements": [
+                            {
+                              "name": "使用效果",
+                              "count": 3,
+                              "post_ids": [
+                                "6666b3a10000000015008834",
+                                "67fe11bb000000000d017b89",
+                                "68c14b36000000001d02b44e"
+                              ]
+                            },
+                            {
+                              "name": "实战场景",
+                              "count": 1,
+                              "post_ids": [
+                                "69297e47000000001e028ec3"
+                              ]
+                            },
+                            {
+                              "name": "落地场景",
+                              "count": 1,
+                              "post_ids": [
+                                "68f9fb67000000000400736f"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 5,
+                          "children": [],
+                          "total_posts_count": 5
+                        },
+                        {
+                          "name": "市场品类",
+                          "path": "/理念/知识/概念/商业经营/产品服务/市场品类",
+                          "id": 15499,
+                          "source_stable_id": 1268,
+                          "source_type": "实质",
+                          "description": "产品在市场中的分类和类型划分",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15793,
+                          "element_count": 1,
+                          "elements": [
+                            {
+                              "name": "商品",
+                              "count": 1,
+                              "post_ids": [
+                                "6880a7a7000000000b02f5a6"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 1,
+                          "children": [],
+                          "total_posts_count": 1
+                        },
+                        {
+                          "name": "服务业务",
+                          "path": "/理念/知识/概念/商业经营/产品服务/服务业务",
+                          "id": 15501,
+                          "source_stable_id": 1270,
+                          "source_type": "实质",
+                          "description": "企业提供的具体服务类型和业务内容",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15793,
+                          "element_count": 4,
+                          "elements": [
+                            {
+                              "name": "室内设计服务",
+                              "count": 1,
+                              "post_ids": [
+                                "65eea166000000000d00c6d8"
+                              ]
+                            },
+                            {
+                              "name": "卖门票",
+                              "count": 1,
+                              "post_ids": [
+                                "692006ef000000001f008b41"
+                              ]
+                            },
+                            {
+                              "name": "奢侈品回收服务",
+                              "count": 1,
+                              "post_ids": [
+                                "68fa029e0000000007022932"
+                              ]
+                            },
+                            {
+                              "name": "闲置回收服务",
+                              "count": 1,
+                              "post_ids": [
+                                "68d0089400000000120172a5"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 4,
+                          "children": [],
+                          "total_posts_count": 4
+                        },
+                        {
+                          "name": "痛点问题",
+                          "path": "/理念/知识/概念/商业经营/产品服务/痛点问题",
+                          "id": 15503,
+                          "source_stable_id": 1272,
+                          "source_type": "实质",
+                          "description": "产品或服务中存在的问题、弊端和待改进之处",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15793,
+                          "element_count": 4,
+                          "elements": [
+                            {
+                              "name": "手机更迭",
+                              "count": 1,
+                              "post_ids": [
+                                "692c3402000000000d03b7b7"
+                              ]
+                            },
+                            {
+                              "name": "痛点",
+                              "count": 3,
+                              "post_ids": [
+                                "673c37610000000007029ced",
+                                "690af75a000000000503b57e",
+                                "692e7906000000001f006ff1"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 4,
+                          "children": [],
+                          "total_posts_count": 4
+                        }
+                      ],
+                      "total_posts_count": 21
+                    },
+                    {
+                      "name": "前沿技术",
+                      "path": "/理念/知识/概念/商业经营/前沿技术",
+                      "id": 14952,
+                      "source_stable_id": 269,
+                      "source_type": "实质",
+                      "description": "人工智能、自动化、智能制造等前沿科技领域的概念和技术范式",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15784,
+                      "element_count": 4,
+                      "elements": [
+                        {
+                          "name": "隐性交互",
+                          "count": 1,
+                          "post_ids": [
+                            "6944e9b5000000001e02472d"
+                          ]
+                        },
+                        {
+                          "name": "无人化",
+                          "count": 2,
+                          "post_ids": [
+                            "68ef800d0000000005011094",
+                            "69145e8e0000000005003350"
+                          ]
+                        },
+                        {
+                          "name": "互联网",
+                          "count": 1,
+                          "post_ids": [
+                            "65514975"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 53,
+                      "children": [
+                        {
+                          "name": "AI智能",
+                          "path": "/理念/知识/概念/商业经营/前沿技术/AI智能",
+                          "id": 15828,
+                          "source_stable_id": 654,
+                          "source_type": "实质",
+                          "description": "人工智能、机器学习、智能机器人等AI相关技术",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 14952,
+                          "element_count": 0,
+                          "elements": [],
+                          "total_element_count": 21,
+                          "children": [
+                            {
+                              "name": "AI应用",
+                              "path": "/理念/知识/概念/商业经营/前沿技术/AI智能/AI应用",
+                              "id": 15148,
+                              "source_stable_id": 662,
+                              "source_type": "实质",
+                              "description": "AI在制药、医疗、工业、眼镜等行业的应用",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15828,
+                              "element_count": 6,
+                              "elements": [
+                                {
+                                  "name": "AI制药",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "69491c99000000001e02c765"
+                                  ]
+                                },
+                                {
+                                  "name": "智能触觉材料",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "6944e9b5000000001e02472d"
+                                  ]
+                                },
+                                {
+                                  "name": "语音与视觉路线",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "692e7ccf000000001f00a137"
+                                  ]
+                                },
+                                {
+                                  "name": "AI眼镜行业",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "692e7ccf000000001f00a137"
+                                  ]
+                                },
+                                {
+                                  "name": "工业AI解决方案",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "692e7906000000001f006ff1"
+                                  ]
+                                },
+                                {
+                                  "name": "AI+多组学医疗平台",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "6732f52f000000001b013fdb"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 6,
+                              "children": [],
+                              "total_posts_count": 5
+                            },
+                            {
+                              "name": "机器人技术",
+                              "path": "/理念/知识/概念/商业经营/前沿技术/AI智能/机器人技术",
+                              "id": 15147,
+                              "source_stable_id": 661,
+                              "source_type": "实质",
+                              "description": "具身智能、智能机器人、机器人控制等机器人技术",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15828,
+                              "element_count": 8,
+                              "elements": [
+                                {
+                                  "name": "Agentic AI时代",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "692fe421000000001f00691a"
+                                  ]
+                                },
+                                {
+                                  "name": "具身智能",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "69200dec000000001f00b884"
+                                  ]
+                                },
+                                {
+                                  "name": "Sim2Real",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "68fa08f60000000005030ddc"
+                                  ]
+                                },
+                                {
+                                  "name": "具身智能引擎",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "68fa08f60000000005030ddc"
+                                  ]
+                                },
+                                {
+                                  "name": "具身智能机器人",
+                                  "count": 3,
+                                  "post_ids": [
+                                    "68f9fb67000000000400736f"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 8,
+                              "children": [],
+                              "total_posts_count": 4
+                            },
+                            {
+                              "name": "机器学习",
+                              "path": "/理念/知识/概念/商业经营/前沿技术/AI智能/机器学习",
+                              "id": 15146,
+                              "source_stable_id": 660,
+                              "source_type": "实质",
+                              "description": "AI大模型、机器学习算法、提示词工程等核心AI技术",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15828,
+                              "element_count": 7,
+                              "elements": [
+                                {
+                                  "name": "CG人物模型",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "648d8edf0000000011013447"
+                                  ]
+                                },
+                                {
+                                  "name": "OCT-VLA模型",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "692e7906000000001f006ff1"
+                                  ]
+                                },
+                                {
+                                  "name": "AI+数据",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "69297dde000000001f006b90",
+                                    "69297e47000000001e028ec3"
+                                  ]
+                                },
+                                {
+                                  "name": "AI大模型",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "68ef800d0000000005011094"
+                                  ]
+                                },
+                                {
+                                  "name": "LangGPT结构化提示词",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "673d9a58000000000702450b"
+                                  ]
+                                },
+                                {
+                                  "name": "AIGC",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "6735b1a0000000001b0137f5"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 7,
+                              "children": [],
+                              "total_posts_count": 7
+                            }
+                          ],
+                          "total_posts_count": 15
+                        },
+                        {
+                          "name": "制造工业",
+                          "path": "/理念/知识/概念/商业经营/前沿技术/制造工业",
+                          "id": 15141,
+                          "source_stable_id": 655,
+                          "source_type": "实质",
+                          "description": "精密制造、硬科技、工业解决方案等制造业技术",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 14952,
+                          "element_count": 13,
+                          "elements": [
+                            {
+                              "name": "硬科技",
+                              "count": 6,
+                              "post_ids": [
+                                "6731b884000000001901b8d3",
+                                "689b158f000000001b03e512",
+                                "6944e9b5000000001e02472d",
+                                "69491c99000000001e02c765"
+                              ]
+                            },
+                            {
+                              "name": "精密制造",
+                              "count": 2,
+                              "post_ids": [
+                                "692e7906000000001f006ff1"
+                              ]
+                            },
+                            {
+                              "name": "软硬一体化方案",
+                              "count": 1,
+                              "post_ids": [
+                                "692e7906000000001f006ff1"
+                              ]
+                            },
+                            {
+                              "name": "技术方案",
+                              "count": 2,
+                              "post_ids": [
+                                "68ecc19400000000050028c1",
+                                "69048be90000000005033c79"
+                              ]
+                            },
+                            {
+                              "name": "技术架构",
+                              "count": 2,
+                              "post_ids": [
+                                "6735b1a0000000001b0137f5",
+                                "673d9a58000000000702450b"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 13,
+                          "children": [],
+                          "total_posts_count": 9
+                        },
+                        {
+                          "name": "数据安全",
+                          "path": "/理念/知识/概念/商业经营/前沿技术/数据安全",
+                          "id": 15145,
+                          "source_stable_id": 659,
+                          "source_type": "实质",
+                          "description": "数据处理、隐私保护、身份认证等数据安全技术",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 14952,
+                          "element_count": 2,
+                          "elements": [
+                            {
+                              "name": "身份管理与访问控制",
+                              "count": 1,
+                              "post_ids": [
+                                "69437b6d000000001e0381c9"
+                              ]
+                            },
+                            {
+                              "name": "密态计算",
+                              "count": 1,
+                              "post_ids": [
+                                "68ecc19400000000050028c1"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 2,
+                          "children": [],
+                          "total_posts_count": 2
+                        },
+                        {
+                          "name": "物流交通",
+                          "path": "/理念/知识/概念/商业经营/前沿技术/物流交通",
+                          "id": 15143,
+                          "source_stable_id": 657,
+                          "source_type": "实质",
+                          "description": "物流科技、交通管理、定位导航等物流交通技术",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 14952,
+                          "element_count": 8,
+                          "elements": [
+                            {
+                              "name": "物流科技",
+                              "count": 2,
+                              "post_ids": [
+                                "68ef800d0000000005011094",
+                                "69145e8e0000000005003350"
+                              ]
+                            },
+                            {
+                              "name": "智能物流技术",
+                              "count": 1,
+                              "post_ids": [
+                                "69145e8e0000000005003350"
+                              ]
+                            },
+                            {
+                              "name": "地面伪卫星定位技术",
+                              "count": 1,
+                              "post_ids": [
+                                "690af75a000000000503b57e"
+                              ]
+                            },
+                            {
+                              "name": "低空无人机交通管理系统",
+                              "count": 1,
+                              "post_ids": [
+                                "690075390000000004013a53"
+                              ]
+                            },
+                            {
+                              "name": "低空监视解决方案",
+                              "count": 1,
+                              "post_ids": [
+                                "690075390000000004013a53"
+                              ]
+                            },
+                            {
+                              "name": "监视方案",
+                              "count": 1,
+                              "post_ids": [
+                                "690075390000000004013a53"
+                              ]
+                            },
+                            {
+                              "name": "调度系统",
+                              "count": 1,
+                              "post_ids": [
+                                "68ef800d0000000005011094"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 8,
+                          "children": [],
+                          "total_posts_count": 4
+                        },
+                        {
+                          "name": "生物医药",
+                          "path": "/理念/知识/概念/商业经营/前沿技术/生物医药",
+                          "id": 15144,
+                          "source_stable_id": 658,
+                          "source_type": "实质",
+                          "description": "生物制药、基因治疗等生物医药技术",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 14952,
+                          "element_count": 2,
+                          "elements": [
+                            {
+                              "name": "双功能抗体技术",
+                              "count": 1,
+                              "post_ids": [
+                                "694a6caf000000001f00e112"
+                              ]
+                            },
+                            {
+                              "name": "CGT药物",
+                              "count": 1,
+                              "post_ids": [
+                                "690ed2240000000005002b41"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 2,
+                          "children": [],
+                          "total_posts_count": 2
+                        },
+                        {
+                          "name": "能源电力",
+                          "path": "/理念/知识/概念/商业经营/前沿技术/能源电力",
+                          "id": 15142,
+                          "source_stable_id": 656,
+                          "source_type": "实质",
+                          "description": "电力输送、新能源、电池技术等能源领域技术",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 14952,
+                          "element_count": 3,
+                          "elements": [
+                            {
+                              "name": "换电方案",
+                              "count": 1,
+                              "post_ids": [
+                                "69048be90000000005033c79"
+                              ]
+                            },
+                            {
+                              "name": "水系锌基电池",
+                              "count": 1,
+                              "post_ids": [
+                                "68f1e631000000000503111b"
+                              ]
+                            },
+                            {
+                              "name": "高倍率放电",
+                              "count": 1,
+                              "post_ids": [
+                                "68f1e631000000000503111b"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 3,
+                          "children": [],
+                          "total_posts_count": 2
+                        }
+                      ],
+                      "total_posts_count": 26
+                    },
+                    {
+                      "name": "行业分析",
+                      "path": "/理念/知识/概念/商业经营/行业分析",
+                      "id": 15792,
+                      "source_stable_id": 282,
+                      "source_type": "实质",
+                      "description": "行业动态、市场格局、经济环境等宏观层面的商业研究和行业信息",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15784,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 37,
+                      "children": [
+                        {
+                          "name": "市场格局",
+                          "path": "/理念/知识/概念/商业经营/行业分析/市场格局",
+                          "id": 15252,
+                          "source_stable_id": 813,
+                          "source_type": "实质",
+                          "description": "竞争态势、资本分布、市场动态等格局性内容",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15792,
+                          "element_count": 7,
+                          "elements": [
+                            {
+                              "name": "博弈",
+                              "count": 3,
+                              "post_ids": [
+                                "0374cca4a422e5aad9b24d721c7b4291",
+                                "49d6570f82c62ca372c932b67467878f",
+                                "692e7ccf000000001f00a137"
+                              ]
+                            },
+                            {
+                              "name": "资本天团",
+                              "count": 1,
+                              "post_ids": [
+                                "69328436000000001f006a54"
+                              ]
+                            },
+                            {
+                              "name": "资本格局",
+                              "count": 1,
+                              "post_ids": [
+                                "69328436000000001f006a54"
+                              ]
+                            },
+                            {
+                              "name": "分化",
+                              "count": 1,
+                              "post_ids": [
+                                "692e7ccf000000001f00a137"
+                              ]
+                            },
+                            {
+                              "name": "冲击",
+                              "count": 1,
+                              "post_ids": [
+                                "69157ac40000000005039157"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 7,
+                          "children": [],
+                          "total_posts_count": 3
+                        },
+                        {
+                          "name": "行业研究",
+                          "path": "/理念/知识/概念/商业经营/行业分析/行业研究",
+                          "id": 15250,
+                          "source_stable_id": 811,
+                          "source_type": "实质",
+                          "description": "行业报告、市场分析、经济画像等研究性内容和观点",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15792,
+                          "element_count": 20,
+                          "elements": [
+                            {
+                              "name": "商业/行业资讯",
+                              "count": 8,
+                              "post_ids": [
+                                "6731b884000000001901b8d3",
+                                "69157ac40000000005039157",
+                                "6927e806000000001f007658",
+                                "6932744c000000001f00c9f3",
+                                "69394a0b000000001f006ce6",
+                                "69437b6d000000001e0381c9",
+                                "69491c99000000001e02c765",
+                                "694a6caf000000001f00e112"
+                              ]
+                            },
+                            {
+                              "name": "商业背景",
+                              "count": 1,
+                              "post_ids": [
+                                "694a6caf000000001f00e112"
+                              ]
+                            },
+                            {
+                              "name": "投资观点",
+                              "count": 1,
+                              "post_ids": [
+                                "69200dec000000001f00b884"
+                              ]
+                            },
+                            {
+                              "name": "经济画像",
+                              "count": 2,
+                              "post_ids": [
+                                "67e27e6e000000000b017c96",
+                                "6912d90f00000000050113b3"
+                              ]
+                            },
+                            {
+                              "name": "全球独角兽企业观察报告",
+                              "count": 3,
+                              "post_ids": [
+                                "67e224cc000000000602a6c5",
+                                "68f9e8400000000005033268"
+                              ]
+                            },
+                            {
+                              "name": "中美对比",
+                              "count": 2,
+                              "post_ids": [
+                                "67e224cc000000000602a6c5",
+                                "68f9e8400000000005033268"
+                              ]
+                            },
+                            {
+                              "name": "行业研究报告",
+                              "count": 3,
+                              "post_ids": [
+                                "6735b1a0000000001b0137f5",
+                                "67e224cc000000000602a6c5",
+                                "67e27e6e000000000b017c96"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 20,
+                          "children": [],
+                          "total_posts_count": 14
+                        },
+                        {
+                          "name": "行业领域",
+                          "path": "/理念/知识/概念/商业经营/行业分析/行业领域",
+                          "id": 15251,
+                          "source_stable_id": 812,
+                          "source_type": "实质",
+                          "description": "具体的行业赛道、细分市场和产业领域",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15792,
+                          "element_count": 10,
+                          "elements": [
+                            {
+                              "name": "餐饮",
+                              "count": 1,
+                              "post_ids": [
+                                "69363584000000001f006a4c"
+                              ]
+                            },
+                            {
+                              "name": "芯片行业",
+                              "count": 1,
+                              "post_ids": [
+                                "69328436000000001f006a54"
+                              ]
+                            },
+                            {
+                              "name": "机器人行业",
+                              "count": 1,
+                              "post_ids": [
+                                "6932744c000000001f00c9f3"
+                              ]
+                            },
+                            {
+                              "name": "赛道",
+                              "count": 1,
+                              "post_ids": [
+                                "69200dec000000001f00b884"
+                              ]
+                            },
+                            {
+                              "name": "产业",
+                              "count": 1,
+                              "post_ids": [
+                                "69145e8e0000000005003350"
+                              ]
+                            },
+                            {
+                              "name": "制药创业",
+                              "count": 1,
+                              "post_ids": [
+                                "690ed2240000000005002b41"
+                              ]
+                            },
+                            {
+                              "name": "细分市场",
+                              "count": 1,
+                              "post_ids": [
+                                "690ed1190000000003010bd3"
+                              ]
+                            },
+                            {
+                              "name": "机器人领域",
+                              "count": 1,
+                              "post_ids": [
+                                "69005a1e0000000004017637"
+                              ]
+                            },
+                            {
+                              "name": "垂直领域",
+                              "count": 1,
+                              "post_ids": [
+                                "68ca25bc000000000e023656"
+                              ]
+                            },
+                            {
+                              "name": "香港初创生态圈",
+                              "count": 1,
+                              "post_ids": [
+                                "6732cd8a000000001b02f948"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 10,
+                          "children": [],
+                          "total_posts_count": 10
+                        }
+                      ],
+                      "total_posts_count": 23
+                    },
+                    {
+                      "name": "运营策略",
+                      "path": "/理念/知识/概念/商业经营/运营策略",
+                      "id": 15789,
+                      "source_stable_id": 270,
+                      "source_type": "实质",
+                      "description": "企业商业模式、经营策略、市场布局等商业运作层面的概念",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15784,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 64,
+                      "children": [
+                        {
+                          "name": "供应链",
+                          "path": "/理念/知识/概念/商业经营/运营策略/供应链",
+                          "id": 15120,
+                          "source_stable_id": 628,
+                          "source_type": "实质",
+                          "description": "产业链整合、供应链管理、物流配送等产业链层面的概念",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15789,
+                          "element_count": 5,
+                          "elements": [
+                            {
+                              "name": "供应链整合",
+                              "count": 1,
+                              "post_ids": [
+                                "6927e806000000001f007658"
+                              ]
+                            },
+                            {
+                              "name": "跨国产业协同",
+                              "count": 1,
+                              "post_ids": [
+                                "69005a1e0000000004017637"
+                              ]
+                            },
+                            {
+                              "name": "全产业链条",
+                              "count": 1,
+                              "post_ids": [
+                                "68f9fb67000000000400736f"
+                              ]
+                            },
+                            {
+                              "name": "全链路",
+                              "count": 2,
+                              "post_ids": [
+                                "67fd299a000000001c00cf5d",
+                                "68ef800d0000000005011094"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 5,
+                          "children": [],
+                          "total_posts_count": 5
+                        },
+                        {
+                          "name": "商业模式",
+                          "path": "/理念/知识/概念/商业经营/运营策略/商业模式",
+                          "id": 15118,
+                          "source_stable_id": 626,
+                          "source_type": "实质",
+                          "description": "企业价值创造、传递和获取的逻辑结构与运作方式",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15789,
+                          "element_count": 6,
+                          "elements": [
+                            {
+                              "name": "一站式CDMO",
+                              "count": 1,
+                              "post_ids": [
+                                "690ed2240000000005002b41"
+                              ]
+                            },
+                            {
+                              "name": "CGT CDMO服务",
+                              "count": 1,
+                              "post_ids": [
+                                "690ed2240000000005002b41"
+                              ]
+                            },
+                            {
+                              "name": "车电分离",
+                              "count": 1,
+                              "post_ids": [
+                                "69048be90000000005033c79"
+                              ]
+                            },
+                            {
+                              "name": "商业模式",
+                              "count": 2,
+                              "post_ids": [
+                                "57442193",
+                                "69048be90000000005033c79"
+                              ]
+                            },
+                            {
+                              "name": "胖东来商业模式",
+                              "count": 1,
+                              "post_ids": [
+                                "65252544"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 6,
+                          "children": [],
+                          "total_posts_count": 2
+                        },
+                        {
+                          "name": "市场拓展",
+                          "path": "/理念/知识/概念/商业经营/运营策略/市场拓展",
+                          "id": 15121,
+                          "source_stable_id": 629,
+                          "source_type": "实质",
+                          "description": "市场布局、渠道建设、全球化扩张等市场层面的概念",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15789,
+                          "element_count": 13,
+                          "elements": [
+                            {
+                              "name": "服务流程",
+                              "count": 1,
+                              "post_ids": [
+                                "65eea166000000000d00c6d8"
+                              ]
+                            },
+                            {
+                              "name": "全球化",
+                              "count": 7,
+                              "post_ids": [
+                                "67316440000000001b02e75e",
+                                "6732cd8a000000001b02f948",
+                                "67fd299a000000001c00cf5d",
+                                "690075390000000004013a53",
+                                "69048be90000000005033c79",
+                                "690ed1190000000003010bd3",
+                                "69363584000000001f006a4c"
+                              ]
+                            },
+                            {
+                              "name": "上市公司",
+                              "count": 2,
+                              "post_ids": [
+                                "69297dde000000001f006b90"
+                              ]
+                            },
+                            {
+                              "name": "最后一公里配送",
+                              "count": 1,
+                              "post_ids": [
+                                "6927e806000000001f007658"
+                              ]
+                            },
+                            {
+                              "name": "社群影响力",
+                              "count": 1,
+                              "post_ids": [
+                                "673d9a58000000000702450b"
+                              ]
+                            },
+                            {
+                              "name": "渠道差异",
+                              "count": 1,
+                              "post_ids": [
+                                "695f0b2b000000001a027365"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 13,
+                          "children": [],
+                          "total_posts_count": 12
+                        },
+                        {
+                          "name": "战略转型",
+                          "path": "/理念/知识/概念/商业经营/运营策略/战略转型",
+                          "id": 15122,
+                          "source_stable_id": 630,
+                          "source_type": "实质",
+                          "description": "企业转型、业务调整、战略变革等战略层面的概念",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15789,
+                          "element_count": 8,
+                          "elements": [
+                            {
+                              "name": "转型",
+                              "count": 2,
+                              "post_ids": [
+                                "412f4d35be48179908fef312b53cad43",
+                                "69145e8e0000000005003350"
+                              ]
+                            },
+                            {
+                              "name": "商业化落地",
+                              "count": 4,
+                              "post_ids": [
+                                "6731b884000000001901b8d3",
+                                "68fa08f60000000005030ddc",
+                                "6927e806000000001f007658",
+                                "692e7906000000001f006ff1"
+                              ]
+                            },
+                            {
+                              "name": "代工转型",
+                              "count": 1,
+                              "post_ids": [
+                                "690ed1190000000003010bd3"
+                              ]
+                            },
+                            {
+                              "name": "技术驱动转型",
+                              "count": 1,
+                              "post_ids": [
+                                "68ef800d0000000005011094"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 8,
+                          "children": [],
+                          "total_posts_count": 7
+                        },
+                        {
+                          "name": "融资投资",
+                          "path": "/理念/知识/概念/商业经营/运营策略/融资投资",
+                          "id": 15824,
+                          "source_stable_id": 625,
+                          "source_type": "实质",
+                          "description": "企业资本运作、融资活动、投资决策等资本层面的概念",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15789,
+                          "element_count": 0,
+                          "elements": [],
+                          "total_element_count": 15,
+                          "children": [
+                            {
+                              "name": "投资活动",
+                              "path": "/理念/知识/概念/商业经营/运营策略/融资投资/投资活动",
+                              "id": 15125,
+                              "source_stable_id": 633,
+                              "source_type": "实质",
+                              "description": "投资决策、投资策略、投资模式等投资层面的概念",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15824,
+                              "element_count": 7,
+                              "elements": [
+                                {
+                                  "name": "早期投资策略",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "69293c52000000001e02d9d6"
+                                  ]
+                                },
+                                {
+                                  "name": "早期投资",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "69293c52000000001e02d9d6"
+                                  ]
+                                },
+                                {
+                                  "name": "大天使小A轮",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "69293c52000000001e02d9d6"
+                                  ]
+                                },
+                                {
+                                  "name": "重投重管模式",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "69293c52000000001e02d9d6"
+                                  ]
+                                },
+                                {
+                                  "name": "投资逻辑",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "69200dec000000001f00b884"
+                                  ]
+                                },
+                                {
+                                  "name": "商业投资",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "69157ac40000000005039157"
+                                  ]
+                                },
+                                {
+                                  "name": "基金定投",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "68ccd4e40000000012030372"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 7,
+                              "children": [],
+                              "total_posts_count": 4
+                            },
+                            {
+                              "name": "融资活动",
+                              "path": "/理念/知识/概念/商业经营/运营策略/融资投资/融资活动",
+                              "id": 15124,
+                              "source_stable_id": 632,
+                              "source_type": "实质",
+                              "description": "企业创立、融资渠道、资本引入等融资层面的概念",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15824,
+                              "element_count": 8,
+                              "elements": [
+                                {
+                                  "name": "连续创业",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "69437b6d000000001e0381c9"
+                                  ]
+                                },
+                                {
+                                  "name": "创业",
+                                  "count": 5,
+                                  "post_ids": [
+                                    "673c37610000000007029ced",
+                                    "690ed1190000000003010bd3",
+                                    "692006ef000000001f008b41",
+                                    "69363584000000001f006a4c"
+                                  ]
+                                },
+                                {
+                                  "name": "对接机制",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "69297e47000000001e028ec3"
+                                  ]
+                                },
+                                {
+                                  "name": "三级国资联动",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "69157ac40000000005039157"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 8,
+                              "children": [],
+                              "total_posts_count": 7
+                            }
+                          ],
+                          "total_posts_count": 10
+                        },
+                        {
+                          "name": "财务管理",
+                          "path": "/理念/知识/概念/商业经营/运营策略/财务管理",
+                          "id": 15119,
+                          "source_stable_id": 627,
+                          "source_type": "实质",
+                          "description": "成本核算、财务数据、经营成果等财务层面的概念",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15789,
+                          "element_count": 3,
+                          "elements": [
+                            {
+                              "name": "经营成果",
+                              "count": 2,
+                              "post_ids": [
+                                "690ed1190000000003010bd3",
+                                "69363584000000001f006a4c"
+                              ]
+                            },
+                            {
+                              "name": "财务数据",
+                              "count": 1,
+                              "post_ids": [
+                                "692006ef000000001f008b41"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 3,
+                          "children": [],
+                          "total_posts_count": 3
+                        },
+                        {
+                          "name": "运营能力",
+                          "path": "/理念/知识/概念/商业经营/运营策略/运营能力",
+                          "id": 15123,
+                          "source_stable_id": 631,
+                          "source_type": "实质",
+                          "description": "资源整合、人才任用、运营经验等企业能力层面的概念",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15789,
+                          "element_count": 14,
+                          "elements": [
+                            {
+                              "name": "效率",
+                              "count": 2,
+                              "post_ids": [
+                                "692fe421000000001f00691a",
+                                "6932744c000000001f00c9f3"
+                              ]
+                            },
+                            {
+                              "name": "实战场景",
+                              "count": 1,
+                              "post_ids": [
+                                "69297dde000000001f006b90"
+                              ]
+                            },
+                            {
+                              "name": "经验",
+                              "count": 1,
+                              "post_ids": [
+                                "69293c52000000001e02d9d6"
+                              ]
+                            },
+                            {
+                              "name": "校友网络",
+                              "count": 3,
+                              "post_ids": [
+                                "68faf90d0000000005011fa2",
+                                "690af75a000000000503b57e",
+                                "69293c52000000001e02d9d6"
+                              ]
+                            },
+                            {
+                              "name": "投行背景",
+                              "count": 1,
+                              "post_ids": [
+                                "692006ef000000001f008b41"
+                              ]
+                            },
+                            {
+                              "name": "蔚来模式",
+                              "count": 1,
+                              "post_ids": [
+                                "69157ac40000000005039157"
+                              ]
+                            },
+                            {
+                              "name": "复制",
+                              "count": 1,
+                              "post_ids": [
+                                "69157ac40000000005039157"
+                              ]
+                            },
+                            {
+                              "name": "商业策略",
+                              "count": 1,
+                              "post_ids": [
+                                "68faf90d0000000005011fa2"
+                              ]
+                            },
+                            {
+                              "name": "垂直领域",
+                              "count": 1,
+                              "post_ids": [
+                                "689b158f000000001b03e512"
+                              ]
+                            },
+                            {
+                              "name": "资源整合",
+                              "count": 1,
+                              "post_ids": [
+                                "67fd299a000000001c00cf5d"
+                              ]
+                            },
+                            {
+                              "name": "洞察",
+                              "count": 1,
+                              "post_ids": [
+                                "6735b1a0000000001b0137f5"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 14,
+                          "children": [],
+                          "total_posts_count": 11
+                        }
+                      ],
+                      "total_posts_count": 34
+                    }
+                  ],
+                  "total_posts_count": 59
+                },
+                {
+                  "name": "术语",
+                  "path": "/理念/知识/概念/术语",
+                  "id": 15728,
+                  "source_stable_id": 62,
+                  "source_type": "实质",
+                  "description": "表达特定概念的专业或通用词汇",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 15948,
+                  "element_count": 0,
+                  "elements": [],
+                  "total_element_count": 441,
+                  "children": [
+                    {
+                      "name": "人物特征术语",
+                      "path": "/理念/知识/概念/术语/人物特征术语",
+                      "id": 15775,
+                      "source_stable_id": 226,
+                      "source_type": "实质",
+                      "description": "描述人物身份、特质、称谓、成就等相关词汇",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15728,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 34,
+                      "children": [
+                        {
+                          "name": "成就术语",
+                          "path": "/理念/知识/概念/术语/人物特征术语/成就术语",
+                          "id": 15225,
+                          "source_stable_id": 764,
+                          "source_type": "实质",
+                          "description": "描述人物荣誉、成就、头衔等相关词汇",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15775,
+                          "element_count": 1,
+                          "elements": [
+                            {
+                              "name": "政治表现",
+                              "count": 1,
+                              "post_ids": [
+                                "412f4d35be48179908fef312b53cad43"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 1,
+                          "children": [],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "特质术语",
+                          "path": "/理念/知识/概念/术语/人物特征术语/特质术语",
+                          "id": 15224,
+                          "source_stable_id": 763,
+                          "source_type": "实质",
+                          "description": "描述人物性格、品质、能力等特质相关词汇",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15775,
+                          "element_count": 8,
+                          "elements": [
+                            {
+                              "name": "犀利战力",
+                              "count": 1,
+                              "post_ids": [
+                                "b9bc7d3c46583a41a76867f0ac7e62f1"
+                              ]
+                            },
+                            {
+                              "name": "强棒形象",
+                              "count": 1,
+                              "post_ids": [
+                                "2a2c642e67822ed8c11f9d306e815a35"
+                              ]
+                            },
+                            {
+                              "name": "政治风格",
+                              "count": 1,
+                              "post_ids": [
+                                "412f4d35be48179908fef312b53cad43"
+                              ]
+                            },
+                            {
+                              "name": "性格魅力",
+                              "count": 1,
+                              "post_ids": [
+                                "444f41a7f46eaee7dfa43d10cb0d10c5"
+                              ]
+                            },
+                            {
+                              "name": "特质",
+                              "count": 1,
+                              "post_ids": [
+                                "444f41a7f46eaee7dfa43d10cb0d10c5"
+                              ]
+                            },
+                            {
+                              "name": "舆论姿态",
+                              "count": 1,
+                              "post_ids": [
+                                "444f41a7f46eaee7dfa43d10cb0d10c5"
+                              ]
+                            },
+                            {
+                              "name": "外貌",
+                              "count": 1,
+                              "post_ids": [
+                                "b485a7858fbfc4b74e805bfadf6fce90"
+                              ]
+                            },
+                            {
+                              "name": "性格定性",
+                              "count": 1,
+                              "post_ids": [
+                                "2c73223f278ea6aecd70b5b54f0aff21"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 8,
+                          "children": [],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "称谓术语",
+                          "path": "/理念/知识/概念/术语/人物特征术语/称谓术语",
+                          "id": 15223,
+                          "source_stable_id": 762,
+                          "source_type": "实质",
+                          "description": "对人的各种称呼方式",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15775,
+                          "element_count": 3,
+                          "elements": [
+                            {
+                              "name": "称谓",
+                              "count": 2,
+                              "post_ids": [
+                                "64076321",
+                                "64210278"
+                              ]
+                            },
+                            {
+                              "name": "称呼",
+                              "count": 1,
+                              "post_ids": [
+                                "55327642"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 3,
+                          "children": [],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "群体术语",
+                          "path": "/理念/知识/概念/术语/人物特征术语/群体术语",
+                          "id": 15226,
+                          "source_stable_id": 765,
+                          "source_type": "实质",
+                          "description": "描述人群分类、特定群体等相关词汇",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15775,
+                          "element_count": 3,
+                          "elements": [
+                            {
+                              "name": "理科生",
+                              "count": 1,
+                              "post_ids": [
+                                "69363584000000001f006a4c"
+                              ]
+                            },
+                            {
+                              "name": "教父级人物",
+                              "count": 1,
+                              "post_ids": [
+                                "6731b884000000001901b8d3"
+                              ]
+                            },
+                            {
+                              "name": "夹缝一代",
+                              "count": 1,
+                              "post_ids": [
+                                "64504122"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 3,
+                          "children": [],
+                          "total_posts_count": 2
+                        },
+                        {
+                          "name": "身份术语",
+                          "path": "/理念/知识/概念/术语/人物特征术语/身份术语",
+                          "id": 15834,
+                          "source_stable_id": 761,
+                          "source_type": "实质",
+                          "description": "描述人物职业、社会角色、地位等身份相关词汇",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15775,
+                          "element_count": 0,
+                          "elements": [],
+                          "total_element_count": 19,
+                          "children": [
+                            {
+                              "name": "地位术语",
+                              "path": "/理念/知识/概念/术语/人物特征术语/身份术语/地位术语",
+                              "id": 15229,
+                              "source_stable_id": 768,
+                              "source_type": "实质",
+                              "description": "描述社会地位、阶层等相关词汇",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15834,
+                              "element_count": 3,
+                              "elements": [
+                                {
+                                  "name": "主席",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "b4fbfb562ad4863ceb0a12e7110f3da7"
+                                  ]
+                                },
+                                {
+                                  "name": "HRH头衔",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "b5245c3e7b1c09af072ea40e41d3cca8"
+                                  ]
+                                },
+                                {
+                                  "name": "明星军籍",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "63762379"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 3,
+                              "children": [],
+                              "total_posts_count": 0
+                            },
+                            {
+                              "name": "职业术语",
+                              "path": "/理念/知识/概念/术语/人物特征术语/身份术语/职业术语",
+                              "id": 15227,
+                              "source_stable_id": 766,
+                              "source_type": "实质",
+                              "description": "描述职业、工作相关的身份词汇",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15834,
+                              "element_count": 5,
+                              "elements": [
+                                {
+                                  "name": "英伟达背景",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "69328436000000001f006a54"
+                                  ]
+                                },
+                                {
+                                  "name": "航空系",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "690075390000000004013a53"
+                                  ]
+                                },
+                                {
+                                  "name": "职业",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "6874c80e000000000d027767"
+                                  ]
+                                },
+                                {
+                                  "name": "职业身份",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "64631158"
+                                  ]
+                                },
+                                {
+                                  "name": "极端职业",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "56717837"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 5,
+                              "children": [],
+                              "total_posts_count": 3
+                            },
+                            {
+                              "name": "角色术语",
+                              "path": "/理念/知识/概念/术语/人物特征术语/身份术语/角色术语",
+                              "id": 15228,
+                              "source_stable_id": 767,
+                              "source_type": "实质",
+                              "description": "描述社会角色、历史定位等相关词汇",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15834,
+                              "element_count": 11,
+                              "elements": [
+                                {
+                                  "name": "政治人物",
+                                  "count": 3,
+                                  "post_ids": [
+                                    "3de8289cfddb37a8b027d60dce4dfdb1",
+                                    "d7a04d4550a7c852ac4a16301e600aa5",
+                                    "e04fd15a06f8c97486e48990e85c8492"
+                                  ]
+                                },
+                                {
+                                  "name": "第三方",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "55d981958a8fd219d9c713fb16c12170",
+                                    "cb673ebabb42a9499b3532943f8bb974"
+                                  ]
+                                },
+                                {
+                                  "name": "权威人士",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "04bcda9fc132c52a8eee5d7ba994119d",
+                                    "df635f43f39a1fa41c13da96320c45c3"
+                                  ]
+                                },
+                                {
+                                  "name": "中介角色",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "ef63cef6ce5336e59ccb523e35f355dd"
+                                  ]
+                                },
+                                {
+                                  "name": "反面人物",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "c8fa9b4d1526d3345bcb15c7d196b79d"
+                                  ]
+                                },
+                                {
+                                  "name": "元老",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "412f4d35be48179908fef312b53cad43"
+                                  ]
+                                },
+                                {
+                                  "name": "肇事者",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "68fb6a5c000000000302e5de"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 11,
+                              "children": [],
+                              "total_posts_count": 1
+                            }
+                          ],
+                          "total_posts_count": 4
+                        }
+                      ],
+                      "total_posts_count": 6
+                    },
+                    {
+                      "name": "修饰限定术语",
+                      "path": "/理念/知识/概念/术语/修饰限定术语",
+                      "id": 15776,
+                      "source_stable_id": 228,
+                      "source_type": "实质",
+                      "description": "表达程度、范围、属性等修饰限定性词汇",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15728,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 56,
+                      "children": [
+                        {
+                          "name": "关系修饰",
+                          "path": "/理念/知识/概念/术语/修饰限定术语/关系修饰",
+                          "id": 15095,
+                          "source_stable_id": 581,
+                          "source_type": "实质",
+                          "description": "表达因果、关联、作用等关系描述的修饰",
+                          "category_nature": "维度",
+                          "level": 6,
+                          "parent_id": 15776,
+                          "element_count": 2,
+                          "elements": [
+                            {
+                              "name": "争议",
+                              "count": 2,
+                              "post_ids": [
+                                "57442193",
+                                "b9bc7d3c46583a41a76867f0ac7e62f1"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 2,
+                          "children": [],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "时空修饰",
+                          "path": "/理念/知识/概念/术语/修饰限定术语/时空修饰",
+                          "id": 15093,
+                          "source_stable_id": 579,
+                          "source_type": "实质",
+                          "description": "表达时间、空间、范围等时空维度的修饰",
+                          "category_nature": "维度",
+                          "level": 6,
+                          "parent_id": 15776,
+                          "element_count": 15,
+                          "elements": [
+                            {
+                              "name": "惩戒后",
+                              "count": 1,
+                              "post_ids": [
+                                "62da797f45d5b2a8ebd9149c3b52c719"
+                              ]
+                            },
+                            {
+                              "name": "党内",
+                              "count": 1,
+                              "post_ids": [
+                                "b76365fa6008e98aea8b6876bcc4e3d0"
+                              ]
+                            },
+                            {
+                              "name": "长周期",
+                              "count": 2,
+                              "post_ids": [
+                                "665971bb000000001303d005",
+                                "692c3402000000000d03b7b7"
+                              ]
+                            },
+                            {
+                              "name": "时间跨度",
+                              "count": 2,
+                              "post_ids": [
+                                "665971bb000000001303d005",
+                                "692c3402000000000d03b7b7"
+                              ]
+                            },
+                            {
+                              "name": "顶部",
+                              "count": 1,
+                              "post_ids": [
+                                "68fb6a5c000000000302e5de"
+                              ]
+                            },
+                            {
+                              "name": "万物",
+                              "count": 2,
+                              "post_ids": [
+                                "67389194000000001d038599",
+                                "6752d19b000000000202b816"
+                              ]
+                            },
+                            {
+                              "name": "地域标签",
+                              "count": 1,
+                              "post_ids": [
+                                "6731b884000000001901b8d3"
+                              ]
+                            },
+                            {
+                              "name": "适用范围",
+                              "count": 1,
+                              "post_ids": [
+                                "695f0b2b000000001a027365"
+                              ]
+                            },
+                            {
+                              "name": "周期",
+                              "count": 1,
+                              "post_ids": [
+                                "695f0b2b000000001a027365"
+                              ]
+                            },
+                            {
+                              "name": "区位特征",
+                              "count": 1,
+                              "post_ids": [
+                                "693a2428000000001e027639"
+                              ]
+                            },
+                            {
+                              "name": "全生命周期",
+                              "count": 2,
+                              "post_ids": [
+                                "55327642",
+                                "56977419"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 15,
+                          "children": [],
+                          "total_posts_count": 8
+                        },
+                        {
+                          "name": "状态修饰",
+                          "path": "/理念/知识/概念/术语/修饰限定术语/状态修饰",
+                          "id": 15094,
+                          "source_stable_id": 580,
+                          "source_type": "实质",
+                          "description": "表达形态、状况、属性等状态描述的修饰",
+                          "category_nature": "维度",
+                          "level": 6,
+                          "parent_id": 15776,
+                          "element_count": 10,
+                          "elements": [
+                            {
+                              "name": "压力",
+                              "count": 1,
+                              "post_ids": [
+                                "601c09554a9851f9038026035b95fce9"
+                              ]
+                            },
+                            {
+                              "name": "生活细节",
+                              "count": 1,
+                              "post_ids": [
+                                "68ec3f9d000000000700de97"
+                              ]
+                            },
+                            {
+                              "name": "公共",
+                              "count": 1,
+                              "post_ids": [
+                                "6819f25e000000002301cca5"
+                              ]
+                            },
+                            {
+                              "name": "被啃坏",
+                              "count": 1,
+                              "post_ids": [
+                                "68fb6a5c000000000302e5de"
+                              ]
+                            },
+                            {
+                              "name": "错位",
+                              "count": 2,
+                              "post_ids": [
+                                "62025412",
+                                "648d8edf0000000011013447"
+                              ]
+                            },
+                            {
+                              "name": "组团",
+                              "count": 1,
+                              "post_ids": [
+                                "6911532d000000000503bd18"
+                              ]
+                            },
+                            {
+                              "name": "萌态",
+                              "count": 1,
+                              "post_ids": [
+                                "68bf8639000000001c03efd2"
+                              ]
+                            },
+                            {
+                              "name": "隐蔽性",
+                              "count": 1,
+                              "post_ids": [
+                                "65515618"
+                              ]
+                            },
+                            {
+                              "name": "萎缩",
+                              "count": 1,
+                              "post_ids": [
+                                "62948012"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 10,
+                          "children": [],
+                          "total_posts_count": 6
+                        },
+                        {
+                          "name": "认知修饰",
+                          "path": "/理念/知识/概念/术语/修饰限定术语/认知修饰",
+                          "id": 15819,
+                          "source_stable_id": 582,
+                          "source_type": "实质",
+                          "description": "表达信息、判断、评价等认知层面的修饰",
+                          "category_nature": "维度",
+                          "level": 6,
+                          "parent_id": 15776,
+                          "element_count": 0,
+                          "elements": [],
+                          "total_element_count": 6,
+                          "children": [
+                            {
+                              "name": "信息性",
+                              "path": "/理念/知识/概念/术语/修饰限定术语/认知修饰/信息性",
+                              "id": 15098,
+                              "source_stable_id": 586,
+                              "source_type": "实质",
+                              "description": "表达事实、真相、含义等信息性的认知修饰",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15819,
+                              "element_count": 5,
+                              "elements": [
+                                {
+                                  "name": "标签",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "2a2c642e67822ed8c11f9d306e815a35"
+                                  ]
+                                },
+                                {
+                                  "name": "现状",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "696d7ac4000000000e03e459"
+                                  ]
+                                },
+                                {
+                                  "name": "渐进式",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "68faf90d0000000005011fa2"
+                                  ]
+                                },
+                                {
+                                  "name": "血盆大口",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "65252544"
+                                  ]
+                                },
+                                {
+                                  "name": "取消",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "64585144"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 5,
+                              "children": [],
+                              "total_posts_count": 2
+                            },
+                            {
+                              "name": "评价性",
+                              "path": "/理念/知识/概念/术语/修饰限定术语/认知修饰/评价性",
+                              "id": 15099,
+                              "source_stable_id": 587,
+                              "source_type": "实质",
+                              "description": "表达价值、贡献、利益等评价性的认知修饰",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15819,
+                              "element_count": 1,
+                              "elements": [
+                                {
+                                  "name": "农用价值",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "59943231"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 1,
+                              "children": [],
+                              "total_posts_count": 0
+                            }
+                          ],
+                          "total_posts_count": 2
+                        },
+                        {
+                          "name": "量度修饰",
+                          "path": "/理念/知识/概念/术语/修饰限定术语/量度修饰",
+                          "id": 15818,
+                          "source_stable_id": 578,
+                          "source_type": "实质",
+                          "description": "表达可量化的程度、规模、数量、频率等修饰",
+                          "category_nature": "维度",
+                          "level": 6,
+                          "parent_id": 15776,
+                          "element_count": 0,
+                          "elements": [],
+                          "total_element_count": 23,
+                          "children": [
+                            {
+                              "name": "数量范围",
+                              "path": "/理念/知识/概念/术语/修饰限定术语/量度修饰/数量范围",
+                              "id": 15097,
+                              "source_stable_id": 584,
+                              "source_type": "实质",
+                              "description": "表达数量多少、范围广窄等可量化的数量修饰",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15818,
+                              "element_count": 10,
+                              "elements": [
+                                {
+                                  "name": "多维",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "ff037b4ada852d5835240ffded2f7256"
+                                  ]
+                                },
+                                {
+                                  "name": "跨世代",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "9c87381270abacce95e103b3a000e086"
+                                  ]
+                                },
+                                {
+                                  "name": "首波",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "d7a04d4550a7c852ac4a16301e600aa5"
+                                  ]
+                                },
+                                {
+                                  "name": "跨部门",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "bc2f946d57e1c650575962e480eccf31"
+                                  ]
+                                },
+                                {
+                                  "name": "全台",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "3de8289cfddb37a8b027d60dce4dfdb1"
+                                  ]
+                                },
+                                {
+                                  "name": "多人",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "6803185a000000000b01ef09",
+                                    "6879f0f90000000013012f9a"
+                                  ]
+                                },
+                                {
+                                  "name": "多领域",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "68f1e631000000000503111b",
+                                    "6944e9b5000000001e02472d"
+                                  ]
+                                },
+                                {
+                                  "name": "各行各业",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "59422696"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 10,
+                              "children": [],
+                              "total_posts_count": 4
+                            },
+                            {
+                              "name": "程度规模",
+                              "path": "/理念/知识/概念/术语/修饰限定术语/量度修饰/程度规模",
+                              "id": 15096,
+                              "source_stable_id": 583,
+                              "source_type": "实质",
+                              "description": "表达程度高低、规模大小等可量化的强度修饰",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15818,
+                              "element_count": 13,
+                              "elements": [
+                                {
+                                  "name": "低门槛",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "669b52720000000025003596",
+                                    "672de546000000001b02cfeb"
+                                  ]
+                                },
+                                {
+                                  "name": "高规格",
+                                  "count": 5,
+                                  "post_ids": [
+                                    "67fd299a000000001c00cf5d",
+                                    "68b10b46000000001c00ca6c",
+                                    "68c15181000000001b01c358",
+                                    "68ca25bc000000000e023656",
+                                    "69297e47000000001e028ec3"
+                                  ]
+                                },
+                                {
+                                  "name": "高性价比",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "6965ea53000000000e00f0f1",
+                                    "69756d90000000001a020c81"
+                                  ]
+                                },
+                                {
+                                  "name": "大型",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "6911532d000000000503bd18",
+                                    "691acd15000000000402134e"
+                                  ]
+                                },
+                                {
+                                  "name": "高难度",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "44556070"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 13,
+                              "children": [],
+                              "total_posts_count": 11
+                            }
+                          ],
+                          "total_posts_count": 15
+                        }
+                      ],
+                      "total_posts_count": 29
+                    },
+                    {
+                      "name": "叙事创作术语",
+                      "path": "/理念/知识/概念/术语/叙事创作术语",
+                      "id": 15964,
+                      "source_stable_id": 222,
+                      "source_type": "实质",
+                      "description": "内容创作与叙事结构中的专业词汇,如主题、人物刻画、题材等",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15728,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 96,
+                      "children": [
+                        {
+                          "name": "内容题材",
+                          "path": "/理念/知识/概念/术语/叙事创作术语/内容题材",
+                          "id": 15866,
+                          "source_stable_id": 1006,
+                          "source_type": "实质",
+                          "description": "叙事创作中关于题材选择和内容体裁的术语",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15964,
+                          "element_count": 0,
+                          "elements": [],
+                          "total_element_count": 34,
+                          "children": [
+                            {
+                              "name": "内容形式",
+                              "path": "/理念/知识/概念/术语/叙事创作术语/内容题材/内容形式",
+                              "id": 15869,
+                              "source_stable_id": 619,
+                              "source_type": "实质",
+                              "description": "内容的体裁和表现形式,如段子、幽默段子、发疯文学、情感故事等",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15866,
+                              "element_count": 0,
+                              "elements": [],
+                              "total_element_count": 19,
+                              "children": [
+                                {
+                                  "name": "人物传记",
+                                  "path": "/理念/知识/概念/术语/叙事创作术语/内容题材/内容形式/人物传记",
+                                  "id": 15580,
+                                  "source_stable_id": 1384,
+                                  "source_type": "实质",
+                                  "description": "记录人物生平事迹的内容体裁,如传记、生平故事等",
+                                  "category_nature": "领域",
+                                  "level": 8,
+                                  "parent_id": 15869,
+                                  "element_count": 8,
+                                  "elements": [
+                                    {
+                                      "name": "传记",
+                                      "count": 2,
+                                      "post_ids": [
+                                        "2e93c00132e3a6a30c06efb6984ab71a",
+                                        "82b864cd83e9a5f376214dbc341d6dad"
+                                      ]
+                                    },
+                                    {
+                                      "name": "传奇生平",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "89627e4bf8ad865f175c54e3b0ddd2cd"
+                                      ]
+                                    },
+                                    {
+                                      "name": "生平故事",
+                                      "count": 3,
+                                      "post_ids": [
+                                        "2c73223f278ea6aecd70b5b54f0aff21",
+                                        "970bc999f557cf8026c950f254d3ddac",
+                                        "c84d14e15b8324b91df2cd8cb8304db9"
+                                      ]
+                                    },
+                                    {
+                                      "name": "人物传记",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "99823f406c9b376c3998329e1373930f"
+                                      ]
+                                    },
+                                    {
+                                      "name": "生平纪实",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "c84d14e15b8324b91df2cd8cb8304db9"
+                                      ]
+                                    }
+                                  ],
+                                  "total_element_count": 8,
+                                  "children": [],
+                                  "total_posts_count": 0
+                                },
+                                {
+                                  "name": "娱乐幽默",
+                                  "path": "/理念/知识/概念/术语/叙事创作术语/内容题材/内容形式/娱乐幽默",
+                                  "id": 15579,
+                                  "source_stable_id": 1383,
+                                  "source_type": "实质",
+                                  "description": "以幽默搞笑为核心的内容体裁,如段子、幽默段子、搞笑剧情等",
+                                  "category_nature": "领域",
+                                  "level": 8,
+                                  "parent_id": 15869,
+                                  "element_count": 3,
+                                  "elements": [
+                                    {
+                                      "name": "幽默大实话",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "56726652"
+                                      ]
+                                    },
+                                    {
+                                      "name": "幽默段子",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "55099131"
+                                      ]
+                                    },
+                                    {
+                                      "name": "幽默",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "55099131"
+                                      ]
+                                    }
+                                  ],
+                                  "total_element_count": 3,
+                                  "children": [],
+                                  "total_posts_count": 0
+                                },
+                                {
+                                  "name": "教学内容",
+                                  "path": "/理念/知识/概念/术语/叙事创作术语/内容题材/内容形式/教学内容",
+                                  "id": 15582,
+                                  "source_stable_id": 1387,
+                                  "source_type": "实质",
+                                  "description": "以教学引导为目的的内容体裁",
+                                  "category_nature": "领域",
+                                  "level": 8,
+                                  "parent_id": 15869,
+                                  "element_count": 3,
+                                  "elements": [
+                                    {
+                                      "name": "教学",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "672ed3b6000000003c017f82"
+                                      ]
+                                    },
+                                    {
+                                      "name": "写作教育对象",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "65114702"
+                                      ]
+                                    },
+                                    {
+                                      "name": "互动引导",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "57447289"
+                                      ]
+                                    }
+                                  ],
+                                  "total_element_count": 3,
+                                  "children": [],
+                                  "total_posts_count": 1
+                                },
+                                {
+                                  "name": "文学创作",
+                                  "path": "/理念/知识/概念/术语/叙事创作术语/内容题材/内容形式/文学创作",
+                                  "id": 15583,
+                                  "source_stable_id": 1388,
+                                  "source_type": "实质",
+                                  "description": "特定的文学创作体裁,如发疯文学等",
+                                  "category_nature": "领域",
+                                  "level": 8,
+                                  "parent_id": 15869,
+                                  "element_count": 2,
+                                  "elements": [
+                                    {
+                                      "name": "发疯文学",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "6964573a000000000d00800e"
+                                      ]
+                                    },
+                                    {
+                                      "name": "卖麦子逻辑",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "64456019"
+                                      ]
+                                    }
+                                  ],
+                                  "total_element_count": 2,
+                                  "children": [],
+                                  "total_posts_count": 1
+                                },
+                                {
+                                  "name": "新闻报道",
+                                  "path": "/理念/知识/概念/术语/叙事创作术语/内容题材/内容形式/新闻报道",
+                                  "id": 15581,
+                                  "source_stable_id": 1386,
+                                  "source_type": "实质",
+                                  "description": "新闻纪实类内容体裁,如严肃新闻、纪念内容等",
+                                  "category_nature": "领域",
+                                  "level": 8,
+                                  "parent_id": 15869,
+                                  "element_count": 1,
+                                  "elements": [
+                                    {
+                                      "name": "严肃新闻",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "b64188c6bcb0fb359d8e8075671584d6"
+                                      ]
+                                    }
+                                  ],
+                                  "total_element_count": 1,
+                                  "children": [],
+                                  "total_posts_count": 0
+                                },
+                                {
+                                  "name": "表达方式",
+                                  "path": "/理念/知识/概念/术语/叙事创作术语/内容题材/内容形式/表达方式",
+                                  "id": 15584,
+                                  "source_stable_id": 1389,
+                                  "source_type": "实质",
+                                  "description": "内容的表达方式和风格特征,如口播、对比评论等",
+                                  "category_nature": "领域",
+                                  "level": 8,
+                                  "parent_id": 15869,
+                                  "element_count": 2,
+                                  "elements": [
+                                    {
+                                      "name": "作品",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "64958390"
+                                      ]
+                                    },
+                                    {
+                                      "name": "接地气",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "64591962"
+                                      ]
+                                    }
+                                  ],
+                                  "total_element_count": 2,
+                                  "children": [],
+                                  "total_posts_count": 0
+                                }
+                              ],
+                              "total_posts_count": 2
+                            },
+                            {
+                              "name": "题材主题",
+                              "path": "/理念/知识/概念/术语/叙事创作术语/内容题材/题材主题",
+                              "id": 15341,
+                              "source_stable_id": 613,
+                              "source_type": "实质",
+                              "description": "内容创作的主题方向和题材类型,如反腐题材、革命主题、动物主题等",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15866,
+                              "element_count": 15,
+                              "elements": [
+                                {
+                                  "name": "时政新闻",
+                                  "count": 9,
+                                  "post_ids": [
+                                    "03c54bcf569a9f957f3879f5e87cbb19",
+                                    "1068bda1f94431bfb3b91b60073f1e46",
+                                    "333bd89e657acbcd9b26201f93cd8993",
+                                    "4bab077aa99a235a81c41631af69aa78",
+                                    "b90a1bbdf6dcddcaf4f4ee2f201e1d26",
+                                    "c8fa9b4d1526d3345bcb15c7d196b79d",
+                                    "d7dcfed942f432bd9c75ec4e2cd31b99",
+                                    "ef63cef6ce5336e59ccb523e35f355dd",
+                                    "fc4773ccef61d3092666496328603e9d"
+                                  ]
+                                },
+                                {
+                                  "name": "两岸时政",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "62da797f45d5b2a8ebd9149c3b52c719",
+                                    "d07f1c79dd4ef03b92592fa81d54755b"
+                                  ]
+                                },
+                                {
+                                  "name": "马主题",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "693f94d80000000019025898"
+                                  ]
+                                },
+                                {
+                                  "name": "电影主题",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "68302e2b000000000f038e8c"
+                                  ]
+                                },
+                                {
+                                  "name": "动物主题",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "66daeddb000000002603ea42"
+                                  ]
+                                },
+                                {
+                                  "name": "南瓜主题",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "6911532d000000000503bd18"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 15,
+                              "children": [],
+                              "total_posts_count": 4
+                            }
+                          ],
+                          "total_posts_count": 6
+                        },
+                        {
+                          "name": "创作构件",
+                          "path": "/理念/知识/概念/术语/叙事创作术语/创作构件",
+                          "id": 15868,
+                          "source_stable_id": 1008,
+                          "source_type": "实质",
+                          "description": "叙事创作中关于作品构成元素的术语",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15964,
+                          "element_count": 0,
+                          "elements": [],
+                          "total_element_count": 40,
+                          "children": [
+                            {
+                              "name": "人物塑造",
+                              "path": "/理念/知识/概念/术语/叙事创作术语/创作构件/人物塑造",
+                              "id": 15345,
+                              "source_stable_id": 616,
+                              "source_type": "实质",
+                              "description": "对人物形象的设定和刻画,如人物刻画、人设塑造、真话人设等",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15868,
+                              "element_count": 8,
+                              "elements": [
+                                {
+                                  "name": "人物介绍",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "accf5d531aaa9ef7b9e6fee360944151"
+                                  ]
+                                },
+                                {
+                                  "name": "无关人物",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "da753fb9dc1fc7f09ef8e5e7c014ada3"
+                                  ]
+                                },
+                                {
+                                  "name": "人物设定",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "82b864cd83e9a5f376214dbc341d6dad"
+                                  ]
+                                },
+                                {
+                                  "name": "人物对比",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "444f41a7f46eaee7dfa43d10cb0d10c5"
+                                  ]
+                                },
+                                {
+                                  "name": "母亲形象",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "2c73223f278ea6aecd70b5b54f0aff21"
+                                  ]
+                                },
+                                {
+                                  "name": "角色库",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "12357835"
+                                  ]
+                                },
+                                {
+                                  "name": "人设塑造",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "57447289"
+                                  ]
+                                },
+                                {
+                                  "name": "真话人设",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "56977187"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 8,
+                              "children": [],
+                              "total_posts_count": 0
+                            },
+                            {
+                              "name": "素材案例",
+                              "path": "/理念/知识/概念/术语/叙事创作术语/创作构件/素材案例",
+                              "id": 15346,
+                              "source_stable_id": 615,
+                              "source_type": "实质",
+                              "description": "创作中使用的具体实例和案例类型,如典型案例、真实案例、生活化案例等",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15868,
+                              "element_count": 2,
+                              "elements": [
+                                {
+                                  "name": "真假影像",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "b6482cda993c100f39d6eccf65261a24"
+                                  ]
+                                },
+                                {
+                                  "name": "叙事素材",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "2c73223f278ea6aecd70b5b54f0aff21"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 5,
+                              "children": [
+                                {
+                                  "name": "分析方法",
+                                  "path": "/理念/知识/概念/术语/叙事创作术语/创作构件/素材案例/分析方法",
+                                  "id": 15117,
+                                  "source_stable_id": 624,
+                                  "source_type": "实质",
+                                  "description": "对素材的分析和处理方法,如社会对比类、真假辨析、真话揭秘、情感升华等",
+                                  "category_nature": "领域",
+                                  "level": 8,
+                                  "parent_id": 15346,
+                                  "element_count": 2,
+                                  "elements": [
+                                    {
+                                      "name": "真话揭秘",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "56977187"
+                                      ]
+                                    },
+                                    {
+                                      "name": "真假辨析",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "56603938"
+                                      ]
+                                    }
+                                  ],
+                                  "total_element_count": 2,
+                                  "children": [],
+                                  "total_posts_count": 0
+                                },
+                                {
+                                  "name": "案例类型",
+                                  "path": "/理念/知识/概念/术语/叙事创作术语/创作构件/素材案例/案例类型",
+                                  "id": 15116,
+                                  "source_stable_id": 623,
+                                  "source_type": "实质",
+                                  "description": "不同类型的案例素材,如典型案例、真实案例、生活化案例、社会案例等",
+                                  "category_nature": "领域",
+                                  "level": 8,
+                                  "parent_id": 15346,
+                                  "element_count": 1,
+                                  "elements": [
+                                    {
+                                      "name": "生活化案例",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "62255386"
+                                      ]
+                                    }
+                                  ],
+                                  "total_element_count": 1,
+                                  "children": [],
+                                  "total_posts_count": 0
+                                }
+                              ],
+                              "total_posts_count": 0
+                            },
+                            {
+                              "name": "结构要素",
+                              "path": "/理念/知识/概念/术语/叙事创作术语/创作构件/结构要素",
+                              "id": 15870,
+                              "source_stable_id": 612,
+                              "source_type": "实质",
+                              "description": "叙事作品的基本组成部分,如故事、情节、主题、细节等",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15868,
+                              "element_count": 0,
+                              "elements": [],
+                              "total_element_count": 27,
+                              "children": [
+                                {
+                                  "name": "内容构成",
+                                  "path": "/理念/知识/概念/术语/叙事创作术语/创作构件/结构要素/内容构成",
+                                  "id": 15114,
+                                  "source_stable_id": 621,
+                                  "source_type": "实质",
+                                  "description": "内容的组成部分和核心要素,如主题、内容、主体、元素、细节等",
+                                  "category_nature": "领域",
+                                  "level": 8,
+                                  "parent_id": 15870,
+                                  "element_count": 13,
+                                  "elements": [
+                                    {
+                                      "name": "元素",
+                                      "count": 6,
+                                      "post_ids": [
+                                        "4bab077aa99a235a81c41631af69aa78",
+                                        "63146000",
+                                        "64585144",
+                                        "64589911",
+                                        "65407794",
+                                        "65529862"
+                                      ]
+                                    },
+                                    {
+                                      "name": "内容主体",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "b76365fa6008e98aea8b6876bcc4e3d0"
+                                      ]
+                                    },
+                                    {
+                                      "name": "争议点",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "1068bda1f94431bfb3b91b60073f1e46"
+                                      ]
+                                    },
+                                    {
+                                      "name": "情感纠葛",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "970bc999f557cf8026c950f254d3ddac"
+                                      ]
+                                    },
+                                    {
+                                      "name": "神态冲突",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "2c73223f278ea6aecd70b5b54f0aff21"
+                                      ]
+                                    },
+                                    {
+                                      "name": "礼法冲突",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "b5245c3e7b1c09af072ea40e41d3cca8"
+                                      ]
+                                    },
+                                    {
+                                      "name": "主题",
+                                      "count": 2,
+                                      "post_ids": [
+                                        "64958390",
+                                        "65270425"
+                                      ]
+                                    }
+                                  ],
+                                  "total_element_count": 13,
+                                  "children": [],
+                                  "total_posts_count": 0
+                                },
+                                {
+                                  "name": "叙事结构",
+                                  "path": "/理念/知识/概念/术语/叙事创作术语/创作构件/结构要素/叙事结构",
+                                  "id": 15113,
+                                  "source_stable_id": 620,
+                                  "source_type": "实质",
+                                  "description": "故事的组织结构和发展脉络,如故事、情节、结尾、结局、起因等",
+                                  "category_nature": "领域",
+                                  "level": 8,
+                                  "parent_id": 15870,
+                                  "element_count": 9,
+                                  "elements": [
+                                    {
+                                      "name": "故事",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "27f97d45367f3d0662d3204b3a4b0fb9"
+                                      ]
+                                    },
+                                    {
+                                      "name": "情感转折",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "b6482cda993c100f39d6eccf65261a24"
+                                      ]
+                                    },
+                                    {
+                                      "name": "结尾",
+                                      "count": 6,
+                                      "post_ids": [
+                                        "56603938",
+                                        "57442193",
+                                        "63712731",
+                                        "64076321",
+                                        "64210278",
+                                        "65114702"
+                                      ]
+                                    },
+                                    {
+                                      "name": "结局",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "55102015"
+                                      ]
+                                    }
+                                  ],
+                                  "total_element_count": 9,
+                                  "children": [],
+                                  "total_posts_count": 0
+                                },
+                                {
+                                  "name": "时空维度",
+                                  "path": "/理念/知识/概念/术语/叙事创作术语/创作构件/结构要素/时空维度",
+                                  "id": 15115,
+                                  "source_stable_id": 622,
+                                  "source_type": "实质",
+                                  "description": "时间和空间维度的叙事要素,如发展历程、全流程、话题、假想等",
+                                  "category_nature": "领域",
+                                  "level": 8,
+                                  "parent_id": 15870,
+                                  "element_count": 5,
+                                  "elements": [
+                                    {
+                                      "name": "话题",
+                                      "count": 4,
+                                      "post_ids": [
+                                        "62da797f45d5b2a8ebd9149c3b52c719",
+                                        "64442545",
+                                        "64935973"
+                                      ]
+                                    },
+                                    {
+                                      "name": "风格演变",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "b6482cda993c100f39d6eccf65261a24"
+                                      ]
+                                    }
+                                  ],
+                                  "total_element_count": 5,
+                                  "children": [],
+                                  "total_posts_count": 0
+                                }
+                              ],
+                              "total_posts_count": 0
+                            }
+                          ],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "表达技法",
+                          "path": "/理念/知识/概念/术语/叙事创作术语/表达技法",
+                          "id": 15867,
+                          "source_stable_id": 1007,
+                          "source_type": "实质",
+                          "description": "叙事创作中关于叙述方式和修辞表达的术语",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15964,
+                          "element_count": 0,
+                          "elements": [],
+                          "total_element_count": 22,
+                          "children": [
+                            {
+                              "name": "创意修辞",
+                              "path": "/理念/知识/概念/术语/叙事创作术语/表达技法/创意修辞",
+                              "id": 15344,
+                              "source_stable_id": 618,
+                              "source_type": "实质",
+                              "description": "创作中的创意元素和修辞手法,如谐音梗、网络热梗、错置元素等",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15867,
+                              "element_count": 12,
+                              "elements": [
+                                {
+                                  "name": "“留友看”",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "dae634c9aa8c31d38e925750d3fbfeb6"
+                                  ]
+                                },
+                                {
+                                  "name": "行为符号",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "970bc999f557cf8026c950f254d3ddac"
+                                  ]
+                                },
+                                {
+                                  "name": "错置元素",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "696078f70000000022038479",
+                                    "696079a10000000022031521"
+                                  ]
+                                },
+                                {
+                                  "name": "谐音梗",
+                                  "count": 5,
+                                  "post_ids": [
+                                    "68d76cd100000000120165e4",
+                                    "68f1b573000000000702052e",
+                                    "68f988f2000000000703ada5",
+                                    "68fa029e0000000007022932"
+                                  ]
+                                },
+                                {
+                                  "name": "网络热梗",
+                                  "count": 3,
+                                  "post_ids": [
+                                    "688366bd000000000d024147",
+                                    "68875186000000002501649d",
+                                    "68e8cac8000000000700da88"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 12,
+                              "children": [],
+                              "total_posts_count": 9
+                            },
+                            {
+                              "name": "叙事手法",
+                              "path": "/理念/知识/概念/术语/叙事创作术语/表达技法/叙事手法",
+                              "id": 15342,
+                              "source_stable_id": 614,
+                              "source_type": "实质",
+                              "description": "叙述故事的方式和风格,如宏大叙事、历史叙事、价值叙事等",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15867,
+                              "element_count": 6,
+                              "elements": [
+                                {
+                                  "name": "背景溯源",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "d7a04d4550a7c852ac4a16301e600aa5"
+                                  ]
+                                },
+                                {
+                                  "name": "悲剧性",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "99823f406c9b376c3998329e1373930f"
+                                  ]
+                                },
+                                {
+                                  "name": "宿命论基调",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "2c73223f278ea6aecd70b5b54f0aff21"
+                                  ]
+                                },
+                                {
+                                  "name": "价值叙事",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "57373464",
+                                    "57919607"
+                                  ]
+                                },
+                                {
+                                  "name": "痛点叙事",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "55994947"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 6,
+                              "children": [],
+                              "total_posts_count": 0
+                            },
+                            {
+                              "name": "呈现方式",
+                              "path": "/理念/知识/概念/术语/叙事创作术语/表达技法/呈现方式",
+                              "id": 15343,
+                              "source_stable_id": 617,
+                              "source_type": "实质",
+                              "description": "内容的展示角度和表达方式,如专家视角、第三方视角、事实呈现等",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15867,
+                              "element_count": 4,
+                              "elements": [
+                                {
+                                  "name": "多方证言",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "c8fa9b4d1526d3345bcb15c7d196b79d"
+                                  ]
+                                },
+                                {
+                                  "name": "事实陈述",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "afb320f2428ca07a2743d96dc21e4127"
+                                  ]
+                                },
+                                {
+                                  "name": "对话引用",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "2c73223f278ea6aecd70b5b54f0aff21"
+                                  ]
+                                },
+                                {
+                                  "name": "文字评述",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "03e3d299faba104965b33d87b5063eff"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 4,
+                              "children": [],
+                              "total_posts_count": 0
+                            }
+                          ],
+                          "total_posts_count": 9
+                        }
+                      ],
+                      "total_posts_count": 15
+                    },
+                    {
+                      "name": "学科思想术语",
+                      "path": "/理念/知识/概念/术语/学科思想术语",
+                      "id": 14938,
+                      "source_stable_id": 227,
+                      "source_type": "实质",
+                      "description": "学科领域、思想理论、知识体系等相关词汇",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15728,
+                      "element_count": 3,
+                      "elements": [
+                        {
+                          "name": "自爆",
+                          "count": 1,
+                          "post_ids": [
+                            "693d0b1d000000001e02ba36"
+                          ]
+                        },
+                        {
+                          "name": "教资考试",
+                          "count": 1,
+                          "post_ids": [
+                            "690d977d0000000007036331"
+                          ]
+                        },
+                        {
+                          "name": "高校等级",
+                          "count": 1,
+                          "post_ids": [
+                            "56603938"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 22,
+                      "children": [
+                        {
+                          "name": "学科领域",
+                          "path": "/理念/知识/概念/术语/学科思想术语/学科领域",
+                          "id": 15242,
+                          "source_stable_id": 790,
+                          "source_type": "实质",
+                          "description": "具体的学科、专业领域及其核心概念",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 14938,
+                          "element_count": 2,
+                          "elements": [
+                            {
+                              "name": "空间美学",
+                              "count": 1,
+                              "post_ids": [
+                                "82b864cd83e9a5f376214dbc341d6dad"
+                              ]
+                            },
+                            {
+                              "name": "哲学",
+                              "count": 1,
+                              "post_ids": [
+                                "21006075"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 2,
+                          "children": [],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "思想理论",
+                          "path": "/理念/知识/概念/术语/学科思想术语/思想理论",
+                          "id": 15243,
+                          "source_stable_id": 791,
+                          "source_type": "实质",
+                          "description": "系统化的思想体系、理论主张",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 14938,
+                          "element_count": 4,
+                          "elements": [
+                            {
+                              "name": "螺旋理论",
+                              "count": 1,
+                              "post_ids": [
+                                "55d981958a8fd219d9c713fb16c12170"
+                              ]
+                            },
+                            {
+                              "name": "钟摆效应",
+                              "count": 1,
+                              "post_ids": [
+                                "752267d0ca2695c2ceb816a43d943a6a"
+                              ]
+                            },
+                            {
+                              "name": "人道主义",
+                              "count": 1,
+                              "post_ids": [
+                                "2e93c00132e3a6a30c06efb6984ab71a"
+                              ]
+                            },
+                            {
+                              "name": "集体主义",
+                              "count": 1,
+                              "post_ids": [
+                                "57919607"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 4,
+                          "children": [],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "标准机制",
+                          "path": "/理念/知识/概念/术语/学科思想术语/标准机制",
+                          "id": 15245,
+                          "source_stable_id": 795,
+                          "source_type": "实质",
+                          "description": "规则、标准、制度、运作机制类术语",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 14938,
+                          "element_count": 1,
+                          "elements": [
+                            {
+                              "name": "规则例外",
+                              "count": 1,
+                              "post_ids": [
+                                "0834b527a0fe32c83eb9be0b1cf45140"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 1,
+                          "children": [],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "概念范畴",
+                          "path": "/理念/知识/概念/术语/学科思想术语/概念范畴",
+                          "id": 15837,
+                          "source_stable_id": 794,
+                          "source_type": "实质",
+                          "description": "抽象的概念、范畴、关系类术语",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 14938,
+                          "element_count": 0,
+                          "elements": [],
+                          "total_element_count": 9,
+                          "children": [
+                            {
+                              "name": "价值象征",
+                              "path": "/理念/知识/概念/术语/学科思想术语/概念范畴/价值象征",
+                              "id": 15712,
+                              "source_stable_id": 1610,
+                              "source_type": "实质",
+                              "description": "承载特定价值判断或象征隐喻意义的概念术语",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15837,
+                              "element_count": 2,
+                              "elements": [
+                                {
+                                  "name": "情感载体",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "62675775"
+                                  ]
+                                },
+                                {
+                                  "name": "价值符号",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "64591962"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 2,
+                              "children": [],
+                              "total_posts_count": 0
+                            },
+                            {
+                              "name": "关系结构",
+                              "path": "/理念/知识/概念/术语/学科思想术语/概念范畴/关系结构",
+                              "id": 15709,
+                              "source_stable_id": 1607,
+                              "source_type": "实质",
+                              "description": "描述事物间联系、对比、组成等结构性关系的概念术语",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15837,
+                              "element_count": 2,
+                              "elements": [
+                                {
+                                  "name": "跨物种",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "68f988f2000000000703ada5"
+                                  ]
+                                },
+                                {
+                                  "name": "二元对立",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "64870193"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 2,
+                              "children": [],
+                              "total_posts_count": 1
+                            },
+                            {
+                              "name": "时间过程",
+                              "path": "/理念/知识/概念/术语/学科思想术语/概念范畴/时间过程",
+                              "id": 15710,
+                              "source_stable_id": 1608,
+                              "source_type": "实质",
+                              "description": "描述事物发展变化、时间节奏等动态过程的概念术语",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15837,
+                              "element_count": 2,
+                              "elements": [
+                                {
+                                  "name": "进展",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "b64188c6bcb0fb359d8e8075671584d6"
+                                  ]
+                                },
+                                {
+                                  "name": "终结",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "b76365fa6008e98aea8b6876bcc4e3d0"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 2,
+                              "children": [],
+                              "total_posts_count": 0
+                            },
+                            {
+                              "name": "认知思辨",
+                              "path": "/理念/知识/概念/术语/学科思想术语/概念范畴/认知思辨",
+                              "id": 15711,
+                              "source_stable_id": 1609,
+                              "source_type": "实质",
+                              "description": "描述思维活动、认知判断、推理论证等思辨性概念术语",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15837,
+                              "element_count": 3,
+                              "elements": [
+                                {
+                                  "name": "策略",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "ff037b4ada852d5835240ffded2f7256"
+                                  ]
+                                },
+                                {
+                                  "name": "责任归因",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "afb320f2428ca07a2743d96dc21e4127"
+                                  ]
+                                },
+                                {
+                                  "name": "概念",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "65298913"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 3,
+                              "children": [],
+                              "total_posts_count": 0
+                            }
+                          ],
+                          "total_posts_count": 1
+                        },
+                        {
+                          "name": "逻辑原理",
+                          "path": "/理念/知识/概念/术语/学科思想术语/逻辑原理",
+                          "id": 15244,
+                          "source_stable_id": 793,
+                          "source_type": "实质",
+                          "description": "事物运行的内在规律、本质属性",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 14938,
+                          "element_count": 3,
+                          "elements": [
+                            {
+                              "name": "趋势",
+                              "count": 1,
+                              "post_ids": [
+                                "ff037b4ada852d5835240ffded2f7256"
+                              ]
+                            },
+                            {
+                              "name": "逻辑",
+                              "count": 1,
+                              "post_ids": [
+                                "ff037b4ada852d5835240ffded2f7256"
+                              ]
+                            },
+                            {
+                              "name": "底层逻辑",
+                              "count": 1,
+                              "post_ids": [
+                                "59422696"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 3,
+                          "children": [],
+                          "total_posts_count": 0
+                        }
+                      ],
+                      "total_posts_count": 3
+                    },
+                    {
+                      "name": "政治社会术语",
+                      "path": "/理念/知识/概念/术语/政治社会术语",
+                      "id": 14937,
+                      "source_stable_id": 224,
+                      "source_type": "实质",
+                      "description": "政治、外交、国际关系、社会治理等相关词汇",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15728,
+                      "element_count": 2,
+                      "elements": [
+                        {
+                          "name": "议题",
+                          "count": 1,
+                          "post_ids": [
+                            "ef63cef6ce5336e59ccb523e35f355dd"
+                          ]
+                        },
+                        {
+                          "name": "霸王逻辑",
+                          "count": 1,
+                          "post_ids": [
+                            "64958390"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 138,
+                      "children": [
+                        {
+                          "name": "军事安全",
+                          "path": "/理念/知识/概念/术语/政治社会术语/军事安全",
+                          "id": 15132,
+                          "source_stable_id": 642,
+                          "source_type": "实质",
+                          "description": "军事战备、安全保障、攻防能力等军事安全层面的术语",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 14937,
+                          "element_count": 8,
+                          "elements": [
+                            {
+                              "name": "全面军事管辖",
+                              "count": 1,
+                              "post_ids": [
+                                "9b95ed26ea9f265079b09e2d1032bc7c"
+                              ]
+                            },
+                            {
+                              "name": "海上秩序",
+                              "count": 1,
+                              "post_ids": [
+                                "9b95ed26ea9f265079b09e2d1032bc7c"
+                              ]
+                            },
+                            {
+                              "name": "维安",
+                              "count": 1,
+                              "post_ids": [
+                                "bc2f946d57e1c650575962e480eccf31"
+                              ]
+                            },
+                            {
+                              "name": "防务预算",
+                              "count": 1,
+                              "post_ids": [
+                                "da753fb9dc1fc7f09ef8e5e7c014ada3"
+                              ]
+                            },
+                            {
+                              "name": "外部敌对",
+                              "count": 1,
+                              "post_ids": [
+                                "601c09554a9851f9038026035b95fce9"
+                              ]
+                            },
+                            {
+                              "name": "投降",
+                              "count": 1,
+                              "post_ids": [
+                                "df635f43f39a1fa41c13da96320c45c3"
+                              ]
+                            },
+                            {
+                              "name": "躲兵役",
+                              "count": 1,
+                              "post_ids": [
+                                "df635f43f39a1fa41c13da96320c45c3"
+                              ]
+                            },
+                            {
+                              "name": "避役",
+                              "count": 1,
+                              "post_ids": [
+                                "df635f43f39a1fa41c13da96320c45c3"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 8,
+                          "children": [],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "国家治理",
+                          "path": "/理念/知识/概念/术语/政治社会术语/国家治理",
+                          "id": 15129,
+                          "source_stable_id": 639,
+                          "source_type": "实质",
+                          "description": "国家政策、制度、战略、实力等国家层面的治理术语",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 14937,
+                          "element_count": 3,
+                          "elements": [
+                            {
+                              "name": "权力博弈",
+                              "count": 2,
+                              "post_ids": [
+                                "89627e4bf8ad865f175c54e3b0ddd2cd",
+                                "dae634c9aa8c31d38e925750d3fbfeb6"
+                              ]
+                            },
+                            {
+                              "name": "主体地位",
+                              "count": 1,
+                              "post_ids": [
+                                "57919607"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 76,
+                          "children": [
+                            {
+                              "name": "国家实力",
+                              "path": "/理念/知识/概念/术语/政治社会术语/国家治理/国家实力",
+                              "id": 15134,
+                              "source_stable_id": 644,
+                              "source_type": "实质",
+                              "description": "国家综合实力、战略资源、地缘价值等国家实力层面的术语",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15129,
+                              "element_count": 1,
+                              "elements": [
+                                {
+                                  "name": "多维实力",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "04bcda9fc132c52a8eee5d7ba994119d"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 1,
+                              "children": [],
+                              "total_posts_count": 0
+                            },
+                            {
+                              "name": "政治运作",
+                              "path": "/理念/知识/概念/术语/政治社会术语/国家治理/政治运作",
+                              "id": 15974,
+                              "source_stable_id": 1044,
+                              "source_type": "实质",
+                              "description": "政治权力竞争、组织人事安排和策略博弈等政治活动运作术语",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15129,
+                              "element_count": 0,
+                              "elements": [],
+                              "total_element_count": 60,
+                              "children": [
+                                {
+                                  "name": "政治博弈",
+                                  "path": "/理念/知识/概念/术语/政治社会术语/国家治理/政治运作/政治博弈",
+                                  "id": 15881,
+                                  "source_stable_id": 1046,
+                                  "source_type": "实质",
+                                  "description": "政治力量间的权力竞争、对抗制衡和策略性行为",
+                                  "category_nature": "领域",
+                                  "level": 8,
+                                  "parent_id": 15974,
+                                  "element_count": 0,
+                                  "elements": [],
+                                  "total_element_count": 33,
+                                  "children": [
+                                    {
+                                      "name": "党派互动",
+                                      "path": "/理念/知识/概念/术语/政治社会术语/国家治理/政治运作/政治博弈/党派互动",
+                                      "id": 15916,
+                                      "source_stable_id": 1214,
+                                      "source_type": "实质",
+                                      "description": "政党、派系之间的合作、竞争与联盟关系",
+                                      "category_nature": "领域",
+                                      "level": 9,
+                                      "parent_id": 15881,
+                                      "element_count": 0,
+                                      "elements": [],
+                                      "total_element_count": 8,
+                                      "children": [
+                                        {
+                                          "name": "合作联盟",
+                                          "path": "/理念/知识/概念/术语/政治社会术语/国家治理/政治运作/政治博弈/党派互动/合作联盟",
+                                          "id": 15459,
+                                          "source_stable_id": 1219,
+                                          "source_type": "实质",
+                                          "description": "政党或派系之间的合作、联盟与协调行为",
+                                          "category_nature": "领域",
+                                          "level": 10,
+                                          "parent_id": 15916,
+                                          "element_count": 4,
+                                          "elements": [
+                                            {
+                                              "name": "合作逻辑",
+                                              "count": 1,
+                                              "post_ids": [
+                                                "8d43fa69c8f4f5e7d87ec45244cbd97c"
+                                              ]
+                                            },
+                                            {
+                                              "name": "蓝白合作",
+                                              "count": 1,
+                                              "post_ids": [
+                                                "ef63cef6ce5336e59ccb523e35f355dd"
+                                              ]
+                                            },
+                                            {
+                                              "name": "蓝白联手",
+                                              "count": 1,
+                                              "post_ids": [
+                                                "0374cca4a422e5aad9b24d721c7b4291"
+                                              ]
+                                            },
+                                            {
+                                              "name": "在野整合",
+                                              "count": 1,
+                                              "post_ids": [
+                                                "fa0633c278660309648633dea6294cb1"
+                                              ]
+                                            }
+                                          ],
+                                          "total_element_count": 4,
+                                          "children": [],
+                                          "total_posts_count": 0
+                                        },
+                                        {
+                                          "name": "派系竞争",
+                                          "path": "/理念/知识/概念/术语/政治社会术语/国家治理/政治运作/政治博弈/党派互动/派系竞争",
+                                          "id": 15460,
+                                          "source_stable_id": 1220,
+                                          "source_type": "实质",
+                                          "description": "政党或派系之间的竞争、对立与内部分裂",
+                                          "category_nature": "领域",
+                                          "level": 10,
+                                          "parent_id": 15916,
+                                          "element_count": 4,
+                                          "elements": [
+                                            {
+                                              "name": "两个太阳",
+                                              "count": 1,
+                                              "post_ids": [
+                                                "3b8bfac263ace2eb578c85c98630e566"
+                                              ]
+                                            },
+                                            {
+                                              "name": "内斗",
+                                              "count": 2,
+                                              "post_ids": [
+                                                "752267d0ca2695c2ceb816a43d943a6a",
+                                                "dae634c9aa8c31d38e925750d3fbfeb6"
+                                              ]
+                                            },
+                                            {
+                                              "name": "派系博弈",
+                                              "count": 1,
+                                              "post_ids": [
+                                                "b76365fa6008e98aea8b6876bcc4e3d0"
+                                              ]
+                                            }
+                                          ],
+                                          "total_element_count": 4,
+                                          "children": [],
+                                          "total_posts_count": 0
+                                        }
+                                      ],
+                                      "total_posts_count": 0
+                                    },
+                                    {
+                                      "name": "政治困境",
+                                      "path": "/理念/知识/概念/术语/政治社会术语/国家治理/政治运作/政治博弈/政治困境",
+                                      "id": 15457,
+                                      "source_stable_id": 1217,
+                                      "source_type": "实质",
+                                      "description": "政治运作中的僵局、危机与不利状态",
+                                      "category_nature": "领域",
+                                      "level": 9,
+                                      "parent_id": 15881,
+                                      "element_count": 6,
+                                      "elements": [
+                                        {
+                                          "name": "毁宪危机",
+                                          "count": 1,
+                                          "post_ids": [
+                                            "c8fa9b4d1526d3345bcb15c7d196b79d"
+                                          ]
+                                        },
+                                        {
+                                          "name": "宪政僵局",
+                                          "count": 1,
+                                          "post_ids": [
+                                            "c8fa9b4d1526d3345bcb15c7d196b79d"
+                                          ]
+                                        },
+                                        {
+                                          "name": "政治绝境",
+                                          "count": 1,
+                                          "post_ids": [
+                                            "d07f1c79dd4ef03b92592fa81d54755b"
+                                          ]
+                                        },
+                                        {
+                                          "name": "局势",
+                                          "count": 1,
+                                          "post_ids": [
+                                            "752267d0ca2695c2ceb816a43d943a6a"
+                                          ]
+                                        },
+                                        {
+                                          "name": "执政包袱",
+                                          "count": 1,
+                                          "post_ids": [
+                                            "752267d0ca2695c2ceb816a43d943a6a"
+                                          ]
+                                        },
+                                        {
+                                          "name": "变数",
+                                          "count": 1,
+                                          "post_ids": [
+                                            "752267d0ca2695c2ceb816a43d943a6a"
+                                          ]
+                                        }
+                                      ],
+                                      "total_element_count": 6,
+                                      "children": [],
+                                      "total_posts_count": 0
+                                    },
+                                    {
+                                      "name": "政治策略",
+                                      "path": "/理念/知识/概念/术语/政治社会术语/国家治理/政治运作/政治博弈/政治策略",
+                                      "id": 15917,
+                                      "source_stable_id": 1216,
+                                      "source_type": "实质",
+                                      "description": "政治行动中的战略规划、战术手段与应对措施",
+                                      "category_nature": "领域",
+                                      "level": 9,
+                                      "parent_id": 15881,
+                                      "element_count": 0,
+                                      "elements": [],
+                                      "total_element_count": 7,
+                                      "children": [
+                                        {
+                                          "name": "反制措施",
+                                          "path": "/理念/知识/概念/术语/政治社会术语/国家治理/政治运作/政治博弈/政治策略/反制措施",
+                                          "id": 15462,
+                                          "source_stable_id": 1222,
+                                          "source_type": "实质",
+                                          "description": "针对对方施压或攻击的回击性措施与手段",
+                                          "category_nature": "领域",
+                                          "level": 10,
+                                          "parent_id": 15917,
+                                          "element_count": 3,
+                                          "elements": [
+                                            {
+                                              "name": "三大棒",
+                                              "count": 1,
+                                              "post_ids": [
+                                                "0374cca4a422e5aad9b24d721c7b4291"
+                                              ]
+                                            },
+                                            {
+                                              "name": "反制",
+                                              "count": 1,
+                                              "post_ids": [
+                                                "0374cca4a422e5aad9b24d721c7b4291"
+                                              ]
+                                            },
+                                            {
+                                              "name": "反制手段",
+                                              "count": 1,
+                                              "post_ids": [
+                                                "0374cca4a422e5aad9b24d721c7b4291"
+                                              ]
+                                            }
+                                          ],
+                                          "total_element_count": 3,
+                                          "children": [],
+                                          "total_posts_count": 0
+                                        },
+                                        {
+                                          "name": "战略布局",
+                                          "path": "/理念/知识/概念/术语/政治社会术语/国家治理/政治运作/政治博弈/政治策略/战略布局",
+                                          "id": 15461,
+                                          "source_stable_id": 1221,
+                                          "source_type": "实质",
+                                          "description": "政治行动的整体规划、布局与战略安排",
+                                          "category_nature": "领域",
+                                          "level": 10,
+                                          "parent_id": 15917,
+                                          "element_count": 4,
+                                          "elements": [
+                                            {
+                                              "name": "布局",
+                                              "count": 2,
+                                              "post_ids": [
+                                                "59c0ba8a450a7d2327b78d72c0697938",
+                                                "8d43fa69c8f4f5e7d87ec45244cbd97c"
+                                              ]
+                                            },
+                                            {
+                                              "name": "三不",
+                                              "count": 1,
+                                              "post_ids": [
+                                                "8d43fa69c8f4f5e7d87ec45244cbd97c"
+                                              ]
+                                            },
+                                            {
+                                              "name": "提名原则",
+                                              "count": 1,
+                                              "post_ids": [
+                                                "8d43fa69c8f4f5e7d87ec45244cbd97c"
+                                              ]
+                                            }
+                                          ],
+                                          "total_element_count": 4,
+                                          "children": [],
+                                          "total_posts_count": 0
+                                        }
+                                      ],
+                                      "total_posts_count": 0
+                                    },
+                                    {
+                                      "name": "政治话语",
+                                      "path": "/理念/知识/概念/术语/政治社会术语/国家治理/政治运作/政治博弈/政治话语",
+                                      "id": 15458,
+                                      "source_stable_id": 1218,
+                                      "source_type": "实质",
+                                      "description": "政治博弈中的修辞表达、概念标签与话语策略",
+                                      "category_nature": "领域",
+                                      "level": 9,
+                                      "parent_id": 15881,
+                                      "element_count": 6,
+                                      "elements": [
+                                        {
+                                          "name": "激进政见",
+                                          "count": 1,
+                                          "post_ids": [
+                                            "f97823103ca8ad6cd69037958d17ae32"
+                                          ]
+                                        },
+                                        {
+                                          "name": "马维拉",
+                                          "count": 1,
+                                          "post_ids": [
+                                            "49d6570f82c62ca372c932b67467878f"
+                                          ]
+                                        },
+                                        {
+                                          "name": "责任推卸",
+                                          "count": 1,
+                                          "post_ids": [
+                                            "49d6570f82c62ca372c932b67467878f"
+                                          ]
+                                        },
+                                        {
+                                          "name": "先例",
+                                          "count": 1,
+                                          "post_ids": [
+                                            "0374cca4a422e5aad9b24d721c7b4291"
+                                          ]
+                                        },
+                                        {
+                                          "name": "路线对比",
+                                          "count": 1,
+                                          "post_ids": [
+                                            "f99ae5be8892806e2d10834f402e89e1"
+                                          ]
+                                        },
+                                        {
+                                          "name": "身份政治",
+                                          "count": 1,
+                                          "post_ids": [
+                                            "1068bda1f94431bfb3b91b60073f1e46"
+                                          ]
+                                        }
+                                      ],
+                                      "total_element_count": 6,
+                                      "children": [],
+                                      "total_posts_count": 0
+                                    },
+                                    {
+                                      "name": "权力对抗",
+                                      "path": "/理念/知识/概念/术语/政治社会术语/国家治理/政治运作/政治博弈/权力对抗",
+                                      "id": 15456,
+                                      "source_stable_id": 1215,
+                                      "source_type": "实质",
+                                      "description": "政治力量间的直接竞争、冲突与制衡行为",
+                                      "category_nature": "领域",
+                                      "level": 9,
+                                      "parent_id": 15881,
+                                      "element_count": 6,
+                                      "elements": [
+                                        {
+                                          "name": "道德质询",
+                                          "count": 1,
+                                          "post_ids": [
+                                            "49d6570f82c62ca372c932b67467878f"
+                                          ]
+                                        },
+                                        {
+                                          "name": "政治博弈",
+                                          "count": 1,
+                                          "post_ids": [
+                                            "0374cca4a422e5aad9b24d721c7b4291"
+                                          ]
+                                        },
+                                        {
+                                          "name": "多方博弈",
+                                          "count": 2,
+                                          "post_ids": [
+                                            "f99ae5be8892806e2d10834f402e89e1",
+                                            "fa0633c278660309648633dea6294cb1"
+                                          ]
+                                        },
+                                        {
+                                          "name": "直球对决",
+                                          "count": 1,
+                                          "post_ids": [
+                                            "412f4d35be48179908fef312b53cad43"
+                                          ]
+                                        },
+                                        {
+                                          "name": "政治威胁",
+                                          "count": 1,
+                                          "post_ids": [
+                                            "dae634c9aa8c31d38e925750d3fbfeb6"
+                                          ]
+                                        }
+                                      ],
+                                      "total_element_count": 6,
+                                      "children": [],
+                                      "total_posts_count": 0
+                                    }
+                                  ],
+                                  "total_posts_count": 0
+                                },
+                                {
+                                  "name": "组织人事",
+                                  "path": "/理念/知识/概念/术语/政治社会术语/国家治理/政治运作/组织人事",
+                                  "id": 15882,
+                                  "source_stable_id": 1047,
+                                  "source_type": "实质",
+                                  "description": "政党和政府内部的人员调配、接班安排和组织运作管理",
+                                  "category_nature": "领域",
+                                  "level": 8,
+                                  "parent_id": 15974,
+                                  "element_count": 0,
+                                  "elements": [],
+                                  "total_element_count": 27,
+                                  "children": [
+                                    {
+                                      "name": "人事调配",
+                                      "path": "/理念/知识/概念/术语/政治社会术语/国家治理/政治运作/组织人事/人事调配",
+                                      "id": 15534,
+                                      "source_stable_id": 1323,
+                                      "source_type": "实质",
+                                      "description": "政党和政府内部的日常人员职位安排、变动与名单确定",
+                                      "category_nature": "领域",
+                                      "level": 9,
+                                      "parent_id": 15882,
+                                      "element_count": 10,
+                                      "elements": [
+                                        {
+                                          "name": "党务人事",
+                                          "count": 1,
+                                          "post_ids": [
+                                            "d7a04d4550a7c852ac4a16301e600aa5"
+                                          ]
+                                        },
+                                        {
+                                          "name": "人事变动",
+                                          "count": 1,
+                                          "post_ids": [
+                                            "d7a04d4550a7c852ac4a16301e600aa5"
+                                          ]
+                                        },
+                                        {
+                                          "name": "核心人事",
+                                          "count": 1,
+                                          "post_ids": [
+                                            "d7a04d4550a7c852ac4a16301e600aa5"
+                                          ]
+                                        },
+                                        {
+                                          "name": "国民党人事名单",
+                                          "count": 1,
+                                          "post_ids": [
+                                            "accf5d531aaa9ef7b9e6fee360944151"
+                                          ]
+                                        },
+                                        {
+                                          "name": "郑丽文版",
+                                          "count": 1,
+                                          "post_ids": [
+                                            "accf5d531aaa9ef7b9e6fee360944151"
+                                          ]
+                                        },
+                                        {
+                                          "name": "政党人事变动",
+                                          "count": 1,
+                                          "post_ids": [
+                                            "accf5d531aaa9ef7b9e6fee360944151"
+                                          ]
+                                        },
+                                        {
+                                          "name": "人事布局",
+                                          "count": 1,
+                                          "post_ids": [
+                                            "3de8289cfddb37a8b027d60dce4dfdb1"
+                                          ]
+                                        },
+                                        {
+                                          "name": "政党人事",
+                                          "count": 1,
+                                          "post_ids": [
+                                            "3de8289cfddb37a8b027d60dce4dfdb1"
+                                          ]
+                                        },
+                                        {
+                                          "name": "民众党人事变动",
+                                          "count": 1,
+                                          "post_ids": [
+                                            "0834b527a0fe32c83eb9be0b1cf45140"
+                                          ]
+                                        },
+                                        {
+                                          "name": "递补人员",
+                                          "count": 1,
+                                          "post_ids": [
+                                            "0834b527a0fe32c83eb9be0b1cf45140"
+                                          ]
+                                        }
+                                      ],
+                                      "total_element_count": 10,
+                                      "children": [],
+                                      "total_posts_count": 0
+                                    },
+                                    {
+                                      "name": "党内运作",
+                                      "path": "/理念/知识/概念/术语/政治社会术语/国家治理/政治运作/组织人事/党内运作",
+                                      "id": 15537,
+                                      "source_stable_id": 1326,
+                                      "source_type": "实质",
+                                      "description": "政党内部的协调机制、治理模式与人才储备问题",
+                                      "category_nature": "领域",
+                                      "level": 9,
+                                      "parent_id": 15882,
+                                      "element_count": 3,
+                                      "elements": [
+                                        {
+                                          "name": "党内协调",
+                                          "count": 1,
+                                          "post_ids": [
+                                            "fa0633c278660309648633dea6294cb1"
+                                          ]
+                                        },
+                                        {
+                                          "name": "人才荒",
+                                          "count": 1,
+                                          "post_ids": [
+                                            "752267d0ca2695c2ceb816a43d943a6a"
+                                          ]
+                                        },
+                                        {
+                                          "name": "元老政治",
+                                          "count": 1,
+                                          "post_ids": [
+                                            "b76365fa6008e98aea8b6876bcc4e3d0"
+                                          ]
+                                        }
+                                      ],
+                                      "total_element_count": 3,
+                                      "children": [],
+                                      "total_posts_count": 0
+                                    },
+                                    {
+                                      "name": "政治态势",
+                                      "path": "/理念/知识/概念/术语/政治社会术语/国家治理/政治运作/组织人事/政治态势",
+                                      "id": 15538,
+                                      "source_stable_id": 1327,
+                                      "source_type": "实质",
+                                      "description": "特定地区或政党的政治局势、环境与整体态势",
+                                      "category_nature": "领域",
+                                      "level": 9,
+                                      "parent_id": 15882,
+                                      "element_count": 7,
+                                      "elements": [
+                                        {
+                                          "name": "国民党政治局势",
+                                          "count": 1,
+                                          "post_ids": [
+                                            "b9bc7d3c46583a41a76867f0ac7e62f1"
+                                          ]
+                                        },
+                                        {
+                                          "name": "台湾政坛",
+                                          "count": 4,
+                                          "post_ids": [
+                                            "2a2c642e67822ed8c11f9d306e815a35",
+                                            "dae634c9aa8c31d38e925750d3fbfeb6",
+                                            "e04fd15a06f8c97486e48990e85c8492",
+                                            "f97823103ca8ad6cd69037958d17ae32"
+                                          ]
+                                        },
+                                        {
+                                          "name": "台湾政局",
+                                          "count": 1,
+                                          "post_ids": [
+                                            "0374cca4a422e5aad9b24d721c7b4291"
+                                          ]
+                                        },
+                                        {
+                                          "name": "国民党局势",
+                                          "count": 1,
+                                          "post_ids": [
+                                            "412f4d35be48179908fef312b53cad43"
+                                          ]
+                                        }
+                                      ],
+                                      "total_element_count": 7,
+                                      "children": [],
+                                      "total_posts_count": 0
+                                    },
+                                    {
+                                      "name": "权力传承",
+                                      "path": "/理念/知识/概念/术语/政治社会术语/国家治理/政治运作/组织人事/权力传承",
+                                      "id": 15536,
+                                      "source_stable_id": 1325,
+                                      "source_type": "实质",
+                                      "description": "政治权力的代际更替、接班安排与传承机制",
+                                      "category_nature": "领域",
+                                      "level": 9,
+                                      "parent_id": 15882,
+                                      "element_count": 3,
+                                      "elements": [
+                                        {
+                                          "name": "政治传承",
+                                          "count": 1,
+                                          "post_ids": [
+                                            "b4fbfb562ad4863ceb0a12e7110f3da7"
+                                          ]
+                                        },
+                                        {
+                                          "name": "县市接班",
+                                          "count": 1,
+                                          "post_ids": [
+                                            "752267d0ca2695c2ceb816a43d943a6a"
+                                          ]
+                                        },
+                                        {
+                                          "name": "权力更迭",
+                                          "count": 1,
+                                          "post_ids": [
+                                            "b76365fa6008e98aea8b6876bcc4e3d0"
+                                          ]
+                                        }
+                                      ],
+                                      "total_element_count": 3,
+                                      "children": [],
+                                      "total_posts_count": 0
+                                    },
+                                    {
+                                      "name": "选举布局",
+                                      "path": "/理念/知识/概念/术语/政治社会术语/国家治理/政治运作/组织人事/选举布局",
+                                      "id": 15535,
+                                      "source_stable_id": 1324,
+                                      "source_type": "实质",
+                                      "description": "选举活动中的人事安排、选情态势与选区评估",
+                                      "category_nature": "领域",
+                                      "level": 9,
+                                      "parent_id": 15882,
+                                      "element_count": 4,
+                                      "elements": [
+                                        {
+                                          "name": "艰困选区",
+                                          "count": 1,
+                                          "post_ids": [
+                                            "59c0ba8a450a7d2327b78d72c0697938"
+                                          ]
+                                        },
+                                        {
+                                          "name": "台湾选情",
+                                          "count": 1,
+                                          "post_ids": [
+                                            "fa0633c278660309648633dea6294cb1"
+                                          ]
+                                        },
+                                        {
+                                          "name": "县市选情",
+                                          "count": 1,
+                                          "post_ids": [
+                                            "fa0633c278660309648633dea6294cb1"
+                                          ]
+                                        },
+                                        {
+                                          "name": "选情",
+                                          "count": 1,
+                                          "post_ids": [
+                                            "752267d0ca2695c2ceb816a43d943a6a"
+                                          ]
+                                        }
+                                      ],
+                                      "total_element_count": 4,
+                                      "children": [],
+                                      "total_posts_count": 0
+                                    }
+                                  ],
+                                  "total_posts_count": 0
+                                }
+                              ],
+                              "total_posts_count": 0
+                            },
+                            {
+                              "name": "政策制度",
+                              "path": "/理念/知识/概念/术语/政治社会术语/国家治理/政策制度",
+                              "id": 15133,
+                              "source_stable_id": 643,
+                              "source_type": "实质",
+                              "description": "政府政策、制度设计、评价体系等国家治理层面的政策制度术语",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15129,
+                              "element_count": 12,
+                              "elements": [
+                                {
+                                  "name": "军事管辖政策",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "9b95ed26ea9f265079b09e2d1032bc7c"
+                                  ]
+                                },
+                                {
+                                  "name": "停砍年金法案",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "49d6570f82c62ca372c932b67467878f"
+                                  ]
+                                },
+                                {
+                                  "name": "差别对待",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "49d6570f82c62ca372c932b67467878f"
+                                  ]
+                                },
+                                {
+                                  "name": "选举质询",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "61db1ae4bd885760b0f5cca9ecacb588"
+                                  ]
+                                },
+                                {
+                                  "name": "议会质询",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "61db1ae4bd885760b0f5cca9ecacb588"
+                                  ]
+                                },
+                                {
+                                  "name": "公投绑大选",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "4020e56c08340e92c9862e481c07d2e2"
+                                  ]
+                                },
+                                {
+                                  "name": "政策平台",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "ef63cef6ce5336e59ccb523e35f355dd"
+                                  ]
+                                },
+                                {
+                                  "name": "联合政府",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "ef63cef6ce5336e59ccb523e35f355dd"
+                                  ]
+                                },
+                                {
+                                  "name": "两年条款",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "0834b527a0fe32c83eb9be0b1cf45140"
+                                  ]
+                                },
+                                {
+                                  "name": "执行差异",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "0834b527a0fe32c83eb9be0b1cf45140"
+                                  ]
+                                },
+                                {
+                                  "name": "资源分配",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "64650216"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 12,
+                              "children": [],
+                              "total_posts_count": 0
+                            }
+                          ],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "国际政治",
+                          "path": "/理念/知识/概念/术语/政治社会术语/国际政治",
+                          "id": 15826,
+                          "source_stable_id": 638,
+                          "source_type": "实质",
+                          "description": "国际关系、外交、地缘政治等跨国层面的政治术语",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 14937,
+                          "element_count": 0,
+                          "elements": [],
+                          "total_element_count": 28,
+                          "children": [
+                            {
+                              "name": "主权法理",
+                              "path": "/理念/知识/概念/术语/政治社会术语/国际政治/主权法理",
+                              "id": 15703,
+                              "source_stable_id": 1579,
+                              "source_type": "实质",
+                              "description": "国际法律框架下的主权界定与领土法理",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15826,
+                              "element_count": 1,
+                              "elements": [
+                                {
+                                  "name": "内海范畴",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "9b95ed26ea9f265079b09e2d1032bc7c"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 1,
+                              "children": [],
+                              "total_posts_count": 0
+                            },
+                            {
+                              "name": "双边关系",
+                              "path": "/理念/知识/概念/术语/政治社会术语/国际政治/双边关系",
+                              "id": 15943,
+                              "source_stable_id": 1576,
+                              "source_type": "实质",
+                              "description": "两个国家或地区之间的政治外交关系",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15826,
+                              "element_count": 0,
+                              "elements": [],
+                              "total_element_count": 23,
+                              "children": [
+                                {
+                                  "name": "两岸关系",
+                                  "path": "/理念/知识/概念/术语/政治社会术语/国际政治/双边关系/两岸关系",
+                                  "id": 15704,
+                                  "source_stable_id": 1043,
+                                  "source_type": "实质",
+                                  "description": "中国大陆与台湾地区之间的政治互动、政策主张和安全议题",
+                                  "category_nature": "领域",
+                                  "level": 8,
+                                  "parent_id": 15943,
+                                  "element_count": 23,
+                                  "elements": [
+                                    {
+                                      "name": "台海",
+                                      "count": 5,
+                                      "post_ids": [
+                                        "1068bda1f94431bfb3b91b60073f1e46",
+                                        "9b95ed26ea9f265079b09e2d1032bc7c",
+                                        "bc2f946d57e1c650575962e480eccf31",
+                                        "df635f43f39a1fa41c13da96320c45c3"
+                                      ]
+                                    },
+                                    {
+                                      "name": "两岸路线",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "b9bc7d3c46583a41a76867f0ac7e62f1"
+                                      ]
+                                    },
+                                    {
+                                      "name": "两岸",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "55d981958a8fd219d9c713fb16c12170"
+                                      ]
+                                    },
+                                    {
+                                      "name": "强强联手",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "55d981958a8fd219d9c713fb16c12170"
+                                      ]
+                                    },
+                                    {
+                                      "name": "台湾同胞祖籍",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "04bcda9fc132c52a8eee5d7ba994119d"
+                                      ]
+                                    },
+                                    {
+                                      "name": "两岸和平融合发展",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "04bcda9fc132c52a8eee5d7ba994119d"
+                                      ]
+                                    },
+                                    {
+                                      "name": "2027武统言论",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "cb673ebabb42a9499b3532943f8bb974"
+                                      ]
+                                    },
+                                    {
+                                      "name": "台海时政",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "cb673ebabb42a9499b3532943f8bb974"
+                                      ]
+                                    },
+                                    {
+                                      "name": "两岸安全议题",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "cb673ebabb42a9499b3532943f8bb974"
+                                      ]
+                                    },
+                                    {
+                                      "name": "兵凶战危警告",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "da753fb9dc1fc7f09ef8e5e7c014ada3"
+                                      ]
+                                    },
+                                    {
+                                      "name": "台海局势动态",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "da753fb9dc1fc7f09ef8e5e7c014ada3"
+                                      ]
+                                    },
+                                    {
+                                      "name": "红利事实",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "62da797f45d5b2a8ebd9149c3b52c719"
+                                      ]
+                                    },
+                                    {
+                                      "name": "两岸和平框架",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "f99ae5be8892806e2d10834f402e89e1"
+                                      ]
+                                    },
+                                    {
+                                      "name": "亲陆不反美",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "f99ae5be8892806e2d10834f402e89e1"
+                                      ]
+                                    },
+                                    {
+                                      "name": "先陆后美",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "f99ae5be8892806e2d10834f402e89e1"
+                                      ]
+                                    },
+                                    {
+                                      "name": "两岸政治主张",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "f99ae5be8892806e2d10834f402e89e1"
+                                      ]
+                                    },
+                                    {
+                                      "name": "制度化和平机制",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "f99ae5be8892806e2d10834f402e89e1"
+                                      ]
+                                    },
+                                    {
+                                      "name": "两岸关系",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "22bcaccb2262e8864af03c8323490832"
+                                      ]
+                                    },
+                                    {
+                                      "name": "陆配参政权",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "1068bda1f94431bfb3b91b60073f1e46"
+                                      ]
+                                    }
+                                  ],
+                                  "total_element_count": 23,
+                                  "children": [],
+                                  "total_posts_count": 0
+                                }
+                              ],
+                              "total_posts_count": 0
+                            },
+                            {
+                              "name": "地缘政治",
+                              "path": "/理念/知识/概念/术语/政治社会术语/国际政治/地缘政治",
+                              "id": 15702,
+                              "source_stable_id": 1575,
+                              "source_type": "实质",
+                              "description": "基于地理因素的国际政治分析、战略与博弈",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15826,
+                              "element_count": 4,
+                              "elements": [
+                                {
+                                  "name": "地缘博弈",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "9b95ed26ea9f265079b09e2d1032bc7c"
+                                  ]
+                                },
+                                {
+                                  "name": "地缘元素",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "3b8bfac263ace2eb578c85c98630e566"
+                                  ]
+                                },
+                                {
+                                  "name": "地缘政治博弈论",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "afb320f2428ca07a2743d96dc21e4127"
+                                  ]
+                                },
+                                {
+                                  "name": "地缘政治优先级",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "f99ae5be8892806e2d10834f402e89e1"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 4,
+                              "children": [],
+                              "total_posts_count": 0
+                            }
+                          ],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "法律规范",
+                          "path": "/理念/知识/概念/术语/政治社会术语/法律规范",
+                          "id": 15131,
+                          "source_stable_id": 641,
+                          "source_type": "实质",
+                          "description": "法律程序、法理依据、法律地位等法律层面的规范术语",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 14937,
+                          "element_count": 8,
+                          "elements": [
+                            {
+                              "name": "法理",
+                              "count": 2,
+                              "post_ids": [
+                                "412f4d35be48179908fef312b53cad43",
+                                "9b95ed26ea9f265079b09e2d1032bc7c"
+                              ]
+                            },
+                            {
+                              "name": "引渡风险",
+                              "count": 1,
+                              "post_ids": [
+                                "bc2f946d57e1c650575962e480eccf31"
+                              ]
+                            },
+                            {
+                              "name": "不副署",
+                              "count": 1,
+                              "post_ids": [
+                                "0374cca4a422e5aad9b24d721c7b4291"
+                              ]
+                            },
+                            {
+                              "name": "重判10年",
+                              "count": 1,
+                              "post_ids": [
+                                "df635f43f39a1fa41c13da96320c45c3"
+                              ]
+                            },
+                            {
+                              "name": "司法争议性",
+                              "count": 1,
+                              "post_ids": [
+                                "b90a1bbdf6dcddcaf4f4ee2f201e1d26"
+                              ]
+                            },
+                            {
+                              "name": "定性词汇",
+                              "count": 1,
+                              "post_ids": [
+                                "22bcaccb2262e8864af03c8323490832"
+                              ]
+                            },
+                            {
+                              "name": "合法性辩论",
+                              "count": 1,
+                              "post_ids": [
+                                "1068bda1f94431bfb3b91b60073f1e46"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 8,
+                          "children": [],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "社会结构",
+                          "path": "/理念/知识/概念/术语/政治社会术语/社会结构",
+                          "id": 15130,
+                          "source_stable_id": 640,
+                          "source_type": "实质",
+                          "description": "社会阶层、社会机构、社会运行逻辑等社会层面的结构术语",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 14937,
+                          "element_count": 7,
+                          "elements": [
+                            {
+                              "name": "王室教条",
+                              "count": 1,
+                              "post_ids": [
+                                "444f41a7f46eaee7dfa43d10cb0d10c5"
+                              ]
+                            },
+                            {
+                              "name": "冲突",
+                              "count": 2,
+                              "post_ids": [
+                                "444f41a7f46eaee7dfa43d10cb0d10c5",
+                                "64870193"
+                              ]
+                            },
+                            {
+                              "name": "社会公益",
+                              "count": 1,
+                              "post_ids": [
+                                "64610874"
+                              ]
+                            },
+                            {
+                              "name": "社会价值观",
+                              "count": 1,
+                              "post_ids": [
+                                "64076321"
+                              ]
+                            },
+                            {
+                              "name": "利益相关方",
+                              "count": 1,
+                              "post_ids": [
+                                "57853678"
+                              ]
+                            },
+                            {
+                              "name": "熟人社群",
+                              "count": 1,
+                              "post_ids": [
+                                "55994947"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 16,
+                          "children": [
+                            {
+                              "name": "社会组织",
+                              "path": "/理念/知识/概念/术语/政治社会术语/社会结构/社会组织",
+                              "id": 15135,
+                              "source_stable_id": 645,
+                              "source_type": "实质",
+                              "description": "社会机构、公共组织、组织形式等社会组织层面的术语",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15130,
+                              "element_count": 4,
+                              "elements": [
+                                {
+                                  "name": "利益群体",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "49d6570f82c62ca372c932b67467878f"
+                                  ]
+                                },
+                                {
+                                  "name": "利益共同体",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "04bcda9fc132c52a8eee5d7ba994119d"
+                                  ]
+                                },
+                                {
+                                  "name": "社会机构",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "64456019",
+                                    "64975752"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 4,
+                              "children": [],
+                              "total_posts_count": 0
+                            },
+                            {
+                              "name": "社会阶层",
+                              "path": "/理念/知识/概念/术语/政治社会术语/社会结构/社会阶层",
+                              "id": 15136,
+                              "source_stable_id": 646,
+                              "source_type": "实质",
+                              "description": "社会阶层、阶级地位、职业群体等社会分层术语",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15130,
+                              "element_count": 5,
+                              "elements": [
+                                {
+                                  "name": "阶级代价",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "2e93c00132e3a6a30c06efb6984ab71a"
+                                  ]
+                                },
+                                {
+                                  "name": "贵族阶层",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "2e93c00132e3a6a30c06efb6984ab71a"
+                                  ]
+                                },
+                                {
+                                  "name": "等级差异",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "b5245c3e7b1c09af072ea40e41d3cca8"
+                                  ]
+                                },
+                                {
+                                  "name": "社会阶层",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "64415308"
+                                  ]
+                                },
+                                {
+                                  "name": "阶级地位",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "57373464"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 5,
+                              "children": [],
+                              "total_posts_count": 0
+                            }
+                          ],
+                          "total_posts_count": 0
+                        }
+                      ],
+                      "total_posts_count": 0
+                    },
+                    {
+                      "name": "数据信息术语",
+                      "path": "/理念/知识/概念/术语/数据信息术语",
+                      "id": 15773,
+                      "source_stable_id": 223,
+                      "source_type": "实质",
+                      "description": "量化数据、统计信息、资讯等相关词汇",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15728,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 74,
+                      "children": [
+                        {
+                          "name": "信息资讯",
+                          "path": "/理念/知识/概念/术语/数据信息术语/信息资讯",
+                          "id": 15149,
+                          "source_stable_id": 664,
+                          "source_type": "实质",
+                          "description": "非量化的信息、新闻、资讯等内容载体",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15773,
+                          "element_count": 15,
+                          "elements": [
+                            {
+                              "name": "数据证据",
+                              "count": 1,
+                              "post_ids": [
+                                "ff037b4ada852d5835240ffded2f7256"
+                              ]
+                            },
+                            {
+                              "name": "动态",
+                              "count": 6,
+                              "post_ids": [
+                                "2a2c642e67822ed8c11f9d306e815a35",
+                                "59c0ba8a450a7d2327b78d72c0697938",
+                                "8d43fa69c8f4f5e7d87ec45244cbd97c",
+                                "9c87381270abacce95e103b3a000e086",
+                                "b4fbfb562ad4863ceb0a12e7110f3da7",
+                                "f97823103ca8ad6cd69037958d17ae32"
+                              ]
+                            },
+                            {
+                              "name": "资讯",
+                              "count": 6,
+                              "post_ids": [
+                                "0834b527a0fe32c83eb9be0b1cf45140",
+                                "3de8289cfddb37a8b027d60dce4dfdb1",
+                                "accf5d531aaa9ef7b9e6fee360944151",
+                                "cb673ebabb42a9499b3532943f8bb974",
+                                "d07f1c79dd4ef03b92592fa81d54755b",
+                                "fa0633c278660309648633dea6294cb1"
+                              ]
+                            },
+                            {
+                              "name": "新闻",
+                              "count": 2,
+                              "post_ids": [
+                                "03c54bcf569a9f957f3879f5e87cbb19",
+                                "601c09554a9851f9038026035b95fce9"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 33,
+                          "children": [
+                            {
+                              "name": "人物相关",
+                              "path": "/理念/知识/概念/术语/数据信息术语/信息资讯/人物相关",
+                              "id": 15571,
+                              "source_stable_id": 1373,
+                              "source_type": "实质",
+                              "description": "与人物动态和关系相关的信息",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15149,
+                              "element_count": 2,
+                              "elements": [
+                                {
+                                  "name": "不睦传闻",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "601c09554a9851f9038026035b95fce9"
+                                  ]
+                                },
+                                {
+                                  "name": "人物动态",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "e04fd15a06f8c97486e48990e85c8492"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 2,
+                              "children": [],
+                              "total_posts_count": 0
+                            },
+                            {
+                              "name": "信息属性",
+                              "path": "/理念/知识/概念/术语/数据信息术语/信息资讯/信息属性",
+                              "id": 15569,
+                              "source_stable_id": 1371,
+                              "source_type": "实质",
+                              "description": "信息的形式、结构和特征属性",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15149,
+                              "element_count": 2,
+                              "elements": [
+                                {
+                                  "name": "图文信息",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "b64188c6bcb0fb359d8e8075671584d6"
+                                  ]
+                                },
+                                {
+                                  "name": "受众画像",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "4020e56c08340e92c9862e481c07d2e2"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 2,
+                              "children": [],
+                              "total_posts_count": 0
+                            },
+                            {
+                              "name": "信息来源",
+                              "path": "/理念/知识/概念/术语/数据信息术语/信息资讯/信息来源",
+                              "id": 15568,
+                              "source_stable_id": 1370,
+                              "source_type": "实质",
+                              "description": "信息的来源渠道和出处类型",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15149,
+                              "element_count": 2,
+                              "elements": [
+                                {
+                                  "name": "权威信源",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "bc2f946d57e1c650575962e480eccf31"
+                                  ]
+                                },
+                                {
+                                  "name": "媒体信源",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "b76365fa6008e98aea8b6876bcc4e3d0"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 2,
+                              "children": [],
+                              "total_posts_count": 0
+                            },
+                            {
+                              "name": "政治时事",
+                              "path": "/理念/知识/概念/术语/数据信息术语/信息资讯/政治时事",
+                              "id": 15567,
+                              "source_stable_id": 1369,
+                              "source_type": "实质",
+                              "description": "政治领域的时事动态、新闻和相关内容",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15149,
+                              "element_count": 8,
+                              "elements": [
+                                {
+                                  "name": "郑丽文内容",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "f97823103ca8ad6cd69037958d17ae32"
+                                  ]
+                                },
+                                {
+                                  "name": "时政动态",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "bc2f946d57e1c650575962e480eccf31",
+                                    "df635f43f39a1fa41c13da96320c45c3"
+                                  ]
+                                },
+                                {
+                                  "name": "政治动态",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "4bab077aa99a235a81c41631af69aa78"
+                                  ]
+                                },
+                                {
+                                  "name": "台湾政坛动态",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "3b8bfac263ace2eb578c85c98630e566",
+                                    "61db1ae4bd885760b0f5cca9ecacb588"
+                                  ]
+                                },
+                                {
+                                  "name": "台湾政治时事",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "22bcaccb2262e8864af03c8323490832"
+                                  ]
+                                },
+                                {
+                                  "name": "台湾政治新闻",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "b76365fa6008e98aea8b6876bcc4e3d0"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 8,
+                              "children": [],
+                              "total_posts_count": 0
+                            },
+                            {
+                              "name": "特定内容",
+                              "path": "/理念/知识/概念/术语/数据信息术语/信息资讯/特定内容",
+                              "id": 15570,
+                              "source_stable_id": 1372,
+                              "source_type": "实质",
+                              "description": "特定领域或场景下的专门信息内容",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15149,
+                              "element_count": 4,
+                              "elements": [
+                                {
+                                  "name": "程序性公文",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "0834b527a0fe32c83eb9be0b1cf45140"
+                                  ]
+                                },
+                                {
+                                  "name": "私密档案",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "970bc999f557cf8026c950f254d3ddac"
+                                  ]
+                                },
+                                {
+                                  "name": "王室秘闻",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "b485a7858fbfc4b74e805bfadf6fce90"
+                                  ]
+                                },
+                                {
+                                  "name": "医疗检查结果",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "57121511"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 4,
+                              "children": [],
+                              "total_posts_count": 0
+                            }
+                          ],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "具体数值",
+                          "path": "/理念/知识/概念/术语/数据信息术语/具体数值",
+                          "id": 15830,
+                          "source_stable_id": 665,
+                          "source_type": "实质",
+                          "description": "内容中出现的具体数字、金额、时间点、量度等数值",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15773,
+                          "element_count": 0,
+                          "elements": [],
+                          "total_element_count": 5,
+                          "children": [
+                            {
+                              "name": "时间数值",
+                              "path": "/理念/知识/概念/术语/数据信息术语/具体数值/时间数值",
+                              "id": 15154,
+                              "source_stable_id": 671,
+                              "source_type": "实质",
+                              "description": "时间点、时间跨度、年份等时间相关数值",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15830,
+                              "element_count": 2,
+                              "elements": [
+                                {
+                                  "name": "倒计时",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "59c0ba8a450a7d2327b78d72c0697938",
+                                    "63146000"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 2,
+                              "children": [],
+                              "total_posts_count": 0
+                            },
+                            {
+                              "name": "量度数值",
+                              "path": "/理念/知识/概念/术语/数据信息术语/具体数值/量度数值",
+                              "id": 15155,
+                              "source_stable_id": 672,
+                              "source_type": "实质",
+                              "description": "重量、数量、规模、比例等量度数值",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15830,
+                              "element_count": 2,
+                              "elements": [
+                                {
+                                  "name": "58名",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "bc2f946d57e1c650575962e480eccf31"
+                                  ]
+                                },
+                                {
+                                  "name": "3克",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "690075390000000004013a53"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 2,
+                              "children": [],
+                              "total_posts_count": 1
+                            },
+                            {
+                              "name": "金额数值",
+                              "path": "/理念/知识/概念/术语/数据信息术语/具体数值/金额数值",
+                              "id": 15153,
+                              "source_stable_id": 670,
+                              "source_type": "实质",
+                              "description": "金额、价格、货币面值等具体钱数",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15830,
+                              "element_count": 1,
+                              "elements": [
+                                {
+                                  "name": "股票代码",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "69297dde000000001f006b90"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 1,
+                              "children": [],
+                              "total_posts_count": 1
+                            }
+                          ],
+                          "total_posts_count": 2
+                        },
+                        {
+                          "name": "排序列表",
+                          "path": "/理念/知识/概念/术语/数据信息术语/排序列表",
+                          "id": 15150,
+                          "source_stable_id": 666,
+                          "source_type": "实质",
+                          "description": "排名、名单、清单等有序信息",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15773,
+                          "element_count": 2,
+                          "elements": [
+                            {
+                              "name": "人事名单",
+                              "count": 1,
+                              "post_ids": [
+                                "3de8289cfddb37a8b027d60dce4dfdb1"
+                              ]
+                            },
+                            {
+                              "name": "投资者名单",
+                              "count": 1,
+                              "post_ids": [
+                                "6932744c000000001f00c9f3"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 2,
+                          "children": [],
+                          "total_posts_count": 1
+                        },
+                        {
+                          "name": "统计数据",
+                          "path": "/理念/知识/概念/术语/数据信息术语/统计数据",
+                          "id": 15829,
+                          "source_stable_id": 663,
+                          "source_type": "实质",
+                          "description": "各类量化统计指标和数值,包括宏观经济数据、人口统计、财务指标等",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15773,
+                          "element_count": 0,
+                          "elements": [],
+                          "total_element_count": 34,
+                          "children": [
+                            {
+                              "name": "综合统计",
+                              "path": "/理念/知识/概念/术语/数据信息术语/统计数据/综合统计",
+                              "id": 15151,
+                              "source_stable_id": 667,
+                              "source_type": "实质",
+                              "description": "宏观经济指标、行业数据、技术参数等综合性统计数值",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15829,
+                              "element_count": 27,
+                              "elements": [
+                                {
+                                  "name": "量化事实",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "04bcda9fc132c52a8eee5d7ba994119d"
+                                  ]
+                                },
+                                {
+                                  "name": "民调",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "4020e56c08340e92c9862e481c07d2e2"
+                                  ]
+                                },
+                                {
+                                  "name": "历史数据",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "752267d0ca2695c2ceb816a43d943a6a"
+                                  ]
+                                },
+                                {
+                                  "name": "流量数据",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "dae634c9aa8c31d38e925750d3fbfeb6"
+                                  ]
+                                },
+                                {
+                                  "name": "量化数据",
+                                  "count": 19,
+                                  "post_ids": [
+                                    "67316440000000001b02e75e",
+                                    "6731b884000000001901b8d3",
+                                    "6732cd8a000000001b02f948",
+                                    "6732f52f000000001b013fdb",
+                                    "673d9a58000000000702450b",
+                                    "67e27e6e000000000b017c96",
+                                    "68ef800d0000000005011094",
+                                    "68fa08f60000000005030ddc",
+                                    "69005a1e0000000004017637",
+                                    "6902e20a0000000005030a7b",
+                                    "690ed2240000000005002b41",
+                                    "69157ac40000000005039157",
+                                    "6927e806000000001f007658",
+                                    "692e7906000000001f006ff1",
+                                    "692fe421000000001f00691a",
+                                    "6932744c000000001f00c9f3",
+                                    "69328436000000001f006a54",
+                                    "69437b6d000000001e0381c9",
+                                    "69491c99000000001e02c765"
+                                  ]
+                                },
+                                {
+                                  "name": "参数指标",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "69048be90000000005033c79"
+                                  ]
+                                },
+                                {
+                                  "name": "数据",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "695f0b2b000000001a027365"
+                                  ]
+                                },
+                                {
+                                  "name": "具体数额",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "64095002"
+                                  ]
+                                },
+                                {
+                                  "name": "评价指标",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "55327642"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 27,
+                              "children": [],
+                              "total_posts_count": 21
+                            },
+                            {
+                              "name": "财务数据",
+                              "path": "/理念/知识/概念/术语/数据信息术语/统计数据/财务数据",
+                              "id": 15152,
+                              "source_stable_id": 669,
+                              "source_type": "实质",
+                              "description": "金额、成本、薪资、收支等财务相关数值",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15829,
+                              "element_count": 7,
+                              "elements": [
+                                {
+                                  "name": "财务",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "68ccd4e40000000012030372"
+                                  ]
+                                },
+                                {
+                                  "name": "办赛成本",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "64650216"
+                                  ]
+                                },
+                                {
+                                  "name": "具体财务数据",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "64650216"
+                                  ]
+                                },
+                                {
+                                  "name": "春晚经费",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "64415308",
+                                    "64610880"
+                                  ]
+                                },
+                                {
+                                  "name": "收费",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "56977419"
+                                  ]
+                                },
+                                {
+                                  "name": "收支",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "56977419"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 7,
+                              "children": [],
+                              "total_posts_count": 1
+                            }
+                          ],
+                          "total_posts_count": 22
+                        }
+                      ],
+                      "total_posts_count": 24
+                    },
+                    {
+                      "name": "文化民俗术语",
+                      "path": "/理念/知识/概念/术语/文化民俗术语",
+                      "id": 15774,
+                      "source_stable_id": 225,
+                      "source_type": "实质",
+                      "description": "传统文化、民间习俗、文化传承等相关词汇",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15728,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 21,
+                      "children": [
+                        {
+                          "name": "传统文化",
+                          "path": "/理念/知识/概念/术语/文化民俗术语/传统文化",
+                          "id": 15817,
+                          "source_stable_id": 566,
+                          "source_type": "实质",
+                          "description": "传统文化概念、文化知识、文化理念等相关术语",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15774,
+                          "element_count": 0,
+                          "elements": [],
+                          "total_element_count": 6,
+                          "children": [
+                            {
+                              "name": "文化概念",
+                              "path": "/理念/知识/概念/术语/文化民俗术语/传统文化/文化概念",
+                              "id": 15091,
+                              "source_stable_id": 575,
+                              "source_type": "实质",
+                              "description": "传统、传统文化、传统民俗等传统文化概念术语",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15817,
+                              "element_count": 5,
+                              "elements": [
+                                {
+                                  "name": "文化",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "55d981958a8fd219d9c713fb16c12170"
+                                  ]
+                                },
+                                {
+                                  "name": "传统",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "64504122",
+                                    "65608649"
+                                  ]
+                                },
+                                {
+                                  "name": "传统民俗",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "65529862"
+                                  ]
+                                },
+                                {
+                                  "name": "传统文化",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "64591962"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 5,
+                              "children": [],
+                              "total_posts_count": 0
+                            },
+                            {
+                              "name": "文化知识",
+                              "path": "/理念/知识/概念/术语/文化民俗术语/传统文化/文化知识",
+                              "id": 15092,
+                              "source_stable_id": 576,
+                              "source_type": "实质",
+                              "description": "百科知识、地域文化、文化知识等文化知识术语",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15817,
+                              "element_count": 1,
+                              "elements": [
+                                {
+                                  "name": "地域文化符号",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "6912d90f00000000050113b3"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 1,
+                              "children": [],
+                              "total_posts_count": 1
+                            }
+                          ],
+                          "total_posts_count": 1
+                        },
+                        {
+                          "name": "礼仪习俗",
+                          "path": "/理念/知识/概念/术语/文化民俗术语/礼仪习俗",
+                          "id": 15085,
+                          "source_stable_id": 568,
+                          "source_type": "实质",
+                          "description": "礼仪规范、民俗习惯、家族文化等相关术语",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15774,
+                          "element_count": 1,
+                          "elements": [
+                            {
+                              "name": "迎财神",
+                              "count": 1,
+                              "post_ids": [
+                                "65135957"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 1,
+                          "children": [],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "艺术娱乐",
+                          "path": "/理念/知识/概念/术语/文化民俗术语/艺术娱乐",
+                          "id": 15086,
+                          "source_stable_id": 569,
+                          "source_type": "实质",
+                          "description": "书法、游戏、娱乐等艺术娱乐相关术语",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15774,
+                          "element_count": 4,
+                          "elements": [
+                            {
+                              "name": "明星梗",
+                              "count": 1,
+                              "post_ids": [
+                                "6781eb19000000000b039867"
+                              ]
+                            },
+                            {
+                              "name": "蛇年主题",
+                              "count": 1,
+                              "post_ids": [
+                                "677b5460000000000b00d33e"
+                              ]
+                            },
+                            {
+                              "name": "节气民俗",
+                              "count": 1,
+                              "post_ids": [
+                                "690d977d0000000007036331"
+                              ]
+                            },
+                            {
+                              "name": "书法艺术",
+                              "count": 1,
+                              "post_ids": [
+                                "6774ab9a0000000009015a3f"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 4,
+                          "children": [],
+                          "total_posts_count": 4
+                        },
+                        {
+                          "name": "节气节日",
+                          "path": "/理念/知识/概念/术语/文化民俗术语/节气节日",
+                          "id": 15084,
+                          "source_stable_id": 565,
+                          "source_type": "实质",
+                          "description": "二十四节气、历法、节气习俗等相关术语",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15774,
+                          "element_count": 2,
+                          "elements": [
+                            {
+                              "name": "回娘家",
+                              "count": 2,
+                              "post_ids": [
+                                "65133109",
+                                "65135957"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 7,
+                          "children": [
+                            {
+                              "name": "节日",
+                              "path": "/理念/知识/概念/术语/文化民俗术语/节气节日/节日",
+                              "id": 15090,
+                              "source_stable_id": 574,
+                              "source_type": "实质",
+                              "description": "传统节日、节日习俗等相关术语",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15084,
+                              "element_count": 3,
+                              "elements": [
+                                {
+                                  "name": "中西节日",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "64729260"
+                                  ]
+                                },
+                                {
+                                  "name": "传统节日文化",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "64729260"
+                                  ]
+                                },
+                                {
+                                  "name": "年俗",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "62948012"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 3,
+                              "children": [],
+                              "total_posts_count": 0
+                            },
+                            {
+                              "name": "节气",
+                              "path": "/理念/知识/概念/术语/文化民俗术语/节气节日/节气",
+                              "id": 15089,
+                              "source_stable_id": 573,
+                              "source_type": "实质",
+                              "description": "二十四节气、历法、节气习俗等相关术语",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15084,
+                              "element_count": 2,
+                              "elements": [
+                                {
+                                  "name": "节气元素",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "64029781",
+                                    "64603799"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 2,
+                              "children": [],
+                              "total_posts_count": 0
+                            }
+                          ],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "语言文字",
+                          "path": "/理念/知识/概念/术语/文化民俗术语/语言文字",
+                          "id": 15816,
+                          "source_stable_id": 564,
+                          "source_type": "实质",
+                          "description": "方言、文字、称谓、语言表达等语言相关术语",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15774,
+                          "element_count": 0,
+                          "elements": [],
+                          "total_element_count": 3,
+                          "children": [
+                            {
+                              "name": "方言",
+                              "path": "/理念/知识/概念/术语/文化民俗术语/语言文字/方言",
+                              "id": 15087,
+                              "source_stable_id": 570,
+                              "source_type": "实质",
+                              "description": "地域性方言、方言文化等相关术语",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15816,
+                              "element_count": 1,
+                              "elements": [
+                                {
+                                  "name": "河南方言",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "60332209"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 1,
+                              "children": [],
+                              "total_posts_count": 0
+                            },
+                            {
+                              "name": "语言表达",
+                              "path": "/理念/知识/概念/术语/文化民俗术语/语言文字/语言表达",
+                              "id": 15088,
+                              "source_stable_id": 572,
+                              "source_type": "实质",
+                              "description": "成语、俗语、谚语等语言表达形式相关术语",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15816,
+                              "element_count": 2,
+                              "elements": [
+                                {
+                                  "name": "社群黑话",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "dae634c9aa8c31d38e925750d3fbfeb6"
+                                  ]
+                                },
+                                {
+                                  "name": "口诀",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "64662179"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 2,
+                              "children": [],
+                              "total_posts_count": 0
+                            }
+                          ],
+                          "total_posts_count": 0
+                        }
+                      ],
+                      "total_posts_count": 5
+                    }
+                  ],
+                  "total_posts_count": 73
+                },
+                {
+                  "name": "身心科学",
+                  "path": "/理念/知识/概念/身心科学",
+                  "id": 15786,
+                  "source_stable_id": 260,
+                  "source_type": "实质",
+                  "description": "心理学理论、生理机制、医学健康等关于人类身心运作的科学知识",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 15948,
+                  "element_count": 0,
+                  "elements": [],
+                  "total_element_count": 85,
+                  "children": [
+                    {
+                      "name": "健康养生",
+                      "path": "/理念/知识/概念/身心科学/健康养生",
+                      "id": 14989,
+                      "source_stable_id": 329,
+                      "source_type": "实质",
+                      "description": "生理机制、中医养生、医学健康等身体层面的科学知识",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15786,
+                      "element_count": 4,
+                      "elements": [
+                        {
+                          "name": "鼻塞",
+                          "count": 1,
+                          "post_ids": [
+                            "682ede8f000000002202bff2"
+                          ]
+                        },
+                        {
+                          "name": "防脱护发",
+                          "count": 1,
+                          "post_ids": [
+                            "676f8eac000000000902f53e"
+                          ]
+                        },
+                        {
+                          "name": "面部长痘位置",
+                          "count": 1,
+                          "post_ids": [
+                            "675c0669000000000600cfd7"
+                          ]
+                        },
+                        {
+                          "name": "高VC/VA",
+                          "count": 1,
+                          "post_ids": [
+                            "6746fb5600000000070260ce"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 28,
+                      "children": [
+                        {
+                          "name": "中医养生",
+                          "path": "/理念/知识/概念/身心科学/健康养生/中医养生",
+                          "id": 15197,
+                          "source_stable_id": 733,
+                          "source_type": "实质",
+                          "description": "中医理论、经络穴位、体质调理等传统养生知识",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 14989,
+                          "element_count": 5,
+                          "elements": [
+                            {
+                              "name": "支沟穴",
+                              "count": 1,
+                              "post_ids": [
+                                "6776b27d0000000013018545"
+                              ]
+                            },
+                            {
+                              "name": "中医",
+                              "count": 1,
+                              "post_ids": [
+                                "676f8eac000000000902f53e"
+                              ]
+                            },
+                            {
+                              "name": "养肝",
+                              "count": 2,
+                              "post_ids": [
+                                "669b52720000000025003596",
+                                "672de546000000001b02cfeb"
+                              ]
+                            },
+                            {
+                              "name": "湿气分型",
+                              "count": 1,
+                              "post_ids": [
+                                "6729657b000000001b01149d"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 5,
+                          "children": [],
+                          "total_posts_count": 5
+                        },
+                        {
+                          "name": "身体健康",
+                          "path": "/理念/知识/概念/身心科学/健康养生/身体健康",
+                          "id": 15198,
+                          "source_stable_id": 734,
+                          "source_type": "实质",
+                          "description": "生理机制、健康问题、营养保健等现代医学健康知识",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 14989,
+                          "element_count": 19,
+                          "elements": [
+                            {
+                              "name": "生理机制",
+                              "count": 5,
+                              "post_ids": [
+                                "661dbf91000000001a0119b6",
+                                "68ec3f9d000000000700de97",
+                                "691f9a9f000000000d00ea0a",
+                                "693f425a000000001e00ed26",
+                                "6949df27000000001d03e0e9"
+                              ]
+                            },
+                            {
+                              "name": "知识",
+                              "count": 8,
+                              "post_ids": [
+                                "67244ea7000000001b012d18",
+                                "675c0669000000000600cfd7",
+                                "676f8eac000000000902f53e",
+                                "68ef800d0000000005011094",
+                                "690a9329000000000700b783",
+                                "691a54bd000000000700be32",
+                                "691f9a9f000000000d00ea0a",
+                                "69375a940000000019024af5"
+                              ]
+                            },
+                            {
+                              "name": "功效",
+                              "count": 3,
+                              "post_ids": [
+                                "67284f9c000000001901875a",
+                                "673f1462000000000703b270"
+                              ]
+                            },
+                            {
+                              "name": "抗衰老",
+                              "count": 2,
+                              "post_ids": [
+                                "67206035000000001b02f4b1",
+                                "67244ea7000000001b012d18"
+                              ]
+                            },
+                            {
+                              "name": "延迟衰老",
+                              "count": 1,
+                              "post_ids": [
+                                "67206035000000001b02f4b1"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 19,
+                          "children": [],
+                          "total_posts_count": 15
+                        }
+                      ],
+                      "total_posts_count": 21
+                    },
+                    {
+                      "name": "心理认知",
+                      "path": "/理念/知识/概念/身心科学/心理认知",
+                      "id": 14988,
+                      "source_stable_id": 328,
+                      "source_type": "实质",
+                      "description": "心理学效应、认知现象、情绪状态等心理层面的科学知识",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15786,
+                      "element_count": 5,
+                      "elements": [
+                        {
+                          "name": "危机感",
+                          "count": 1,
+                          "post_ids": [
+                            "b4fbfb562ad4863ceb0a12e7110f3da7"
+                          ]
+                        },
+                        {
+                          "name": "高度功能化",
+                          "count": 1,
+                          "post_ids": [
+                            "6949df27000000001d03e0e9"
+                          ]
+                        },
+                        {
+                          "name": "黑色生命力",
+                          "count": 1,
+                          "post_ids": [
+                            "69375a940000000019024af5"
+                          ]
+                        },
+                        {
+                          "name": "路西法效应",
+                          "count": 1,
+                          "post_ids": [
+                            "692cc7ab000000001b030110"
+                          ]
+                        },
+                        {
+                          "name": "镜伴效应",
+                          "count": 1,
+                          "post_ids": [
+                            "68f95c43000000000300c650"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 57,
+                      "children": [
+                        {
+                          "name": "创伤心理",
+                          "path": "/理念/知识/概念/身心科学/心理认知/创伤心理",
+                          "id": 15196,
+                          "source_stable_id": 732,
+                          "source_type": "实质",
+                          "description": "创伤相关的心理反应、机制、整合及康复过程",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 14988,
+                          "element_count": 3,
+                          "elements": [
+                            {
+                              "name": "创伤反应",
+                              "count": 1,
+                              "post_ids": [
+                                "6949df27000000001d03e0e9"
+                              ]
+                            },
+                            {
+                              "name": "创伤心理学",
+                              "count": 1,
+                              "post_ids": [
+                                "69375a940000000019024af5"
+                              ]
+                            },
+                            {
+                              "name": "创伤整合",
+                              "count": 1,
+                              "post_ids": [
+                                "69375a940000000019024af5"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 3,
+                          "children": [],
+                          "total_posts_count": 2
+                        },
+                        {
+                          "name": "心理效应理论",
+                          "path": "/理念/知识/概念/身心科学/心理认知/心理效应理论",
+                          "id": 15194,
+                          "source_stable_id": 730,
+                          "source_type": "实质",
+                          "description": "心理学中的各种效应、理论、实验及学术概念",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 14988,
+                          "element_count": 37,
+                          "elements": [
+                            {
+                              "name": "认知反差",
+                              "count": 1,
+                              "post_ids": [
+                                "ff037b4ada852d5835240ffded2f7256"
+                              ]
+                            },
+                            {
+                              "name": "心理学知识",
+                              "count": 13,
+                              "post_ids": [
+                                "661dbf91000000001a0119b6",
+                                "683f8111000000002102effd",
+                                "68f568a1000000000301053d",
+                                "68f95c43000000000300c650",
+                                "68fff44700000000030390d3",
+                                "6907ed79000000000703699c",
+                                "6911177d0000000007031417",
+                                "692cc7ab000000001b030110",
+                                "693613b9000000001e00ebdd",
+                                "693f425a000000001e00ed26",
+                                "69434b1f000000001e013f9e",
+                                "6949df27000000001d03e0e9",
+                                "6951c718000000001e0105b7"
+                              ]
+                            },
+                            {
+                              "name": "专业理论",
+                              "count": 7,
+                              "post_ids": [
+                                "661dbf91000000001a0119b6",
+                                "68e310c90000000003035444",
+                                "68fff44700000000030390d3",
+                                "6907ed79000000000703699c",
+                                "690a9329000000000700b783",
+                                "6913cafd000000000703402b",
+                                "693613b9000000001e00ebdd"
+                              ]
+                            },
+                            {
+                              "name": "斯坦福监狱实验",
+                              "count": 1,
+                              "post_ids": [
+                                "692cc7ab000000001b030110"
+                              ]
+                            },
+                            {
+                              "name": "白玫瑰效应",
+                              "count": 2,
+                              "post_ids": [
+                                "691a54bd000000000700be32"
+                              ]
+                            },
+                            {
+                              "name": "烂苹果效应",
+                              "count": 2,
+                              "post_ids": [
+                                "6913cafd000000000703402b"
+                              ]
+                            },
+                            {
+                              "name": "成长视角偏移",
+                              "count": 1,
+                              "post_ids": [
+                                "6907ed79000000000703699c"
+                              ]
+                            },
+                            {
+                              "name": "情绪闪回",
+                              "count": 1,
+                              "post_ids": [
+                                "690333e70000000007022604"
+                              ]
+                            },
+                            {
+                              "name": "自我间隙效应",
+                              "count": 1,
+                              "post_ids": [
+                                "68fff44700000000030390d3"
+                              ]
+                            },
+                            {
+                              "name": "情绪可用性",
+                              "count": 1,
+                              "post_ids": [
+                                "68f568a1000000000301053d"
+                              ]
+                            },
+                            {
+                              "name": "行为激活",
+                              "count": 2,
+                              "post_ids": [
+                                "68ec3f9d000000000700de97"
+                              ]
+                            },
+                            {
+                              "name": "成就曲线效应",
+                              "count": 2,
+                              "post_ids": [
+                                "68e310c90000000003035444"
+                              ]
+                            },
+                            {
+                              "name": "认知沉默时间",
+                              "count": 1,
+                              "post_ids": [
+                                "683f8111000000002102effd"
+                              ]
+                            },
+                            {
+                              "name": "公园20分钟效应",
+                              "count": 1,
+                              "post_ids": [
+                                "661dbf91000000001a0119b6"
+                              ]
+                            },
+                            {
+                              "name": "拖延症",
+                              "count": 1,
+                              "post_ids": [
+                                "6752d19b000000000202b816"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 37,
+                          "children": [],
+                          "total_posts_count": 20
+                        },
+                        {
+                          "name": "心理状态问题",
+                          "path": "/理念/知识/概念/身心科学/心理认知/心理状态问题",
+                          "id": 15195,
+                          "source_stable_id": 731,
+                          "source_type": "实质",
+                          "description": "各种负面心理状态、心理问题及情绪困扰",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 14988,
+                          "element_count": 12,
+                          "elements": [
+                            {
+                              "name": "冒名顶替综合征",
+                              "count": 1,
+                              "post_ids": [
+                                "6951c718000000001e0105b7"
+                              ]
+                            },
+                            {
+                              "name": "不配得感",
+                              "count": 1,
+                              "post_ids": [
+                                "6951c718000000001e0105b7"
+                              ]
+                            },
+                            {
+                              "name": "同辈压力",
+                              "count": 2,
+                              "post_ids": [
+                                "69434b1f000000001e013f9e"
+                              ]
+                            },
+                            {
+                              "name": "灾难化想象",
+                              "count": 1,
+                              "post_ids": [
+                                "693f425a000000001e00ed26"
+                              ]
+                            },
+                            {
+                              "name": "季节性情感障碍",
+                              "count": 2,
+                              "post_ids": [
+                                "691f9a9f000000000d00ea0a"
+                              ]
+                            },
+                            {
+                              "name": "职业倦怠",
+                              "count": 2,
+                              "post_ids": [
+                                "690a9329000000000700b783"
+                              ]
+                            },
+                            {
+                              "name": "渴望",
+                              "count": 1,
+                              "post_ids": [
+                                "68fa029e0000000007022932"
+                              ]
+                            },
+                            {
+                              "name": "焦虑",
+                              "count": 1,
+                              "post_ids": [
+                                "6882f593000000001100272d"
+                              ]
+                            },
+                            {
+                              "name": "精神状态",
+                              "count": 1,
+                              "post_ids": [
+                                "6879f4b1000000000b02c2e0"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 12,
+                          "children": [],
+                          "total_posts_count": 8
+                        }
+                      ],
+                      "total_posts_count": 25
+                    }
+                  ],
+                  "total_posts_count": 38
+                }
+              ],
+              "total_posts_count": 130
+            }
+          ],
+          "total_posts_count": 145
+        },
+        {
+          "name": "观念",
+          "path": "/理念/观念",
+          "id": 15950,
+          "source_stable_id": 72,
+          "source_type": "实质",
+          "description": "观点、意见、价值判断等抽象认知",
+          "category_nature": "内容",
+          "level": 2,
+          "parent_id": 15944,
+          "element_count": 0,
+          "elements": [],
+          "total_element_count": 153,
+          "children": [
+            {
+              "name": "个人",
+              "path": "/理念/观念/个人",
+              "id": 15732,
+              "source_stable_id": 80,
+              "source_type": "实质",
+              "description": "个人层面的观点、感悟、价值取向等主观认知",
+              "category_nature": "维度",
+              "level": 3,
+              "parent_id": 15950,
+              "element_count": 0,
+              "elements": [],
+              "total_element_count": 104,
+              "children": [
+                {
+                  "name": "人生感悟",
+                  "path": "/理念/观念/个人/人生感悟",
+                  "id": 14893,
+                  "source_stable_id": 81,
+                  "source_type": "实质",
+                  "description": "对人生、生活、世事的个人体会与思考",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 15732,
+                  "element_count": 1,
+                  "elements": [
+                    {
+                      "name": "励志语录",
+                      "count": 1,
+                      "post_ids": [
+                        "61822382"
+                      ]
+                    }
+                  ],
+                  "total_element_count": 52,
+                  "children": [
+                    {
+                      "name": "人生态度",
+                      "path": "/理念/观念/个人/人生感悟/人生态度",
+                      "id": 15276,
+                      "source_stable_id": 842,
+                      "source_type": "实质",
+                      "description": "对生活的态度选择与价值取向",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 14893,
+                      "element_count": 5,
+                      "elements": [
+                        {
+                          "name": "不原谅的权利",
+                          "count": 1,
+                          "post_ids": [
+                            "690333e70000000007022604"
+                          ]
+                        },
+                        {
+                          "name": "微小理由",
+                          "count": 2,
+                          "post_ids": [
+                            "68e6ecb90000000003021e34",
+                            "68ec3f9d000000000700de97"
+                          ]
+                        },
+                        {
+                          "name": "摆烂",
+                          "count": 1,
+                          "post_ids": [
+                            "6964573a000000000d00800e"
+                          ]
+                        },
+                        {
+                          "name": "轻奢仪式感",
+                          "count": 1,
+                          "post_ids": [
+                            "6867d9af000000001203f084"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 5,
+                      "children": [],
+                      "total_posts_count": 5
+                    },
+                    {
+                      "name": "内心感受",
+                      "path": "/理念/观念/个人/人生感悟/内心感受",
+                      "id": 15275,
+                      "source_stable_id": 841,
+                      "source_type": "实质",
+                      "description": "内在的体验、思考与情感状态",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 14893,
+                      "element_count": 22,
+                      "elements": [
+                        {
+                          "name": "感悟",
+                          "count": 6,
+                          "post_ids": [
+                            "21006075",
+                            "55994947",
+                            "62948012",
+                            "63676018",
+                            "64965843",
+                            "99823f406c9b376c3998329e1373930f"
+                          ]
+                        },
+                        {
+                          "name": "体验",
+                          "count": 6,
+                          "post_ids": [
+                            "6911532d000000000503bd18",
+                            "6923b4b2000000001e03531a",
+                            "695f0b2b000000001a027365",
+                            "6965ea53000000000e00f0f1",
+                            "69672e2d000000001a026263"
+                          ]
+                        },
+                        {
+                          "name": "心情",
+                          "count": 3,
+                          "post_ids": [
+                            "68789450000000000b01d4a4",
+                            "68d610800000000012023282",
+                            "68fa029e0000000007022932"
+                          ]
+                        },
+                        {
+                          "name": "人生哲理",
+                          "count": 2,
+                          "post_ids": [
+                            "21006075",
+                            "64855234"
+                          ]
+                        },
+                        {
+                          "name": "生活感悟",
+                          "count": 1,
+                          "post_ids": [
+                            "64504122"
+                          ]
+                        },
+                        {
+                          "name": "自我审视",
+                          "count": 1,
+                          "post_ids": [
+                            "63477609"
+                          ]
+                        },
+                        {
+                          "name": "忧虑",
+                          "count": 2,
+                          "post_ids": [
+                            "62025412",
+                            "62948012"
+                          ]
+                        },
+                        {
+                          "name": "生活共鸣",
+                          "count": 1,
+                          "post_ids": [
+                            "55994947"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 22,
+                      "children": [],
+                      "total_posts_count": 8
+                    },
+                    {
+                      "name": "观点表达",
+                      "path": "/理念/观念/个人/人生感悟/观点表达",
+                      "id": 15274,
+                      "source_stable_id": 840,
+                      "source_type": "实质",
+                      "description": "对外发表的看法、评价与见解",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 14893,
+                      "element_count": 24,
+                      "elements": [
+                        {
+                          "name": "第三方评论",
+                          "count": 1,
+                          "post_ids": [
+                            "f97823103ca8ad6cd69037958d17ae32"
+                          ]
+                        },
+                        {
+                          "name": "主张",
+                          "count": 1,
+                          "post_ids": [
+                            "04bcda9fc132c52a8eee5d7ba994119d"
+                          ]
+                        },
+                        {
+                          "name": "论调",
+                          "count": 1,
+                          "post_ids": [
+                            "d07f1c79dd4ef03b92592fa81d54755b"
+                          ]
+                        },
+                        {
+                          "name": "观后感",
+                          "count": 2,
+                          "post_ids": [
+                            "64415308",
+                            "65135248"
+                          ]
+                        },
+                        {
+                          "name": "评论",
+                          "count": 3,
+                          "post_ids": [
+                            "57442193",
+                            "57853678",
+                            "65135248"
+                          ]
+                        },
+                        {
+                          "name": "心声",
+                          "count": 2,
+                          "post_ids": [
+                            "64770257"
+                          ]
+                        },
+                        {
+                          "name": "观点",
+                          "count": 11,
+                          "post_ids": [
+                            "55102015",
+                            "56603938",
+                            "56977187",
+                            "57028518",
+                            "57121511",
+                            "57447289",
+                            "59583293",
+                            "59943231",
+                            "64095002",
+                            "64589911",
+                            "64610880"
+                          ]
+                        },
+                        {
+                          "name": "见解",
+                          "count": 1,
+                          "post_ids": [
+                            "64610874"
+                          ]
+                        },
+                        {
+                          "name": "草根视角",
+                          "count": 1,
+                          "post_ids": [
+                            "64554023"
+                          ]
+                        },
+                        {
+                          "name": "人生见解",
+                          "count": 1,
+                          "post_ids": [
+                            "56726652"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 24,
+                      "children": [],
+                      "total_posts_count": 0
+                    }
+                  ],
+                  "total_posts_count": 13
+                },
+                {
+                  "name": "处世智慧",
+                  "path": "/理念/观念/个人/处世智慧",
+                  "id": 15733,
+                  "source_stable_id": 82,
+                  "source_type": "实质",
+                  "description": "为人处世的原则、态度和价值取向",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 15732,
+                  "element_count": 0,
+                  "elements": [],
+                  "total_element_count": 30,
+                  "children": [
+                    {
+                      "name": "价值取向",
+                      "path": "/理念/观念/个人/处世智慧/价值取向",
+                      "id": 15128,
+                      "source_stable_id": 637,
+                      "source_type": "实质",
+                      "description": "价值观、价值判断、社会公平等价值层面的处世态度",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15733,
+                      "element_count": 13,
+                      "elements": [
+                        {
+                          "name": "价值对立",
+                          "count": 1,
+                          "post_ids": [
+                            "333bd89e657acbcd9b26201f93cd8993"
+                          ]
+                        },
+                        {
+                          "name": "两性价值",
+                          "count": 1,
+                          "post_ids": [
+                            "27f97d45367f3d0662d3204b3a4b0fb9"
+                          ]
+                        },
+                        {
+                          "name": "仪式感",
+                          "count": 3,
+                          "post_ids": [
+                            "64729260",
+                            "6867d9af000000001203f084",
+                            "692c3402000000000d03b7b7"
+                          ]
+                        },
+                        {
+                          "name": "处世哲学",
+                          "count": 1,
+                          "post_ids": [
+                            "68ef83150000000007035f42"
+                          ]
+                        },
+                        {
+                          "name": "价值观",
+                          "count": 3,
+                          "post_ids": [
+                            "57442193",
+                            "62025412",
+                            "63712737"
+                          ]
+                        },
+                        {
+                          "name": "反思",
+                          "count": 1,
+                          "post_ids": [
+                            "62025412"
+                          ]
+                        },
+                        {
+                          "name": "价值反思",
+                          "count": 1,
+                          "post_ids": [
+                            "59943231"
+                          ]
+                        },
+                        {
+                          "name": "处世哲理",
+                          "count": 1,
+                          "post_ids": [
+                            "59422696"
+                          ]
+                        },
+                        {
+                          "name": "底层视角",
+                          "count": 1,
+                          "post_ids": [
+                            "56977419"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 13,
+                      "children": [],
+                      "total_posts_count": 3
+                    },
+                    {
+                      "name": "品格修养",
+                      "path": "/理念/观念/个人/处世智慧/品格修养",
+                      "id": 15127,
+                      "source_stable_id": 635,
+                      "source_type": "实质",
+                      "description": "个人品质、精神品质、行为准则等个人修养层面的处世智慧",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15733,
+                      "element_count": 2,
+                      "elements": [
+                        {
+                          "name": "英雄价值观",
+                          "count": 1,
+                          "post_ids": [
+                            "64210278"
+                          ]
+                        },
+                        {
+                          "name": "精神",
+                          "count": 1,
+                          "post_ids": [
+                            "57919607"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 2,
+                      "children": [],
+                      "total_posts_count": 0
+                    },
+                    {
+                      "name": "生存策略",
+                      "path": "/理念/观念/个人/处世智慧/生存策略",
+                      "id": 15825,
+                      "source_stable_id": 636,
+                      "source_type": "实质",
+                      "description": "心态调适、生存智慧、处世技巧等实用性的生存策略",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15733,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 10,
+                      "children": [
+                        {
+                          "name": "心态调适",
+                          "path": "/理念/观念/个人/处世智慧/生存策略/心态调适",
+                          "id": 15561,
+                          "source_stable_id": 1361,
+                          "source_type": "实质",
+                          "description": "心理状态调整和心态管理的策略,包括各种应对压力和环境的心态",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15825,
+                          "element_count": 3,
+                          "elements": [
+                            {
+                              "name": "发疯心态",
+                              "count": 1,
+                              "post_ids": [
+                                "6964573a000000000d00800e"
+                              ]
+                            },
+                            {
+                              "name": "健忘抗压心态",
+                              "count": 1,
+                              "post_ids": [
+                                "6901d072000000000703b6a3"
+                              ]
+                            },
+                            {
+                              "name": "显贵心态",
+                              "count": 1,
+                              "post_ids": [
+                                "68d0089400000000120172a5"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 3,
+                          "children": [],
+                          "total_posts_count": 3
+                        },
+                        {
+                          "name": "社会生存",
+                          "path": "/理念/观念/个人/处世智慧/生存策略/社会生存",
+                          "id": 15562,
+                          "source_stable_id": 1362,
+                          "source_type": "实质",
+                          "description": "社会竞争和生存的底层逻辑、智慧与策略",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15825,
+                          "element_count": 4,
+                          "elements": [
+                            {
+                              "name": "生存智慧",
+                              "count": 1,
+                              "post_ids": [
+                                "6949df27000000001d03e0e9"
+                              ]
+                            },
+                            {
+                              "name": "权力边界",
+                              "count": 1,
+                              "post_ids": [
+                                "61bdc28b0000000001024896"
+                              ]
+                            },
+                            {
+                              "name": "生存逻辑",
+                              "count": 1,
+                              "post_ids": [
+                                "59422696"
+                              ]
+                            },
+                            {
+                              "name": "敢说真话",
+                              "count": 1,
+                              "post_ids": [
+                                "57447289"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 4,
+                          "children": [],
+                          "total_posts_count": 2
+                        },
+                        {
+                          "name": "经验总结",
+                          "path": "/理念/观念/个人/处世智慧/生存策略/经验总结",
+                          "id": 15564,
+                          "source_stable_id": 1364,
+                          "source_type": "实质",
+                          "description": "从经验中提炼的教训、忠告和具体准则",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15825,
+                          "element_count": 1,
+                          "elements": [
+                            {
+                              "name": "教训",
+                              "count": 1,
+                              "post_ids": [
+                                "63712731"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 1,
+                          "children": [],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "认知重构",
+                          "path": "/理念/观念/个人/处世智慧/生存策略/认知重构",
+                          "id": 15563,
+                          "source_stable_id": 1363,
+                          "source_type": "实质",
+                          "description": "用于重构认知和思维模式的理论、工具和俗语",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15825,
+                          "element_count": 2,
+                          "elements": [
+                            {
+                              "name": "时区理论",
+                              "count": 1,
+                              "post_ids": [
+                                "69434b1f000000001e013f9e"
+                              ]
+                            },
+                            {
+                              "name": "三十年河东河西",
+                              "count": 1,
+                              "post_ids": [
+                                "63676018"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 2,
+                          "children": [],
+                          "total_posts_count": 1
+                        }
+                      ],
+                      "total_posts_count": 6
+                    },
+                    {
+                      "name": "道德伦理",
+                      "path": "/理念/观念/个人/处世智慧/道德伦理",
+                      "id": 15126,
+                      "source_stable_id": 634,
+                      "source_type": "实质",
+                      "description": "传统道德观念、家庭伦理、因果报应等道德层面的处世准则",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15733,
+                      "element_count": 5,
+                      "elements": [
+                        {
+                          "name": "血缘伦理",
+                          "count": 1,
+                          "post_ids": [
+                            "f99ae5be8892806e2d10834f402e89e1"
+                          ]
+                        },
+                        {
+                          "name": "简单理念",
+                          "count": 1,
+                          "post_ids": [
+                            "676535f4000000000b00dfd1"
+                          ]
+                        },
+                        {
+                          "name": "道德因果",
+                          "count": 1,
+                          "post_ids": [
+                            "56977187"
+                          ]
+                        },
+                        {
+                          "name": "因果报应",
+                          "count": 1,
+                          "post_ids": [
+                            "56977187"
+                          ]
+                        },
+                        {
+                          "name": "家庭责任",
+                          "count": 1,
+                          "post_ids": [
+                            "55102015"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 5,
+                      "children": [],
+                      "total_posts_count": 1
+                    }
+                  ],
+                  "total_posts_count": 10
+                },
+                {
+                  "name": "情感认同",
+                  "path": "/理念/观念/个人/情感认同",
+                  "id": 15734,
+                  "source_stable_id": 83,
+                  "source_type": "实质",
+                  "description": "爱国情怀、怀旧情结等深层情感认同",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 15732,
+                  "element_count": 0,
+                  "elements": [],
+                  "total_element_count": 22,
+                  "children": [
+                    {
+                      "name": "人际情谊",
+                      "path": "/理念/观念/个人/情感认同/人际情谊",
+                      "id": 15178,
+                      "source_stable_id": 707,
+                      "source_type": "实质",
+                      "description": "同学、战友、亲情等人际关系中的情感联结",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15734,
+                      "element_count": 1,
+                      "elements": [
+                        {
+                          "name": "亲情",
+                          "count": 1,
+                          "post_ids": [
+                            "46193165"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 1,
+                      "children": [],
+                      "total_posts_count": 0
+                    },
+                    {
+                      "name": "价值信仰",
+                      "path": "/理念/观念/个人/情感认同/价值信仰",
+                      "id": 15179,
+                      "source_stable_id": 708,
+                      "source_type": "实质",
+                      "description": "对英雄、文化、社会价值的崇敬与追求",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15734,
+                      "element_count": 3,
+                      "elements": [
+                        {
+                          "name": "军旅情怀",
+                          "count": 1,
+                          "post_ids": [
+                            "56380736"
+                          ]
+                        },
+                        {
+                          "name": "英雄信仰",
+                          "count": 1,
+                          "post_ids": [
+                            "64210278"
+                          ]
+                        },
+                        {
+                          "name": "英雄崇拜",
+                          "count": 1,
+                          "post_ids": [
+                            "63712737"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 3,
+                      "children": [],
+                      "total_posts_count": 0
+                    },
+                    {
+                      "name": "历史怀旧",
+                      "path": "/理念/观念/个人/情感认同/历史怀旧",
+                      "id": 15176,
+                      "source_stable_id": 705,
+                      "source_type": "实质",
+                      "description": "对过去时代、历史人物的怀念与缅怀",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15734,
+                      "element_count": 1,
+                      "elements": [
+                        {
+                          "name": "历史记忆",
+                          "count": 1,
+                          "post_ids": [
+                            "59587187"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 9,
+                      "children": [
+                        {
+                          "name": "时代怀旧",
+                          "path": "/理念/观念/个人/情感认同/历史怀旧/时代怀旧",
+                          "id": 15181,
+                          "source_stable_id": 712,
+                          "source_type": "实质",
+                          "description": "对过去时代、历史时期的怀念与留恋",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15176,
+                          "element_count": 8,
+                          "elements": [
+                            {
+                              "name": "中老年审美",
+                              "count": 4,
+                              "post_ids": [
+                                "58933772",
+                                "61822382",
+                                "65067062",
+                                "65091188"
+                              ]
+                            },
+                            {
+                              "name": "怀旧",
+                              "count": 2,
+                              "post_ids": [
+                                "57373464",
+                                "64314678"
+                              ]
+                            },
+                            {
+                              "name": "毛主席时代怀旧",
+                              "count": 2,
+                              "post_ids": [
+                                "57373464",
+                                "57919607"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 8,
+                          "children": [],
+                          "total_posts_count": 0
+                        }
+                      ],
+                      "total_posts_count": 0
+                    },
+                    {
+                      "name": "国家民族认同",
+                      "path": "/理念/观念/个人/情感认同/国家民族认同",
+                      "id": 15175,
+                      "source_stable_id": 704,
+                      "source_type": "实质",
+                      "description": "对国家、民族、地域的归属感与自豪感",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15734,
+                      "element_count": 1,
+                      "elements": [
+                        {
+                          "name": "文化认同",
+                          "count": 1,
+                          "post_ids": [
+                            "412f4d35be48179908fef312b53cad43"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 4,
+                      "children": [
+                        {
+                          "name": "民族认同",
+                          "path": "/理念/观念/个人/情感认同/国家民族认同/民族认同",
+                          "id": 15180,
+                          "source_stable_id": 710,
+                          "source_type": "实质",
+                          "description": "对所属民族的归属感、自豪感与情感联结",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15175,
+                          "element_count": 3,
+                          "elements": [
+                            {
+                              "name": "我是中国人",
+                              "count": 1,
+                              "post_ids": [
+                                "55d981958a8fd219d9c713fb16c12170"
+                              ]
+                            },
+                            {
+                              "name": "身份认同",
+                              "count": 1,
+                              "post_ids": [
+                                "55d981958a8fd219d9c713fb16c12170"
+                              ]
+                            },
+                            {
+                              "name": "民族力量",
+                              "count": 1,
+                              "post_ids": [
+                                "64585144"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 3,
+                          "children": [],
+                          "total_posts_count": 0
+                        }
+                      ],
+                      "total_posts_count": 0
+                    },
+                    {
+                      "name": "情感共鸣",
+                      "path": "/理念/观念/个人/情感认同/情感共鸣",
+                      "id": 15177,
+                      "source_stable_id": 706,
+                      "source_type": "实质",
+                      "description": "人与人之间产生的情感契合与正向能量",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15734,
+                      "element_count": 5,
+                      "elements": [
+                        {
+                          "name": "情感",
+                          "count": 2,
+                          "post_ids": [
+                            "55099131",
+                            "b485a7858fbfc4b74e805bfadf6fce90"
+                          ]
+                        },
+                        {
+                          "name": "情感共鸣",
+                          "count": 1,
+                          "post_ids": [
+                            "64610874"
+                          ]
+                        },
+                        {
+                          "name": "社会共鸣",
+                          "count": 2,
+                          "post_ids": [
+                            "64442545",
+                            "64591962"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 5,
+                      "children": [],
+                      "total_posts_count": 0
+                    }
+                  ],
+                  "total_posts_count": 0
+                }
+              ],
+              "total_posts_count": 21
+            },
+            {
+              "name": "社会",
+              "path": "/理念/观念/社会",
+              "id": 15951,
+              "source_stable_id": 73,
+              "source_type": "实质",
+              "description": "社会层面的观念和意见",
+              "category_nature": "维度",
+              "level": 3,
+              "parent_id": 15950,
+              "element_count": 0,
+              "elements": [],
+              "total_element_count": 49,
+              "children": [
+                {
+                  "name": "建议",
+                  "path": "/理念/观念/社会/建议",
+                  "id": 15731,
+                  "source_stable_id": 75,
+                  "source_type": "实质",
+                  "description": "向决策机构提出的意见和建议",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 15951,
+                  "element_count": 0,
+                  "elements": [],
+                  "total_element_count": 9,
+                  "children": [
+                    {
+                      "name": "专家建议",
+                      "path": "/理念/观念/社会/建议/专家建议",
+                      "id": 15449,
+                      "source_stable_id": 1204,
+                      "source_type": "实质",
+                      "description": "专家学者针对社会问题提出的专业意见和解读",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15731,
+                      "element_count": 1,
+                      "elements": [
+                        {
+                          "name": "专家建议",
+                          "count": 1,
+                          "post_ids": [
+                            "59943231"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 1,
+                      "children": [],
+                      "total_posts_count": 0
+                    },
+                    {
+                      "name": "官方建议",
+                      "path": "/理念/观念/社会/建议/官方建议",
+                      "id": 15915,
+                      "source_stable_id": 1203,
+                      "source_type": "实质",
+                      "description": "政府机构、人大代表等官方渠道提出的建议和提案",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15731,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 6,
+                      "children": [
+                        {
+                          "name": "一般建议",
+                          "path": "/理念/观念/社会/建议/官方建议/一般建议",
+                          "id": 15452,
+                          "source_stable_id": 1209,
+                          "source_type": "实质",
+                          "description": "不特定主题的一般性建议和提案",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15915,
+                          "element_count": 4,
+                          "elements": [
+                            {
+                              "name": "建议",
+                              "count": 2,
+                              "post_ids": [
+                                "64585144",
+                                "64610880"
+                              ]
+                            },
+                            {
+                              "name": "评价",
+                              "count": 1,
+                              "post_ids": [
+                                "64591962"
+                              ]
+                            },
+                            {
+                              "name": "取消明星军籍",
+                              "count": 1,
+                              "post_ids": [
+                                "63762367"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 4,
+                          "children": [],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "民生建议",
+                          "path": "/理念/观念/社会/建议/官方建议/民生建议",
+                          "id": 15451,
+                          "source_stable_id": 1206,
+                          "source_type": "实质",
+                          "description": "关于民众生活、社会福利等方面的官方建议和提案",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15915,
+                          "element_count": 2,
+                          "elements": [
+                            {
+                              "name": "民生化",
+                              "count": 1,
+                              "post_ids": [
+                                "64610880"
+                              ]
+                            },
+                            {
+                              "name": "经费民生化",
+                              "count": 1,
+                              "post_ids": [
+                                "64610880"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 2,
+                          "children": [],
+                          "total_posts_count": 0
+                        }
+                      ],
+                      "total_posts_count": 0
+                    },
+                    {
+                      "name": "民众诉求",
+                      "path": "/理念/观念/社会/建议/民众诉求",
+                      "id": 15450,
+                      "source_stable_id": 1205,
+                      "source_type": "实质",
+                      "description": "普通民众提出的要求、愿望和反向建议",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15731,
+                      "element_count": 2,
+                      "elements": [
+                        {
+                          "name": "社会呼吁",
+                          "count": 1,
+                          "post_ids": [
+                            "64095002"
+                          ]
+                        },
+                        {
+                          "name": "诉求",
+                          "count": 1,
+                          "post_ids": [
+                            "59943231"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 2,
+                      "children": [],
+                      "total_posts_count": 0
+                    }
+                  ],
+                  "total_posts_count": 0
+                },
+                {
+                  "name": "时政评议",
+                  "path": "/理念/观念/社会/时政评议",
+                  "id": 15747,
+                  "source_stable_id": 126,
+                  "source_type": "实质",
+                  "description": "对历史事件、政治人物、国际关系等公共议题的评价、观点和论断",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 15951,
+                  "element_count": 0,
+                  "elements": [],
+                  "total_element_count": 40,
+                  "children": [
+                    {
+                      "name": "政策评论",
+                      "path": "/理念/观念/社会/时政评议/政策评论",
+                      "id": 15827,
+                      "source_stable_id": 650,
+                      "source_type": "实质",
+                      "description": "对当前政治事务、政策措施的评论和观点",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15747,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 16,
+                      "children": [
+                        {
+                          "name": "台海政治评论",
+                          "path": "/理念/观念/社会/时政评议/政策评论/台海政治评论",
+                          "id": 15565,
+                          "source_stable_id": 1367,
+                          "source_type": "实质",
+                          "description": "关于台湾政治事务、两岸关系的评论",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15827,
+                          "element_count": 6,
+                          "elements": [
+                            {
+                              "name": "世代共荣",
+                              "count": 1,
+                              "post_ids": [
+                                "9c87381270abacce95e103b3a000e086"
+                              ]
+                            },
+                            {
+                              "name": "挑战论述",
+                              "count": 1,
+                              "post_ids": [
+                                "b9bc7d3c46583a41a76867f0ac7e62f1"
+                              ]
+                            },
+                            {
+                              "name": "收拾民进党",
+                              "count": 1,
+                              "post_ids": [
+                                "f97823103ca8ad6cd69037958d17ae32"
+                              ]
+                            },
+                            {
+                              "name": "国民党政论",
+                              "count": 1,
+                              "post_ids": [
+                                "accf5d531aaa9ef7b9e6fee360944151"
+                              ]
+                            },
+                            {
+                              "name": "民意观",
+                              "count": 1,
+                              "post_ids": [
+                                "55d981958a8fd219d9c713fb16c12170"
+                              ]
+                            },
+                            {
+                              "name": "历史和解",
+                              "count": 1,
+                              "post_ids": [
+                                "333bd89e657acbcd9b26201f93cd8993"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 6,
+                          "children": [],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "时政观点表达",
+                          "path": "/理念/观念/社会/时政评议/政策评论/时政观点表达",
+                          "id": 15566,
+                          "source_stable_id": 1368,
+                          "source_type": "实质",
+                          "description": "一般性的时政观点、政治言论和表态",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15827,
+                          "element_count": 10,
+                          "elements": [
+                            {
+                              "name": "政治表态",
+                              "count": 1,
+                              "post_ids": [
+                                "f97823103ca8ad6cd69037958d17ae32"
+                              ]
+                            },
+                            {
+                              "name": "政治论述",
+                              "count": 2,
+                              "post_ids": [
+                                "4bab077aa99a235a81c41631af69aa78",
+                                "55d981958a8fd219d9c713fb16c12170"
+                              ]
+                            },
+                            {
+                              "name": "时政评论",
+                              "count": 2,
+                              "post_ids": [
+                                "49d6570f82c62ca372c932b67467878f",
+                                "afb320f2428ca07a2743d96dc21e4127"
+                              ]
+                            },
+                            {
+                              "name": "政治辞令",
+                              "count": 1,
+                              "post_ids": [
+                                "61db1ae4bd885760b0f5cca9ecacb588"
+                              ]
+                            },
+                            {
+                              "name": "言论",
+                              "count": 2,
+                              "post_ids": [
+                                "62da797f45d5b2a8ebd9149c3b52c719",
+                                "cb673ebabb42a9499b3532943f8bb974"
+                              ]
+                            },
+                            {
+                              "name": "政治表述",
+                              "count": 1,
+                              "post_ids": [
+                                "da753fb9dc1fc7f09ef8e5e7c014ada3"
+                              ]
+                            },
+                            {
+                              "name": "政治宣言",
+                              "count": 1,
+                              "post_ids": [
+                                "fc4773ccef61d3092666496328603e9d"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 10,
+                          "children": [],
+                          "total_posts_count": 0
+                        }
+                      ],
+                      "total_posts_count": 0
+                    },
+                    {
+                      "name": "社会评议",
+                      "path": "/理念/观念/社会/时政评议/社会评议",
+                      "id": 15137,
+                      "source_stable_id": 649,
+                      "source_type": "实质",
+                      "description": "对社会现象、社会问题、社会道德的评价和观点",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15747,
+                      "element_count": 6,
+                      "elements": [
+                        {
+                          "name": "社会观点",
+                          "count": 2,
+                          "post_ids": [
+                            "63762367",
+                            "64801086"
+                          ]
+                        },
+                        {
+                          "name": "传统文化回归",
+                          "count": 1,
+                          "post_ids": [
+                            "64591962"
+                          ]
+                        },
+                        {
+                          "name": "搬到国外",
+                          "count": 1,
+                          "post_ids": [
+                            "64585144"
+                          ]
+                        },
+                        {
+                          "name": "春晚负面评价",
+                          "count": 1,
+                          "post_ids": [
+                            "64554023"
+                          ]
+                        },
+                        {
+                          "name": "效果",
+                          "count": 1,
+                          "post_ids": [
+                            "64415308"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 24,
+                      "children": [
+                        {
+                          "name": "民生关切",
+                          "path": "/理念/观念/社会/时政评议/社会评议/民生关切",
+                          "id": 15140,
+                          "source_stable_id": 653,
+                          "source_type": "实质",
+                          "description": "关于民众生计、生活质量、百姓心声的观点",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15137,
+                          "element_count": 3,
+                          "elements": [
+                            {
+                              "name": "百姓心声",
+                              "count": 1,
+                              "post_ids": [
+                                "65142392"
+                              ]
+                            },
+                            {
+                              "name": "双标感",
+                              "count": 1,
+                              "post_ids": [
+                                "64870193"
+                              ]
+                            },
+                            {
+                              "name": "民生观点",
+                              "count": 1,
+                              "post_ids": [
+                                "56977419"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 3,
+                          "children": [],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "社会公正",
+                          "path": "/理念/观念/社会/时政评议/社会评议/社会公正",
+                          "id": 15139,
+                          "source_stable_id": 652,
+                          "source_type": "实质",
+                          "description": "关于社会公平、正义、道德标准的观点和主张",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15137,
+                          "element_count": 4,
+                          "elements": [
+                            {
+                              "name": "社会道德责任",
+                              "count": 1,
+                              "post_ids": [
+                                "65114702"
+                              ]
+                            },
+                            {
+                              "name": "社会道德观点",
+                              "count": 1,
+                              "post_ids": [
+                                "65114702"
+                              ]
+                            },
+                            {
+                              "name": "道德对比",
+                              "count": 1,
+                              "post_ids": [
+                                "57447289"
+                              ]
+                            },
+                            {
+                              "name": "社会正义",
+                              "count": 1,
+                              "post_ids": [
+                                "57442193"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 4,
+                          "children": [],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "社会批判",
+                          "path": "/理念/观念/社会/时政评议/社会评议/社会批判",
+                          "id": 15138,
+                          "source_stable_id": 651,
+                          "source_type": "实质",
+                          "description": "对社会现象进行批判、讽刺、揭露的评价内容",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15137,
+                          "element_count": 11,
+                          "elements": [
+                            {
+                              "name": "社会讽刺",
+                              "count": 1,
+                              "post_ids": [
+                                "65514975"
+                              ]
+                            },
+                            {
+                              "name": "道德审判",
+                              "count": 1,
+                              "post_ids": [
+                                "65252544"
+                              ]
+                            },
+                            {
+                              "name": "社会反讽",
+                              "count": 1,
+                              "post_ids": [
+                                "64958390"
+                              ]
+                            },
+                            {
+                              "name": "现实批判",
+                              "count": 1,
+                              "post_ids": [
+                                "64770257"
+                              ]
+                            },
+                            {
+                              "name": "社会评论",
+                              "count": 1,
+                              "post_ids": [
+                                "64589911"
+                              ]
+                            },
+                            {
+                              "name": "社会观察",
+                              "count": 5,
+                              "post_ids": [
+                                "55102015",
+                                "59422696",
+                                "63477609",
+                                "64139717",
+                                "64589911"
+                              ]
+                            },
+                            {
+                              "name": "批判",
+                              "count": 1,
+                              "post_ids": [
+                                "59943231"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 11,
+                          "children": [],
+                          "total_posts_count": 0
+                        }
+                      ],
+                      "total_posts_count": 0
+                    }
+                  ],
+                  "total_posts_count": 0
+                }
+              ],
+              "total_posts_count": 0
+            }
+          ],
+          "total_posts_count": 21
+        }
+      ],
+      "total_posts_count": 191
+    },
+    {
+      "name": "种草",
+      "path": "/种草",
+      "id": 16000,
+      "source_stable_id": -14,
+      "source_type": "意图",
+      "description": null,
+      "category_nature": null,
+      "level": 1,
+      "parent_id": null,
+      "element_count": 1,
+      "elements": [
+        {
+          "name": "种草",
+          "count": 1,
+          "post_ids": [
+            "6965ea53000000000e00f0f1"
+          ]
+        }
+      ],
+      "total_element_count": 1,
+      "children": [],
+      "total_posts_count": 1
+    },
+    {
+      "name": "科普",
+      "path": "/科普",
+      "id": 15987,
+      "source_stable_id": -1,
+      "source_type": "意图",
+      "description": null,
+      "category_nature": null,
+      "level": 1,
+      "parent_id": null,
+      "element_count": 24,
+      "elements": [
+        {
+          "name": "科普",
+          "count": 24,
+          "post_ids": [
+            "03e3d299faba104965b33d87b5063eff",
+            "64450659",
+            "661dbf91000000001a0119b6",
+            "67284f9c000000001901875a",
+            "683f8111000000002102effd",
+            "68e310c90000000003035444",
+            "68ec3f9d000000000700de97",
+            "68ef800d0000000005011094",
+            "68f568a1000000000301053d",
+            "68f95c43000000000300c650",
+            "6907ed79000000000703699c",
+            "690a9329000000000700b783",
+            "6911177d0000000007031417",
+            "6913cafd000000000703402b",
+            "69145e8e0000000005003350",
+            "691a54bd000000000700be32",
+            "691f9a9f000000000d00ea0a",
+            "692cc7ab000000001b030110",
+            "693613b9000000001e00ebdd",
+            "69375a940000000019024af5",
+            "693f425a000000001e00ed26",
+            "69434b1f000000001e013f9e",
+            "6951c718000000001e0105b7",
+            "ff037b4ada852d5835240ffded2f7256"
+          ]
+        }
+      ],
+      "total_element_count": 24,
+      "children": [],
+      "total_posts_count": 21
+    },
+    {
+      "name": "致敬",
+      "path": "/致敬",
+      "id": 16003,
+      "source_stable_id": -17,
+      "source_type": "意图",
+      "description": null,
+      "category_nature": null,
+      "level": 1,
+      "parent_id": null,
+      "element_count": 1,
+      "elements": [
+        {
+          "name": "致敬",
+          "count": 1,
+          "post_ids": [
+            "56380736"
+          ]
+        }
+      ],
+      "total_element_count": 1,
+      "children": [],
+      "total_posts_count": 0
+    },
+    {
+      "name": "表象",
+      "path": "/表象",
+      "id": 15713,
+      "source_stable_id": 38,
+      "source_type": "实质",
+      "description": "内容中出现的具象要素——看得见、指得出的实体、场景和行为",
+      "category_nature": "内容",
+      "level": 1,
+      "parent_id": null,
+      "element_count": 0,
+      "elements": [],
+      "total_element_count": 1980,
+      "children": [
+        {
+          "name": "内容形态",
+          "path": "/表象/内容形态",
+          "id": 14902,
+          "source_stable_id": 108,
+          "source_type": "实质",
+          "description": "视频、图文等不同形式的内容载体",
+          "category_nature": "内容",
+          "level": 2,
+          "parent_id": 15713,
+          "element_count": 1,
+          "elements": [
+            {
+              "name": "素材",
+              "count": 1,
+              "post_ids": [
+                "c84d14e15b8324b91df2cd8cb8304db9"
+              ]
+            }
+          ],
+          "total_element_count": 66,
+          "children": [
+            {
+              "name": "宣传推广",
+              "path": "/表象/内容形态/宣传推广",
+              "id": 15812,
+              "source_stable_id": 494,
+              "source_type": "实质",
+              "description": "以品牌宣传、商业推广或公益传播为目的的内容,如广告片、宣传视频等",
+              "category_nature": "维度",
+              "level": 3,
+              "parent_id": 14902,
+              "element_count": 0,
+              "elements": [],
+              "total_element_count": 2,
+              "children": [
+                {
+                  "name": "商业广告",
+                  "path": "/表象/内容形态/宣传推广/商业广告",
+                  "id": 15028,
+                  "source_stable_id": 495,
+                  "source_type": "实质",
+                  "description": "以营利为目的的品牌宣传和商业推广内容,包括广告片、产品推介视频等",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 15812,
+                  "element_count": 2,
+                  "elements": [
+                    {
+                      "name": "明星广告",
+                      "count": 1,
+                      "post_ids": [
+                        "64210278"
+                      ]
+                    },
+                    {
+                      "name": "商业广告",
+                      "count": 1,
+                      "post_ids": [
+                        "64076321"
+                      ]
+                    }
+                  ],
+                  "total_element_count": 2,
+                  "children": [],
+                  "total_posts_count": 0
+                }
+              ],
+              "total_posts_count": 0
+            },
+            {
+              "name": "影像",
+              "path": "/表象/内容形态/影像",
+              "id": 14907,
+              "source_stable_id": 119,
+              "source_type": "实质",
+              "description": "动态和静态的视觉记录内容,包括照片、视频、纪录片等",
+              "category_nature": "维度",
+              "level": 3,
+              "parent_id": 14902,
+              "element_count": 2,
+              "elements": [
+                {
+                  "name": "视觉影像",
+                  "count": 1,
+                  "post_ids": [
+                    "82b864cd83e9a5f376214dbc341d6dad"
+                  ]
+                },
+                {
+                  "name": "邮票影像",
+                  "count": 1,
+                  "post_ids": [
+                    "03e3d299faba104965b33d87b5063eff"
+                  ]
+                }
+              ],
+              "total_element_count": 63,
+              "children": [
+                {
+                  "name": "历史影像",
+                  "path": "/表象/内容形态/影像/历史影像",
+                  "id": 15746,
+                  "source_stable_id": 121,
+                  "source_type": "实质",
+                  "description": "历史时期拍摄的照片、视频、纪录片等视觉记录",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 14907,
+                  "element_count": 0,
+                  "elements": [],
+                  "total_element_count": 2,
+                  "children": [
+                    {
+                      "name": "历史录像",
+                      "path": "/表象/内容形态/影像/历史影像/历史录像",
+                      "id": 15688,
+                      "source_stable_id": 1539,
+                      "source_type": "实质",
+                      "description": "历史时期的动态视频记录,包括影视片段、怀旧影像等通用视频类内容",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15746,
+                      "element_count": 2,
+                      "elements": [
+                        {
+                          "name": "影视片段",
+                          "count": 1,
+                          "post_ids": [
+                            "60332209"
+                          ]
+                        },
+                        {
+                          "name": "历史怀旧内容",
+                          "count": 1,
+                          "post_ids": [
+                            "57919607"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 2,
+                      "children": [],
+                      "total_posts_count": 0
+                    }
+                  ],
+                  "total_posts_count": 0
+                },
+                {
+                  "name": "影视作品",
+                  "path": "/表象/内容形态/影像/影视作品",
+                  "id": 15019,
+                  "source_stable_id": 463,
+                  "source_type": "实质",
+                  "description": "电影、电视剧、纪录片等影视类作品,包括经典影视和时代作品",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 14907,
+                  "element_count": 2,
+                  "elements": [
+                    {
+                      "name": "短剧",
+                      "count": 1,
+                      "post_ids": [
+                        "65514975"
+                      ]
+                    },
+                    {
+                      "name": "西游记",
+                      "count": 1,
+                      "post_ids": [
+                        "60332209"
+                      ]
+                    }
+                  ],
+                  "total_element_count": 2,
+                  "children": [],
+                  "total_posts_count": 0
+                },
+                {
+                  "name": "生活影像",
+                  "path": "/表象/内容形态/影像/生活影像",
+                  "id": 14914,
+                  "source_stable_id": 131,
+                  "source_type": "实质",
+                  "description": "记录日常生活、非正式场合的照片、合影、视频片段等影像内容",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 14907,
+                  "element_count": 12,
+                  "elements": [
+                    {
+                      "name": "跨党派人物配图",
+                      "count": 1,
+                      "post_ids": [
+                        "b9bc7d3c46583a41a76867f0ac7e62f1"
+                      ]
+                    },
+                    {
+                      "name": "民众党领袖图",
+                      "count": 1,
+                      "post_ids": [
+                        "accf5d531aaa9ef7b9e6fee360944151"
+                      ]
+                    },
+                    {
+                      "name": "柯文哲配图",
+                      "count": 1,
+                      "post_ids": [
+                        "da753fb9dc1fc7f09ef8e5e7c014ada3"
+                      ]
+                    },
+                    {
+                      "name": "配图",
+                      "count": 1,
+                      "post_ids": [
+                        "b76365fa6008e98aea8b6876bcc4e3d0"
+                      ]
+                    },
+                    {
+                      "name": "屏幕内容",
+                      "count": 3,
+                      "post_ids": [
+                        "67ee4e29000000001200f3c2",
+                        "68302e2b000000000f038e8c",
+                        "6900667d000000000300f640"
+                      ]
+                    },
+                    {
+                      "name": "合影",
+                      "count": 3,
+                      "post_ids": [
+                        "66ee55d200000000270066a8",
+                        "6803185a000000000b01ef09",
+                        "6879f0f90000000013012f9a"
+                      ]
+                    },
+                    {
+                      "name": "草地合影",
+                      "count": 1,
+                      "post_ids": [
+                        "6803185a000000000b01ef09"
+                      ]
+                    },
+                    {
+                      "name": "多博主案例",
+                      "count": 1,
+                      "post_ids": [
+                        "696f2f97000000000e00e33c"
+                      ]
+                    }
+                  ],
+                  "total_element_count": 12,
+                  "children": [],
+                  "total_posts_count": 7
+                },
+                {
+                  "name": "艺术创作",
+                  "path": "/表象/内容形态/影像/艺术创作",
+                  "id": 14947,
+                  "source_stable_id": 261,
+                  "source_type": "实质",
+                  "description": "具有审美价值和创作意图的摄影作品、绘画、插画等视觉创作内容",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 14907,
+                  "element_count": 45,
+                  "elements": [
+                    {
+                      "name": "插画",
+                      "count": 10,
+                      "post_ids": [
+                        "661dbf91000000001a0119b6",
+                        "68ec3f9d000000000700de97",
+                        "68f568a1000000000301053d",
+                        "690333e70000000007022604",
+                        "6907ed79000000000703699c",
+                        "6911177d0000000007031417",
+                        "691a54bd000000000700be32",
+                        "691f9a9f000000000d00ea0a",
+                        "69434b1f000000001e013f9e",
+                        "6951c718000000001e0105b7"
+                      ]
+                    },
+                    {
+                      "name": "艺术作品",
+                      "count": 26,
+                      "post_ids": [
+                        "692a535f0000000019026d5b",
+                        "693f94d80000000019025898",
+                        "696078f70000000022038479",
+                        "696079a10000000022031521",
+                        "6964bc98000000002202c86f",
+                        "6964be3900000000210282a4",
+                        "6964beb3000000002103361a",
+                        "6964bee80000000022039e8c",
+                        "6968ef250000000021033c7c",
+                        "696b528900000000210333ea",
+                        "696b52dd000000002202c60a",
+                        "696b5332000000002103c497",
+                        "696b537f00000000220398ad",
+                        "6970693f000000002102bec2",
+                        "697069b7000000002202d264",
+                        "69706a0600000000210282bd",
+                        "69706aa0000000002202d723",
+                        "6975b27c000000002202d2fb",
+                        "6975b2d7000000002200b4ae",
+                        "6975b32c000000002102bc55",
+                        "6975b361000000002202d7e8",
+                        "6975b3c50000000022020356"
+                      ]
+                    },
+                    {
+                      "name": "全景光绘摄影",
+                      "count": 1,
+                      "post_ids": [
+                        "672ed3b6000000003c017f82"
+                      ]
+                    },
+                    {
+                      "name": "影子照",
+                      "count": 1,
+                      "post_ids": [
+                        "670baf34000000001600f52a"
+                      ]
+                    },
+                    {
+                      "name": "单人情侣",
+                      "count": 1,
+                      "post_ids": [
+                        "670baf34000000001600f52a"
+                      ]
+                    },
+                    {
+                      "name": "草地煎蛋",
+                      "count": 1,
+                      "post_ids": [
+                        "66f51b90000000002a036660"
+                      ]
+                    },
+                    {
+                      "name": "创意不露脸",
+                      "count": 1,
+                      "post_ids": [
+                        "66ee55d200000000270066a8"
+                      ]
+                    },
+                    {
+                      "name": "头像素材",
+                      "count": 1,
+                      "post_ids": [
+                        "6874c80e000000000d027767"
+                      ]
+                    },
+                    {
+                      "name": "手部彩绘",
+                      "count": 1,
+                      "post_ids": [
+                        "12357835"
+                      ]
+                    },
+                    {
+                      "name": "手绘艺术",
+                      "count": 1,
+                      "post_ids": [
+                        "12357835"
+                      ]
+                    },
+                    {
+                      "name": "草根作品",
+                      "count": 1,
+                      "post_ids": [
+                        "64935973"
+                      ]
+                    }
+                  ],
+                  "total_element_count": 45,
+                  "children": [],
+                  "total_posts_count": 37
+                }
+              ],
+              "total_posts_count": 43
+            }
+          ],
+          "total_posts_count": 43
+        },
+        {
+          "name": "场景",
+          "path": "/表象/场景",
+          "id": 15714,
+          "source_stable_id": 42,
+          "source_type": "实质",
+          "description": "时间、空间、背景等环境要素",
+          "category_nature": "内容",
+          "level": 2,
+          "parent_id": 15713,
+          "element_count": 0,
+          "elements": [],
+          "total_element_count": 314,
+          "children": [
+            {
+              "name": "时间",
+              "path": "/表象/场景/时间",
+              "id": 14896,
+              "source_stable_id": 93,
+              "source_type": "实质",
+              "description": "日期、节气、时段等时间要素",
+              "category_nature": "维度",
+              "level": 3,
+              "parent_id": 15714,
+              "element_count": 3,
+              "elements": [
+                {
+                  "name": "特定日期",
+                  "count": 2,
+                  "post_ids": [
+                    "59323915",
+                    "63146000"
+                  ]
+                },
+                {
+                  "name": "多重信息",
+                  "count": 1,
+                  "post_ids": [
+                    "59146568"
+                  ]
+                }
+              ],
+              "total_element_count": 87,
+              "children": [
+                {
+                  "name": "时段",
+                  "path": "/表象/场景/时间/时段",
+                  "id": 15740,
+                  "source_stable_id": 99,
+                  "source_type": "实质",
+                  "description": "季节、年份、人生阶段等时间段落",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 14896,
+                  "element_count": 0,
+                  "elements": [],
+                  "total_element_count": 28,
+                  "children": [
+                    {
+                      "name": "人生阶段",
+                      "path": "/表象/场景/时间/时段/人生阶段",
+                      "id": 15213,
+                      "source_stable_id": 750,
+                      "source_type": "实质",
+                      "description": "个人成长发展的不同时期",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15740,
+                      "element_count": 3,
+                      "elements": [
+                        {
+                          "name": "生命阶段",
+                          "count": 1,
+                          "post_ids": [
+                            "2c73223f278ea6aecd70b5b54f0aff21"
+                          ]
+                        },
+                        {
+                          "name": "人生阶段",
+                          "count": 1,
+                          "post_ids": [
+                            "64855234"
+                          ]
+                        },
+                        {
+                          "name": "青春",
+                          "count": 1,
+                          "post_ids": [
+                            "59583293"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 3,
+                      "children": [],
+                      "total_posts_count": 0
+                    },
+                    {
+                      "name": "具体年份",
+                      "path": "/表象/场景/时间/时段/具体年份",
+                      "id": 15211,
+                      "source_stable_id": 748,
+                      "source_type": "实质",
+                      "description": "明确的公历年份或生肖年份",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15740,
+                      "element_count": 5,
+                      "elements": [
+                        {
+                          "name": "2026",
+                          "count": 1,
+                          "post_ids": [
+                            "752267d0ca2695c2ceb816a43d943a6a"
+                          ]
+                        },
+                        {
+                          "name": "2026年",
+                          "count": 1,
+                          "post_ids": [
+                            "752267d0ca2695c2ceb816a43d943a6a"
+                          ]
+                        },
+                        {
+                          "name": "马年",
+                          "count": 2,
+                          "post_ids": [
+                            "69756d90000000001a020c81"
+                          ]
+                        },
+                        {
+                          "name": "2026马年",
+                          "count": 1,
+                          "post_ids": [
+                            "64903753"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 5,
+                      "children": [],
+                      "total_posts_count": 1
+                    },
+                    {
+                      "name": "历史时期",
+                      "path": "/表象/场景/时间/时段/历史时期",
+                      "id": 15212,
+                      "source_stable_id": 749,
+                      "source_type": "实质",
+                      "description": "朝代、年代、政治时期等历史阶段",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15740,
+                      "element_count": 3,
+                      "elements": [
+                        {
+                          "name": "中世纪",
+                          "count": 1,
+                          "post_ids": [
+                            "89627e4bf8ad865f175c54e3b0ddd2cd"
+                          ]
+                        },
+                        {
+                          "name": "历代",
+                          "count": 1,
+                          "post_ids": [
+                            "692c3402000000000d03b7b7"
+                          ]
+                        },
+                        {
+                          "name": "特定历史时期",
+                          "count": 1,
+                          "post_ids": [
+                            "57373464"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 3,
+                      "children": [],
+                      "total_posts_count": 1
+                    },
+                    {
+                      "name": "时间跨度",
+                      "path": "/表象/场景/时间/时段/时间跨度",
+                      "id": 15214,
+                      "source_stable_id": 751,
+                      "source_type": "实质",
+                      "description": "时长、周期、时间范围等时间量度",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15740,
+                      "element_count": 4,
+                      "elements": [
+                        {
+                          "name": "一周",
+                          "count": 1,
+                          "post_ids": [
+                            "66619827000000000600486f"
+                          ]
+                        },
+                        {
+                          "name": "31天",
+                          "count": 1,
+                          "post_ids": [
+                            "6726109d000000001901b564"
+                          ]
+                        },
+                        {
+                          "name": "三餐",
+                          "count": 1,
+                          "post_ids": [
+                            "6726109d000000001901b564"
+                          ]
+                        },
+                        {
+                          "name": "三十年前后",
+                          "count": 1,
+                          "post_ids": [
+                            "55099131"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 4,
+                      "children": [],
+                      "total_posts_count": 2
+                    },
+                    {
+                      "name": "特殊时点",
+                      "path": "/表象/场景/时间/时段/特殊时点",
+                      "id": 15215,
+                      "source_stable_id": 752,
+                      "source_type": "实质",
+                      "description": "生日、节点、期限等特定时间点",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15740,
+                      "element_count": 1,
+                      "elements": [
+                        {
+                          "name": "入职前后",
+                          "count": 1,
+                          "post_ids": [
+                            "6879f4b1000000000b02c2e0"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 1,
+                      "children": [],
+                      "total_posts_count": 1
+                    },
+                    {
+                      "name": "自然季节",
+                      "path": "/表象/场景/时间/时段/自然季节",
+                      "id": 15210,
+                      "source_stable_id": 747,
+                      "source_type": "实质",
+                      "description": "春夏秋冬四季及相关季节性时段",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15740,
+                      "element_count": 12,
+                      "elements": [
+                        {
+                          "name": "冬日",
+                          "count": 7,
+                          "post_ids": [
+                            "6964d4bf000000001a031a54",
+                            "6969068e000000000d008b48",
+                            "6971ec6f000000001a02d248",
+                            "6973742d000000002801e8aa",
+                            "697638e8000000001a025711",
+                            "69770dc6000000001a02efe9"
+                          ]
+                        },
+                        {
+                          "name": "秋冬",
+                          "count": 2,
+                          "post_ids": [
+                            "6965d491000000000e00f9b0",
+                            "696f8d95000000001a028641"
+                          ]
+                        },
+                        {
+                          "name": "秋日",
+                          "count": 2,
+                          "post_ids": [
+                            "6911532d000000000503bd18",
+                            "691d3112000000001e036559"
+                          ]
+                        },
+                        {
+                          "name": "高温酷暑",
+                          "count": 1,
+                          "post_ids": [
+                            "68789450000000000b01d4a4"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 12,
+                      "children": [],
+                      "total_posts_count": 11
+                    }
+                  ],
+                  "total_posts_count": 16
+                },
+                {
+                  "name": "节日",
+                  "path": "/表象/场景/时间/节日",
+                  "id": 14897,
+                  "source_stable_id": 97,
+                  "source_type": "实质",
+                  "description": "中国传统节日和现代节日",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 14896,
+                  "element_count": 1,
+                  "elements": [
+                    {
+                      "name": "人日节",
+                      "count": 1,
+                      "post_ids": [
+                        "65298913"
+                      ]
+                    }
+                  ],
+                  "total_element_count": 50,
+                  "children": [
+                    {
+                      "name": "春节时令",
+                      "path": "/表象/场景/时间/节日/春节时令",
+                      "id": 15925,
+                      "source_stable_id": 1315,
+                      "source_type": "实质",
+                      "description": "与农历新年相关的节日、习俗和时间节点",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 14897,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 42,
+                      "children": [
+                        {
+                          "name": "年俗活动",
+                          "path": "/表象/场景/时间/节日/春节时令/年俗活动",
+                          "id": 15708,
+                          "source_stable_id": 1595,
+                          "source_type": "实质",
+                          "description": "春节期间的传统习俗和庆祝活动,如拜年、迎神、春晚等",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15925,
+                          "element_count": 16,
+                          "elements": [
+                            {
+                              "name": "拜年",
+                              "count": 3,
+                              "post_ids": [
+                                "65135957",
+                                "65139072",
+                                "65203608"
+                              ]
+                            },
+                            {
+                              "name": "大年初四迎灶神",
+                              "count": 1,
+                              "post_ids": [
+                                "65196789"
+                              ]
+                            },
+                            {
+                              "name": "大年初二拜年",
+                              "count": 1,
+                              "post_ids": [
+                                "65133109"
+                              ]
+                            },
+                            {
+                              "name": "春晚",
+                              "count": 11,
+                              "post_ids": [
+                                "64415308",
+                                "64585144",
+                                "64591962",
+                                "64650216",
+                                "64935973",
+                                "65135248"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 16,
+                          "children": [],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "年关节令",
+                          "path": "/表象/场景/时间/节日/春节时令/年关节令",
+                          "id": 15706,
+                          "source_stable_id": 1593,
+                          "source_type": "实质",
+                          "description": "春节前后的关键传统节日节点,如腊八、小年、除夕、元宵等",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15925,
+                          "element_count": 11,
+                          "elements": [
+                            {
+                              "name": "元宵节",
+                              "count": 3,
+                              "post_ids": [
+                                "65600878",
+                                "65602591",
+                                "65608649"
+                              ]
+                            },
+                            {
+                              "name": "除夕",
+                              "count": 2,
+                              "post_ids": [
+                                "65061667",
+                                "65067062"
+                              ]
+                            },
+                            {
+                              "name": "小年",
+                              "count": 3,
+                              "post_ids": [
+                                "64820485",
+                                "64851184",
+                                "64851907"
+                              ]
+                            },
+                            {
+                              "name": "腊八节",
+                              "count": 3,
+                              "post_ids": [
+                                "64203380",
+                                "64246342"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 11,
+                          "children": [],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "春节概念",
+                          "path": "/表象/场景/时间/节日/春节时令/春节概念",
+                          "id": 15705,
+                          "source_stable_id": 1592,
+                          "source_type": "实质",
+                          "description": "对春节、新年的概括性称谓和贺岁概念",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15925,
+                          "element_count": 6,
+                          "elements": [
+                            {
+                              "name": "新春",
+                              "count": 1,
+                              "post_ids": [
+                                "69756d90000000001a020c81"
+                              ]
+                            },
+                            {
+                              "name": "2026马年贺岁",
+                              "count": 2,
+                              "post_ids": [
+                                "65027290",
+                                "65084923"
+                              ]
+                            },
+                            {
+                              "name": "新年",
+                              "count": 2,
+                              "post_ids": [
+                                "64029781",
+                                "64903753"
+                              ]
+                            },
+                            {
+                              "name": "春节",
+                              "count": 1,
+                              "post_ids": [
+                                "64314678"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 6,
+                          "children": [],
+                          "total_posts_count": 1
+                        },
+                        {
+                          "name": "正月日序",
+                          "path": "/表象/场景/时间/节日/春节时令/正月日序",
+                          "id": 15707,
+                          "source_stable_id": 1594,
+                          "source_type": "实质",
+                          "description": "正月期间具体日期的时间节点,如大年初一至初十、正月十一至十六等",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15925,
+                          "element_count": 9,
+                          "elements": [
+                            {
+                              "name": "大年初六",
+                              "count": 1,
+                              "post_ids": [
+                                "65270425"
+                              ]
+                            },
+                            {
+                              "name": "大年初三",
+                              "count": 2,
+                              "post_ids": [
+                                "65162446",
+                                "65170329"
+                              ]
+                            },
+                            {
+                              "name": "大年初二",
+                              "count": 3,
+                              "post_ids": [
+                                "65135957",
+                                "65139072"
+                              ]
+                            },
+                            {
+                              "name": "正月十三",
+                              "count": 1,
+                              "post_ids": [
+                                "65529862"
+                              ]
+                            },
+                            {
+                              "name": "正月十一",
+                              "count": 1,
+                              "post_ids": [
+                                "65450821"
+                              ]
+                            },
+                            {
+                              "name": "正月初十",
+                              "count": 1,
+                              "post_ids": [
+                                "65402572"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 9,
+                          "children": [],
+                          "total_posts_count": 0
+                        }
+                      ],
+                      "total_posts_count": 1
+                    },
+                    {
+                      "name": "民俗节日",
+                      "path": "/表象/场景/时间/节日/民俗节日",
+                      "id": 15532,
+                      "source_stable_id": 1316,
+                      "source_type": "实质",
+                      "description": "中秋、重阳等中国传统民俗佳节",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 14897,
+                      "element_count": 4,
+                      "elements": [
+                        {
+                          "name": "中秋",
+                          "count": 2,
+                          "post_ids": [
+                            "59121599",
+                            "59146568"
+                          ]
+                        },
+                        {
+                          "name": "元宵",
+                          "count": 1,
+                          "post_ids": [
+                            "47951584"
+                          ]
+                        },
+                        {
+                          "name": "传统节日",
+                          "count": 1,
+                          "post_ids": [
+                            "64729260"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 4,
+                      "children": [],
+                      "total_posts_count": 0
+                    },
+                    {
+                      "name": "现代节日",
+                      "path": "/表象/场景/时间/节日/现代节日",
+                      "id": 15533,
+                      "source_stable_id": 1318,
+                      "source_type": "实质",
+                      "description": "情人节、母亲节、元旦等现代设立的节日",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 14897,
+                      "element_count": 3,
+                      "elements": [
+                        {
+                          "name": "情人节",
+                          "count": 1,
+                          "post_ids": [
+                            "67adb23f000000002a00c240"
+                          ]
+                        },
+                        {
+                          "name": "母亲节",
+                          "count": 1,
+                          "post_ids": [
+                            "682086dc0000000012003cbd"
+                          ]
+                        },
+                        {
+                          "name": "跨年",
+                          "count": 1,
+                          "post_ids": [
+                            "63146000"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 3,
+                      "children": [],
+                      "total_posts_count": 2
+                    }
+                  ],
+                  "total_posts_count": 3
+                },
+                {
+                  "name": "节气",
+                  "path": "/表象/场景/时间/节气",
+                  "id": 14898,
+                  "source_stable_id": 98,
+                  "source_type": "实质",
+                  "description": "二十四节气等自然时令",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 14896,
+                  "element_count": 6,
+                  "elements": [
+                    {
+                      "name": "立冬节气",
+                      "count": 1,
+                      "post_ids": [
+                        "60570460"
+                      ]
+                    },
+                    {
+                      "name": "立春",
+                      "count": 1,
+                      "post_ids": [
+                        "64603799"
+                      ]
+                    },
+                    {
+                      "name": "冬至",
+                      "count": 2,
+                      "post_ids": [
+                        "62675775"
+                      ]
+                    },
+                    {
+                      "name": "立冬",
+                      "count": 2,
+                      "post_ids": [
+                        "60527248"
+                      ]
+                    }
+                  ],
+                  "total_element_count": 6,
+                  "children": [],
+                  "total_posts_count": 0
+                }
+              ],
+              "total_posts_count": 18
+            },
+            {
+              "name": "空间",
+              "path": "/表象/场景/空间",
+              "id": 15720,
+              "source_stable_id": 50,
+              "source_type": "实质",
+              "description": "地理或物理空间环境",
+              "category_nature": "维度",
+              "level": 3,
+              "parent_id": 15714,
+              "element_count": 0,
+              "elements": [],
+              "total_element_count": 227,
+              "children": [
+                {
+                  "name": "地理区域",
+                  "path": "/表象/场景/空间/地理区域",
+                  "id": 14900,
+                  "source_stable_id": 101,
+                  "source_type": "实质",
+                  "description": "省份、城市、地区等行政区划和地理区域",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 15720,
+                  "element_count": 3,
+                  "elements": [
+                    {
+                      "name": "地域",
+                      "count": 3,
+                      "post_ids": [
+                        "67e27e6e000000000b017c96",
+                        "6912d90f00000000050113b3",
+                        "694a6caf000000001f00e112"
+                      ]
+                    }
+                  ],
+                  "total_element_count": 13,
+                  "children": [
+                    {
+                      "name": "中国行政区",
+                      "path": "/表象/场景/空间/地理区域/中国行政区",
+                      "id": 15189,
+                      "source_stable_id": 722,
+                      "source_type": "实质",
+                      "description": "中国的省、市、县、乡镇等各级行政区划单位",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 14900,
+                      "element_count": 1,
+                      "elements": [
+                        {
+                          "name": "多地",
+                          "count": 1,
+                          "post_ids": [
+                            "752267d0ca2695c2ceb816a43d943a6a"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 6,
+                      "children": [
+                        {
+                          "name": "市级",
+                          "path": "/表象/场景/空间/地理区域/中国行政区/市级",
+                          "id": 15192,
+                          "source_stable_id": 727,
+                          "source_type": "实质",
+                          "description": "地级市、直辖市等市级行政区划单位",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15189,
+                          "element_count": 5,
+                          "elements": [
+                            {
+                              "name": "昆明",
+                              "count": 2,
+                              "post_ids": [
+                                "697638e8000000001a025711",
+                                "697a20e9000000001a033338"
+                              ]
+                            },
+                            {
+                              "name": "合肥",
+                              "count": 1,
+                              "post_ids": [
+                                "69157ac40000000005039157"
+                              ]
+                            },
+                            {
+                              "name": "大理",
+                              "count": 2,
+                              "post_ids": [
+                                "68a4107f000000001c00e8e9",
+                                "68a8241a000000001c011403"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 5,
+                          "children": [],
+                          "total_posts_count": 5
+                        }
+                      ],
+                      "total_posts_count": 5
+                    },
+                    {
+                      "name": "区域类型",
+                      "path": "/表象/场景/空间/地理区域/区域类型",
+                      "id": 15191,
+                      "source_stable_id": 724,
+                      "source_type": "实质",
+                      "description": "按地理特征或功能划分的区域类型,如城乡、枢纽等",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 14900,
+                      "element_count": 1,
+                      "elements": [
+                        {
+                          "name": "枢纽周边",
+                          "count": 1,
+                          "post_ids": [
+                            "693a2428000000001e027639"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 1,
+                      "children": [],
+                      "total_posts_count": 1
+                    },
+                    {
+                      "name": "国际区域",
+                      "path": "/表象/场景/空间/地理区域/国际区域",
+                      "id": 15190,
+                      "source_stable_id": 723,
+                      "source_type": "实质",
+                      "description": "中国以外的国家、地区及跨国区域",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 14900,
+                      "element_count": 1,
+                      "elements": [
+                        {
+                          "name": "亚太市场",
+                          "count": 1,
+                          "post_ids": [
+                            "692006ef000000001f008b41"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 1,
+                      "children": [],
+                      "total_posts_count": 1
+                    },
+                    {
+                      "name": "景点地标",
+                      "path": "/表象/场景/空间/地理区域/景点地标",
+                      "id": 15193,
+                      "source_stable_id": 729,
+                      "source_type": "实质",
+                      "description": "具体的景点、地标、自然景观等可游览的地理位置",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 14900,
+                      "element_count": 2,
+                      "elements": [
+                        {
+                          "name": "昆明滇池",
+                          "count": 1,
+                          "post_ids": [
+                            "69770dc6000000001a02efe9"
+                          ]
+                        },
+                        {
+                          "name": "麓客岛",
+                          "count": 1,
+                          "post_ids": [
+                            "6911532d000000000503bd18"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 2,
+                      "children": [],
+                      "total_posts_count": 2
+                    }
+                  ],
+                  "total_posts_count": 12
+                },
+                {
+                  "name": "场所",
+                  "path": "/表象/场景/空间/场所",
+                  "id": 14889,
+                  "source_stable_id": 67,
+                  "source_type": "实质",
+                  "description": "具体的空间场所和环境",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 15720,
+                  "element_count": 16,
+                  "elements": [
+                    {
+                      "name": "场景",
+                      "count": 13,
+                      "post_ids": [
+                        "61db1ae4bd885760b0f5cca9ecacb588",
+                        "64076321",
+                        "65f4359b00000000140079b5",
+                        "6666b3a10000000015008834",
+                        "670baf34000000001600f52a",
+                        "672ed3b6000000003c017f82",
+                        "675fec1f000000000800c6f4",
+                        "67ee4e29000000001200f3c2",
+                        "68302e2b000000000f038e8c",
+                        "6843fb690000000012001659",
+                        "6881d560000000001703076c",
+                        "6900667d000000000300f640",
+                        "fc4773ccef61d3092666496328603e9d"
+                      ]
+                    },
+                    {
+                      "name": "拍照地点",
+                      "count": 2,
+                      "post_ids": [
+                        "697638e8000000001a025711",
+                        "697a20e9000000001a033338"
+                      ]
+                    },
+                    {
+                      "name": "历史场景",
+                      "count": 1,
+                      "post_ids": [
+                        "59587187"
+                      ]
+                    }
+                  ],
+                  "total_element_count": 150,
+                  "children": [
+                    {
+                      "name": "地标景观",
+                      "path": "/表象/场景/空间/场所/地标景观",
+                      "id": 14949,
+                      "source_stable_id": 265,
+                      "source_type": "实质",
+                      "description": "标志性建筑、传统园林等具有代表性的景观空间",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 14889,
+                      "element_count": 3,
+                      "elements": [
+                        {
+                          "name": "地标建筑",
+                          "count": 1,
+                          "post_ids": [
+                            "65604986"
+                          ]
+                        },
+                        {
+                          "name": "实景",
+                          "count": 1,
+                          "post_ids": [
+                            "65233075"
+                          ]
+                        },
+                        {
+                          "name": "边防一线",
+                          "count": 1,
+                          "post_ids": [
+                            "64801086"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 19,
+                      "children": [
+                        {
+                          "name": "建筑地标",
+                          "path": "/表象/场景/空间/场所/地标景观/建筑地标",
+                          "id": 15841,
+                          "source_stable_id": 844,
+                          "source_type": "实质",
+                          "description": "人造建筑类地标景观,包括传统建筑、政治建筑、文化场馆等",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 14949,
+                          "element_count": 0,
+                          "elements": [],
+                          "total_element_count": 9,
+                          "children": [
+                            {
+                              "name": "传统建筑",
+                              "path": "/表象/场景/空间/场所/地标景观/建筑地标/传统建筑",
+                              "id": 15278,
+                              "source_stable_id": 847,
+                              "source_type": "实质",
+                              "description": "寺庙、园林等中国传统建筑类地标",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15841,
+                              "element_count": 2,
+                              "elements": [
+                                {
+                                  "name": "土堡建筑",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "6968ef250000000021033c7c"
+                                  ]
+                                },
+                                {
+                                  "name": "中式园林",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "64203380"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 2,
+                              "children": [],
+                              "total_posts_count": 1
+                            },
+                            {
+                              "name": "国际地标",
+                              "path": "/表象/场景/空间/场所/地标景观/建筑地标/国际地标",
+                              "id": 15281,
+                              "source_stable_id": 851,
+                              "source_type": "实质",
+                              "description": "国外的标志性建筑地标",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15841,
+                              "element_count": 1,
+                              "elements": [
+                                {
+                                  "name": "泰姬陵",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "c84d14e15b8324b91df2cd8cb8304db9"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 1,
+                              "children": [],
+                              "total_posts_count": 0
+                            },
+                            {
+                              "name": "文化场馆",
+                              "path": "/表象/场景/空间/场所/地标景观/建筑地标/文化场馆",
+                              "id": 15279,
+                              "source_stable_id": 849,
+                              "source_type": "实质",
+                              "description": "书院、纪念馆等文化展示和教育类建筑地标",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15841,
+                              "element_count": 1,
+                              "elements": [
+                                {
+                                  "name": "赫尔书院",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "692fa7e0000000001e039786"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 1,
+                              "children": [],
+                              "total_posts_count": 1
+                            },
+                            {
+                              "name": "游乐场所",
+                              "path": "/表象/场景/空间/场所/地标景观/建筑地标/游乐场所",
+                              "id": 15280,
+                              "source_stable_id": 850,
+                              "source_type": "实质",
+                              "description": "游乐园、打卡点等休闲娱乐类建筑地标",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15841,
+                              "element_count": 5,
+                              "elements": [
+                                {
+                                  "name": "微观历史场景",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "685f974300000000120144db"
+                                  ]
+                                },
+                                {
+                                  "name": "金鱼打卡点",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "692fa7e0000000001e039786"
+                                  ]
+                                },
+                                {
+                                  "name": "打卡位",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "691acd15000000000402134e"
+                                  ]
+                                },
+                                {
+                                  "name": "小岛动物农场",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "68f1af7c0000000005003459"
+                                  ]
+                                },
+                                {
+                                  "name": "勇者之丘",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "68f1af7c0000000005003459"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 5,
+                              "children": [],
+                              "total_posts_count": 4
+                            }
+                          ],
+                          "total_posts_count": 5
+                        },
+                        {
+                          "name": "自然地标",
+                          "path": "/表象/场景/空间/场所/地标景观/自然地标",
+                          "id": 15277,
+                          "source_stable_id": 845,
+                          "source_type": "实质",
+                          "description": "自然形成的湖泊、湿地、公园等自然景观类地标",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 14949,
+                          "element_count": 7,
+                          "elements": [
+                            {
+                              "name": "洱海",
+                              "count": 3,
+                              "post_ids": [
+                                "6978db47000000001a0293e7",
+                                "697b64c5000000001a021517"
+                              ]
+                            },
+                            {
+                              "name": "翠湖",
+                              "count": 1,
+                              "post_ids": [
+                                "697a20e9000000001a033338"
+                              ]
+                            },
+                            {
+                              "name": "捞鱼河湿地公园",
+                              "count": 2,
+                              "post_ids": [
+                                "6973742d000000002801e8aa"
+                              ]
+                            },
+                            {
+                              "name": "张毕湖公园",
+                              "count": 1,
+                              "post_ids": [
+                                "6923b4b2000000001e03531a"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 7,
+                          "children": [],
+                          "total_posts_count": 5
+                        }
+                      ],
+                      "total_posts_count": 10
+                    },
+                    {
+                      "name": "城乡空间",
+                      "path": "/表象/场景/空间/场所/城乡空间",
+                      "id": 15788,
+                      "source_stable_id": 263,
+                      "source_type": "实质",
+                      "description": "城市街道、公路、乡村等地理性开放空间环境",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 14889,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 11,
+                      "children": [
+                        {
+                          "name": "交通道路",
+                          "path": "/表象/场景/空间/场所/城乡空间/交通道路",
+                          "id": 15697,
+                          "source_stable_id": 1557,
+                          "source_type": "实质",
+                          "description": "公路、铁路等连接城乡的交通设施和道路空间",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15788,
+                          "element_count": 1,
+                          "elements": [
+                            {
+                              "name": "火车站",
+                              "count": 1,
+                              "post_ids": [
+                                "693a2428000000001e027639"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 1,
+                          "children": [],
+                          "total_posts_count": 1
+                        },
+                        {
+                          "name": "城市空间",
+                          "path": "/表象/场景/空间/场所/城乡空间/城市空间",
+                          "id": 15942,
+                          "source_stable_id": 1555,
+                          "source_type": "实质",
+                          "description": "城市中的街道、建筑、景观等开放性空间环境",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15788,
+                          "element_count": 0,
+                          "elements": [],
+                          "total_element_count": 10,
+                          "children": [
+                            {
+                              "name": "城市景观",
+                              "path": "/表象/场景/空间/场所/城乡空间/城市空间/城市景观",
+                              "id": 15699,
+                              "source_stable_id": 1559,
+                              "source_type": "实质",
+                              "description": "城市建筑、设施、公共空间等宏观城市景象",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15942,
+                              "element_count": 5,
+                              "elements": [
+                                {
+                                  "name": "城市公园",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "69003bb30000000004015797"
+                                  ]
+                                },
+                                {
+                                  "name": "城市夜景",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "59146568",
+                                    "65061667"
+                                  ]
+                                },
+                                {
+                                  "name": "广告位",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "63712731"
+                                  ]
+                                },
+                                {
+                                  "name": "高层住宅群",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "59583293"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 5,
+                              "children": [],
+                              "total_posts_count": 1
+                            },
+                            {
+                              "name": "街头市井",
+                              "path": "/表象/场景/空间/场所/城乡空间/城市空间/街头市井",
+                              "id": 15698,
+                              "source_stable_id": 1558,
+                              "source_type": "实质",
+                              "description": "城市街道、集市等充满烟火气的街头场景",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15942,
+                              "element_count": 5,
+                              "elements": [
+                                {
+                                  "name": "街头实景",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "6969068e000000000d008b48",
+                                    "6971ec6f000000001a02d248"
+                                  ]
+                                },
+                                {
+                                  "name": "街头",
+                                  "count": 3,
+                                  "post_ids": [
+                                    "63972446",
+                                    "64139717"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 5,
+                              "children": [],
+                              "total_posts_count": 2
+                            }
+                          ],
+                          "total_posts_count": 3
+                        }
+                      ],
+                      "total_posts_count": 4
+                    },
+                    {
+                      "name": "演艺场地",
+                      "path": "/表象/场景/空间/场所/演艺场地",
+                      "id": 14948,
+                      "source_stable_id": 264,
+                      "source_type": "实质",
+                      "description": "舞台等供表演演出使用的专门空间",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 14889,
+                      "element_count": 3,
+                      "elements": [
+                        {
+                          "name": "舞台表演",
+                          "count": 2,
+                          "post_ids": [
+                            "3a8712377c1ad3ad44d0f0271e28532d"
+                          ]
+                        },
+                        {
+                          "name": "演播厅背景",
+                          "count": 1,
+                          "post_ids": [
+                            "64650216"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 3,
+                      "children": [],
+                      "total_posts_count": 0
+                    },
+                    {
+                      "name": "生活场景",
+                      "path": "/表象/场景/空间/场所/生活场景",
+                      "id": 15787,
+                      "source_stable_id": 262,
+                      "source_type": "实质",
+                      "description": "日常生活、工作、学习、社交等与人活动相关的功能性空间场景",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 14889,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 97,
+                      "children": [
+                        {
+                          "name": "休闲娱乐",
+                          "path": "/表象/场景/空间/场所/生活场景/休闲娱乐",
+                          "id": 15103,
+                          "source_stable_id": 593,
+                          "source_type": "实质",
+                          "description": "游乐场、野餐场地、娱乐活动等休闲娱乐空间",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15787,
+                          "element_count": 12,
+                          "elements": [
+                            {
+                              "name": "通勤场景",
+                              "count": 1,
+                              "post_ids": [
+                                "6819f25e000000002301cca5"
+                              ]
+                            },
+                            {
+                              "name": "徒步活动",
+                              "count": 1,
+                              "post_ids": [
+                                "67e37ff8000000001c008b5e"
+                              ]
+                            },
+                            {
+                              "name": "野餐场景",
+                              "count": 3,
+                              "post_ids": [
+                                "664c38f0000000001303c21f",
+                                "6803185a000000000b01ef09",
+                                "6879f0f90000000013012f9a"
+                              ]
+                            },
+                            {
+                              "name": "旅途场景",
+                              "count": 2,
+                              "post_ids": [
+                                "67389194000000001d038599",
+                                "6794ca60000000001801ba29"
+                              ]
+                            },
+                            {
+                              "name": "麻将桌场景",
+                              "count": 1,
+                              "post_ids": [
+                                "6666dd86000000001500b7ff"
+                              ]
+                            },
+                            {
+                              "name": "户外野餐场景",
+                              "count": 1,
+                              "post_ids": [
+                                "692d3b99000000001e022295"
+                              ]
+                            },
+                            {
+                              "name": "游乐场",
+                              "count": 1,
+                              "post_ids": [
+                                "69003bb30000000004015797"
+                              ]
+                            },
+                            {
+                              "name": "遛娃宝地",
+                              "count": 1,
+                              "post_ids": [
+                                "68a8241a000000001c011403"
+                              ]
+                            },
+                            {
+                              "name": "亲子游乐园",
+                              "count": 1,
+                              "post_ids": [
+                                "68a4107f000000001c00e8e9"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 12,
+                          "children": [],
+                          "total_posts_count": 12
+                        },
+                        {
+                          "name": "公共设施",
+                          "path": "/表象/场景/空间/场所/生活场景/公共设施",
+                          "id": 15102,
+                          "source_stable_id": 592,
+                          "source_type": "实质",
+                          "description": "交通枢纽、医疗机构、社区服务等公共服务空间",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15787,
+                          "element_count": 10,
+                          "elements": [
+                            {
+                              "name": "看守所",
+                              "count": 2,
+                              "post_ids": [
+                                "3b8bfac263ace2eb578c85c98630e566",
+                                "b90a1bbdf6dcddcaf4f4ee2f201e1d26"
+                              ]
+                            },
+                            {
+                              "name": "机场环境",
+                              "count": 1,
+                              "post_ids": [
+                                "6971878d000000001a01e6cc"
+                              ]
+                            },
+                            {
+                              "name": "公共场景",
+                              "count": 1,
+                              "post_ids": [
+                                "66d1ab42000000001f015507"
+                              ]
+                            },
+                            {
+                              "name": "多场景应用",
+                              "count": 1,
+                              "post_ids": [
+                                "67316440000000001b02e75e"
+                              ]
+                            },
+                            {
+                              "name": "事故现场",
+                              "count": 1,
+                              "post_ids": [
+                                "693d0b1d000000001e02ba36"
+                              ]
+                            },
+                            {
+                              "name": "公共空间",
+                              "count": 2,
+                              "post_ids": [
+                                "63712737",
+                                "64210278"
+                              ]
+                            },
+                            {
+                              "name": "公共场所",
+                              "count": 1,
+                              "post_ids": [
+                                "64076321"
+                              ]
+                            },
+                            {
+                              "name": "农耕环境",
+                              "count": 1,
+                              "post_ids": [
+                                "59943231"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 10,
+                          "children": [],
+                          "total_posts_count": 4
+                        },
+                        {
+                          "name": "商业场所",
+                          "path": "/表象/场景/空间/场所/生活场景/商业场所",
+                          "id": 15101,
+                          "source_stable_id": 591,
+                          "source_type": "实质",
+                          "description": "商店、餐厅、咖啡馆等提供商业服务的经营性场所",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15787,
+                          "element_count": 4,
+                          "elements": [
+                            {
+                              "name": "便利店",
+                              "count": 2,
+                              "post_ids": [
+                                "6960e87a000000000e00c216"
+                              ]
+                            },
+                            {
+                              "name": "法式餐厅",
+                              "count": 1,
+                              "post_ids": [
+                                "682a8f11000000002002a511"
+                              ]
+                            },
+                            {
+                              "name": "仓储场景",
+                              "count": 1,
+                              "post_ids": [
+                                "69145e8e0000000005003350"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 4,
+                          "children": [],
+                          "total_posts_count": 3
+                        },
+                        {
+                          "name": "居家空间",
+                          "path": "/表象/场景/空间/场所/生活场景/居家空间",
+                          "id": 15820,
+                          "source_stable_id": 589,
+                          "source_type": "实质",
+                          "description": "家庭内部的各类功能房间和生活区域,如客厅、卧室、厨房、书房等",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15787,
+                          "element_count": 0,
+                          "elements": [],
+                          "total_element_count": 44,
+                          "children": [
+                            {
+                              "name": "功能房间",
+                              "path": "/表象/场景/空间/场所/生活场景/居家空间/功能房间",
+                              "id": 15921,
+                              "source_stable_id": 1280,
+                              "source_type": "实质",
+                              "description": "家庭内部具有明确功能定位的房间空间,如客厅、卧室、厨房、书房等",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15820,
+                              "element_count": 0,
+                              "elements": [],
+                              "total_element_count": 17,
+                              "children": [
+                                {
+                                  "name": "休息睡眠",
+                                  "path": "/表象/场景/空间/场所/生活场景/居家空间/功能房间/休息睡眠",
+                                  "id": 15509,
+                                  "source_stable_id": 1286,
+                                  "source_type": "实质",
+                                  "description": "用于休息和睡眠的空间,如卧室、床铺等",
+                                  "category_nature": "领域",
+                                  "level": 8,
+                                  "parent_id": 15921,
+                                  "element_count": 2,
+                                  "elements": [
+                                    {
+                                      "name": "卧室",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "688046ef000000002203150e"
+                                      ]
+                                    },
+                                    {
+                                      "name": "床上",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "68c14b36000000001d02b44e"
+                                      ]
+                                    }
+                                  ],
+                                  "total_element_count": 2,
+                                  "children": [],
+                                  "total_posts_count": 2
+                                },
+                                {
+                                  "name": "儿童专属",
+                                  "path": "/表象/场景/空间/场所/生活场景/居家空间/功能房间/儿童专属",
+                                  "id": 15511,
+                                  "source_stable_id": 1288,
+                                  "source_type": "实质",
+                                  "description": "专为儿童设计的居住和活动空间",
+                                  "category_nature": "领域",
+                                  "level": 8,
+                                  "parent_id": 15921,
+                                  "element_count": 1,
+                                  "elements": [
+                                    {
+                                      "name": "儿童房",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "696f2f97000000000e00e33c"
+                                      ]
+                                    }
+                                  ],
+                                  "total_element_count": 1,
+                                  "children": [],
+                                  "total_posts_count": 1
+                                },
+                                {
+                                  "name": "卫浴清洁",
+                                  "path": "/表象/场景/空间/场所/生活场景/居家空间/功能房间/卫浴清洁",
+                                  "id": 15510,
+                                  "source_stable_id": 1287,
+                                  "source_type": "实质",
+                                  "description": "用于洗漱、沐浴、清洁的空间,如浴室等",
+                                  "category_nature": "领域",
+                                  "level": 8,
+                                  "parent_id": 15921,
+                                  "element_count": 1,
+                                  "elements": [
+                                    {
+                                      "name": "浴室",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "6965ea53000000000e00f0f1"
+                                      ]
+                                    }
+                                  ],
+                                  "total_element_count": 1,
+                                  "children": [],
+                                  "total_posts_count": 1
+                                },
+                                {
+                                  "name": "学习工作",
+                                  "path": "/表象/场景/空间/场所/生活场景/居家空间/功能房间/学习工作",
+                                  "id": 15507,
+                                  "source_stable_id": 1284,
+                                  "source_type": "实质",
+                                  "description": "用于学习、工作、办公的空间,如书房等",
+                                  "category_nature": "领域",
+                                  "level": 8,
+                                  "parent_id": 15921,
+                                  "element_count": 4,
+                                  "elements": [
+                                    {
+                                      "name": "书房",
+                                      "count": 2,
+                                      "post_ids": [
+                                        "6848e2340000000021009f3a",
+                                        "685f514f000000001703339d"
+                                      ]
+                                    },
+                                    {
+                                      "name": "职住一体",
+                                      "count": 2,
+                                      "post_ids": [
+                                        "6837f019000000000c03aab2"
+                                      ]
+                                    }
+                                  ],
+                                  "total_element_count": 4,
+                                  "children": [],
+                                  "total_posts_count": 3
+                                },
+                                {
+                                  "name": "起居休闲",
+                                  "path": "/表象/场景/空间/场所/生活场景/居家空间/功能房间/起居休闲",
+                                  "id": 15506,
+                                  "source_stable_id": 1283,
+                                  "source_type": "实质",
+                                  "description": "用于起居和休闲活动的空间,如客厅等",
+                                  "category_nature": "领域",
+                                  "level": 8,
+                                  "parent_id": 15921,
+                                  "element_count": 4,
+                                  "elements": [
+                                    {
+                                      "name": "客厅",
+                                      "count": 3,
+                                      "post_ids": [
+                                        "681c64ce000000002200554c",
+                                        "6850c82a000000002100f096",
+                                        "68843a4d000000001c037591"
+                                      ]
+                                    },
+                                    {
+                                      "name": "客厅布景",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "68302e2b000000000f038e8c"
+                                      ]
+                                    }
+                                  ],
+                                  "total_element_count": 4,
+                                  "children": [],
+                                  "total_posts_count": 4
+                                },
+                                {
+                                  "name": "餐饮烹饪",
+                                  "path": "/表象/场景/空间/场所/生活场景/居家空间/功能房间/餐饮烹饪",
+                                  "id": 15508,
+                                  "source_stable_id": 1285,
+                                  "source_type": "实质",
+                                  "description": "用于用餐和烹饪的空间,如餐厅、厨房等",
+                                  "category_nature": "领域",
+                                  "level": 8,
+                                  "parent_id": 15921,
+                                  "element_count": 5,
+                                  "elements": [
+                                    {
+                                      "name": "餐厅",
+                                      "count": 2,
+                                      "post_ids": [
+                                        "682a8f11000000002002a511",
+                                        "68426c88000000002002b334"
+                                      ]
+                                    },
+                                    {
+                                      "name": "餐厅书房",
+                                      "count": 2,
+                                      "post_ids": [
+                                        "68426c88000000002002b334"
+                                      ]
+                                    },
+                                    {
+                                      "name": "厨房",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "6837f1270000000012006c8e"
+                                      ]
+                                    }
+                                  ],
+                                  "total_element_count": 5,
+                                  "children": [],
+                                  "total_posts_count": 3
+                                }
+                              ],
+                              "total_posts_count": 14
+                            },
+                            {
+                              "name": "场景描述",
+                              "path": "/表象/场景/空间/场所/生活场景/居家空间/场景描述",
+                              "id": 15922,
+                              "source_stable_id": 1281,
+                              "source_type": "实质",
+                              "description": "对居家空间的泛指性、抽象性描述,如日常生活场景、室内外空间属性等",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15820,
+                              "element_count": 0,
+                              "elements": [],
+                              "total_element_count": 26,
+                              "children": [
+                                {
+                                  "name": "日常生活",
+                                  "path": "/表象/场景/空间/场所/生活场景/居家空间/场景描述/日常生活",
+                                  "id": 15512,
+                                  "source_stable_id": 1289,
+                                  "source_type": "实质",
+                                  "description": "对日常生活场景的泛指性描述",
+                                  "category_nature": "领域",
+                                  "level": 8,
+                                  "parent_id": 15922,
+                                  "element_count": 23,
+                                  "elements": [
+                                    {
+                                      "name": "生活场景",
+                                      "count": 16,
+                                      "post_ids": [
+                                        "64400730",
+                                        "64965843",
+                                        "6752d19b000000000202b816",
+                                        "683f8111000000002102effd",
+                                        "68c14b36000000001d02b44e",
+                                        "68e310c90000000003035444",
+                                        "68e6ecb90000000003021e34",
+                                        "68f95c43000000000300c650",
+                                        "68fff44700000000030390d3",
+                                        "690333e70000000007022604",
+                                        "6907ed79000000000703699c",
+                                        "690a9329000000000700b783",
+                                        "691f9a9f000000000d00ea0a",
+                                        "693f425a000000001e00ed26",
+                                        "69434b1f000000001e013f9e"
+                                      ]
+                                    },
+                                    {
+                                      "name": "日常",
+                                      "count": 3,
+                                      "post_ids": [
+                                        "61bdc28b0000000001024896",
+                                        "67ee4e29000000001200f3c2",
+                                        "6867d9af000000001203f084"
+                                      ]
+                                    },
+                                    {
+                                      "name": "居家生活场景",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "68fb6a5c000000000302e5de"
+                                      ]
+                                    },
+                                    {
+                                      "name": "城市生活场景",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "6912d90f00000000050113b3"
+                                      ]
+                                    },
+                                    {
+                                      "name": "家居场景",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "69756d90000000001a020c81"
+                                      ]
+                                    },
+                                    {
+                                      "name": "居家场景",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "69002ba70000000007008bcc"
+                                      ]
+                                    }
+                                  ],
+                                  "total_element_count": 23,
+                                  "children": [],
+                                  "total_posts_count": 20
+                                },
+                                {
+                                  "name": "空间属性",
+                                  "path": "/表象/场景/空间/场所/生活场景/居家空间/场景描述/空间属性",
+                                  "id": 15513,
+                                  "source_stable_id": 1290,
+                                  "source_type": "实质",
+                                  "description": "对空间特征和属性的描述,如室内外、多场景等",
+                                  "category_nature": "领域",
+                                  "level": 8,
+                                  "parent_id": 15922,
+                                  "element_count": 3,
+                                  "elements": [
+                                    {
+                                      "name": "多场景",
+                                      "count": 2,
+                                      "post_ids": [
+                                        "44556070",
+                                        "6965d491000000000e00f9b0"
+                                      ]
+                                    },
+                                    {
+                                      "name": "室内外",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "675fec1f000000000800c6f4"
+                                      ]
+                                    }
+                                  ],
+                                  "total_element_count": 3,
+                                  "children": [],
+                                  "total_posts_count": 2
+                                }
+                              ],
+                              "total_posts_count": 22
+                            },
+                            {
+                              "name": "特定案例",
+                              "path": "/表象/场景/空间/场所/生活场景/居家空间/特定案例",
+                              "id": 15505,
+                              "source_stable_id": 1282,
+                              "source_type": "实质",
+                              "description": "具体的名人豪宅、特定建筑等个案空间",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15820,
+                              "element_count": 1,
+                              "elements": [
+                                {
+                                  "name": "地狱花园",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "82b864cd83e9a5f376214dbc341d6dad"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 1,
+                              "children": [],
+                              "total_posts_count": 0
+                            }
+                          ],
+                          "total_posts_count": 35
+                        },
+                        {
+                          "name": "工作学习",
+                          "path": "/表象/场景/空间/场所/生活场景/工作学习",
+                          "id": 15100,
+                          "source_stable_id": 590,
+                          "source_type": "实质",
+                          "description": "办公、会议、学习等工作学习相关的功能性空间",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15787,
+                          "element_count": 24,
+                          "elements": [
+                            {
+                              "name": "校园",
+                              "count": 1,
+                              "post_ids": [
+                                "412f4d35be48179908fef312b53cad43"
+                              ]
+                            },
+                            {
+                              "name": "职场",
+                              "count": 8,
+                              "post_ids": [
+                                "61bdc28b0000000001024896",
+                                "66619827000000000600486f",
+                                "67bee0df000000002802acd1",
+                                "67d7a294000000001c03eef9",
+                                "67e6398f000000001d005ebb",
+                                "68077d02000000001c02dd81",
+                                "6810596c000000002301d1a6",
+                                "6819f25e000000002301cca5"
+                              ]
+                            },
+                            {
+                              "name": "午睡位",
+                              "count": 1,
+                              "post_ids": [
+                                "61bdc28b0000000001024896"
+                              ]
+                            },
+                            {
+                              "name": "办公室",
+                              "count": 1,
+                              "post_ids": [
+                                "61bdc28b0000000001024896"
+                              ]
+                            },
+                            {
+                              "name": "职场场景",
+                              "count": 5,
+                              "post_ids": [
+                                "671f7fab000000003c01fffc",
+                                "6781e8640000000001001d18",
+                                "67aea9de000000001800d129",
+                                "680e2433000000000e004e91",
+                                "6867d9af000000001203f084"
+                              ]
+                            },
+                            {
+                              "name": "办公室场景",
+                              "count": 3,
+                              "post_ids": [
+                                "662096bc000000000d03035d",
+                                "67ee4e29000000001200f3c2"
+                              ]
+                            },
+                            {
+                              "name": "办公场景",
+                              "count": 1,
+                              "post_ids": [
+                                "6729dd5300000000190183a8"
+                              ]
+                            },
+                            {
+                              "name": "学习场景",
+                              "count": 4,
+                              "post_ids": [
+                                "68708544000000000d026732",
+                                "6882f593000000001100272d",
+                                "68b69ea9000000001c035a4d",
+                                "68c3933e000000001d00a902"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 24,
+                          "children": [],
+                          "total_posts_count": 20
+                        },
+                        {
+                          "name": "社交场合",
+                          "path": "/表象/场景/空间/场所/生活场景/社交场合",
+                          "id": 15104,
+                          "source_stable_id": 594,
+                          "source_type": "实质",
+                          "description": "人际交往、聚会、外交等社交互动发生的场合",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15787,
+                          "element_count": 3,
+                          "elements": [
+                            {
+                              "name": "辩论场景",
+                              "count": 1,
+                              "post_ids": [
+                                "412f4d35be48179908fef312b53cad43"
+                              ]
+                            },
+                            {
+                              "name": "围观场景",
+                              "count": 1,
+                              "post_ids": [
+                                "64139717"
+                              ]
+                            },
+                            {
+                              "name": "尴尬场景",
+                              "count": 1,
+                              "post_ids": [
+                                "56717837"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 3,
+                          "children": [],
+                          "total_posts_count": 0
+                        }
+                      ],
+                      "total_posts_count": 69
+                    },
+                    {
+                      "name": "纪念场所",
+                      "path": "/表象/场景/空间/场所/纪念场所",
+                      "id": 14950,
+                      "source_stable_id": 266,
+                      "source_type": "实质",
+                      "description": "纪念馆、故居、军校等承载历史记忆的建筑和空间",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 14889,
+                      "element_count": 4,
+                      "elements": [
+                        {
+                          "name": "祭奠场景",
+                          "count": 3,
+                          "post_ids": [
+                            "333bd89e657acbcd9b26201f93cd8993",
+                            "57373464",
+                            "57919607"
+                          ]
+                        },
+                        {
+                          "name": "葬礼现场",
+                          "count": 1,
+                          "post_ids": [
+                            "2c73223f278ea6aecd70b5b54f0aff21"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 4,
+                      "children": [],
+                      "total_posts_count": 0
+                    }
+                  ],
+                  "total_posts_count": 90
+                },
+                {
+                  "name": "背景",
+                  "path": "/表象/场景/空间/背景",
+                  "id": 14888,
+                  "source_stable_id": 66,
+                  "source_type": "实质",
+                  "description": "视觉画面中的衬托环境",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 15720,
+                  "element_count": 18,
+                  "elements": [
+                    {
+                      "name": "背景",
+                      "count": 9,
+                      "post_ids": [
+                        "0834b527a0fe32c83eb9be0b1cf45140",
+                        "47537727",
+                        "64603799",
+                        "64662179",
+                        "65067062",
+                        "6960e87a000000000e00c216",
+                        "69679e0e000000000e03ca97",
+                        "696a5a3e000000001a022b1d",
+                        "6971878d000000001a01e6cc"
+                      ]
+                    },
+                    {
+                      "name": "几何场景",
+                      "count": 1,
+                      "post_ids": [
+                        "6975b3c50000000022020356"
+                      ]
+                    },
+                    {
+                      "name": "宇宙几何景观",
+                      "count": 2,
+                      "post_ids": [
+                        "6970693f000000002102bec2",
+                        "69706a0600000000210282bd"
+                      ]
+                    },
+                    {
+                      "name": "太空浪漫场景",
+                      "count": 2,
+                      "post_ids": [
+                        "696b5332000000002103c497",
+                        "696b537f00000000220398ad"
+                      ]
+                    },
+                    {
+                      "name": "纯色背景",
+                      "count": 2,
+                      "post_ids": [
+                        "682086dc0000000012003cbd",
+                        "693f94d80000000019025898"
+                      ]
+                    },
+                    {
+                      "name": "环境",
+                      "count": 1,
+                      "post_ids": [
+                        "66f51b90000000002a036660"
+                      ]
+                    },
+                    {
+                      "name": "书法福字背景",
+                      "count": 1,
+                      "post_ids": [
+                        "6774ab9a0000000009015a3f"
+                      ]
+                    }
+                  ],
+                  "total_element_count": 18,
+                  "children": [],
+                  "total_posts_count": 13
+                },
+                {
+                  "name": "自然环境",
+                  "path": "/表象/场景/空间/自然环境",
+                  "id": 15726,
+                  "source_stable_id": 60,
+                  "source_type": "实质",
+                  "description": "自然形成的空间环境,如公园、林荫道、山水等",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 15720,
+                  "element_count": 0,
+                  "elements": [],
+                  "total_element_count": 46,
+                  "children": [
+                    {
+                      "name": "冰雪景观",
+                      "path": "/表象/场景/空间/自然环境/冰雪景观",
+                      "id": 14970,
+                      "source_stable_id": 303,
+                      "source_type": "实质",
+                      "description": "降雪、积雪等冬季冰雪覆盖的自然景观",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15726,
+                      "element_count": 3,
+                      "elements": [
+                        {
+                          "name": "雪山场景",
+                          "count": 1,
+                          "post_ids": [
+                            "675fcd19000000000103d470"
+                          ]
+                        },
+                        {
+                          "name": "冰棱",
+                          "count": 1,
+                          "post_ids": [
+                            "675c19320000000002017d1f"
+                          ]
+                        },
+                        {
+                          "name": "冰柱",
+                          "count": 1,
+                          "post_ids": [
+                            "675c19320000000002017d1f"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 3,
+                      "children": [],
+                      "total_posts_count": 2
+                    },
+                    {
+                      "name": "地形水域",
+                      "path": "/表象/场景/空间/自然环境/地形水域",
+                      "id": 14968,
+                      "source_stable_id": 301,
+                      "source_type": "实质",
+                      "description": "山脉、湖泊、河流、悬崖、草地等陆地和水体地形景观",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15726,
+                      "element_count": 13,
+                      "elements": [
+                        {
+                          "name": "冬日湖景",
+                          "count": 1,
+                          "post_ids": [
+                            "697a20e9000000001a033338"
+                          ]
+                        },
+                        {
+                          "name": "深邃水域",
+                          "count": 1,
+                          "post_ids": [
+                            "696b52dd000000002202c60a"
+                          ]
+                        },
+                        {
+                          "name": "红土",
+                          "count": 1,
+                          "post_ids": [
+                            "6968ef250000000021033c7c"
+                          ]
+                        },
+                        {
+                          "name": "沙丘脊线",
+                          "count": 1,
+                          "post_ids": [
+                            "6964bc98000000002202c86f"
+                          ]
+                        },
+                        {
+                          "name": "户外草坪",
+                          "count": 3,
+                          "post_ids": [
+                            "664c38f0000000001303c21f",
+                            "6803185a000000000b01ef09",
+                            "6879f0f90000000013012f9a"
+                          ]
+                        },
+                        {
+                          "name": "沙滩环境",
+                          "count": 1,
+                          "post_ids": [
+                            "67d55ec7000000000e004e69"
+                          ]
+                        },
+                        {
+                          "name": "海边",
+                          "count": 1,
+                          "post_ids": [
+                            "67bc233e000000000b0160fa"
+                          ]
+                        },
+                        {
+                          "name": "湖面",
+                          "count": 1,
+                          "post_ids": [
+                            "691acd15000000000402134e"
+                          ]
+                        },
+                        {
+                          "name": "亲水景观",
+                          "count": 1,
+                          "post_ids": [
+                            "691acd15000000000402134e"
+                          ]
+                        },
+                        {
+                          "name": "苍山",
+                          "count": 1,
+                          "post_ids": [
+                            "68a4107f000000001c00e8e9"
+                          ]
+                        },
+                        {
+                          "name": "自然山水",
+                          "count": 1,
+                          "post_ids": [
+                            "64851184"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 13,
+                      "children": [],
+                      "total_posts_count": 11
+                    },
+                    {
+                      "name": "天空天体",
+                      "path": "/表象/场景/空间/自然环境/天空天体",
+                      "id": 14969,
+                      "source_stable_id": 302,
+                      "source_type": "实质",
+                      "description": "天空、云层、月亮、星体、光线等空中和宇宙景象",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15726,
+                      "element_count": 18,
+                      "elements": [
+                        {
+                          "name": "冬日暖阳",
+                          "count": 5,
+                          "post_ids": [
+                            "6973742d000000002801e8aa",
+                            "69770dc6000000001a02efe9",
+                            "6978db47000000001a0293e7",
+                            "697a20e9000000001a033338",
+                            "697b64c5000000001a021517"
+                          ]
+                        },
+                        {
+                          "name": "天体元素",
+                          "count": 2,
+                          "post_ids": [
+                            "6970693f000000002102bec2",
+                            "6975b32c000000002102bc55"
+                          ]
+                        },
+                        {
+                          "name": "发光云朵",
+                          "count": 2,
+                          "post_ids": [
+                            "69706aa0000000002202d723",
+                            "6975b2d7000000002200b4ae"
+                          ]
+                        },
+                        {
+                          "name": "月亮意象",
+                          "count": 2,
+                          "post_ids": [
+                            "69706aa0000000002202d723",
+                            "6975b2d7000000002200b4ae"
+                          ]
+                        },
+                        {
+                          "name": "云朵",
+                          "count": 1,
+                          "post_ids": [
+                            "6975b27c000000002202d2fb"
+                          ]
+                        },
+                        {
+                          "name": "巨型积雨云",
+                          "count": 1,
+                          "post_ids": [
+                            "69706aa0000000002202d723"
+                          ]
+                        },
+                        {
+                          "name": "星系",
+                          "count": 1,
+                          "post_ids": [
+                            "697069b7000000002202d264"
+                          ]
+                        },
+                        {
+                          "name": "飞机尾迹",
+                          "count": 1,
+                          "post_ids": [
+                            "68a06bea000000001d021202"
+                          ]
+                        },
+                        {
+                          "name": "线性飞机尾迹",
+                          "count": 1,
+                          "post_ids": [
+                            "68a06bea000000001d021202"
+                          ]
+                        },
+                        {
+                          "name": "纯净天空",
+                          "count": 2,
+                          "post_ids": [
+                            "675c19320000000002017d1f",
+                            "68a06bea000000001d021202"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 18,
+                      "children": [],
+                      "total_posts_count": 13
+                    },
+                    {
+                      "name": "综合风光",
+                      "path": "/表象/场景/空间/自然环境/综合风光",
+                      "id": 15794,
+                      "source_stable_id": 305,
+                      "source_type": "实质",
+                      "description": "泛指的综合性自然风景、景观及自然元素",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15726,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 11,
+                      "children": [
+                        {
+                          "name": "泛指景观",
+                          "path": "/表象/场景/空间/自然环境/综合风光/泛指景观",
+                          "id": 15559,
+                          "source_stable_id": 1357,
+                          "source_type": "实质",
+                          "description": "不限定季节或地域的通用自然景观、风景及自然元素",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15794,
+                          "element_count": 7,
+                          "elements": [
+                            {
+                              "name": "自然背景",
+                              "count": 2,
+                              "post_ids": [
+                                "6978db47000000001a0293e7",
+                                "697b64c5000000001a021517"
+                              ]
+                            },
+                            {
+                              "name": "自然景观",
+                              "count": 2,
+                              "post_ids": [
+                                "61822382",
+                                "6964bc98000000002202c86f"
+                              ]
+                            },
+                            {
+                              "name": "户外",
+                              "count": 1,
+                              "post_ids": [
+                                "67e37ff8000000001c008b5e"
+                              ]
+                            },
+                            {
+                              "name": "风景",
+                              "count": 1,
+                              "post_ids": [
+                                "65026165"
+                              ]
+                            },
+                            {
+                              "name": "景观",
+                              "count": 1,
+                              "post_ids": [
+                                "64886621"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 7,
+                          "children": [],
+                          "total_posts_count": 4
+                        },
+                        {
+                          "name": "特定风光",
+                          "path": "/表象/场景/空间/自然环境/综合风光/特定风光",
+                          "id": 15560,
+                          "source_stable_id": 1359,
+                          "source_type": "实质",
+                          "description": "特定地域、气候或场景的自然风光",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15794,
+                          "element_count": 4,
+                          "elements": [
+                            {
+                              "name": "海鸥美景",
+                              "count": 1,
+                              "post_ids": [
+                                "69770dc6000000001a02efe9"
+                              ]
+                            },
+                            {
+                              "name": "西部景观",
+                              "count": 2,
+                              "post_ids": [
+                                "692a535f0000000019026d5b",
+                                "693f94d80000000019025898"
+                              ]
+                            },
+                            {
+                              "name": "极寒",
+                              "count": 1,
+                              "post_ids": [
+                                "675fcd19000000000103d470"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 4,
+                          "children": [],
+                          "total_posts_count": 4
+                        }
+                      ],
+                      "total_posts_count": 8
+                    },
+                    {
+                      "name": "自然奇景",
+                      "path": "/表象/场景/空间/自然环境/自然奇景",
+                      "id": 14971,
+                      "source_stable_id": 304,
+                      "source_type": "实质",
+                      "description": "罕见奇特的自然景观和极端自然环境",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15726,
+                      "element_count": 1,
+                      "elements": [
+                        {
+                          "name": "极端环境",
+                          "count": 1,
+                          "post_ids": [
+                            "63762367"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 1,
+                      "children": [],
+                      "total_posts_count": 0
+                    }
+                  ],
+                  "total_posts_count": 27
+                }
+              ],
+              "total_posts_count": 120
+            }
+          ],
+          "total_posts_count": 128
+        },
+        {
+          "name": "声音",
+          "path": "/表象/声音",
+          "id": 15952,
+          "source_stable_id": 84,
+          "source_type": "实质",
+          "description": "内容中的听觉要素,包括音乐、语音等声音内容",
+          "category_nature": "内容",
+          "level": 2,
+          "parent_id": 15713,
+          "element_count": 0,
+          "elements": [],
+          "total_element_count": 9,
+          "children": [
+            {
+              "name": "语音",
+              "path": "/表象/声音/语音",
+              "id": 15742,
+              "source_stable_id": 105,
+              "source_type": "实质",
+              "description": "人声、旁白、解说等语音内容",
+              "category_nature": "维度",
+              "level": 3,
+              "parent_id": 15952,
+              "element_count": 0,
+              "elements": [],
+              "total_element_count": 1,
+              "children": [
+                {
+                  "name": "配音",
+                  "path": "/表象/声音/语音/配音",
+                  "id": 14905,
+                  "source_stable_id": 115,
+                  "source_type": "实质",
+                  "description": "视频中的人声配音、旁白解说等语音录制内容",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 15742,
+                  "element_count": 1,
+                  "elements": [
+                    {
+                      "name": "配音对白",
+                      "count": 1,
+                      "post_ids": [
+                        "12357835"
+                      ]
+                    }
+                  ],
+                  "total_element_count": 1,
+                  "children": [],
+                  "total_posts_count": 0
+                }
+              ],
+              "total_posts_count": 0
+            },
+            {
+              "name": "音乐",
+              "path": "/表象/声音/音乐",
+              "id": 15735,
+              "source_stable_id": 85,
+              "source_type": "实质",
+              "description": "各类音乐作品和配乐",
+              "category_nature": "维度",
+              "level": 3,
+              "parent_id": 15952,
+              "element_count": 0,
+              "elements": [],
+              "total_element_count": 8,
+              "children": [
+                {
+                  "name": "歌曲",
+                  "path": "/表象/声音/音乐/歌曲",
+                  "id": 15736,
+                  "source_stable_id": 86,
+                  "source_type": "实质",
+                  "description": "各类歌曲作品,包括流行歌曲、怀旧金曲、主旋律歌曲等",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 15735,
+                  "element_count": 0,
+                  "elements": [],
+                  "total_element_count": 4,
+                  "children": [
+                    {
+                      "name": "主旋律歌曲",
+                      "path": "/表象/声音/音乐/歌曲/主旋律歌曲",
+                      "id": 15666,
+                      "source_stable_id": 1512,
+                      "source_type": "实质",
+                      "description": "爱国、革命等主旋律题材的歌曲作品",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15736,
+                      "element_count": 2,
+                      "elements": [
+                        {
+                          "name": "经典红歌",
+                          "count": 1,
+                          "post_ids": [
+                            "59121599"
+                          ]
+                        },
+                        {
+                          "name": "军旅歌曲",
+                          "count": 1,
+                          "post_ids": [
+                            "56380736"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 2,
+                      "children": [],
+                      "total_posts_count": 0
+                    },
+                    {
+                      "name": "励志情感",
+                      "path": "/表象/声音/音乐/歌曲/励志情感",
+                      "id": 15667,
+                      "source_stable_id": 1513,
+                      "source_type": "实质",
+                      "description": "以励志、祝福、正能量、感人等情感为主题的歌曲",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15736,
+                      "element_count": 2,
+                      "elements": [
+                        {
+                          "name": "祝福歌曲",
+                          "count": 2,
+                          "post_ids": [
+                            "46193165",
+                            "64903753"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 2,
+                      "children": [],
+                      "total_posts_count": 0
+                    }
+                  ],
+                  "total_posts_count": 0
+                },
+                {
+                  "name": "配乐",
+                  "path": "/表象/声音/音乐/配乐",
+                  "id": 14894,
+                  "source_stable_id": 87,
+                  "source_type": "实质",
+                  "description": "视频、影视作品中的背景音乐和配乐",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 15735,
+                  "element_count": 4,
+                  "elements": [
+                    {
+                      "name": "背景音乐",
+                      "count": 3,
+                      "post_ids": [
+                        "61822382",
+                        "63253503",
+                        "65801945"
+                      ]
+                    },
+                    {
+                      "name": "民俗配乐",
+                      "count": 1,
+                      "post_ids": [
+                        "65098787"
+                      ]
+                    }
+                  ],
+                  "total_element_count": 4,
+                  "children": [],
+                  "total_posts_count": 0
+                }
+              ],
+              "total_posts_count": 0
+            }
+          ],
+          "total_posts_count": 0
+        },
+        {
+          "name": "实体",
+          "path": "/表象/实体",
+          "id": 15946,
+          "source_stable_id": 41,
+          "source_type": "实质",
+          "description": "具体的对象或事物,包括人物、物品、生物、机构等",
+          "category_nature": "内容",
+          "level": 2,
+          "parent_id": 15713,
+          "element_count": 0,
+          "elements": [],
+          "total_element_count": 995,
+          "children": [
+            {
+              "name": "人物",
+              "path": "/表象/实体/人物",
+              "id": 15947,
+              "source_stable_id": 48,
+              "source_type": "实质",
+              "description": "人类个体或群体",
+              "category_nature": "内容",
+              "level": 3,
+              "parent_id": 15946,
+              "element_count": 0,
+              "elements": [],
+              "total_element_count": 299,
+              "children": [
+                {
+                  "name": "个体",
+                  "path": "/表象/实体/人物/个体",
+                  "id": 15729,
+                  "source_stable_id": 63,
+                  "source_type": "实质",
+                  "description": "单个人物个体",
+                  "category_nature": "维度",
+                  "level": 4,
+                  "parent_id": 15947,
+                  "element_count": 0,
+                  "elements": [],
+                  "total_element_count": 224,
+                  "children": [
+                    {
+                      "name": "形象呈现",
+                      "path": "/表象/实体/人物/个体/形象呈现",
+                      "id": 14901,
+                      "source_stable_id": 107,
+                      "source_type": "实质",
+                      "description": "人物的外貌、肖像、视觉形象特征",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15729,
+                      "element_count": 2,
+                      "elements": [
+                        {
+                          "name": "经典造型",
+                          "count": 1,
+                          "post_ids": [
+                            "b6482cda993c100f39d6eccf65261a24"
+                          ]
+                        },
+                        {
+                          "name": "时尚造型",
+                          "count": 1,
+                          "post_ids": [
+                            "b6482cda993c100f39d6eccf65261a24"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 64,
+                      "children": [
+                        {
+                          "name": "人群特征",
+                          "path": "/表象/实体/人物/个体/形象呈现/人群特征",
+                          "id": 15218,
+                          "source_stable_id": 756,
+                          "source_type": "实质",
+                          "description": "性别、年龄、群体等人群分类特征",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 14901,
+                          "element_count": 3,
+                          "elements": [
+                            {
+                              "name": "女性",
+                              "count": 1,
+                              "post_ids": [
+                                "67206035000000001b02f4b1"
+                              ]
+                            },
+                            {
+                              "name": "乡村大姐",
+                              "count": 1,
+                              "post_ids": [
+                                "65142392"
+                              ]
+                            },
+                            {
+                              "name": "年轻人形象",
+                              "count": 1,
+                              "post_ids": [
+                                "57447289"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 3,
+                          "children": [],
+                          "total_posts_count": 1
+                        },
+                        {
+                          "name": "整体形象",
+                          "path": "/表象/实体/人物/个体/形象呈现/整体形象",
+                          "id": 15220,
+                          "source_stable_id": 758,
+                          "source_type": "实质",
+                          "description": "人物的整体面貌、主体呈现等综合形象",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 14901,
+                          "element_count": 18,
+                          "elements": [
+                            {
+                              "name": "主体",
+                              "count": 2,
+                              "post_ids": [
+                                "64662179",
+                                "b90a1bbdf6dcddcaf4f4ee2f201e1d26"
+                              ]
+                            },
+                            {
+                              "name": "形象",
+                              "count": 10,
+                              "post_ids": [
+                                "6960924b000000001a037a1c",
+                                "6964573a000000000d00800e",
+                                "696ad820000000001a022994",
+                                "696c2b7b000000001a02b944",
+                                "696d7ac4000000000e03e459",
+                                "696ede36000000001a028e03",
+                                "6970373f000000000e00f81d",
+                                "697171fd000000000d00bee8",
+                                "697318f2000000001a01fd50",
+                                "697569b0000000001a02448c"
+                              ]
+                            },
+                            {
+                              "name": "不守规矩的旅行者",
+                              "count": 1,
+                              "post_ids": [
+                                "67e37ff8000000001c008b5e"
+                              ]
+                            },
+                            {
+                              "name": "不知情主角",
+                              "count": 1,
+                              "post_ids": [
+                                "66d1ab42000000001f015507"
+                              ]
+                            },
+                            {
+                              "name": "拜年形象",
+                              "count": 1,
+                              "post_ids": [
+                                "65162446"
+                              ]
+                            },
+                            {
+                              "name": "人物形象",
+                              "count": 2,
+                              "post_ids": [
+                                "64029781",
+                                "64162740"
+                              ]
+                            },
+                            {
+                              "name": "角色",
+                              "count": 1,
+                              "post_ids": [
+                                "64958390"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 18,
+                          "children": [],
+                          "total_posts_count": 12
+                        },
+                        {
+                          "name": "肖像类型",
+                          "path": "/表象/实体/人物/个体/形象呈现/肖像类型",
+                          "id": 15216,
+                          "source_stable_id": 753,
+                          "source_type": "实质",
+                          "description": "不同形式的人物肖像(照片、画像等)",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 14901,
+                          "element_count": 6,
+                          "elements": [
+                            {
+                              "name": "群像",
+                              "count": 1,
+                              "post_ids": [
+                                "2a2c642e67822ed8c11f9d306e815a35"
+                              ]
+                            },
+                            {
+                              "name": "女性肖像",
+                              "count": 1,
+                              "post_ids": [
+                                "65298913"
+                              ]
+                            },
+                            {
+                              "name": "英雄肖像",
+                              "count": 2,
+                              "post_ids": [
+                                "63712737",
+                                "64210278"
+                              ]
+                            },
+                            {
+                              "name": "画像",
+                              "count": 1,
+                              "post_ids": [
+                                "64076321"
+                              ]
+                            },
+                            {
+                              "name": "肖像",
+                              "count": 1,
+                              "post_ids": [
+                                "63712737"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 6,
+                          "children": [],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "虚拟形象",
+                          "path": "/表象/实体/人物/个体/形象呈现/虚拟形象",
+                          "id": 15219,
+                          "source_stable_id": 757,
+                          "source_type": "实质",
+                          "description": "技术生成的虚拟人物形象",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 14901,
+                          "element_count": 2,
+                          "elements": [
+                            {
+                              "name": "AI数字人",
+                              "count": 1,
+                              "post_ids": [
+                                "65203608"
+                              ]
+                            },
+                            {
+                              "name": "AI形象",
+                              "count": 1,
+                              "post_ids": [
+                                "65133109"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 2,
+                          "children": [],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "身份特征",
+                          "path": "/表象/实体/人物/个体/形象呈现/身份特征",
+                          "id": 15217,
+                          "source_stable_id": 755,
+                          "source_type": "实质",
+                          "description": "社会角色、职业身份等身份相关特征",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 14901,
+                          "element_count": 2,
+                          "elements": [
+                            {
+                              "name": "身份标签",
+                              "count": 1,
+                              "post_ids": [
+                                "03e3d299faba104965b33d87b5063eff"
+                              ]
+                            },
+                            {
+                              "name": "社畜造型",
+                              "count": 1,
+                              "post_ids": [
+                                "685f974300000000120144db"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 2,
+                          "children": [],
+                          "total_posts_count": 1
+                        },
+                        {
+                          "name": "身体特征",
+                          "path": "/表象/实体/人物/个体/形象呈现/身体特征",
+                          "id": 15833,
+                          "source_stable_id": 754,
+                          "source_type": "实质",
+                          "description": "身体部位、姿态、状态等身体相关特征",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 14901,
+                          "element_count": 0,
+                          "elements": [],
+                          "total_element_count": 31,
+                          "children": [
+                            {
+                              "name": "姿态状态",
+                              "path": "/表象/实体/人物/个体/形象呈现/身体特征/姿态状态",
+                              "id": 15222,
+                              "source_stable_id": 760,
+                              "source_type": "实质",
+                              "description": "人物的姿态、动作及身体状态",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15833,
+                              "element_count": 23,
+                              "elements": [
+                                {
+                                  "name": "发言形象",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "d7a04d4550a7c852ac4a16301e600aa5"
+                                  ]
+                                },
+                                {
+                                  "name": "渺小人类",
+                                  "count": 7,
+                                  "post_ids": [
+                                    "696078f70000000022038479",
+                                    "6964bc98000000002202c86f",
+                                    "696b528900000000210333ea",
+                                    "696b52dd000000002202c60a",
+                                    "696b537f00000000220398ad",
+                                    "69706a0600000000210282bd",
+                                    "6975b3c50000000022020356"
+                                  ]
+                                },
+                                {
+                                  "name": "睡眠状态",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "61bdc28b0000000001024896",
+                                    "680e2433000000000e004e91"
+                                  ]
+                                },
+                                {
+                                  "name": "人物姿态",
+                                  "count": 12,
+                                  "post_ids": [
+                                    "648d8edf0000000011013447",
+                                    "661b9936000000001b012aa5",
+                                    "664599b9000000001e01d218",
+                                    "670baf34000000001600f52a",
+                                    "67b9840d000000000603a241",
+                                    "67d55ec7000000000e004e69",
+                                    "67e68c9d00000000060282fb",
+                                    "6803185a000000000b01ef09",
+                                    "682086dc0000000012003cbd",
+                                    "6843fb690000000012001659",
+                                    "6879f0f90000000013012f9a",
+                                    "68909e20000000000403fa4e"
+                                  ]
+                                },
+                                {
+                                  "name": "熬夜气色",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "68d610800000000012023282"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 23,
+                              "children": [],
+                              "total_posts_count": 22
+                            },
+                            {
+                              "name": "身体部位",
+                              "path": "/表象/实体/人物/个体/形象呈现/身体特征/身体部位",
+                              "id": 15221,
+                              "source_stable_id": 759,
+                              "source_type": "实质",
+                              "description": "人体的各个部位及其特征",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15833,
+                              "element_count": 8,
+                              "elements": [
+                                {
+                                  "name": "五官",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "682ede8f000000002202bff2"
+                                  ]
+                                },
+                                {
+                                  "name": "口腔",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "67862d98000000001a01f443"
+                                  ]
+                                },
+                                {
+                                  "name": "表情",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "65febd8e0000000012035538",
+                                    "682086dc0000000012003cbd"
+                                  ]
+                                },
+                                {
+                                  "name": "同事背后",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "68070ccb000000000f039a1b"
+                                  ]
+                                },
+                                {
+                                  "name": "真人手臂",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "6776b27d0000000013018545"
+                                  ]
+                                },
+                                {
+                                  "name": "局部肢体",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "672de546000000001b02cfeb"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 8,
+                              "children": [],
+                              "total_posts_count": 7
+                            }
+                          ],
+                          "total_posts_count": 28
+                        }
+                      ],
+                      "total_posts_count": 42
+                    },
+                    {
+                      "name": "现实人物",
+                      "path": "/表象/实体/人物/个体/现实人物",
+                      "id": 15854,
+                      "source_stable_id": 974,
+                      "source_type": "实质",
+                      "description": "现实世界中真实存在的具名知名人物,包括当代公众人物和历史名人",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15729,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 74,
+                      "children": [
+                        {
+                          "name": "公众人物",
+                          "path": "/表象/实体/人物/个体/现实人物/公众人物",
+                          "id": 15856,
+                          "source_stable_id": 77,
+                          "source_type": "实质",
+                          "description": "演艺明星、网红等具有社会知名度的人物",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15854,
+                          "element_count": 0,
+                          "elements": [],
+                          "total_element_count": 41,
+                          "children": [
+                            {
+                              "name": "媒体人物",
+                              "path": "/表象/实体/人物/个体/现实人物/公众人物/媒体人物",
+                              "id": 15442,
+                              "source_stable_id": 1189,
+                              "source_type": "实质",
+                              "description": "从事媒体传播工作的公众人物,包括主持人、媒体人、评论员等",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15856,
+                              "element_count": 1,
+                              "elements": [
+                                {
+                                  "name": "刘宝杰",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "62da797f45d5b2a8ebd9149c3b52c719"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 1,
+                              "children": [],
+                              "total_posts_count": 0
+                            },
+                            {
+                              "name": "学术人物",
+                              "path": "/表象/实体/人物/个体/现实人物/公众人物/学术人物",
+                              "id": 15440,
+                              "source_stable_id": 1186,
+                              "source_type": "实质",
+                              "description": "从事学术研究、教育工作的公众人物,包括学者、教授、科学家等",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15856,
+                              "element_count": 2,
+                              "elements": [
+                                {
+                                  "name": "鲍鹏山",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "65114702"
+                                  ]
+                                },
+                                {
+                                  "name": "郑强教授",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "56603938"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 2,
+                              "children": [],
+                              "total_posts_count": 0
+                            },
+                            {
+                              "name": "政治人物",
+                              "path": "/表象/实体/人物/个体/现实人物/公众人物/政治人物",
+                              "id": 15439,
+                              "source_stable_id": 1185,
+                              "source_type": "实质",
+                              "description": "从事政治活动、担任公职的公众人物,包括政治家、民意代表等",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15856,
+                              "element_count": 31,
+                              "elements": [
+                                {
+                                  "name": "龙猫主席",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "9c87381270abacce95e103b3a000e086"
+                                  ]
+                                },
+                                {
+                                  "name": "郑丽文",
+                                  "count": 5,
+                                  "post_ids": [
+                                    "412f4d35be48179908fef312b53cad43",
+                                    "d7a04d4550a7c852ac4a16301e600aa5",
+                                    "f97823103ca8ad6cd69037958d17ae32",
+                                    "fc4773ccef61d3092666496328603e9d"
+                                  ]
+                                },
+                                {
+                                  "name": "柯文哲",
+                                  "count": 10,
+                                  "post_ids": [
+                                    "03c54bcf569a9f957f3879f5e87cbb19",
+                                    "1068bda1f94431bfb3b91b60073f1e46",
+                                    "22bcaccb2262e8864af03c8323490832",
+                                    "4020e56c08340e92c9862e481c07d2e2",
+                                    "412f4d35be48179908fef312b53cad43",
+                                    "4bab077aa99a235a81c41631af69aa78",
+                                    "c8fa9b4d1526d3345bcb15c7d196b79d",
+                                    "d7a04d4550a7c852ac4a16301e600aa5",
+                                    "fa0633c278660309648633dea6294cb1"
+                                  ]
+                                },
+                                {
+                                  "name": "陈玉珍",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "4bab077aa99a235a81c41631af69aa78"
+                                  ]
+                                },
+                                {
+                                  "name": "蒋万安",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "61db1ae4bd885760b0f5cca9ecacb588"
+                                  ]
+                                },
+                                {
+                                  "name": "沈伯洋",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "61db1ae4bd885760b0f5cca9ecacb588"
+                                  ]
+                                },
+                                {
+                                  "name": "王世坚",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "61db1ae4bd885760b0f5cca9ecacb588"
+                                  ]
+                                },
+                                {
+                                  "name": "郑丽君",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "61db1ae4bd885760b0f5cca9ecacb588"
+                                  ]
+                                },
+                                {
+                                  "name": "赖清德",
+                                  "count": 4,
+                                  "post_ids": [
+                                    "c8fa9b4d1526d3345bcb15c7d196b79d",
+                                    "cb673ebabb42a9499b3532943f8bb974",
+                                    "d07f1c79dd4ef03b92592fa81d54755b",
+                                    "dae634c9aa8c31d38e925750d3fbfeb6"
+                                  ]
+                                },
+                                {
+                                  "name": "卢秀燕",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "2a2c642e67822ed8c11f9d306e815a35"
+                                  ]
+                                },
+                                {
+                                  "name": "行政负责人",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "0374cca4a422e5aad9b24d721c7b4291"
+                                  ]
+                                },
+                                {
+                                  "name": "特定政治人物",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "03c54bcf569a9f957f3879f5e87cbb19"
+                                  ]
+                                },
+                                {
+                                  "name": "蔡英文",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "dae634c9aa8c31d38e925750d3fbfeb6"
+                                  ]
+                                },
+                                {
+                                  "name": "特定人物",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "d7dcfed942f432bd9c75ec4e2cd31b99"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 31,
+                              "children": [],
+                              "total_posts_count": 0
+                            },
+                            {
+                              "name": "演艺人物",
+                              "path": "/表象/实体/人物/个体/现实人物/公众人物/演艺人物",
+                              "id": 15441,
+                              "source_stable_id": 1187,
+                              "source_type": "实质",
+                              "description": "从事演艺工作的公众人物,包括歌手、演员、表演艺术家等",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15856,
+                              "element_count": 1,
+                              "elements": [
+                                {
+                                  "name": "Tom Holland",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "673c37610000000007029ced"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 1,
+                              "children": [],
+                              "total_posts_count": 1
+                            },
+                            {
+                              "name": "通用指称",
+                              "path": "/表象/实体/人物/个体/现实人物/公众人物/通用指称",
+                              "id": 15443,
+                              "source_stable_id": 1190,
+                              "source_type": "实质",
+                              "description": "对公众人物的泛指和概括性描述,不指向具体个人的统称概念",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15856,
+                              "element_count": 6,
+                              "elements": [
+                                {
+                                  "name": "时尚人物",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "82b864cd83e9a5f376214dbc341d6dad"
+                                  ]
+                                },
+                                {
+                                  "name": "明星",
+                                  "count": 4,
+                                  "post_ids": [
+                                    "63712737",
+                                    "63972446",
+                                    "64076321",
+                                    "64855234"
+                                  ]
+                                },
+                                {
+                                  "name": "明星艺人",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "64801086"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 6,
+                              "children": [],
+                              "total_posts_count": 0
+                            }
+                          ],
+                          "total_posts_count": 1
+                        },
+                        {
+                          "name": "历史名人",
+                          "path": "/表象/实体/人物/个体/现实人物/历史名人",
+                          "id": 15331,
+                          "source_stable_id": 220,
+                          "source_type": "实质",
+                          "description": "历史上具有重要影响的知名人物个体,包括政治领袖、军事将领、科学先驱等",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15854,
+                          "element_count": 8,
+                          "elements": [
+                            {
+                              "name": "历史人物",
+                              "count": 3,
+                              "post_ids": [
+                                "27f97d45367f3d0662d3204b3a4b0fb9",
+                                "2e93c00132e3a6a30c06efb6984ab71a",
+                                "333bd89e657acbcd9b26201f93cd8993"
+                              ]
+                            },
+                            {
+                              "name": "英雄人物",
+                              "count": 3,
+                              "post_ids": [
+                                "63712731",
+                                "64076321",
+                                "64210278"
+                              ]
+                            },
+                            {
+                              "name": "英雄",
+                              "count": 2,
+                              "post_ids": [
+                                "63712737",
+                                "64076321"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 33,
+                          "children": [
+                            {
+                              "name": "军事英雄",
+                              "path": "/表象/实体/人物/个体/现实人物/历史名人/军事英雄",
+                              "id": 14940,
+                              "source_stable_id": 235,
+                              "source_type": "实质",
+                              "description": "军事将领、战斗英雄等军事领域杰出人物",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15331,
+                              "element_count": 4,
+                              "elements": [
+                                {
+                                  "name": "女兵",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "56380736"
+                                  ]
+                                },
+                                {
+                                  "name": "英雄先烈",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "63712737"
+                                  ]
+                                },
+                                {
+                                  "name": "民族英雄",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "63712731"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 4,
+                              "children": [],
+                              "total_posts_count": 0
+                            },
+                            {
+                              "name": "王室人物",
+                              "path": "/表象/实体/人物/个体/现实人物/历史名人/王室人物",
+                              "id": 15312,
+                              "source_stable_id": 942,
+                              "source_type": "实质",
+                              "description": "王室成员及与王室密切相关的历史人物,包括君主、王妃、王室配偶及王室情妇等具有历史影响力的王室关联人物",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15331,
+                              "element_count": 21,
+                              "elements": [
+                                {
+                                  "name": "戴安娜·德·普瓦捷",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "89627e4bf8ad865f175c54e3b0ddd2cd"
+                                  ]
+                                },
+                                {
+                                  "name": "戴安娜王妃",
+                                  "count": 12,
+                                  "post_ids": [
+                                    "03e3d299faba104965b33d87b5063eff",
+                                    "2c73223f278ea6aecd70b5b54f0aff21",
+                                    "3a8712377c1ad3ad44d0f0271e28532d",
+                                    "970bc999f557cf8026c950f254d3ddac",
+                                    "b485a7858fbfc4b74e805bfadf6fce90",
+                                    "b5245c3e7b1c09af072ea40e41d3cca8",
+                                    "b6482cda993c100f39d6eccf65261a24",
+                                    "c84d14e15b8324b91df2cd8cb8304db9"
+                                  ]
+                                },
+                                {
+                                  "name": "戴安娜",
+                                  "count": 5,
+                                  "post_ids": [
+                                    "03e3d299faba104965b33d87b5063eff",
+                                    "27f97d45367f3d0662d3204b3a4b0fb9",
+                                    "7fc2ebb73d9fefe1e79111dd9b17ad65",
+                                    "99823f406c9b376c3998329e1373930f"
+                                  ]
+                                },
+                                {
+                                  "name": "查尔斯与卡米拉",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "444f41a7f46eaee7dfa43d10cb0d10c5"
+                                  ]
+                                },
+                                {
+                                  "name": "卡米拉",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "444f41a7f46eaee7dfa43d10cb0d10c5"
+                                  ]
+                                },
+                                {
+                                  "name": "玛哈国王",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "b485a7858fbfc4b74e805bfadf6fce90"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 21,
+                              "children": [],
+                              "total_posts_count": 0
+                            }
+                          ],
+                          "total_posts_count": 0
+                        }
+                      ],
+                      "total_posts_count": 1
+                    },
+                    {
+                      "name": "虚构人物",
+                      "path": "/表象/实体/人物/个体/虚构人物",
+                      "id": 15330,
+                      "source_stable_id": 975,
+                      "source_type": "实质",
+                      "description": "文学作品、神话传说等虚构创作中的人物形象",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15729,
+                      "element_count": 1,
+                      "elements": [
+                        {
+                          "name": "拟人化角色",
+                          "count": 1,
+                          "post_ids": [
+                            "12357835"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 2,
+                      "children": [
+                        {
+                          "name": "文学角色",
+                          "path": "/表象/实体/人物/个体/虚构人物/文学角色",
+                          "id": 15332,
+                          "source_stable_id": 945,
+                          "source_type": "实质",
+                          "description": "文学作品中虚构的人物角色,包括小说、戏剧等文学创作中的人物形象",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15330,
+                          "element_count": 1,
+                          "elements": [
+                            {
+                              "name": "元春",
+                              "count": 1,
+                              "post_ids": [
+                                "99823f406c9b376c3998329e1373930f"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 1,
+                          "children": [],
+                          "total_posts_count": 0
+                        }
+                      ],
+                      "total_posts_count": 0
+                    },
+                    {
+                      "name": "身份角色",
+                      "path": "/表象/实体/人物/个体/身份角色",
+                      "id": 15855,
+                      "source_stable_id": 976,
+                      "source_type": "实质",
+                      "description": "按年龄、职业、社会关系等属性定义的人物类型",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15729,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 84,
+                      "children": [
+                        {
+                          "name": "儿童",
+                          "path": "/表象/实体/人物/个体/身份角色/儿童",
+                          "id": 15333,
+                          "source_stable_id": 64,
+                          "source_type": "实质",
+                          "description": "儿童、幼儿等未成年人物形象",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15855,
+                          "element_count": 7,
+                          "elements": [
+                            {
+                              "name": "低龄儿童",
+                              "count": 1,
+                              "post_ids": [
+                                "69672e2d000000001a026263"
+                              ]
+                            },
+                            {
+                              "name": "儿童模特",
+                              "count": 1,
+                              "post_ids": [
+                                "692d3b99000000001e022295"
+                              ]
+                            },
+                            {
+                              "name": "萌娃",
+                              "count": 4,
+                              "post_ids": [
+                                "63253503",
+                                "64816949"
+                              ]
+                            },
+                            {
+                              "name": "AI萌娃",
+                              "count": 1,
+                              "post_ids": [
+                                "64816949"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 7,
+                          "children": [],
+                          "total_posts_count": 2
+                        },
+                        {
+                          "name": "社会关系",
+                          "path": "/表象/实体/人物/个体/身份角色/社会关系",
+                          "id": 15857,
+                          "source_stable_id": 78,
+                          "source_type": "实质",
+                          "description": "基于同学、同事、朋友等社会关系定义的人物角色",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15855,
+                          "element_count": 0,
+                          "elements": [],
+                          "total_element_count": 47,
+                          "children": [
+                            {
+                              "name": "婚恋伴侣",
+                              "path": "/表象/实体/人物/个体/身份角色/社会关系/婚恋伴侣",
+                              "id": 14972,
+                              "source_stable_id": 307,
+                              "source_type": "实质",
+                              "description": "基于婚姻和恋爱关系建立的伴侣角色",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15857,
+                              "element_count": 30,
+                              "elements": [
+                                {
+                                  "name": "灵魂伴侣",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "444f41a7f46eaee7dfa43d10cb0d10c5"
+                                  ]
+                                },
+                                {
+                                  "name": "丈夫",
+                                  "count": 8,
+                                  "post_ids": [
+                                    "6634a322000000001e01bcd5",
+                                    "664c38f0000000001303c21f",
+                                    "66f51b90000000002a036660",
+                                    "6711d712000000001b012783",
+                                    "68383eb1000000000303e7ef",
+                                    "68c14b36000000001d02b44e",
+                                    "68c909c3000000001302ad69",
+                                    "6921937a000000001b0278d1"
+                                  ]
+                                },
+                                {
+                                  "name": "情侣",
+                                  "count": 5,
+                                  "post_ids": [
+                                    "65f4359b00000000140079b5",
+                                    "6687d458000000000a026f91",
+                                    "66d1ab42000000001f015507",
+                                    "670baf34000000001600f52a",
+                                    "6900667d000000000300f640"
+                                  ]
+                                },
+                                {
+                                  "name": "懒人妻子",
+                                  "count": 5,
+                                  "post_ids": [
+                                    "67389194000000001d038599",
+                                    "6804ddfa000000000b01c901",
+                                    "68286f560000000012006015",
+                                    "68c14b36000000001d02b44e",
+                                    "68c909c3000000001302ad69"
+                                  ]
+                                },
+                                {
+                                  "name": "男友",
+                                  "count": 8,
+                                  "post_ids": [
+                                    "665971bb000000001303d005",
+                                    "66ee55d200000000270066a8",
+                                    "67440b66000000000202827e",
+                                    "6752d19b000000000202b816",
+                                    "675fcd19000000000103d470",
+                                    "67bc233e000000000b0160fa",
+                                    "67c17568000000000603b420",
+                                    "68302e2b000000000f038e8c"
+                                  ]
+                                },
+                                {
+                                  "name": "爱因斯坦女友",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "662ce86d0000000003023f0a",
+                                    "676535f4000000000b00dfd1"
+                                  ]
+                                },
+                                {
+                                  "name": "夫妻",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "6666dd86000000001500b7ff"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 30,
+                              "children": [],
+                              "total_posts_count": 27
+                            },
+                            {
+                              "name": "家庭亲属",
+                              "path": "/表象/实体/人物/个体/身份角色/社会关系/家庭亲属",
+                              "id": 15795,
+                              "source_stable_id": 306,
+                              "source_type": "实质",
+                              "description": "基于血缘关系建立的家庭成员和亲属角色",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15857,
+                              "element_count": 0,
+                              "elements": [],
+                              "total_element_count": 5,
+                              "children": [
+                                {
+                                  "name": "亲属称谓",
+                                  "path": "/表象/实体/人物/个体/身份角色/社会关系/家庭亲属/亲属称谓",
+                                  "id": 15691,
+                                  "source_stable_id": 1548,
+                                  "source_type": "实质",
+                                  "description": "具体的亲属关系称谓和辈分角色",
+                                  "category_nature": "领域",
+                                  "level": 8,
+                                  "parent_id": 15795,
+                                  "element_count": 2,
+                                  "elements": [
+                                    {
+                                      "name": "母子",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "b5245c3e7b1c09af072ea40e41d3cca8"
+                                      ]
+                                    },
+                                    {
+                                      "name": "长子身份",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "63477609"
+                                      ]
+                                    }
+                                  ],
+                                  "total_element_count": 2,
+                                  "children": [],
+                                  "total_posts_count": 0
+                                },
+                                {
+                                  "name": "家庭结构",
+                                  "path": "/表象/实体/人物/个体/身份角色/社会关系/家庭亲属/家庭结构",
+                                  "id": 15692,
+                                  "source_stable_id": 1549,
+                                  "source_type": "实质",
+                                  "description": "家庭整体单位、成员组成及亲属关系网络",
+                                  "category_nature": "领域",
+                                  "level": 8,
+                                  "parent_id": 15795,
+                                  "element_count": 3,
+                                  "elements": [
+                                    {
+                                      "name": "亲情纽带",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "b5245c3e7b1c09af072ea40e41d3cca8"
+                                      ]
+                                    },
+                                    {
+                                      "name": "横向血脉关系",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "62948012"
+                                      ]
+                                    },
+                                    {
+                                      "name": "血缘关系网",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "62948012"
+                                      ]
+                                    }
+                                  ],
+                                  "total_element_count": 3,
+                                  "children": [],
+                                  "total_posts_count": 0
+                                }
+                              ],
+                              "total_posts_count": 0
+                            },
+                            {
+                              "name": "师友同窗",
+                              "path": "/表象/实体/人物/个体/身份角色/社会关系/师友同窗",
+                              "id": 14973,
+                              "source_stable_id": 308,
+                              "source_type": "实质",
+                              "description": "基于师生、同学、朋友等情谊建立的人际关系",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15857,
+                              "element_count": 8,
+                              "elements": [
+                                {
+                                  "name": "好姐妹",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "601c09554a9851f9038026035b95fce9"
+                                  ]
+                                },
+                                {
+                                  "name": "闺蜜",
+                                  "count": 4,
+                                  "post_ids": [
+                                    "66f51b90000000002a036660",
+                                    "6803185a000000000b01ef09",
+                                    "68a43a11000000001c03cc96",
+                                    "68be928b000000001c0361ea"
+                                  ]
+                                },
+                                {
+                                  "name": "拖延症女友",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "6752d19b000000000202b816"
+                                  ]
+                                },
+                                {
+                                  "name": "老同学",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "56717837",
+                                    "64314678"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 8,
+                              "children": [],
+                              "total_posts_count": 5
+                            },
+                            {
+                              "name": "社交往来",
+                              "path": "/表象/实体/人物/个体/身份角色/社会关系/社交往来",
+                              "id": 14974,
+                              "source_stable_id": 309,
+                              "source_type": "实质",
+                              "description": "基于工作、公众活动等社会交往建立的人际关系",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15857,
+                              "element_count": 4,
+                              "elements": [
+                                {
+                                  "name": "搭档",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "3a8712377c1ad3ad44d0f0271e28532d"
+                                  ]
+                                },
+                                {
+                                  "name": "同事",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "67862d98000000001a01f443",
+                                    "6819f25e000000002301cca5"
+                                  ]
+                                },
+                                {
+                                  "name": "人物",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "680e2433000000000e004e91"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 4,
+                              "children": [],
+                              "total_posts_count": 3
+                            }
+                          ],
+                          "total_posts_count": 33
+                        },
+                        {
+                          "name": "职业身份",
+                          "path": "/表象/实体/人物/个体/身份角色/职业身份",
+                          "id": 15334,
+                          "source_stable_id": 116,
+                          "source_type": "实质",
+                          "description": "医生、军人、专家等以职业或专业身份定义的人物",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15855,
+                          "element_count": 1,
+                          "elements": [
+                            {
+                              "name": "社会角色",
+                              "count": 1,
+                              "post_ids": [
+                                "62025412"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 30,
+                          "children": [
+                            {
+                              "name": "专业服务",
+                              "path": "/表象/实体/人物/个体/身份角色/职业身份/专业服务",
+                              "id": 15848,
+                              "source_stable_id": 954,
+                              "source_type": "实质",
+                              "description": "从事需要专业知识和资质认证的服务领域的人物,如科研、医疗、法律等",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15334,
+                              "element_count": 0,
+                              "elements": [],
+                              "total_element_count": 7,
+                              "children": [
+                                {
+                                  "name": "医疗卫生",
+                                  "path": "/表象/实体/人物/个体/身份角色/职业身份/专业服务/医疗卫生",
+                                  "id": 15322,
+                                  "source_stable_id": 285,
+                                  "source_type": "实质",
+                                  "description": "从事医疗诊治和健康服务的专业人物,如医生、护士等",
+                                  "category_nature": "领域",
+                                  "level": 8,
+                                  "parent_id": 15848,
+                                  "element_count": 1,
+                                  "elements": [
+                                    {
+                                      "name": "临床医生",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "690ed2240000000005002b41"
+                                      ]
+                                    }
+                                  ],
+                                  "total_element_count": 1,
+                                  "children": [],
+                                  "total_posts_count": 1
+                                },
+                                {
+                                  "name": "科研学术",
+                                  "path": "/表象/实体/人物/个体/身份角色/职业身份/专业服务/科研学术",
+                                  "id": 15321,
+                                  "source_stable_id": 284,
+                                  "source_type": "实质",
+                                  "description": "从事科学研究、学术工作和专业技术的人物,如科学家、院士、专家等",
+                                  "category_nature": "领域",
+                                  "level": 8,
+                                  "parent_id": 15848,
+                                  "element_count": 6,
+                                  "elements": [
+                                    {
+                                      "name": "女科学家",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "690ed2240000000005002b41"
+                                      ]
+                                    },
+                                    {
+                                      "name": "顶尖科学家",
+                                      "count": 2,
+                                      "post_ids": [
+                                        "6732f52f000000001b013fdb",
+                                        "68fa08f60000000005030ddc"
+                                      ]
+                                    },
+                                    {
+                                      "name": "AI提示词专家",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "673d9a58000000000702450b"
+                                      ]
+                                    },
+                                    {
+                                      "name": "学者",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "65114702"
+                                      ]
+                                    },
+                                    {
+                                      "name": "专家",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "64770257"
+                                      ]
+                                    }
+                                  ],
+                                  "total_element_count": 6,
+                                  "children": [],
+                                  "total_posts_count": 4
+                                }
+                              ],
+                              "total_posts_count": 4
+                            },
+                            {
+                              "name": "公共事务",
+                              "path": "/表象/实体/人物/个体/身份角色/职业身份/公共事务",
+                              "id": 15847,
+                              "source_stable_id": 953,
+                              "source_type": "实质",
+                              "description": "从事政府行政、国防军事、执法安全等公共职能的人物",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15334,
+                              "element_count": 0,
+                              "elements": [],
+                              "total_element_count": 4,
+                              "children": [
+                                {
+                                  "name": "政务",
+                                  "path": "/表象/实体/人物/个体/身份角色/职业身份/公共事务/政务",
+                                  "id": 15320,
+                                  "source_stable_id": 288,
+                                  "source_type": "实质",
+                                  "description": "从事政府行政和公共管理的人物,如官员、外交官等",
+                                  "category_nature": "领域",
+                                  "level": 8,
+                                  "parent_id": 15847,
+                                  "element_count": 4,
+                                  "elements": [
+                                    {
+                                      "name": "金门县长",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "4bab077aa99a235a81c41631af69aa78"
+                                      ]
+                                    },
+                                    {
+                                      "name": "民众党民代",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "0834b527a0fe32c83eb9be0b1cf45140"
+                                      ]
+                                    },
+                                    {
+                                      "name": "核心政治人物",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "0834b527a0fe32c83eb9be0b1cf45140"
+                                      ]
+                                    },
+                                    {
+                                      "name": "政坛人物",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "dae634c9aa8c31d38e925750d3fbfeb6"
+                                      ]
+                                    }
+                                  ],
+                                  "total_element_count": 4,
+                                  "children": [],
+                                  "total_posts_count": 0
+                                }
+                              ],
+                              "total_posts_count": 0
+                            },
+                            {
+                              "name": "工商业",
+                              "path": "/表象/实体/人物/个体/身份角色/职业身份/工商业",
+                              "id": 15849,
+                              "source_stable_id": 955,
+                              "source_type": "实质",
+                              "description": "从事商业经营、技术生产、日常服务等市场化行业的人物",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15334,
+                              "element_count": 0,
+                              "elements": [],
+                              "total_element_count": 13,
+                              "children": [
+                                {
+                                  "name": "商业管理",
+                                  "path": "/表象/实体/人物/个体/身份角色/职业身份/工商业/商业管理",
+                                  "id": 15323,
+                                  "source_stable_id": 287,
+                                  "source_type": "实质",
+                                  "description": "从事商业经营、企业管理和投资的人物,如CEO、创始人、高管等",
+                                  "category_nature": "领域",
+                                  "level": 8,
+                                  "parent_id": 15849,
+                                  "element_count": 10,
+                                  "elements": [
+                                    {
+                                      "name": "Saviynt创始人",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "69437b6d000000001e0381c9"
+                                      ]
+                                    },
+                                    {
+                                      "name": "高管",
+                                      "count": 2,
+                                      "post_ids": [
+                                        "69297dde000000001f006b90",
+                                        "69328436000000001f006a54"
+                                      ]
+                                    },
+                                    {
+                                      "name": "创始人",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "692006ef000000001f008b41"
+                                      ]
+                                    },
+                                    {
+                                      "name": "CEO",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "69005a1e0000000004017637"
+                                      ]
+                                    },
+                                    {
+                                      "name": "00后CEO",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "68ecc19400000000050028c1"
+                                      ]
+                                    },
+                                    {
+                                      "name": "创投大咖",
+                                      "count": 3,
+                                      "post_ids": [
+                                        "68b10b46000000001c00ca6c",
+                                        "68c15181000000001b01c358",
+                                        "68ca25bc000000000e023656"
+                                      ]
+                                    },
+                                    {
+                                      "name": "女投资人",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "6732f52f000000001b013fdb"
+                                      ]
+                                    }
+                                  ],
+                                  "total_element_count": 10,
+                                  "children": [],
+                                  "total_posts_count": 10
+                                },
+                                {
+                                  "name": "技术工艺",
+                                  "path": "/表象/实体/人物/个体/身份角色/职业身份/工商业/技术工艺",
+                                  "id": 15324,
+                                  "source_stable_id": 465,
+                                  "source_type": "实质",
+                                  "description": "从事专业技术和手工艺的人员,如酿酒师、工匠、技师等",
+                                  "category_nature": "领域",
+                                  "level": 8,
+                                  "parent_id": 15849,
+                                  "element_count": 1,
+                                  "elements": [
+                                    {
+                                      "name": "专业酿酒师",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "673c37610000000007029ced"
+                                      ]
+                                    }
+                                  ],
+                                  "total_element_count": 1,
+                                  "children": [],
+                                  "total_posts_count": 1
+                                },
+                                {
+                                  "name": "服务业",
+                                  "path": "/表象/实体/人物/个体/身份角色/职业身份/工商业/服务业",
+                                  "id": 15325,
+                                  "source_stable_id": 466,
+                                  "source_type": "实质",
+                                  "description": "从事服务行业的普通从业人员,如职场白领、服务员等",
+                                  "category_nature": "领域",
+                                  "level": 8,
+                                  "parent_id": 15849,
+                                  "element_count": 2,
+                                  "elements": [
+                                    {
+                                      "name": "早八打工人",
+                                      "count": 2,
+                                      "post_ids": [
+                                        "67e6398f000000001d005ebb",
+                                        "6810596c000000002301d1a6"
+                                      ]
+                                    }
+                                  ],
+                                  "total_element_count": 2,
+                                  "children": [],
+                                  "total_posts_count": 2
+                                }
+                              ],
+                              "total_posts_count": 13
+                            },
+                            {
+                              "name": "文体演艺",
+                              "path": "/表象/实体/人物/个体/身份角色/职业身份/文体演艺",
+                              "id": 14957,
+                              "source_stable_id": 289,
+                              "source_type": "实质",
+                              "description": "从事文化、体育、表演等行业的人物,如演员、模特、运动员等",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15334,
+                              "element_count": 5,
+                              "elements": [
+                                {
+                                  "name": "专业舞者",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "3a8712377c1ad3ad44d0f0271e28532d"
+                                  ]
+                                },
+                                {
+                                  "name": "童模",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "68b953e4000000001d00f96f",
+                                    "69114f150000000007001f30"
+                                  ]
+                                },
+                                {
+                                  "name": "外籍演员",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "64591962"
+                                  ]
+                                },
+                                {
+                                  "name": "春晚演员",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "64415308"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 5,
+                              "children": [],
+                              "total_posts_count": 2
+                            }
+                          ],
+                          "total_posts_count": 18
+                        }
+                      ],
+                      "total_posts_count": 53
+                    }
+                  ],
+                  "total_posts_count": 90
+                },
+                {
+                  "name": "群体",
+                  "path": "/表象/实体/人物/群体",
+                  "id": 15722,
+                  "source_stable_id": 53,
+                  "source_type": "实质",
+                  "description": "由多个个体组成的人群集合",
+                  "category_nature": "维度",
+                  "level": 4,
+                  "parent_id": 15947,
+                  "element_count": 0,
+                  "elements": [],
+                  "total_element_count": 75,
+                  "children": [
+                    {
+                      "name": "人口特征",
+                      "path": "/表象/实体/人物/群体/人口特征",
+                      "id": 15850,
+                      "source_stable_id": 965,
+                      "source_type": "实质",
+                      "description": "按年龄、性别、民族、地域等人口统计学特征划分的群体",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15722,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 11,
+                      "children": [
+                        {
+                          "name": "地域群体",
+                          "path": "/表象/实体/人物/群体/人口特征/地域群体",
+                          "id": 15328,
+                          "source_stable_id": 482,
+                          "source_type": "实质",
+                          "description": "按地理区域或地方归属划分的人群集合,如某省市、某地区的人民",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15850,
+                          "element_count": 2,
+                          "elements": [
+                            {
+                              "name": "岛内青年",
+                              "count": 1,
+                              "post_ids": [
+                                "df635f43f39a1fa41c13da96320c45c3"
+                              ]
+                            },
+                            {
+                              "name": "乡镇居民",
+                              "count": 1,
+                              "post_ids": [
+                                "57121511"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 2,
+                          "children": [],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "年龄群体",
+                          "path": "/表象/实体/人物/群体/人口特征/年龄群体",
+                          "id": 15851,
+                          "source_stable_id": 58,
+                          "source_type": "实质",
+                          "description": "按年龄段划分的人群,如中老年、青少年等",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15850,
+                          "element_count": 0,
+                          "elements": [],
+                          "total_element_count": 6,
+                          "children": [
+                            {
+                              "name": "年轻群体",
+                              "path": "/表象/实体/人物/群体/人口特征/年龄群体/年轻群体",
+                              "id": 15586,
+                              "source_stable_id": 1398,
+                              "source_type": "实质",
+                              "description": "年轻阶段的人群,包括年轻人、学生等",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15851,
+                              "element_count": 2,
+                              "elements": [
+                                {
+                                  "name": "学生",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "68b69ea9000000001c035a4d",
+                                    "68c3933e000000001d00a902"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 2,
+                              "children": [],
+                              "total_posts_count": 2
+                            },
+                            {
+                              "name": "老年群体",
+                              "path": "/表象/实体/人物/群体/人口特征/年龄群体/老年群体",
+                              "id": 15928,
+                              "source_stable_id": 1397,
+                              "source_type": "实质",
+                              "description": "老年阶段的人群,包括中老年、高龄老人等各年龄段的老年人",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15851,
+                              "element_count": 0,
+                              "elements": [],
+                              "total_element_count": 4,
+                              "children": [
+                                {
+                                  "name": "年代群体",
+                                  "path": "/表象/实体/人物/群体/人口特征/年龄群体/老年群体/年代群体",
+                                  "id": 15588,
+                                  "source_stable_id": 1400,
+                                  "source_type": "实质",
+                                  "description": "按出生年代划分的老年人群,如四零后、五零后等",
+                                  "category_nature": "领域",
+                                  "level": 8,
+                                  "parent_id": 15928,
+                                  "element_count": 1,
+                                  "elements": [
+                                    {
+                                      "name": "老一辈",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "62948012"
+                                      ]
+                                    }
+                                  ],
+                                  "total_element_count": 1,
+                                  "children": [],
+                                  "total_posts_count": 0
+                                },
+                                {
+                                  "name": "通用老年",
+                                  "path": "/表象/实体/人物/群体/人口特征/年龄群体/老年群体/通用老年",
+                                  "id": 15587,
+                                  "source_stable_id": 1399,
+                                  "source_type": "实质",
+                                  "description": "对老年人群的通用性、概括性称呼,不限定具体年龄段或年代",
+                                  "category_nature": "领域",
+                                  "level": 8,
+                                  "parent_id": 15928,
+                                  "element_count": 3,
+                                  "elements": [
+                                    {
+                                      "name": "中老年",
+                                      "count": 3,
+                                      "post_ids": [
+                                        "55994947",
+                                        "64603799"
+                                      ]
+                                    }
+                                  ],
+                                  "total_element_count": 3,
+                                  "children": [],
+                                  "total_posts_count": 0
+                                }
+                              ],
+                              "total_posts_count": 0
+                            }
+                          ],
+                          "total_posts_count": 2
+                        },
+                        {
+                          "name": "性别群体",
+                          "path": "/表象/实体/人物/群体/人口特征/性别群体",
+                          "id": 15327,
+                          "source_stable_id": 492,
+                          "source_type": "实质",
+                          "description": "按性别划分的人群集合,如男性、女性等以性别为主要特征的群体",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15850,
+                          "element_count": 3,
+                          "elements": [
+                            {
+                              "name": "男女",
+                              "count": 2,
+                              "post_ids": [
+                                "55102015",
+                                "55327642"
+                              ]
+                            },
+                            {
+                              "name": "男性",
+                              "count": 1,
+                              "post_ids": [
+                                "55102015"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 3,
+                          "children": [],
+                          "total_posts_count": 0
+                        }
+                      ],
+                      "total_posts_count": 2
+                    },
+                    {
+                      "name": "社会身份",
+                      "path": "/表象/实体/人物/群体/社会身份",
+                      "id": 15326,
+                      "source_stable_id": 966,
+                      "source_type": "实质",
+                      "description": "按职业角色、家庭结构、社会阶层等社会身份划分的群体",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15722,
+                      "element_count": 6,
+                      "elements": [
+                        {
+                          "name": "台独分子",
+                          "count": 1,
+                          "post_ids": [
+                            "bc2f946d57e1c650575962e480eccf31"
+                          ]
+                        },
+                        {
+                          "name": "政治人物名单",
+                          "count": 1,
+                          "post_ids": [
+                            "61db1ae4bd885760b0f5cca9ecacb588"
+                          ]
+                        },
+                        {
+                          "name": "多候选人",
+                          "count": 1,
+                          "post_ids": [
+                            "8d43fa69c8f4f5e7d87ec45244cbd97c"
+                          ]
+                        },
+                        {
+                          "name": "本土派",
+                          "count": 1,
+                          "post_ids": [
+                            "412f4d35be48179908fef312b53cad43"
+                          ]
+                        },
+                        {
+                          "name": "地方派系",
+                          "count": 1,
+                          "post_ids": [
+                            "752267d0ca2695c2ceb816a43d943a6a"
+                          ]
+                        },
+                        {
+                          "name": "新旧势力",
+                          "count": 1,
+                          "post_ids": [
+                            "dae634c9aa8c31d38e925750d3fbfeb6"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 64,
+                      "children": [
+                        {
+                          "name": "家庭群体",
+                          "path": "/表象/实体/人物/群体/社会身份/家庭群体",
+                          "id": 15329,
+                          "source_stable_id": 311,
+                          "source_type": "实质",
+                          "description": "按家庭结构和成员关系定义的人群组合",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15326,
+                          "element_count": 2,
+                          "elements": [
+                            {
+                              "name": "有娃家庭",
+                              "count": 1,
+                              "post_ids": [
+                                "696f2f97000000000e00e33c"
+                              ]
+                            },
+                            {
+                              "name": "母婴",
+                              "count": 1,
+                              "post_ids": [
+                                "693d0b1d000000001e02ba36"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 2,
+                          "children": [],
+                          "total_posts_count": 2
+                        },
+                        {
+                          "name": "普通群众",
+                          "path": "/表象/实体/人物/群体/社会身份/普通群众",
+                          "id": 15853,
+                          "source_stable_id": 102,
+                          "source_type": "实质",
+                          "description": "观众、路人、围观者等普通人群",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15326,
+                          "element_count": 0,
+                          "elements": [],
+                          "total_element_count": 14,
+                          "children": [
+                            {
+                              "name": "特定群体",
+                              "path": "/表象/实体/人物/群体/社会身份/普通群众/特定群体",
+                              "id": 15554,
+                              "source_stable_id": 1348,
+                              "source_type": "实质",
+                              "description": "嘉宾、游客、粉丝等具有特定身份或特征的人群",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15853,
+                              "element_count": 7,
+                              "elements": [
+                                {
+                                  "name": "嘉宾阵容",
+                                  "count": 6,
+                                  "post_ids": [
+                                    "67fd299a000000001c00cf5d",
+                                    "68b10b46000000001c00ca6c",
+                                    "68c15181000000001b01c358",
+                                    "68ca25bc000000000e023656",
+                                    "69297dde000000001f006b90",
+                                    "69297e47000000001e028ec3"
+                                  ]
+                                },
+                                {
+                                  "name": "粉丝",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "63972446"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 7,
+                              "children": [],
+                              "total_posts_count": 6
+                            },
+                            {
+                              "name": "草根群体",
+                              "path": "/表象/实体/人物/群体/社会身份/普通群众/草根群体",
+                              "id": 15553,
+                              "source_stable_id": 1347,
+                              "source_type": "实质",
+                              "description": "草根、底层百姓、农民等普通劳动者和基层民众",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15853,
+                              "element_count": 6,
+                              "elements": [
+                                {
+                                  "name": "驴友",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "692006ef000000001f008b41"
+                                  ]
+                                },
+                                {
+                                  "name": "草根",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "64400730",
+                                    "64935973"
+                                  ]
+                                },
+                                {
+                                  "name": "全草根阵容",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "64585144"
+                                  ]
+                                },
+                                {
+                                  "name": "草根主体",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "64585144"
+                                  ]
+                                },
+                                {
+                                  "name": "草根英雄",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "64400730"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 6,
+                              "children": [],
+                              "total_posts_count": 1
+                            },
+                            {
+                              "name": "观看参与者",
+                              "path": "/表象/实体/人物/群体/社会身份/普通群众/观看参与者",
+                              "id": 15552,
+                              "source_stable_id": 1346,
+                              "source_type": "实质",
+                              "description": "观众、围观群众、参与活动的民众等观看或参与公共活动的普通人群",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15853,
+                              "element_count": 1,
+                              "elements": [
+                                {
+                                  "name": "观众",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "64415308"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 1,
+                              "children": [],
+                              "total_posts_count": 0
+                            }
+                          ],
+                          "total_posts_count": 7
+                        },
+                        {
+                          "name": "职业群体",
+                          "path": "/表象/实体/人物/群体/社会身份/职业群体",
+                          "id": 15852,
+                          "source_stable_id": 271,
+                          "source_type": "实质",
+                          "description": "商业、学术等专业领域中以职能角色聚集的人群",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15326,
+                          "element_count": 0,
+                          "elements": [],
+                          "total_element_count": 42,
+                          "children": [
+                            {
+                              "name": "军事国防",
+                              "path": "/表象/实体/人物/群体/社会身份/职业群体/军事国防",
+                              "id": 15481,
+                              "source_stable_id": 1246,
+                              "source_type": "实质",
+                              "description": "军人、战士等军事相关职业群体",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15852,
+                              "element_count": 3,
+                              "elements": [
+                                {
+                                  "name": "台军",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "df635f43f39a1fa41c13da96320c45c3"
+                                  ]
+                                },
+                                {
+                                  "name": "军人群体",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "56380736"
+                                  ]
+                                },
+                                {
+                                  "name": "边防战士",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "63762379"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 3,
+                              "children": [],
+                              "total_posts_count": 0
+                            },
+                            {
+                              "name": "农业生产",
+                              "path": "/表象/实体/人物/群体/社会身份/职业群体/农业生产",
+                              "id": 15482,
+                              "source_stable_id": 1247,
+                              "source_type": "实质",
+                              "description": "农民及农业劳动者群体",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15852,
+                              "element_count": 3,
+                              "elements": [
+                                {
+                                  "name": "农民",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "64770257"
+                                  ]
+                                },
+                                {
+                                  "name": "工农",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "57919607"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 3,
+                              "children": [],
+                              "total_posts_count": 0
+                            },
+                            {
+                              "name": "商业创投",
+                              "path": "/表象/实体/人物/群体/社会身份/职业群体/商业创投",
+                              "id": 15485,
+                              "source_stable_id": 1250,
+                              "source_type": "实质",
+                              "description": "创业团队、投资评审等商业领域群体",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15852,
+                              "element_count": 6,
+                              "elements": [
+                                {
+                                  "name": "清华系",
+                                  "count": 4,
+                                  "post_ids": [
+                                    "68ecc19400000000050028c1",
+                                    "68faf90d0000000005011fa2",
+                                    "690af75a000000000503b57e",
+                                    "69293c52000000001e02d9d6"
+                                  ]
+                                },
+                                {
+                                  "name": "DEMO CHINA嘉宾评审团",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "68ca25bc000000000e023656"
+                                  ]
+                                },
+                                {
+                                  "name": "中外合伙人",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "67316440000000001b02e75e"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 6,
+                              "children": [],
+                              "total_posts_count": 6
+                            },
+                            {
+                              "name": "政治公务",
+                              "path": "/表象/实体/人物/群体/社会身份/职业群体/政治公务",
+                              "id": 15484,
+                              "source_stable_id": 1249,
+                              "source_type": "实质",
+                              "description": "政治人物、公职人员等政治领域群体",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15852,
+                              "element_count": 2,
+                              "elements": [
+                                {
+                                  "name": "蓝营候选人",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "8d43fa69c8f4f5e7d87ec45244cbd97c"
+                                  ]
+                                },
+                                {
+                                  "name": "蓝营民代",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "2a2c642e67822ed8c11f9d306e815a35"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 2,
+                              "children": [],
+                              "total_posts_count": 0
+                            },
+                            {
+                              "name": "文化演艺",
+                              "path": "/表象/实体/人物/群体/社会身份/职业群体/文化演艺",
+                              "id": 15483,
+                              "source_stable_id": 1248,
+                              "source_type": "实质",
+                              "description": "演艺圈、明星等文化娱乐行业从业者群体",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15852,
+                              "element_count": 4,
+                              "elements": [
+                                {
+                                  "name": "演艺圈",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "64801086"
+                                  ]
+                                },
+                                {
+                                  "name": "演职人员",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "64650216"
+                                  ]
+                                },
+                                {
+                                  "name": "高收入演员",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "64610880"
+                                  ]
+                                },
+                                {
+                                  "name": "娱乐圈",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "63712731"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 4,
+                              "children": [],
+                              "total_posts_count": 0
+                            },
+                            {
+                              "name": "社会阶层",
+                              "path": "/表象/实体/人物/群体/社会身份/职业群体/社会阶层",
+                              "id": 15486,
+                              "source_stable_id": 1251,
+                              "source_type": "实质",
+                              "description": "按社会地位、经济状况划分的职业群体",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15852,
+                              "element_count": 21,
+                              "elements": [
+                                {
+                                  "name": "打工人",
+                                  "count": 18,
+                                  "post_ids": [
+                                    "66619827000000000600486f",
+                                    "67d7a294000000001c03eef9",
+                                    "6867d9af000000001203f084",
+                                    "686cd3a5000000000d0180b0",
+                                    "688366bd000000000d024147",
+                                    "68875186000000002501649d",
+                                    "68946e0d000000002500ef6e",
+                                    "68ccd4e40000000012030372",
+                                    "68d0089400000000120172a5",
+                                    "68d1ebb8000000001203fd96",
+                                    "68d610800000000012023282",
+                                    "68ec9d6400000000070389be",
+                                    "68f0b8140000000007008b05",
+                                    "68f78b950000000007021a20",
+                                    "6915dfc400000000070224d9"
+                                  ]
+                                },
+                                {
+                                  "name": "资本家",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "65252544"
+                                  ]
+                                },
+                                {
+                                  "name": "精英阶层",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "65114702"
+                                  ]
+                                },
+                                {
+                                  "name": "底层角色",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "64589911"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 21,
+                              "children": [],
+                              "total_posts_count": 15
+                            },
+                            {
+                              "name": "综合群体",
+                              "path": "/表象/实体/人物/群体/社会身份/职业群体/综合群体",
+                              "id": 15487,
+                              "source_stable_id": 1252,
+                              "source_type": "实质",
+                              "description": "跨领域的综合性职业群体",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15852,
+                              "element_count": 3,
+                              "elements": [
+                                {
+                                  "name": "军公教",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "49d6570f82c62ca372c932b67467878f"
+                                  ]
+                                },
+                                {
+                                  "name": "产官学",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "ef63cef6ce5336e59ccb523e35f355dd"
+                                  ]
+                                },
+                                {
+                                  "name": "团队",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "673c37610000000007029ced"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 3,
+                              "children": [],
+                              "total_posts_count": 1
+                            }
+                          ],
+                          "total_posts_count": 22
+                        }
+                      ],
+                      "total_posts_count": 30
+                    }
+                  ],
+                  "total_posts_count": 32
+                }
+              ],
+              "total_posts_count": 114
+            },
+            {
+              "name": "机构",
+              "path": "/表象/实体/机构",
+              "id": 15967,
+              "source_stable_id": 252,
+              "source_type": "实质",
+              "description": "企业、组织、机构等非个人的社会团体实体",
+              "category_nature": "内容",
+              "level": 3,
+              "parent_id": 15946,
+              "element_count": 0,
+              "elements": [],
+              "total_element_count": 60,
+              "children": [
+                {
+                  "name": "公共组织",
+                  "path": "/表象/实体/机构/公共组织",
+                  "id": 15811,
+                  "source_stable_id": 469,
+                  "source_type": "实质",
+                  "description": "政府部门、公共媒体机构等非商业性的社会公共组织",
+                  "category_nature": "维度",
+                  "level": 4,
+                  "parent_id": 15967,
+                  "element_count": 0,
+                  "elements": [],
+                  "total_element_count": 15,
+                  "children": [
+                    {
+                      "name": "政党",
+                      "path": "/表象/实体/机构/公共组织/政党",
+                      "id": 15362,
+                      "source_stable_id": 1042,
+                      "source_type": "实质",
+                      "description": "政党组织及其派系、基层组织等政治性团体",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15811,
+                      "element_count": 9,
+                      "elements": [
+                        {
+                          "name": "民众党",
+                          "count": 2,
+                          "post_ids": [
+                            "b9bc7d3c46583a41a76867f0ac7e62f1",
+                            "fa0633c278660309648633dea6294cb1"
+                          ]
+                        },
+                        {
+                          "name": "国民党",
+                          "count": 2,
+                          "post_ids": [
+                            "3de8289cfddb37a8b027d60dce4dfdb1",
+                            "d7a04d4550a7c852ac4a16301e600aa5"
+                          ]
+                        },
+                        {
+                          "name": "县市党部",
+                          "count": 1,
+                          "post_ids": [
+                            "3de8289cfddb37a8b027d60dce4dfdb1"
+                          ]
+                        },
+                        {
+                          "name": "小党",
+                          "count": 1,
+                          "post_ids": [
+                            "3b8bfac263ace2eb578c85c98630e566"
+                          ]
+                        },
+                        {
+                          "name": "国民党智库",
+                          "count": 1,
+                          "post_ids": [
+                            "ef63cef6ce5336e59ccb523e35f355dd"
+                          ]
+                        },
+                        {
+                          "name": "蓝营",
+                          "count": 2,
+                          "post_ids": [
+                            "601c09554a9851f9038026035b95fce9",
+                            "752267d0ca2695c2ceb816a43d943a6a"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 9,
+                      "children": [],
+                      "total_posts_count": 0
+                    },
+                    {
+                      "name": "政务媒体",
+                      "path": "/表象/实体/机构/公共组织/政务媒体",
+                      "id": 15020,
+                      "source_stable_id": 470,
+                      "source_type": "实质",
+                      "description": "具有高度公信力的政府机关、国家部委及权威新闻媒体机构",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15811,
+                      "element_count": 1,
+                      "elements": [
+                        {
+                          "name": "台当局",
+                          "count": 1,
+                          "post_ids": [
+                            "bc2f946d57e1c650575962e480eccf31"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 1,
+                      "children": [],
+                      "total_posts_count": 0
+                    },
+                    {
+                      "name": "王室机构",
+                      "path": "/表象/实体/机构/公共组织/王室机构",
+                      "id": 15313,
+                      "source_stable_id": 943,
+                      "source_type": "实质",
+                      "description": "君主制国家的王室组织机构及宫廷权力中心,作为国家象征和历史传统载体的公共组织实体",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15811,
+                      "element_count": 5,
+                      "elements": [
+                        {
+                          "name": "宫廷",
+                          "count": 1,
+                          "post_ids": [
+                            "89627e4bf8ad865f175c54e3b0ddd2cd"
+                          ]
+                        },
+                        {
+                          "name": "王室",
+                          "count": 2,
+                          "post_ids": [
+                            "970bc999f557cf8026c950f254d3ddac",
+                            "b5245c3e7b1c09af072ea40e41d3cca8"
+                          ]
+                        },
+                        {
+                          "name": "英国王室",
+                          "count": 2,
+                          "post_ids": [
+                            "444f41a7f46eaee7dfa43d10cb0d10c5",
+                            "7fc2ebb73d9fefe1e79111dd9b17ad65"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 5,
+                      "children": [],
+                      "total_posts_count": 0
+                    }
+                  ],
+                  "total_posts_count": 0
+                },
+                {
+                  "name": "商业",
+                  "path": "/表象/实体/机构/商业",
+                  "id": 15968,
+                  "source_stable_id": 253,
+                  "source_type": "实质",
+                  "description": "从事商业经营、投资等活动的企业和组织",
+                  "category_nature": "维度",
+                  "level": 4,
+                  "parent_id": 15967,
+                  "element_count": 0,
+                  "elements": [],
+                  "total_element_count": 45,
+                  "children": [
+                    {
+                      "name": "企业机构",
+                      "path": "/表象/实体/机构/商业/企业机构",
+                      "id": 15782,
+                      "source_stable_id": 254,
+                      "source_type": "实质",
+                      "description": "知名企业、投资机构等具有行业影响力的商业组织",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15968,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 45,
+                      "children": [
+                        {
+                          "name": "互联网平台",
+                          "path": "/表象/实体/机构/商业/企业机构/互联网平台",
+                          "id": 15231,
+                          "source_stable_id": 772,
+                          "source_type": "实质",
+                          "description": "提供互联网服务和平台的企业",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15782,
+                          "element_count": 1,
+                          "elements": [
+                            {
+                              "name": "蚂蚁理财",
+                              "count": 1,
+                              "post_ids": [
+                                "68ccd4e40000000012030372"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 1,
+                          "children": [],
+                          "total_posts_count": 1
+                        },
+                        {
+                          "name": "其他行业",
+                          "path": "/表象/实体/机构/商业/企业机构/其他行业",
+                          "id": 15234,
+                          "source_stable_id": 775,
+                          "source_type": "实质",
+                          "description": "房地产、法律服务等其他行业的企业",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15782,
+                          "element_count": 7,
+                          "elements": [
+                            {
+                              "name": "空间点阵",
+                              "count": 1,
+                              "post_ids": [
+                                "65eea166000000000d00c6d8"
+                              ]
+                            },
+                            {
+                              "name": "翰思艾泰",
+                              "count": 2,
+                              "post_ids": [
+                                "694a6caf000000001f00e112"
+                              ]
+                            },
+                            {
+                              "name": "创业项目",
+                              "count": 1,
+                              "post_ids": [
+                                "6944e9b5000000001e02472d"
+                              ]
+                            },
+                            {
+                              "name": "企业",
+                              "count": 2,
+                              "post_ids": [
+                                "68f9fb67000000000400736f",
+                                "69394a0b000000001f006ce6"
+                              ]
+                            },
+                            {
+                              "name": "全球产业巨头",
+                              "count": 1,
+                              "post_ids": [
+                                "68f9fb67000000000400736f"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 7,
+                          "children": [],
+                          "total_posts_count": 5
+                        },
+                        {
+                          "name": "出海企业",
+                          "path": "/表象/实体/机构/商业/企业机构/出海企业",
+                          "id": 15233,
+                          "source_stable_id": 774,
+                          "source_type": "实质",
+                          "description": "专注于国际市场拓展的出海品牌企业",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15782,
+                          "element_count": 5,
+                          "elements": [
+                            {
+                              "name": "行业标杆",
+                              "count": 4,
+                              "post_ids": [
+                                "67fd299a000000001c00cf5d",
+                                "68ef800d0000000005011094",
+                                "6902e20a0000000005030a7b",
+                                "69328436000000001f006a54"
+                              ]
+                            },
+                            {
+                              "name": "星途创新Heybike",
+                              "count": 1,
+                              "post_ids": [
+                                "690ed1190000000003010bd3"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 5,
+                          "children": [],
+                          "total_posts_count": 5
+                        },
+                        {
+                          "name": "投资机构",
+                          "path": "/表象/实体/机构/商业/企业机构/投资机构",
+                          "id": 15230,
+                          "source_stable_id": 769,
+                          "source_type": "实质",
+                          "description": "从事风险投资、股权投资等资本运作的金融机构",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15782,
+                          "element_count": 8,
+                          "elements": [
+                            {
+                              "name": "顶级机构",
+                              "count": 4,
+                              "post_ids": [
+                                "68b10b46000000001c00ca6c",
+                                "69363584000000001f006a4c",
+                                "69437b6d000000001e0381c9",
+                                "69491c99000000001e02c765"
+                              ]
+                            },
+                            {
+                              "name": "明星资本",
+                              "count": 3,
+                              "post_ids": [
+                                "6731b884000000001901b8d3",
+                                "6927e806000000001f007658",
+                                "69394a0b000000001f006ce6"
+                              ]
+                            },
+                            {
+                              "name": "英诺天使基金",
+                              "count": 1,
+                              "post_ids": [
+                                "69293c52000000001e02d9d6"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 8,
+                          "children": [],
+                          "total_posts_count": 8
+                        },
+                        {
+                          "name": "物流企业",
+                          "path": "/表象/实体/机构/商业/企业机构/物流企业",
+                          "id": 15232,
+                          "source_stable_id": 773,
+                          "source_type": "实质",
+                          "description": "提供物流运输和供应链服务的企业",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15782,
+                          "element_count": 3,
+                          "elements": [
+                            {
+                              "name": "菜鸟",
+                              "count": 2,
+                              "post_ids": [
+                                "69145e8e0000000005003350"
+                              ]
+                            },
+                            {
+                              "name": "京东物流",
+                              "count": 1,
+                              "post_ids": [
+                                "68ef800d0000000005011094"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 3,
+                          "children": [],
+                          "total_posts_count": 2
+                        },
+                        {
+                          "name": "科技企业",
+                          "path": "/表象/实体/机构/商业/企业机构/科技企业",
+                          "id": 15835,
+                          "source_stable_id": 770,
+                          "source_type": "实质",
+                          "description": "以技术研发和创新为核心的科技类公司",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15782,
+                          "element_count": 0,
+                          "elements": [],
+                          "total_element_count": 10,
+                          "children": [
+                            {
+                              "name": "信息技术",
+                              "path": "/表象/实体/机构/商业/企业机构/科技企业/信息技术",
+                              "id": 15237,
+                              "source_stable_id": 778,
+                              "source_type": "实质",
+                              "description": "从事信息技术、软件开发、数据安全等领域的科技企业",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15835,
+                              "element_count": 3,
+                              "elements": [
+                                {
+                                  "name": "大厂与创业公司",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "692e7ccf000000001f00a137"
+                                  ]
+                                },
+                                {
+                                  "name": "荆华密算",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "68ecc19400000000050028c1"
+                                  ]
+                                },
+                                {
+                                  "name": "LangGPT AI提示词社区",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "673d9a58000000000702450b"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 3,
+                              "children": [],
+                              "total_posts_count": 3
+                            },
+                            {
+                              "name": "智能科技",
+                              "path": "/表象/实体/机构/商业/企业机构/科技企业/智能科技",
+                              "id": 15235,
+                              "source_stable_id": 776,
+                              "source_type": "实质",
+                              "description": "专注于人工智能、机器人、自动驾驶等智能技术的科技企业",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15835,
+                              "element_count": 6,
+                              "elements": [
+                                {
+                                  "name": "Chai Discovery",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "69491c99000000001e02c765"
+                                  ]
+                                },
+                                {
+                                  "name": "Apptronik",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "6932744c000000001f00c9f3"
+                                  ]
+                                },
+                                {
+                                  "name": "DeepWay深向",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "69157ac40000000005039157"
+                                  ]
+                                },
+                                {
+                                  "name": "灵御智能",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "68faf90d0000000005011fa2"
+                                  ]
+                                },
+                                {
+                                  "name": "AI医疗科技品牌",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "6732f52f000000001b013fdb"
+                                  ]
+                                },
+                                {
+                                  "name": "汤恩智能",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "67316440000000001b02e75e"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 6,
+                              "children": [],
+                              "total_posts_count": 6
+                            },
+                            {
+                              "name": "生物医药",
+                              "path": "/表象/实体/机构/商业/企业机构/科技企业/生物医药",
+                              "id": 15236,
+                              "source_stable_id": 777,
+                              "source_type": "实质",
+                              "description": "从事生物技术、医药研发的科技企业",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15835,
+                              "element_count": 1,
+                              "elements": [
+                                {
+                                  "name": "宜明生物",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "690ed2240000000005002b41"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 1,
+                              "children": [],
+                              "total_posts_count": 1
+                            }
+                          ],
+                          "total_posts_count": 10
+                        },
+                        {
+                          "name": "零售餐饮",
+                          "path": "/表象/实体/机构/商业/企业机构/零售餐饮",
+                          "id": 15836,
+                          "source_stable_id": 771,
+                          "source_type": "实质",
+                          "description": "从事零售、餐饮等消费服务的企业",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15782,
+                          "element_count": 0,
+                          "elements": [],
+                          "total_element_count": 11,
+                          "children": [
+                            {
+                              "name": "消费品牌",
+                              "path": "/表象/实体/机构/商业/企业机构/零售餐饮/消费品牌",
+                              "id": 15240,
+                              "source_stable_id": 781,
+                              "source_type": "实质",
+                              "description": "面向消费者的产品品牌企业",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15836,
+                              "element_count": 2,
+                              "elements": [
+                                {
+                                  "name": "QQ星",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "6810596c000000002301d1a6"
+                                  ]
+                                },
+                                {
+                                  "name": "知名品牌",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "65515618"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 2,
+                              "children": [],
+                              "total_posts_count": 1
+                            },
+                            {
+                              "name": "零售商超",
+                              "path": "/表象/实体/机构/商业/企业机构/零售餐饮/零售商超",
+                              "id": 15238,
+                              "source_stable_id": 779,
+                              "source_type": "实质",
+                              "description": "从事零售业务的商超、电商平台等企业",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15836,
+                              "element_count": 5,
+                              "elements": [
+                                {
+                                  "name": "京东电器",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "684a7e3c0000000023012b8d"
+                                  ]
+                                },
+                                {
+                                  "name": "淘宝闪购",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "68ef83150000000007035f42"
+                                  ]
+                                },
+                                {
+                                  "name": "胖东来",
+                                  "count": 3,
+                                  "post_ids": [
+                                    "57442193",
+                                    "57853678",
+                                    "65252544"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 5,
+                              "children": [],
+                              "total_posts_count": 2
+                            },
+                            {
+                              "name": "餐饮品牌",
+                              "path": "/表象/实体/机构/商业/企业机构/零售餐饮/餐饮品牌",
+                              "id": 15239,
+                              "source_stable_id": 780,
+                              "source_type": "实质",
+                              "description": "从事餐饮服务的连锁品牌和餐厅企业",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15836,
+                              "element_count": 4,
+                              "elements": [
+                                {
+                                  "name": "肯德基",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "67bee0df000000002802acd1"
+                                  ]
+                                },
+                                {
+                                  "name": "必胜客",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "6915dfc400000000070224d9"
+                                  ]
+                                },
+                                {
+                                  "name": "袁记云饺",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "690d977d0000000007036331"
+                                  ]
+                                },
+                                {
+                                  "name": "库迪咖啡",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "68c3933e000000001d00a902"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 4,
+                              "children": [],
+                              "total_posts_count": 4
+                            }
+                          ],
+                          "total_posts_count": 7
+                        }
+                      ],
+                      "total_posts_count": 35
+                    }
+                  ],
+                  "total_posts_count": 35
+                }
+              ],
+              "total_posts_count": 35
+            },
+            {
+              "name": "物品",
+              "path": "/表象/实体/物品",
+              "id": 15953,
+              "source_stable_id": 90,
+              "source_type": "实质",
+              "description": "日常生活和创作中的各类实物用品",
+              "category_nature": "内容",
+              "level": 3,
+              "parent_id": 15946,
+              "element_count": 0,
+              "elements": [],
+              "total_element_count": 532,
+              "children": [
+                {
+                  "name": "器材",
+                  "path": "/表象/实体/物品/器材",
+                  "id": 15986,
+                  "source_stable_id": 995,
+                  "source_type": "实质",
+                  "description": "功能性设备和专业装备类物品",
+                  "category_nature": "维度",
+                  "level": 4,
+                  "parent_id": 15953,
+                  "element_count": 0,
+                  "elements": [],
+                  "total_element_count": 51,
+                  "children": [
+                    {
+                      "name": "设备",
+                      "path": "/表象/实体/物品/器材/设备",
+                      "id": 15970,
+                      "source_stable_id": 267,
+                      "source_type": "实质",
+                      "description": "机械、电子、智能等各类功能性设备和工具产品",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15986,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 51,
+                      "children": [
+                        {
+                          "name": "专用设施",
+                          "path": "/表象/实体/物品/器材/设备/专用设施",
+                          "id": 15873,
+                          "source_stable_id": 1019,
+                          "source_type": "实质",
+                          "description": "工业生产和公共场所使用的专业设备设施",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15970,
+                          "element_count": 0,
+                          "elements": [],
+                          "total_element_count": 15,
+                          "children": [
+                            {
+                              "name": "公共设施",
+                              "path": "/表象/实体/物品/器材/设备/专用设施/公共设施",
+                              "id": 15353,
+                              "source_stable_id": 702,
+                              "source_type": "实质",
+                              "description": "电梯、游乐设施、电表等公共场所使用的设施设备",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15873,
+                              "element_count": 7,
+                              "elements": [
+                                {
+                                  "name": "蒸汽火车",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "6964be3900000000210282a4"
+                                  ]
+                                },
+                                {
+                                  "name": "蛇形滑梯",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "677b5460000000000b00d33e"
+                                  ]
+                                },
+                                {
+                                  "name": "无动力设施",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "68f1af7c0000000005003459",
+                                    "6911532d000000000503bd18"
+                                  ]
+                                },
+                                {
+                                  "name": "老款机械电表",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "64095002"
+                                  ]
+                                },
+                                {
+                                  "name": "新旧电表",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "64095002"
+                                  ]
+                                },
+                                {
+                                  "name": "广告牌",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "63712737"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 7,
+                              "children": [],
+                              "total_posts_count": 4
+                            },
+                            {
+                              "name": "工业设备",
+                              "path": "/表象/实体/物品/器材/设备/专用设施/工业设备",
+                              "id": 15352,
+                              "source_stable_id": 701,
+                              "source_type": "实质",
+                              "description": "无人矿卡、工业鼓风机、物流设备、芯片等工业生产设备",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15873,
+                              "element_count": 8,
+                              "elements": [
+                                {
+                                  "name": "工业鼓风机",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "67bafc850000000029036328"
+                                  ]
+                                },
+                                {
+                                  "name": "国产GPU",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "69328436000000001f006a54"
+                                  ]
+                                },
+                                {
+                                  "name": "物流设备",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "69145e8e0000000005003350"
+                                  ]
+                                },
+                                {
+                                  "name": "无人矿卡",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "69048be90000000005033c79"
+                                  ]
+                                },
+                                {
+                                  "name": "硅基OLED微显示屏",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "6902e20a0000000005030a7b"
+                                  ]
+                                },
+                                {
+                                  "name": "锌基电池产品",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "68f1e631000000000503111b"
+                                  ]
+                                },
+                                {
+                                  "name": "密态推理引擎",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "68ecc19400000000050028c1"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 8,
+                              "children": [],
+                              "total_posts_count": 7
+                            }
+                          ],
+                          "total_posts_count": 11
+                        },
+                        {
+                          "name": "智能产品",
+                          "path": "/表象/实体/物品/器材/设备/智能产品",
+                          "id": 15872,
+                          "source_stable_id": 1018,
+                          "source_type": "实质",
+                          "description": "智能机器人、智能硬件等前沿智能化设备产品",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15970,
+                          "element_count": 0,
+                          "elements": [],
+                          "total_element_count": 14,
+                          "children": [
+                            {
+                              "name": "智能机器人",
+                              "path": "/表象/实体/物品/器材/设备/智能产品/智能机器人",
+                              "id": 15350,
+                              "source_stable_id": 697,
+                              "source_type": "实质",
+                              "description": "具身智能机器人、清洁机器人、遥操作机器人等智能机器人设备",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15872,
+                              "element_count": 8,
+                              "elements": [
+                                {
+                                  "name": "轮腿式机器人",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "6927e806000000001f007658"
+                                  ]
+                                },
+                                {
+                                  "name": "机器人",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "6927e806000000001f007658"
+                                  ]
+                                },
+                                {
+                                  "name": "遥操作机器人系统",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "68faf90d0000000005011fa2"
+                                  ]
+                                },
+                                {
+                                  "name": "双臂具身智能机器人W1",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "68fa08f60000000005030ddc"
+                                  ]
+                                },
+                                {
+                                  "name": "具身智能机器人产品",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "68fa08f60000000005030ddc"
+                                  ]
+                                },
+                                {
+                                  "name": "商用清洁机器人",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "67316440000000001b02e75e"
+                                  ]
+                                },
+                                {
+                                  "name": "科技元素",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "65135248"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 8,
+                              "children": [],
+                              "total_posts_count": 4
+                            },
+                            {
+                              "name": "智能硬件",
+                              "path": "/表象/实体/物品/器材/设备/智能产品/智能硬件",
+                              "id": 15351,
+                              "source_stable_id": 698,
+                              "source_type": "实质",
+                              "description": "AI眼镜、智能家居、无人机标签等新型智能硬件产品",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15872,
+                              "element_count": 6,
+                              "elements": [
+                                {
+                                  "name": "智能家居产品",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "6900667d000000000300f640"
+                                  ]
+                                },
+                                {
+                                  "name": "全景相机",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "672ed3b6000000003c017f82"
+                                  ]
+                                },
+                                {
+                                  "name": "AI眼镜",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "692e7ccf000000001f00a137"
+                                  ]
+                                },
+                                {
+                                  "name": "伪卫星定位技术产品",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "690af75a000000000503b57e"
+                                  ]
+                                },
+                                {
+                                  "name": "DroneID运行识别标签",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "690075390000000004013a53"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 6,
+                              "children": [],
+                              "total_posts_count": 5
+                            }
+                          ],
+                          "total_posts_count": 9
+                        },
+                        {
+                          "name": "消费电子",
+                          "path": "/表象/实体/物品/器材/设备/消费电子",
+                          "id": 15871,
+                          "source_stable_id": 1017,
+                          "source_type": "实质",
+                          "description": "面向个人消费者的电子产品和软件应用",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15970,
+                          "element_count": 0,
+                          "elements": [],
+                          "total_element_count": 22,
+                          "children": [
+                            {
+                              "name": "家用电器",
+                              "path": "/表象/实体/物品/器材/设备/消费电子/家用电器",
+                              "id": 15347,
+                              "source_stable_id": 699,
+                              "source_type": "实质",
+                              "description": "空调、洗衣机、电视、吹风机等家庭使用的电器设备",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15871,
+                              "element_count": 8,
+                              "elements": [
+                                {
+                                  "name": "立式空调",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "684a7e3c0000000023012b8d"
+                                  ]
+                                },
+                                {
+                                  "name": "空调",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "684a7e3c0000000023012b8d"
+                                  ]
+                                },
+                                {
+                                  "name": "吹风机",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "680898fa000000001c01c23e"
+                                  ]
+                                },
+                                {
+                                  "name": "电视产品",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "68302e2b000000000f038e8c"
+                                  ]
+                                },
+                                {
+                                  "name": "支架",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "671f7fab000000003c01fffc"
+                                  ]
+                                },
+                                {
+                                  "name": "洗衣机产品",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "66519efa000000001500a2bb"
+                                  ]
+                                },
+                                {
+                                  "name": "复古电子",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "68b15f32000000001d00ef75"
+                                  ]
+                                },
+                                {
+                                  "name": "家电商品",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "688366bd000000000d024147"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 8,
+                              "children": [],
+                              "total_posts_count": 7
+                            },
+                            {
+                              "name": "手机产品",
+                              "path": "/表象/实体/物品/器材/设备/消费电子/手机产品",
+                              "id": 15348,
+                              "source_stable_id": 700,
+                              "source_type": "实质",
+                              "description": "智能手机及其屏幕、电池、充电支架等配件产品",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15871,
+                              "element_count": 6,
+                              "elements": [
+                                {
+                                  "name": "手机屏幕",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "692c3402000000000d03b7b7"
+                                  ]
+                                },
+                                {
+                                  "name": "三联屏",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "68c14b36000000001d02b44e"
+                                  ]
+                                },
+                                {
+                                  "name": "OPPO折叠屏手机",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "67aea9de000000001800d129"
+                                  ]
+                                },
+                                {
+                                  "name": "手机充电支架",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "6666dd86000000001500b7ff"
+                                  ]
+                                },
+                                {
+                                  "name": "手机电池",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "695f0b2b000000001a027365"
+                                  ]
+                                },
+                                {
+                                  "name": "OPPO手机",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "68f1b573000000000702052e"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 6,
+                              "children": [],
+                              "total_posts_count": 6
+                            },
+                            {
+                              "name": "软件应用",
+                              "path": "/表象/实体/物品/器材/设备/消费电子/软件应用",
+                              "id": 15349,
+                              "source_stable_id": 696,
+                              "source_type": "实质",
+                              "description": "手机APP、操作系统、软件界面等数字软件产品",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15871,
+                              "element_count": 8,
+                              "elements": [
+                                {
+                                  "name": "UC浏览器",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "6781eb19000000000b039867"
+                                  ]
+                                },
+                                {
+                                  "name": "打车软件",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "675fec1f000000000800c6f4"
+                                  ]
+                                },
+                                {
+                                  "name": "手机界面",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "675fec1f000000000800c6f4"
+                                  ]
+                                },
+                                {
+                                  "name": "ColorOS系统",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "68f1b573000000000702052e"
+                                  ]
+                                },
+                                {
+                                  "name": "APP界面",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "68d1ebb8000000001203fd96"
+                                  ]
+                                },
+                                {
+                                  "name": "QQ秀",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "68b15f32000000001d00ef75"
+                                  ]
+                                },
+                                {
+                                  "name": "扫描全能王APP",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "6879f4b1000000000b02c2e0"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 8,
+                              "children": [],
+                              "total_posts_count": 6
+                            }
+                          ],
+                          "total_posts_count": 17
+                        }
+                      ],
+                      "total_posts_count": 37
+                    }
+                  ],
+                  "total_posts_count": 37
+                },
+                {
+                  "name": "器物",
+                  "path": "/表象/实体/物品/器物",
+                  "id": 15861,
+                  "source_stable_id": 997,
+                  "source_type": "实质",
+                  "description": "具有特定文化或场景用途的各类物件",
+                  "category_nature": "维度",
+                  "level": 4,
+                  "parent_id": 15953,
+                  "element_count": 0,
+                  "elements": [],
+                  "total_element_count": 170,
+                  "children": [
+                    {
+                      "name": "道具",
+                      "path": "/表象/实体/物品/器物/道具",
+                      "id": 15340,
+                      "source_stable_id": 92,
+                      "source_type": "实质",
+                      "description": "拍摄、表演、创作中使用的辅助物品",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15861,
+                      "element_count": 7,
+                      "elements": [
+                        {
+                          "name": "堆冰块",
+                          "count": 1,
+                          "post_ids": [
+                            "686f606c00000000120167b5"
+                          ]
+                        },
+                        {
+                          "name": "趣味道具",
+                          "count": 1,
+                          "post_ids": [
+                            "66f51b90000000002a036660"
+                          ]
+                        },
+                        {
+                          "name": "实景元素",
+                          "count": 1,
+                          "post_ids": [
+                            "68ccd4e40000000012030372"
+                          ]
+                        },
+                        {
+                          "name": "道具配饰",
+                          "count": 1,
+                          "post_ids": [
+                            "12357835"
+                          ]
+                        },
+                        {
+                          "name": "建筑元素",
+                          "count": 1,
+                          "post_ids": [
+                            "60527248"
+                          ]
+                        },
+                        {
+                          "name": "体罚道具",
+                          "count": 1,
+                          "post_ids": [
+                            "64504122"
+                          ]
+                        },
+                        {
+                          "name": "快板",
+                          "count": 1,
+                          "post_ids": [
+                            "63972446"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 170,
+                      "children": [
+                        {
+                          "name": "书籍文献",
+                          "path": "/表象/实体/物品/器物/道具/书籍文献",
+                          "id": 14954,
+                          "source_stable_id": 274,
+                          "source_type": "实质",
+                          "description": "书刊、出版物等纸质知识载体",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15340,
+                          "element_count": 4,
+                          "elements": [
+                            {
+                              "name": "心理学书籍",
+                              "count": 2,
+                              "post_ids": [
+                                "68e6ecb90000000003021e34",
+                                "690333e70000000007022604"
+                              ]
+                            },
+                            {
+                              "name": "励志书籍",
+                              "count": 1,
+                              "post_ids": [
+                                "6882f593000000001100272d"
+                              ]
+                            },
+                            {
+                              "name": "《因为你是一个很棒的女孩》",
+                              "count": 1,
+                              "post_ids": [
+                                "68708544000000000d026732"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 4,
+                          "children": [],
+                          "total_posts_count": 4
+                        },
+                        {
+                          "name": "创意物件",
+                          "path": "/表象/实体/物品/器物/道具/创意物件",
+                          "id": 14956,
+                          "source_stable_id": 277,
+                          "source_type": "实质",
+                          "description": "通过创意改造或艺术化加工产生的非常规物品",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15340,
+                          "element_count": 1,
+                          "elements": [
+                            {
+                              "name": "微缩道具",
+                              "count": 1,
+                              "post_ids": [
+                                "12357835"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 33,
+                          "children": [
+                            {
+                              "name": "创意类型",
+                              "path": "/表象/实体/物品/器物/道具/创意物件/创意类型",
+                              "id": 15840,
+                              "source_stable_id": 834,
+                              "source_type": "实质",
+                              "description": "按创意表现形式和制作方式划分",
+                              "category_nature": "维度",
+                              "level": 7,
+                              "parent_id": 14956,
+                              "element_count": 0,
+                              "elements": [],
+                              "total_element_count": 32,
+                              "children": [
+                                {
+                                  "name": "功能改造",
+                                  "path": "/表象/实体/物品/器物/道具/创意物件/创意类型/功能改造",
+                                  "id": 15271,
+                                  "source_stable_id": 837,
+                                  "source_type": "实质",
+                                  "description": "对现有物品进行功能性改造的创意装置",
+                                  "category_nature": "领域",
+                                  "level": 8,
+                                  "parent_id": 15840,
+                                  "element_count": 6,
+                                  "elements": [
+                                    {
+                                      "name": "蟑螂饭店",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "6921937a000000001b0278d1"
+                                      ]
+                                    },
+                                    {
+                                      "name": "袖箭式",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "67ee4e29000000001200f3c2"
+                                      ]
+                                    },
+                                    {
+                                      "name": "手机隐藏器",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "67ee4e29000000001200f3c2"
+                                      ]
+                                    },
+                                    {
+                                      "name": "神器",
+                                      "count": 2,
+                                      "post_ids": [
+                                        "662096bc000000000d03035d",
+                                        "67ee4e29000000001200f3c2"
+                                      ]
+                                    },
+                                    {
+                                      "name": "挂脖式折叠电脑桌板",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "67c17568000000000603b420"
+                                      ]
+                                    }
+                                  ],
+                                  "total_element_count": 6,
+                                  "children": [],
+                                  "total_posts_count": 4
+                                },
+                                {
+                                  "name": "手工制作",
+                                  "path": "/表象/实体/物品/器物/道具/创意物件/创意类型/手工制作",
+                                  "id": 15269,
+                                  "source_stable_id": 835,
+                                  "source_type": "实质",
+                                  "description": "通过手工技艺制作的创意物品",
+                                  "category_nature": "领域",
+                                  "level": 8,
+                                  "parent_id": 15840,
+                                  "element_count": 6,
+                                  "elements": [
+                                    {
+                                      "name": "时钟",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "68528a360000000010010c6d"
+                                      ]
+                                    },
+                                    {
+                                      "name": "DIY纸杯手镯",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "67adb23f000000002a00c240"
+                                      ]
+                                    },
+                                    {
+                                      "name": "成果",
+                                      "count": 2,
+                                      "post_ids": [
+                                        "6687d458000000000a026f91",
+                                        "672ed3b6000000003c017f82"
+                                      ]
+                                    },
+                                    {
+                                      "name": "动物手作",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "691d3112000000001e036559"
+                                      ]
+                                    },
+                                    {
+                                      "name": "底稿素材",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "691d3112000000001e036559"
+                                      ]
+                                    }
+                                  ],
+                                  "total_element_count": 6,
+                                  "children": [],
+                                  "total_posts_count": 5
+                                },
+                                {
+                                  "name": "艺术装置",
+                                  "path": "/表象/实体/物品/器物/道具/创意物件/创意类型/艺术装置",
+                                  "id": 15270,
+                                  "source_stable_id": 836,
+                                  "source_type": "实质",
+                                  "description": "用于公共空间展示的大型艺术造型装置",
+                                  "category_nature": "领域",
+                                  "level": 8,
+                                  "parent_id": 15840,
+                                  "element_count": 5,
+                                  "elements": [
+                                    {
+                                      "name": "粉色迷宫",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "693a2428000000001e027639"
+                                      ]
+                                    },
+                                    {
+                                      "name": "猫头鹰滑梯",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "6923b4b2000000001e03531a"
+                                      ]
+                                    },
+                                    {
+                                      "name": "松果滑梯",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "691acd15000000000402134e"
+                                      ]
+                                    },
+                                    {
+                                      "name": "多肉精灵",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "68a4107f000000001c00e8e9"
+                                      ]
+                                    },
+                                    {
+                                      "name": "景观装置",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "68a4107f000000001c00e8e9"
+                                      ]
+                                    }
+                                  ],
+                                  "total_element_count": 5,
+                                  "children": [],
+                                  "total_posts_count": 4
+                                },
+                                {
+                                  "name": "视觉创意",
+                                  "path": "/表象/实体/物品/器物/道具/创意物件/创意类型/视觉创意",
+                                  "id": 15272,
+                                  "source_stable_id": 838,
+                                  "source_type": "实质",
+                                  "description": "通过摄影或视觉技巧呈现的创意效果",
+                                  "category_nature": "领域",
+                                  "level": 8,
+                                  "parent_id": 15840,
+                                  "element_count": 6,
+                                  "elements": [
+                                    {
+                                      "name": "夸张道具",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "67e37ff8000000001c008b5e"
+                                      ]
+                                    },
+                                    {
+                                      "name": "咖啡杯中漂浮床铺",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "67d7a294000000001c03eef9"
+                                      ]
+                                    },
+                                    {
+                                      "name": "人体茶具",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "67862d98000000001a01f443"
+                                      ]
+                                    },
+                                    {
+                                      "name": "手机悬挂车外",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "6794ca60000000001801ba29"
+                                      ]
+                                    },
+                                    {
+                                      "name": "人体风筝",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "664599b9000000001e01d218"
+                                      ]
+                                    },
+                                    {
+                                      "name": "喷泉婚纱",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "65febd8e0000000012035538"
+                                      ]
+                                    }
+                                  ],
+                                  "total_element_count": 6,
+                                  "children": [],
+                                  "total_posts_count": 6
+                                },
+                                {
+                                  "name": "趣味造型",
+                                  "path": "/表象/实体/物品/器物/道具/创意物件/创意类型/趣味造型",
+                                  "id": 15273,
+                                  "source_stable_id": 839,
+                                  "source_type": "实质",
+                                  "description": "具有趣味性或反常规造型的创意物品",
+                                  "category_nature": "领域",
+                                  "level": 8,
+                                  "parent_id": 15840,
+                                  "element_count": 9,
+                                  "elements": [
+                                    {
+                                      "name": "愤怒的苹果",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "6913cafd000000000703402b"
+                                      ]
+                                    },
+                                    {
+                                      "name": "生肉床垫",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "67b2a7f7000000002802a0d7"
+                                      ]
+                                    },
+                                    {
+                                      "name": "大脑造型",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "6781eb19000000000b039867"
+                                      ]
+                                    },
+                                    {
+                                      "name": "猕猴桃小鸡切面",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "683d8695000000001200012a"
+                                      ]
+                                    },
+                                    {
+                                      "name": "冰块版",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "68383eb1000000000303e7ef"
+                                      ]
+                                    },
+                                    {
+                                      "name": "血泊造型",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "680e2433000000000e004e91"
+                                      ]
+                                    },
+                                    {
+                                      "name": "自然道具",
+                                      "count": 2,
+                                      "post_ids": [
+                                        "675c19320000000002017d1f",
+                                        "67bc233e000000000b0160fa"
+                                      ]
+                                    },
+                                    {
+                                      "name": "仿真锦旗",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "6880a7a7000000000b02f5a6"
+                                      ]
+                                    }
+                                  ],
+                                  "total_element_count": 9,
+                                  "children": [],
+                                  "total_posts_count": 9
+                                }
+                              ],
+                              "total_posts_count": 28
+                            }
+                          ],
+                          "total_posts_count": 28
+                        },
+                        {
+                          "name": "文物遗存",
+                          "path": "/表象/实体/物品/器物/道具/文物遗存",
+                          "id": 15791,
+                          "source_stable_id": 275,
+                          "source_type": "实质",
+                          "description": "历史文物、遗物、纪念物等承载历史记忆的物品",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15340,
+                          "element_count": 0,
+                          "elements": [],
+                          "total_element_count": 1,
+                          "children": [
+                            {
+                              "name": "怀旧器物",
+                              "path": "/表象/实体/物品/器物/道具/文物遗存/怀旧器物",
+                              "id": 15700,
+                              "source_stable_id": 1563,
+                              "source_type": "实质",
+                              "description": "具有年代感的老物件、旧货币、传统工具等怀旧物品",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15791,
+                              "element_count": 1,
+                              "elements": [
+                                {
+                                  "name": "怀旧生活元素",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "64965843"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 1,
+                              "children": [],
+                              "total_posts_count": 0
+                            }
+                          ],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "生活用品",
+                          "path": "/表象/实体/物品/器物/道具/生活用品",
+                          "id": 14953,
+                          "source_stable_id": 273,
+                          "source_type": "实质",
+                          "description": "日常生活中使用的各类实用器物和物品",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15340,
+                          "element_count": 4,
+                          "elements": [
+                            {
+                              "name": "卷轴",
+                              "count": 2,
+                              "post_ids": [
+                                "64203380",
+                                "64851184"
+                              ]
+                            },
+                            {
+                              "name": "祖传教育神器",
+                              "count": 2,
+                              "post_ids": [
+                                "64504122",
+                                "64965843"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 115,
+                          "children": [
+                            {
+                              "name": "专用器物",
+                              "path": "/表象/实体/物品/器物/道具/生活用品/专用器物",
+                              "id": 14981,
+                              "source_stable_id": 318,
+                              "source_type": "实质",
+                              "description": "特定场景下使用的展示物料、制作材料和户外器具等辅助性物品",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 14953,
+                              "element_count": 15,
+                              "elements": [
+                                {
+                                  "name": "孤舟",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "6975b27c000000002202d2fb",
+                                    "6975b2d7000000002200b4ae"
+                                  ]
+                                },
+                                {
+                                  "name": "网球拍",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "67b9840d000000000603a241",
+                                    "67e243d0000000001d02495b"
+                                  ]
+                                },
+                                {
+                                  "name": "绕线架",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "69185d49000000000d00f94e"
+                                  ]
+                                },
+                                {
+                                  "name": "超长密码锁",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "68909e20000000000403fa4e"
+                                  ]
+                                },
+                                {
+                                  "name": "硅胶",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "67fe11bb000000000d017b89"
+                                  ]
+                                },
+                                {
+                                  "name": "卡片",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "6687d458000000000a026f91"
+                                  ]
+                                },
+                                {
+                                  "name": "野餐布",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "664c38f0000000001303c21f"
+                                  ]
+                                },
+                                {
+                                  "name": "自行车座",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "65f4359b00000000140079b5"
+                                  ]
+                                },
+                                {
+                                  "name": "金色罐装",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "673c37610000000007029ced"
+                                  ]
+                                },
+                                {
+                                  "name": "环保材料",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "691d3112000000001e036559"
+                                  ]
+                                },
+                                {
+                                  "name": "竹筏",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "691acd15000000000402134e"
+                                  ]
+                                },
+                                {
+                                  "name": "横幅",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "6880a7a7000000000b02f5a6"
+                                  ]
+                                },
+                                {
+                                  "name": "草木灰",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "59943231"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 15,
+                              "children": [],
+                              "total_posts_count": 14
+                            },
+                            {
+                              "name": "个护保健",
+                              "path": "/表象/实体/物品/器物/道具/生活用品/个护保健",
+                              "id": 14977,
+                              "source_stable_id": 314,
+                              "source_type": "实质",
+                              "description": "个人卫生护理和健康保健类产品",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 14953,
+                              "element_count": 7,
+                              "elements": [
+                                {
+                                  "name": "海盐水喷雾",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "682ede8f000000002202bff2"
+                                  ]
+                                },
+                                {
+                                  "name": "清咽滴丸产品",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "680898fa000000001c01c23e"
+                                  ]
+                                },
+                                {
+                                  "name": "鼻炎药品",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "6711d712000000001b012783",
+                                    "68286f560000000012006015"
+                                  ]
+                                },
+                                {
+                                  "name": "液体卫生巾",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "68e8cac8000000000700da88"
+                                  ]
+                                },
+                                {
+                                  "name": "舒肤佳沐浴露",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "68b15f32000000001d00ef75"
+                                  ]
+                                },
+                                {
+                                  "name": "飞科剃须刀",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "68875186000000002501649d"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 7,
+                              "children": [],
+                              "total_posts_count": 7
+                            },
+                            {
+                              "name": "宠物用品",
+                              "path": "/表象/实体/物品/器物/道具/生活用品/宠物用品",
+                              "id": 14978,
+                              "source_stable_id": 315,
+                              "source_type": "实质",
+                              "description": "宠物饲养、护理和营养相关物品",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 14953,
+                              "element_count": 3,
+                              "elements": [
+                                {
+                                  "name": "伊丽莎白圈",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "686f606c00000000120167b5"
+                                  ]
+                                },
+                                {
+                                  "name": "宠物用品",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "686f606c00000000120167b5"
+                                  ]
+                                },
+                                {
+                                  "name": "宠物营养补充剂",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "68abe632000000001c0348c0"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 3,
+                              "children": [],
+                              "total_posts_count": 2
+                            },
+                            {
+                              "name": "家居器具",
+                              "path": "/表象/实体/物品/器物/道具/生活用品/家居器具",
+                              "id": 15796,
+                              "source_stable_id": 313,
+                              "source_type": "实质",
+                              "description": "家庭日常使用的器皿、寝具、清洁、收纳和电子类用品",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 14953,
+                              "element_count": 0,
+                              "elements": [],
+                              "total_element_count": 32,
+                              "children": [
+                                {
+                                  "name": "其他器具",
+                                  "path": "/表象/实体/物品/器物/道具/生活用品/家居器具/其他器具",
+                                  "id": 15493,
+                                  "source_stable_id": 1258,
+                                  "source_type": "实质",
+                                  "description": "不属于上述分类的其他家居器具",
+                                  "category_nature": "领域",
+                                  "level": 8,
+                                  "parent_id": 15796,
+                                  "element_count": 5,
+                                  "elements": [
+                                    {
+                                      "name": "易拉罐拉环",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "682ede8f000000002202bff2"
+                                      ]
+                                    },
+                                    {
+                                      "name": "肥牛卷包装盒",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "67b2a7f7000000002802a0d7"
+                                      ]
+                                    },
+                                    {
+                                      "name": "茶包标签",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "67862d98000000001a01f443"
+                                      ]
+                                    },
+                                    {
+                                      "name": "捕鼠夹",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "65f4359b00000000140079b5"
+                                      ]
+                                    },
+                                    {
+                                      "name": "浴室用品",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "6965ea53000000000e00f0f1"
+                                      ]
+                                    }
+                                  ],
+                                  "total_element_count": 5,
+                                  "children": [],
+                                  "total_posts_count": 5
+                                },
+                                {
+                                  "name": "厨房餐饮",
+                                  "path": "/表象/实体/物品/器物/道具/生活用品/家居器具/厨房餐饮",
+                                  "id": 15488,
+                                  "source_stable_id": 1253,
+                                  "source_type": "实质",
+                                  "description": "厨房烹饪和餐饮相关的器具,包括厨具、餐具、饮具等",
+                                  "category_nature": "领域",
+                                  "level": 8,
+                                  "parent_id": 15796,
+                                  "element_count": 4,
+                                  "elements": [
+                                    {
+                                      "name": "杯子",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "662ce86d0000000003023f0a"
+                                      ]
+                                    },
+                                    {
+                                      "name": "猫咪杯",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "69535514000000001e032b26"
+                                      ]
+                                    },
+                                    {
+                                      "name": "水杯",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "692d3b99000000001e022295"
+                                      ]
+                                    },
+                                    {
+                                      "name": "汤圆碗",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "65600878"
+                                      ]
+                                    }
+                                  ],
+                                  "total_element_count": 4,
+                                  "children": [],
+                                  "total_posts_count": 3
+                                },
+                                {
+                                  "name": "寝具用品",
+                                  "path": "/表象/实体/物品/器物/道具/生活用品/家居器具/寝具用品",
+                                  "id": 15490,
+                                  "source_stable_id": 1255,
+                                  "source_type": "实质",
+                                  "description": "睡眠和休息相关的床上用品和辅助器具",
+                                  "category_nature": "领域",
+                                  "level": 8,
+                                  "parent_id": 15796,
+                                  "element_count": 3,
+                                  "elements": [
+                                    {
+                                      "name": "午睡装备",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "61bdc28b0000000001024896"
+                                      ]
+                                    },
+                                    {
+                                      "name": "多层床单",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "68286f560000000012006015"
+                                      ]
+                                    },
+                                    {
+                                      "name": "午睡枕",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "680e2433000000000e004e91"
+                                      ]
+                                    }
+                                  ],
+                                  "total_element_count": 3,
+                                  "children": [],
+                                  "total_posts_count": 3
+                                },
+                                {
+                                  "name": "收纳整理",
+                                  "path": "/表象/实体/物品/器物/道具/生活用品/家居器具/收纳整理",
+                                  "id": 15492,
+                                  "source_stable_id": 1257,
+                                  "source_type": "实质",
+                                  "description": "用于物品存放、整理和收纳的器具",
+                                  "category_nature": "领域",
+                                  "level": 8,
+                                  "parent_id": 15796,
+                                  "element_count": 4,
+                                  "elements": [
+                                    {
+                                      "name": "衣架",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "680898fa000000001c01c23e"
+                                      ]
+                                    },
+                                    {
+                                      "name": "晾衣架",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "67bee0df000000002802acd1"
+                                      ]
+                                    },
+                                    {
+                                      "name": "鞋架",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "68fb6a5c000000000302e5de"
+                                      ]
+                                    },
+                                    {
+                                      "name": "收纳容器",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "696f2f97000000000e00e33c"
+                                      ]
+                                    }
+                                  ],
+                                  "total_element_count": 4,
+                                  "children": [],
+                                  "total_posts_count": 4
+                                },
+                                {
+                                  "name": "清洁工具",
+                                  "path": "/表象/实体/物品/器物/道具/生活用品/家居器具/清洁工具",
+                                  "id": 15491,
+                                  "source_stable_id": 1256,
+                                  "source_type": "实质",
+                                  "description": "用于家居清洁和除虫的工具器具",
+                                  "category_nature": "领域",
+                                  "level": 8,
+                                  "parent_id": 15796,
+                                  "element_count": 5,
+                                  "elements": [
+                                    {
+                                      "name": "电蚊拍",
+                                      "count": 3,
+                                      "post_ids": [
+                                        "67b9840d000000000603a241",
+                                        "67e243d0000000001d02495b"
+                                      ]
+                                    },
+                                    {
+                                      "name": "蟑螂屋",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "6921937a000000001b0278d1"
+                                      ]
+                                    },
+                                    {
+                                      "name": "自动粘毛机",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "6711d712000000001b012783"
+                                      ]
+                                    }
+                                  ],
+                                  "total_element_count": 5,
+                                  "children": [],
+                                  "total_posts_count": 4
+                                },
+                                {
+                                  "name": "电子设备",
+                                  "path": "/表象/实体/物品/器物/道具/生活用品/家居器具/电子设备",
+                                  "id": 15489,
+                                  "source_stable_id": 1254,
+                                  "source_type": "实质",
+                                  "description": "家居环境中使用的电子类设备和配件",
+                                  "category_nature": "领域",
+                                  "level": 8,
+                                  "parent_id": 15796,
+                                  "element_count": 11,
+                                  "elements": [
+                                    {
+                                      "name": "手机",
+                                      "count": 6,
+                                      "post_ids": [
+                                        "67440b66000000000202827e",
+                                        "6794ca60000000001801ba29",
+                                        "67aea9de000000001800d129",
+                                        "67ee4e29000000001200f3c2",
+                                        "68070ccb000000000f039a1b",
+                                        "692c3402000000000d03b7b7"
+                                      ]
+                                    },
+                                    {
+                                      "name": "手机支架",
+                                      "count": 4,
+                                      "post_ids": [
+                                        "67389194000000001d038599",
+                                        "6752d19b000000000202b816",
+                                        "67aea9de000000001800d129"
+                                      ]
+                                    },
+                                    {
+                                      "name": "鼠标垫",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "67aea9de000000001800d129"
+                                      ]
+                                    }
+                                  ],
+                                  "total_element_count": 11,
+                                  "children": [],
+                                  "total_posts_count": 8
+                                }
+                              ],
+                              "total_posts_count": 27
+                            },
+                            {
+                              "name": "玩具游戏",
+                              "path": "/表象/实体/物品/器物/道具/生活用品/玩具游戏",
+                              "id": 14979,
+                              "source_stable_id": 316,
+                              "source_type": "实质",
+                              "description": "玩具、桌游和娱乐休闲类物品",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 14953,
+                              "element_count": 11,
+                              "elements": [
+                                {
+                                  "name": "扑克牌",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "6687d458000000000a026f91"
+                                  ]
+                                },
+                                {
+                                  "name": "桌游",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "69672e2d000000001a026263"
+                                  ]
+                                },
+                                {
+                                  "name": "幼儿桌游",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "69672e2d000000001a026263"
+                                  ]
+                                },
+                                {
+                                  "name": "游乐设施",
+                                  "count": 4,
+                                  "post_ids": [
+                                    "69003bb30000000004015797",
+                                    "691acd15000000000402134e",
+                                    "692fa7e0000000001e039786",
+                                    "693a2428000000001e027639"
+                                  ]
+                                },
+                                {
+                                  "name": "小猪玩偶",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "68e9b94d0000000007036a6a"
+                                  ]
+                                },
+                                {
+                                  "name": "毛绒玩具",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "68db5bd00000000007015474"
+                                  ]
+                                },
+                                {
+                                  "name": "QQ炫舞2",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "68946e0d000000002500ef6e"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 11,
+                              "children": [],
+                              "total_posts_count": 9
+                            },
+                            {
+                              "name": "礼赠物品",
+                              "path": "/表象/实体/物品/器物/道具/生活用品/礼赠物品",
+                              "id": 14980,
+                              "source_stable_id": 317,
+                              "source_type": "实质",
+                              "description": "礼品、赠品和礼盒包装类物品",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 14953,
+                              "element_count": 10,
+                              "elements": [
+                                {
+                                  "name": "咖啡联名礼盒",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "685e7903000000000b02c13e"
+                                  ]
+                                },
+                                {
+                                  "name": "礼物",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "6649dbe3000000000c018112",
+                                    "67adb23f000000002a00c240"
+                                  ]
+                                },
+                                {
+                                  "name": "散装礼物",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "67adb23f000000002a00c240"
+                                  ]
+                                },
+                                {
+                                  "name": "礼盒",
+                                  "count": 3,
+                                  "post_ids": [
+                                    "65515618",
+                                    "6634a322000000001e01bcd5"
+                                  ]
+                                },
+                                {
+                                  "name": "过年礼盒",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "65515618"
+                                  ]
+                                },
+                                {
+                                  "name": "劣质年货礼盒",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "65515618"
+                                  ]
+                                },
+                                {
+                                  "name": "填充物",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "65515618"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 10,
+                              "children": [],
+                              "total_posts_count": 4
+                            },
+                            {
+                              "name": "通用指称",
+                              "path": "/表象/实体/物品/器物/道具/生活用品/通用指称",
+                              "id": 14976,
+                              "source_stable_id": 312,
+                              "source_type": "实质",
+                              "description": "对日常物品的概括性描述和泛化指称,不指向特定品类的统称概念",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 14953,
+                              "element_count": 33,
+                              "elements": [
+                                {
+                                  "name": "生活元素",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "2e93c00132e3a6a30c06efb6984ab71a"
+                                  ]
+                                },
+                                {
+                                  "name": "生活化道具",
+                                  "count": 8,
+                                  "post_ids": [
+                                    "6781eb19000000000b039867",
+                                    "67adb23f000000002a00c240",
+                                    "67bee0df000000002802acd1",
+                                    "67e243d0000000001d02495b",
+                                    "68077d02000000001c02dd81",
+                                    "680898fa000000001c01c23e",
+                                    "682ede8f000000002202bff2",
+                                    "68528a360000000010010c6d"
+                                  ]
+                                },
+                                {
+                                  "name": "道具",
+                                  "count": 4,
+                                  "post_ids": [
+                                    "66f51b90000000002a036660",
+                                    "67bafc850000000029036328",
+                                    "67d55ec7000000000e004e69",
+                                    "6900667d000000000300f640"
+                                  ]
+                                },
+                                {
+                                  "name": "日常物品",
+                                  "count": 12,
+                                  "post_ids": [
+                                    "65f4359b00000000140079b5",
+                                    "662096bc000000000d03035d",
+                                    "662ce86d0000000003023f0a",
+                                    "6666dd86000000001500b7ff",
+                                    "66d1ab42000000001f015507",
+                                    "6711d712000000001b012783",
+                                    "676535f4000000000b00dfd1",
+                                    "67c17568000000000603b420",
+                                    "68286f560000000012006015",
+                                    "69185d49000000000d00f94e",
+                                    "6921937a000000001b0278d1"
+                                  ]
+                                },
+                                {
+                                  "name": "危险物品",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "65f4359b00000000140079b5"
+                                  ]
+                                },
+                                {
+                                  "name": "好物",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "69756d90000000001a020c81"
+                                  ]
+                                },
+                                {
+                                  "name": "奢侈品符号",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "68d0089400000000120172a5",
+                                    "68fa029e0000000007022932"
+                                  ]
+                                },
+                                {
+                                  "name": "素材",
+                                  "count": 3,
+                                  "post_ids": [
+                                    "55099131",
+                                    "57028518",
+                                    "64801086"
+                                  ]
+                                },
+                                {
+                                  "name": "民生实物",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "64589911"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 33,
+                              "children": [],
+                              "total_posts_count": 26
+                            }
+                          ],
+                          "total_posts_count": 69
+                        },
+                        {
+                          "name": "节庆饰物",
+                          "path": "/表象/实体/物品/器物/道具/节庆饰物",
+                          "id": 14955,
+                          "source_stable_id": 276,
+                          "source_type": "实质",
+                          "description": "传统文化和节庆中的装饰及吉祥物品",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15340,
+                          "element_count": 10,
+                          "elements": [
+                            {
+                              "name": "喜糖卡",
+                              "count": 1,
+                              "post_ids": [
+                                "6687d458000000000a026f91"
+                              ]
+                            },
+                            {
+                              "name": "喜糖礼盒",
+                              "count": 1,
+                              "post_ids": [
+                                "6687d458000000000a026f91"
+                              ]
+                            },
+                            {
+                              "name": "南瓜装扮",
+                              "count": 1,
+                              "post_ids": [
+                                "6911532d000000000503bd18"
+                              ]
+                            },
+                            {
+                              "name": "福袋",
+                              "count": 2,
+                              "post_ids": [
+                                "65233075",
+                                "65298913"
+                              ]
+                            },
+                            {
+                              "name": "灯笼",
+                              "count": 1,
+                              "post_ids": [
+                                "65196789"
+                              ]
+                            },
+                            {
+                              "name": "骏马",
+                              "count": 1,
+                              "post_ids": [
+                                "64851907"
+                              ]
+                            },
+                            {
+                              "name": "红灯笼",
+                              "count": 2,
+                              "post_ids": [
+                                "64203380",
+                                "65450821"
+                              ]
+                            },
+                            {
+                              "name": "巨型‘寿’字红灯笼",
+                              "count": 1,
+                              "post_ids": [
+                                "45436779"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 10,
+                          "children": [],
+                          "total_posts_count": 2
+                        }
+                      ],
+                      "total_posts_count": 87
+                    }
+                  ],
+                  "total_posts_count": 87
+                },
+                {
+                  "name": "穿戴",
+                  "path": "/表象/实体/物品/穿戴",
+                  "id": 15972,
+                  "source_stable_id": 994,
+                  "source_type": "实质",
+                  "description": "穿着佩戴和个人修饰相关的物品",
+                  "category_nature": "维度",
+                  "level": 4,
+                  "parent_id": 15953,
+                  "element_count": 0,
+                  "elements": [],
+                  "total_element_count": 176,
+                  "children": [
+                    {
+                      "name": "服饰",
+                      "path": "/表象/实体/物品/穿戴/服饰",
+                      "id": 15862,
+                      "source_stable_id": 91,
+                      "source_type": "实质",
+                      "description": "人物穿着的衣服、配饰等",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15972,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 130,
+                      "children": [
+                        {
+                          "name": "穿搭",
+                          "path": "/表象/实体/物品/穿戴/服饰/穿搭",
+                          "id": 14966,
+                          "source_stable_id": 299,
+                          "source_type": "实质",
+                          "description": "服装搭配方案、整体造型概念和着装效果",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15862,
+                          "element_count": 40,
+                          "elements": [
+                            {
+                              "name": "穿搭",
+                              "count": 6,
+                              "post_ids": [
+                                "6960e87a000000000e00c216",
+                                "696f0da3000000001a029d29",
+                                "6973742d000000002801e8aa",
+                                "69770dc6000000001a02efe9",
+                                "6978db47000000001a0293e7",
+                                "697a20e9000000001a033338"
+                              ]
+                            },
+                            {
+                              "name": "穿搭组合",
+                              "count": 1,
+                              "post_ids": [
+                                "697a20e9000000001a033338"
+                              ]
+                            },
+                            {
+                              "name": "旅行穿搭",
+                              "count": 1,
+                              "post_ids": [
+                                "6978db47000000001a0293e7"
+                              ]
+                            },
+                            {
+                              "name": "新年穿搭",
+                              "count": 5,
+                              "post_ids": [
+                                "69647323000000001a01ef60",
+                                "6969068e000000000d008b48",
+                                "696a5a3e000000001a022b1d",
+                                "696f0da3000000001a029d29",
+                                "6971ec6f000000001a02d248"
+                              ]
+                            },
+                            {
+                              "name": "穿搭造型",
+                              "count": 13,
+                              "post_ids": [
+                                "68b953e4000000001d00f96f",
+                                "68e9b94d0000000007036a6a",
+                                "69002ba70000000007008bcc",
+                                "6960e87a000000000e00c216",
+                                "69647323000000001a01ef60",
+                                "6965d491000000000e00f9b0",
+                                "69679e0e000000000e03ca97",
+                                "6969068e000000000d008b48",
+                                "696a5a3e000000001a022b1d",
+                                "696b658e000000001a01d2ef",
+                                "696f0da3000000001a029d29",
+                                "696f8d95000000001a028641",
+                                "6971ec6f000000001a02d248"
+                              ]
+                            },
+                            {
+                              "name": "机场候机穿搭",
+                              "count": 1,
+                              "post_ids": [
+                                "6971878d000000001a01e6cc"
+                              ]
+                            },
+                            {
+                              "name": "复古穿搭",
+                              "count": 1,
+                              "post_ids": [
+                                "696b658e000000001a01d2ef"
+                              ]
+                            },
+                            {
+                              "name": "夏季穿搭",
+                              "count": 1,
+                              "post_ids": [
+                                "696b658e000000001a01d2ef"
+                              ]
+                            },
+                            {
+                              "name": "元素",
+                              "count": 4,
+                              "post_ids": [
+                                "6729dd5300000000190183a8",
+                                "6774ab9a0000000009015a3f",
+                                "696a5a3e000000001a022b1d",
+                                "696b658e000000001a01d2ef"
+                              ]
+                            },
+                            {
+                              "name": "穿搭风格",
+                              "count": 1,
+                              "post_ids": [
+                                "6965d491000000000e00f9b0"
+                              ]
+                            },
+                            {
+                              "name": "季节性",
+                              "count": 1,
+                              "post_ids": [
+                                "6965d491000000000e00f9b0"
+                              ]
+                            },
+                            {
+                              "name": "紫色系穿搭",
+                              "count": 1,
+                              "post_ids": [
+                                "6964d4bf000000001a031a54"
+                              ]
+                            },
+                            {
+                              "name": "冬季穿搭",
+                              "count": 1,
+                              "post_ids": [
+                                "6960e87a000000000e00c216"
+                              ]
+                            },
+                            {
+                              "name": "奇特雨裤穿搭",
+                              "count": 1,
+                              "post_ids": [
+                                "6819f25e000000002301cca5"
+                              ]
+                            },
+                            {
+                              "name": "奇装异服",
+                              "count": 1,
+                              "post_ids": [
+                                "67e37ff8000000001c008b5e"
+                              ]
+                            },
+                            {
+                              "name": "辣妹穿搭",
+                              "count": 1,
+                              "post_ids": [
+                                "68b15f32000000001d00ef75"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 40,
+                          "children": [],
+                          "total_posts_count": 24
+                        },
+                        {
+                          "name": "衣物",
+                          "path": "/表象/实体/物品/穿戴/服饰/衣物",
+                          "id": 14963,
+                          "source_stable_id": 296,
+                          "source_type": "实质",
+                          "description": "上装、外套、全身衣物等各类穿着服装主体",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15862,
+                          "element_count": 3,
+                          "elements": [
+                            {
+                              "name": "黑白服饰",
+                              "count": 1,
+                              "post_ids": [
+                                "89627e4bf8ad865f175c54e3b0ddd2cd"
+                              ]
+                            },
+                            {
+                              "name": "衣物",
+                              "count": 1,
+                              "post_ids": [
+                                "67d55ec7000000000e004e69"
+                              ]
+                            },
+                            {
+                              "name": "深色衣物",
+                              "count": 1,
+                              "post_ids": [
+                                "67d55ec7000000000e004e69"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 43,
+                          "children": [
+                            {
+                              "name": "上衣",
+                              "path": "/表象/实体/物品/穿戴/服饰/衣物/上衣",
+                              "id": 15254,
+                              "source_stable_id": 816,
+                              "source_type": "实质",
+                              "description": "穿在上半身的衣物,包括T恤、卫衣、毛衣等",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 14963,
+                              "element_count": 4,
+                              "elements": [
+                                {
+                                  "name": "灰色卫衣",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "697638e8000000001a025711"
+                                  ]
+                                },
+                                {
+                                  "name": "神灯毛衣",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "675fec1f000000000800c6f4"
+                                  ]
+                                },
+                                {
+                                  "name": "T恤",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "66519efa000000001500a2bb",
+                                    "66d1ab42000000001f015507"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 4,
+                              "children": [],
+                              "total_posts_count": 4
+                            },
+                            {
+                              "name": "下装",
+                              "path": "/表象/实体/物品/穿戴/服饰/衣物/下装",
+                              "id": 15839,
+                              "source_stable_id": 817,
+                              "source_type": "实质",
+                              "description": "穿在下半身的衣物,包括裤装和裙装",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 14963,
+                              "element_count": 0,
+                              "elements": [],
+                              "total_element_count": 11,
+                              "children": [
+                                {
+                                  "name": "裙装",
+                                  "path": "/表象/实体/物品/穿戴/服饰/衣物/下装/裙装",
+                                  "id": 15259,
+                                  "source_stable_id": 823,
+                                  "source_type": "实质",
+                                  "description": "各类裙装,包括短裙、连衣裙等",
+                                  "category_nature": "领域",
+                                  "level": 8,
+                                  "parent_id": 15839,
+                                  "element_count": 7,
+                                  "elements": [
+                                    {
+                                      "name": "复仇之裙",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "970bc999f557cf8026c950f254d3ddac"
+                                      ]
+                                    },
+                                    {
+                                      "name": "复仇小黑裙",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "7fc2ebb73d9fefe1e79111dd9b17ad65"
+                                      ]
+                                    },
+                                    {
+                                      "name": "复仇连衣裙",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "b6482cda993c100f39d6eccf65261a24"
+                                      ]
+                                    },
+                                    {
+                                      "name": "舞裙造型",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "3a8712377c1ad3ad44d0f0271e28532d"
+                                      ]
+                                    },
+                                    {
+                                      "name": "短裙",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "697b64c5000000001a021517"
+                                      ]
+                                    },
+                                    {
+                                      "name": "碎花短裙",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "697638e8000000001a025711"
+                                      ]
+                                    },
+                                    {
+                                      "name": "连衣裙",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "664c38f0000000001303c21f"
+                                      ]
+                                    }
+                                  ],
+                                  "total_element_count": 7,
+                                  "children": [],
+                                  "total_posts_count": 3
+                                },
+                                {
+                                  "name": "裤装",
+                                  "path": "/表象/实体/物品/穿戴/服饰/衣物/下装/裤装",
+                                  "id": 15258,
+                                  "source_stable_id": 822,
+                                  "source_type": "实质",
+                                  "description": "各类裤装,包括长裤、短裤等",
+                                  "category_nature": "领域",
+                                  "level": 8,
+                                  "parent_id": 15839,
+                                  "element_count": 4,
+                                  "elements": [
+                                    {
+                                      "name": "橄榄绿阔腿裤",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "696f8d95000000001a028641"
+                                      ]
+                                    },
+                                    {
+                                      "name": "爱心睡裤",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "685f974300000000120144db"
+                                      ]
+                                    },
+                                    {
+                                      "name": "蓝色塑料雨裤",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "6819f25e000000002301cca5"
+                                      ]
+                                    },
+                                    {
+                                      "name": "超大码短裤",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "6666b3a10000000015008834"
+                                      ]
+                                    }
+                                  ],
+                                  "total_element_count": 4,
+                                  "children": [],
+                                  "total_posts_count": 4
+                                }
+                              ],
+                              "total_posts_count": 7
+                            },
+                            {
+                              "name": "传统服饰",
+                              "path": "/表象/实体/物品/穿戴/服饰/衣物/传统服饰",
+                              "id": 15838,
+                              "source_stable_id": 814,
+                              "source_type": "实质",
+                              "description": "具有传统文化特征的服装,包括中式、民族、民国等历史时期的服饰",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 14963,
+                              "element_count": 0,
+                              "elements": [],
+                              "total_element_count": 5,
+                              "children": [
+                                {
+                                  "name": "中式服饰",
+                                  "path": "/表象/实体/物品/穿戴/服饰/衣物/传统服饰/中式服饰",
+                                  "id": 15257,
+                                  "source_stable_id": 820,
+                                  "source_type": "实质",
+                                  "description": "具有中国传统文化特征的服装,包括旗袍、棉袄等",
+                                  "category_nature": "领域",
+                                  "level": 8,
+                                  "parent_id": 15838,
+                                  "element_count": 5,
+                                  "elements": [
+                                    {
+                                      "name": "红衣",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "65298913"
+                                      ]
+                                    },
+                                    {
+                                      "name": "中式传统服饰",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "65135957"
+                                      ]
+                                    },
+                                    {
+                                      "name": "大红花棉袄",
+                                      "count": 2,
+                                      "post_ids": [
+                                        "64456019",
+                                        "65514975"
+                                      ]
+                                    },
+                                    {
+                                      "name": "东北大花棉袄",
+                                      "count": 1,
+                                      "post_ids": [
+                                        "64975752"
+                                      ]
+                                    }
+                                  ],
+                                  "total_element_count": 5,
+                                  "children": [],
+                                  "total_posts_count": 0
+                                }
+                              ],
+                              "total_posts_count": 0
+                            },
+                            {
+                              "name": "外套",
+                              "path": "/表象/实体/物品/穿戴/服饰/衣物/外套",
+                              "id": 15253,
+                              "source_stable_id": 815,
+                              "source_type": "实质",
+                              "description": "穿在外层的衣物,包括大衣、羽绒服、皮衣等",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 14963,
+                              "element_count": 9,
+                              "elements": [
+                                {
+                                  "name": "外套",
+                                  "count": 3,
+                                  "post_ids": [
+                                    "696a5a3e000000001a022b1d",
+                                    "696f0da3000000001a029d29",
+                                    "6971ec6f000000001a02d248"
+                                  ]
+                                },
+                                {
+                                  "name": "深棕色短款羽绒服",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "696f8d95000000001a028641"
+                                  ]
+                                },
+                                {
+                                  "name": "大毛领",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "696f0da3000000001a029d29"
+                                  ]
+                                },
+                                {
+                                  "name": "奶油白毛呢大衣",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "6969068e000000000d008b48"
+                                  ]
+                                },
+                                {
+                                  "name": "毛领皮衣",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "69679e0e000000000e03ca97"
+                                  ]
+                                },
+                                {
+                                  "name": "皮衣",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "69679e0e000000000e03ca97"
+                                  ]
+                                },
+                                {
+                                  "name": "面包服",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "6964d4bf000000001a031a54"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 9,
+                              "children": [],
+                              "total_posts_count": 7
+                            },
+                            {
+                              "name": "特殊用途",
+                              "path": "/表象/实体/物品/穿戴/服饰/衣物/特殊用途",
+                              "id": 15255,
+                              "source_stable_id": 818,
+                              "source_type": "实质",
+                              "description": "特定场景或人群使用的服饰,包括婴儿服、居家服、职业服等",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 14963,
+                              "element_count": 7,
+                              "elements": [
+                                {
+                                  "name": "婴儿连体衣",
+                                  "count": 7,
+                                  "post_ids": [
+                                    "68abe632000000001c0348c0",
+                                    "68bf8639000000001c03efd2",
+                                    "68ca143d000000001202c3de",
+                                    "68db5bd00000000007015474",
+                                    "68e9b94d0000000007036a6a",
+                                    "68f5976e000000000700dd28"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 7,
+                              "children": [],
+                              "total_posts_count": 6
+                            },
+                            {
+                              "name": "配件",
+                              "path": "/表象/实体/物品/穿戴/服饰/衣物/配件",
+                              "id": 15256,
+                              "source_stable_id": 819,
+                              "source_type": "实质",
+                              "description": "服饰的局部装饰或附属物品,如领子、袜子等",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 14963,
+                              "element_count": 4,
+                              "elements": [
+                                {
+                                  "name": "堆堆袜",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "6978db47000000001a0293e7"
+                                  ]
+                                },
+                                {
+                                  "name": "毛绒翻领",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "696a5a3e000000001a022b1d",
+                                    "6971ec6f000000001a02d248"
+                                  ]
+                                },
+                                {
+                                  "name": "服饰元素",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "6965d491000000000e00f9b0"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 4,
+                              "children": [],
+                              "total_posts_count": 4
+                            }
+                          ],
+                          "total_posts_count": 25
+                        },
+                        {
+                          "name": "趣味装扮",
+                          "path": "/表象/实体/物品/穿戴/服饰/趣味装扮",
+                          "id": 14967,
+                          "source_stable_id": 300,
+                          "source_type": "实质",
+                          "description": "宠物、玩偶等非正式穿着对象的趣味性服饰道具",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15862,
+                          "element_count": 16,
+                          "elements": [
+                            {
+                              "name": "蜜蜂造型",
+                              "count": 2,
+                              "post_ids": [
+                                "67e243d0000000001d02495b",
+                                "67e37ff8000000001c008b5e"
+                              ]
+                            },
+                            {
+                              "name": "外缝假腋毛",
+                              "count": 1,
+                              "post_ids": [
+                                "66d1ab42000000001f015507"
+                              ]
+                            },
+                            {
+                              "name": "宠物造型",
+                              "count": 1,
+                              "post_ids": [
+                                "69114f150000000007001f30"
+                              ]
+                            },
+                            {
+                              "name": "粉色衬衫",
+                              "count": 1,
+                              "post_ids": [
+                                "68f988f2000000000703ada5"
+                              ]
+                            },
+                            {
+                              "name": "棒球帽",
+                              "count": 1,
+                              "post_ids": [
+                                "68f988f2000000000703ada5"
+                              ]
+                            },
+                            {
+                              "name": "宠物婴儿衫",
+                              "count": 1,
+                              "post_ids": [
+                                "68e9b94d0000000007036a6a"
+                              ]
+                            },
+                            {
+                              "name": "穿婴儿服",
+                              "count": 1,
+                              "post_ids": [
+                                "68bf8639000000001c03efd2"
+                              ]
+                            },
+                            {
+                              "name": "服饰道具",
+                              "count": 2,
+                              "post_ids": [
+                                "6880a7a7000000000b02f5a6",
+                                "68b953e4000000001d00f96f"
+                              ]
+                            },
+                            {
+                              "name": "职场装扮",
+                              "count": 3,
+                              "post_ids": [
+                                "6874c80e000000000d027767",
+                                "6880a7a7000000000b02f5a6",
+                                "68875186000000002501649d"
+                              ]
+                            },
+                            {
+                              "name": "猫咪职业装扮",
+                              "count": 1,
+                              "post_ids": [
+                                "6874c80e000000000d027767"
+                              ]
+                            },
+                            {
+                              "name": "新年造型",
+                              "count": 1,
+                              "post_ids": [
+                                "6774ab9a0000000009015a3f"
+                              ]
+                            },
+                            {
+                              "name": "微型服饰",
+                              "count": 1,
+                              "post_ids": [
+                                "12357835"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 16,
+                          "children": [],
+                          "total_posts_count": 12
+                        },
+                        {
+                          "name": "鞋履",
+                          "path": "/表象/实体/物品/穿戴/服饰/鞋履",
+                          "id": 14964,
+                          "source_stable_id": 297,
+                          "source_type": "实质",
+                          "description": "各类鞋子,包括休闲鞋、传统鞋、创意鞋等",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15862,
+                          "element_count": 9,
+                          "elements": [
+                            {
+                              "name": "大黄靴",
+                              "count": 1,
+                              "post_ids": [
+                                "697b64c5000000001a021517"
+                              ]
+                            },
+                            {
+                              "name": "勃肯鞋",
+                              "count": 1,
+                              "post_ids": [
+                                "6978db47000000001a0293e7"
+                              ]
+                            },
+                            {
+                              "name": "龟背竹拖鞋",
+                              "count": 2,
+                              "post_ids": [
+                                "68077d02000000001c02dd81"
+                              ]
+                            },
+                            {
+                              "name": "拖鞋",
+                              "count": 1,
+                              "post_ids": [
+                                "68077d02000000001c02dd81"
+                              ]
+                            },
+                            {
+                              "name": "洞洞鞋",
+                              "count": 2,
+                              "post_ids": [
+                                "69185d49000000000d00f94e"
+                              ]
+                            },
+                            {
+                              "name": "拖鞋物证",
+                              "count": 1,
+                              "post_ids": [
+                                "68fb6a5c000000000302e5de"
+                              ]
+                            },
+                            {
+                              "name": "鞋子",
+                              "count": 1,
+                              "post_ids": [
+                                "6666dd86000000001500b7ff"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 9,
+                          "children": [],
+                          "total_posts_count": 6
+                        },
+                        {
+                          "name": "饰品",
+                          "path": "/表象/实体/物品/穿戴/服饰/饰品",
+                          "id": 14965,
+                          "source_stable_id": 298,
+                          "source_type": "实质",
+                          "description": "包袋、围巾、首饰等非主体服装的搭配装饰物件",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15862,
+                          "element_count": 22,
+                          "elements": [
+                            {
+                              "name": "斜挎包",
+                              "count": 3,
+                              "post_ids": [
+                                "6960e87a000000000e00c216",
+                                "6964d4bf000000001a031a54",
+                                "697a20e9000000001a033338"
+                              ]
+                            },
+                            {
+                              "name": "小狗造型",
+                              "count": 3,
+                              "post_ids": [
+                                "6960e87a000000000e00c216",
+                                "6964d4bf000000001a031a54",
+                                "697a20e9000000001a033338"
+                              ]
+                            },
+                            {
+                              "name": "配饰",
+                              "count": 4,
+                              "post_ids": [
+                                "68e9b94d0000000007036a6a",
+                                "696f0da3000000001a029d29",
+                                "696f8d95000000001a028641",
+                                "6971878d000000001a01e6cc"
+                              ]
+                            },
+                            {
+                              "name": "天蓝色围巾",
+                              "count": 2,
+                              "post_ids": [
+                                "69679e0e000000000e03ca97",
+                                "6969068e000000000d008b48"
+                              ]
+                            },
+                            {
+                              "name": "毛绒围巾",
+                              "count": 1,
+                              "post_ids": [
+                                "69647323000000001a01ef60"
+                              ]
+                            },
+                            {
+                              "name": "装饰眼镜",
+                              "count": 1,
+                              "post_ids": [
+                                "69647323000000001a01ef60"
+                              ]
+                            },
+                            {
+                              "name": "正式领带",
+                              "count": 1,
+                              "post_ids": [
+                                "685f974300000000120144db"
+                              ]
+                            },
+                            {
+                              "name": "金手镯",
+                              "count": 1,
+                              "post_ids": [
+                                "67adb23f000000002a00c240"
+                              ]
+                            },
+                            {
+                              "name": "帽檐",
+                              "count": 1,
+                              "post_ids": [
+                                "67aea9de000000001800d129"
+                              ]
+                            },
+                            {
+                              "name": "超长围巾",
+                              "count": 1,
+                              "post_ids": [
+                                "675fcd19000000000103d470"
+                              ]
+                            },
+                            {
+                              "name": "领带",
+                              "count": 1,
+                              "post_ids": [
+                                "68f988f2000000000703ada5"
+                              ]
+                            },
+                            {
+                              "name": "红围巾",
+                              "count": 1,
+                              "post_ids": [
+                                "6774ab9a0000000009015a3f"
+                              ]
+                            },
+                            {
+                              "name": "珍珠",
+                              "count": 2,
+                              "post_ids": [
+                                "64246342",
+                                "65298913"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 22,
+                          "children": [],
+                          "total_posts_count": 16
+                        }
+                      ],
+                      "total_posts_count": 51
+                    },
+                    {
+                      "name": "美妆护肤",
+                      "path": "/表象/实体/物品/穿戴/美妆护肤",
+                      "id": 15863,
+                      "source_stable_id": 246,
+                      "source_type": "实质",
+                      "description": "护肤品、化妆品、个人护理等美容类产品",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15972,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 46,
+                      "children": [
+                        {
+                          "name": "个人护理",
+                          "path": "/表象/实体/物品/穿戴/美妆护肤/个人护理",
+                          "id": 15465,
+                          "source_stable_id": 1226,
+                          "source_type": "实质",
+                          "description": "个人卫生及外用护理产品",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15863,
+                          "element_count": 6,
+                          "elements": [
+                            {
+                              "name": "卫生巾产品",
+                              "count": 2,
+                              "post_ids": [
+                                "6881d560000000001703076c"
+                              ]
+                            },
+                            {
+                              "name": "曼秀雷敦薄荷膏",
+                              "count": 3,
+                              "post_ids": [
+                                "6892d47c0000000025018c4f",
+                                "6901d072000000000703b6a3"
+                              ]
+                            },
+                            {
+                              "name": "护舒宝液体卫生巾",
+                              "count": 1,
+                              "post_ids": [
+                                "68e8cac8000000000700da88"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 6,
+                          "children": [],
+                          "total_posts_count": 4
+                        },
+                        {
+                          "name": "彩妆",
+                          "path": "/表象/实体/物品/穿戴/美妆护肤/彩妆",
+                          "id": 15464,
+                          "source_stable_id": 1225,
+                          "source_type": "实质",
+                          "description": "化妆及装饰类美容产品",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15863,
+                          "element_count": 4,
+                          "elements": [
+                            {
+                              "name": "美甲",
+                              "count": 2,
+                              "post_ids": [
+                                "66daeddb000000002603ea42"
+                              ]
+                            },
+                            {
+                              "name": "场景眼妆",
+                              "count": 1,
+                              "post_ids": [
+                                "6634a322000000001e01bcd5"
+                              ]
+                            },
+                            {
+                              "name": "美瞳",
+                              "count": 1,
+                              "post_ids": [
+                                "6634a322000000001e01bcd5"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 4,
+                          "children": [],
+                          "total_posts_count": 2
+                        },
+                        {
+                          "name": "护肤品",
+                          "path": "/表象/实体/物品/穿戴/美妆护肤/护肤品",
+                          "id": 15918,
+                          "source_stable_id": 1223,
+                          "source_type": "实质",
+                          "description": "面部及身体护肤产品,包括精华、面霜、面膜等",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15863,
+                          "element_count": 0,
+                          "elements": [],
+                          "total_element_count": 30,
+                          "children": [
+                            {
+                              "name": "护肤套装",
+                              "path": "/表象/实体/物品/穿戴/美妆护肤/护肤品/护肤套装",
+                              "id": 15469,
+                              "source_stable_id": 1230,
+                              "source_type": "实质",
+                              "description": "品牌护肤产品系列或套装组合",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15918,
+                              "element_count": 7,
+                              "elements": [
+                                {
+                                  "name": "韩束白蛮腰",
+                                  "count": 4,
+                                  "post_ids": [
+                                    "68be928b000000001c0361ea",
+                                    "68f0b8140000000007008b05",
+                                    "68ff53770000000007000d54"
+                                  ]
+                                },
+                                {
+                                  "name": "妮维雅630护肤套装",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "68ec9d6400000000070389be"
+                                  ]
+                                },
+                                {
+                                  "name": "娇兰",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "68789450000000000b01d4a4"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 7,
+                              "children": [],
+                              "total_posts_count": 5
+                            },
+                            {
+                              "name": "精华",
+                              "path": "/表象/实体/物品/穿戴/美妆护肤/护肤品/精华",
+                              "id": 15466,
+                              "source_stable_id": 1227,
+                              "source_type": "实质",
+                              "description": "精华液、精华水等浓缩护肤品",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15918,
+                              "element_count": 8,
+                              "elements": [
+                                {
+                                  "name": "美白精华",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "6843fb690000000012001659"
+                                  ]
+                                },
+                                {
+                                  "name": "护肤精华",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "66f51b90000000002a036660",
+                                    "67bc233e000000000b0160fa"
+                                  ]
+                                },
+                                {
+                                  "name": "护肤精华水",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "665971bb000000001303d005",
+                                    "6781e8640000000001001d18"
+                                  ]
+                                },
+                                {
+                                  "name": "精华产品",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "662096bc000000000d03035d"
+                                  ]
+                                },
+                                {
+                                  "name": "韩束377美白精华",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "68ff53770000000007000d54"
+                                  ]
+                                },
+                                {
+                                  "name": "娇兰复原蜜",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "68789450000000000b01d4a4"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 8,
+                              "children": [],
+                              "total_posts_count": 8
+                            },
+                            {
+                              "name": "膏霜乳液",
+                              "path": "/表象/实体/物品/穿戴/美妆护肤/护肤品/膏霜乳液",
+                              "id": 15468,
+                              "source_stable_id": 1229,
+                              "source_type": "实质",
+                              "description": "面霜、眼霜、身体乳、防晒霜等膏体乳液类护肤品",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15918,
+                              "element_count": 12,
+                              "elements": [
+                                {
+                                  "name": "护肤产品",
+                                  "count": 5,
+                                  "post_ids": [
+                                    "66ee55d200000000270066a8",
+                                    "671f7fab000000003c01fffc",
+                                    "68789450000000000b01d4a4",
+                                    "68be928b000000001c0361ea",
+                                    "68c909c3000000001302ad69"
+                                  ]
+                                },
+                                {
+                                  "name": "面霜产品",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "664c38f0000000001303c21f",
+                                    "675fcd19000000000103d470"
+                                  ]
+                                },
+                                {
+                                  "name": "防晒产品",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "6666b3a10000000015008834"
+                                  ]
+                                },
+                                {
+                                  "name": "身体乳产品",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "664599b9000000001e01d218"
+                                  ]
+                                },
+                                {
+                                  "name": "眼部护肤品",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "6634a322000000001e01bcd5"
+                                  ]
+                                },
+                                {
+                                  "name": "珀莱雅双抗眼霜",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "68d610800000000012023282"
+                                  ]
+                                },
+                                {
+                                  "name": "祛痘护肤产品",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "6892d47c0000000025018c4f"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 12,
+                              "children": [],
+                              "total_posts_count": 12
+                            },
+                            {
+                              "name": "面膜",
+                              "path": "/表象/实体/物品/穿戴/美妆护肤/护肤品/面膜",
+                              "id": 15467,
+                              "source_stable_id": 1228,
+                              "source_type": "实质",
+                              "description": "面部贴敷类护肤品",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15918,
+                              "element_count": 3,
+                              "elements": [
+                                {
+                                  "name": "面膜产品",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "661b9936000000001b012aa5"
+                                  ]
+                                },
+                                {
+                                  "name": "韩束金刚侠面膜",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "68f0b8140000000007008b05"
+                                  ]
+                                },
+                                {
+                                  "name": "欧莱雅安瓶面膜",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "68a43a11000000001c03cc96"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 3,
+                              "children": [],
+                              "total_posts_count": 3
+                            }
+                          ],
+                          "total_posts_count": 23
+                        },
+                        {
+                          "name": "洗护用品",
+                          "path": "/表象/实体/物品/穿戴/美妆护肤/洗护用品",
+                          "id": 15463,
+                          "source_stable_id": 1224,
+                          "source_type": "实质",
+                          "description": "洗发护发及身体清洁类产品",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15863,
+                          "element_count": 6,
+                          "elements": [
+                            {
+                              "name": "护发素产品",
+                              "count": 1,
+                              "post_ids": [
+                                "68c14b36000000001d02b44e"
+                              ]
+                            },
+                            {
+                              "name": "沐浴露产品",
+                              "count": 2,
+                              "post_ids": [
+                                "6752d19b000000000202b816",
+                                "6867d9af000000001203f084"
+                              ]
+                            },
+                            {
+                              "name": "洗发水产品",
+                              "count": 2,
+                              "post_ids": [
+                                "67fe11bb000000000d017b89",
+                                "68070ccb000000000f039a1b"
+                              ]
+                            },
+                            {
+                              "name": "洗护产品",
+                              "count": 1,
+                              "post_ids": [
+                                "67c17568000000000603b420"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 6,
+                          "children": [],
+                          "total_posts_count": 6
+                        }
+                      ],
+                      "total_posts_count": 33
+                    }
+                  ],
+                  "total_posts_count": 81
+                },
+                {
+                  "name": "起居",
+                  "path": "/表象/实体/物品/起居",
+                  "id": 15973,
+                  "source_stable_id": 996,
+                  "source_type": "实质",
+                  "description": "日常居家生活和饮食相关的物品",
+                  "category_nature": "维度",
+                  "level": 4,
+                  "parent_id": 15953,
+                  "element_count": 0,
+                  "elements": [],
+                  "total_element_count": 135,
+                  "children": [
+                    {
+                      "name": "家居",
+                      "path": "/表象/实体/物品/起居/家居",
+                      "id": 15864,
+                      "source_stable_id": 245,
+                      "source_type": "实质",
+                      "description": "家具、建材、室内装饰等居家空间中的实物用品",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15973,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 88,
+                      "children": [
+                        {
+                          "name": "家具",
+                          "path": "/表象/实体/物品/起居/家居/家具",
+                          "id": 15166,
+                          "source_stable_id": 687,
+                          "source_type": "实质",
+                          "description": "沙发、柜体、桌椅等家庭使用的可移动器具",
+                          "category_nature": "维度",
+                          "level": 6,
+                          "parent_id": 15864,
+                          "element_count": 13,
+                          "elements": [
+                            {
+                              "name": "抽屉",
+                              "count": 1,
+                              "post_ids": [
+                                "688046ef000000002203150e"
+                              ]
+                            },
+                            {
+                              "name": "开放格",
+                              "count": 1,
+                              "post_ids": [
+                                "688046ef000000002203150e"
+                              ]
+                            },
+                            {
+                              "name": "复古壁炉",
+                              "count": 2,
+                              "post_ids": [
+                                "684e2d44000000002100cca7",
+                                "687ee6fc000000001c032bb1"
+                              ]
+                            },
+                            {
+                              "name": "复古家具",
+                              "count": 2,
+                              "post_ids": [
+                                "6848e2340000000021009f3a",
+                                "687ee6fc000000001c032bb1"
+                              ]
+                            },
+                            {
+                              "name": "藤编家具",
+                              "count": 5,
+                              "post_ids": [
+                                "681c64ce000000002200554c",
+                                "6843ab3f000000002202508e",
+                                "68538f7c000000002400805b",
+                                "6858eb52000000001203044b",
+                                "685b68c300000000150226bd"
+                              ]
+                            },
+                            {
+                              "name": "家居家具产品",
+                              "count": 1,
+                              "post_ids": [
+                                "6843ab3f000000002202508e"
+                              ]
+                            },
+                            {
+                              "name": "家具组合",
+                              "count": 1,
+                              "post_ids": [
+                                "6837f1270000000012006c8e"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 25,
+                          "children": [
+                            {
+                              "name": "储物家具",
+                              "path": "/表象/实体/物品/起居/家居/家具/储物家具",
+                              "id": 15171,
+                              "source_stable_id": 692,
+                              "source_type": "实质",
+                              "description": "柜子、架子等用于收纳和储存的家具",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15166,
+                              "element_count": 6,
+                              "elements": [
+                                {
+                                  "name": "书柜",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "6858eb52000000001203044b",
+                                    "68843a4d000000001c037591"
+                                  ]
+                                },
+                                {
+                                  "name": "床头柜",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "688046ef000000002203150e"
+                                  ]
+                                },
+                                {
+                                  "name": "一体化柜体",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "688046ef000000002203150e"
+                                  ]
+                                },
+                                {
+                                  "name": "蓝色橱柜",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "6837f1270000000012006c8e"
+                                  ]
+                                },
+                                {
+                                  "name": "墙壁置物架",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "662ce86d0000000003023f0a"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 6,
+                              "children": [],
+                              "total_posts_count": 5
+                            },
+                            {
+                              "name": "坐卧家具",
+                              "path": "/表象/实体/物品/起居/家居/家具/坐卧家具",
+                              "id": 15170,
+                              "source_stable_id": 691,
+                              "source_type": "实质",
+                              "description": "沙发、床等供人坐卧休息的家具",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15166,
+                              "element_count": 6,
+                              "elements": [
+                                {
+                                  "name": "弧形沙发",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "6850c82a000000002100f096",
+                                    "6865ec61000000000b02c53b"
+                                  ]
+                                },
+                                {
+                                  "name": "皮质沙发",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "685f514f000000001703339d"
+                                  ]
+                                },
+                                {
+                                  "name": "拼色沙发",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "6837f019000000000c03aab2"
+                                  ]
+                                },
+                                {
+                                  "name": "奶油色沙发",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "682bdbba000000002202b26e"
+                                  ]
+                                },
+                                {
+                                  "name": "云朵沙发",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "682bdb47000000002202dfa0"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 6,
+                              "children": [],
+                              "total_posts_count": 6
+                            }
+                          ],
+                          "total_posts_count": 18
+                        },
+                        {
+                          "name": "建材装饰",
+                          "path": "/表象/实体/物品/起居/家居/建材装饰",
+                          "id": 15167,
+                          "source_stable_id": 688,
+                          "source_type": "实质",
+                          "description": "墙面、门窗、地面等固定的建筑材料和装饰构件",
+                          "category_nature": "维度",
+                          "level": 6,
+                          "parent_id": 15864,
+                          "element_count": 15,
+                          "elements": [
+                            {
+                              "name": "弧形结构",
+                              "count": 5,
+                              "post_ids": [
+                                "68538f7c000000002400805b",
+                                "6858eb52000000001203044b",
+                                "685f514f000000001703339d",
+                                "687ee6fc000000001c032bb1",
+                                "68843a4d000000001c037591"
+                              ]
+                            },
+                            {
+                              "name": "木质元素",
+                              "count": 5,
+                              "post_ids": [
+                                "682bdb47000000002202dfa0",
+                                "682bdbba000000002202b26e",
+                                "6837f019000000000c03aab2",
+                                "68426c88000000002002b334",
+                                "688046ef000000002203150e"
+                              ]
+                            },
+                            {
+                              "name": "顶天立地式",
+                              "count": 1,
+                              "post_ids": [
+                                "6858eb52000000001203044b"
+                              ]
+                            },
+                            {
+                              "name": "无拉手",
+                              "count": 1,
+                              "post_ids": [
+                                "6837f1270000000012006c8e"
+                              ]
+                            },
+                            {
+                              "name": "材质",
+                              "count": 1,
+                              "post_ids": [
+                                "6837f1270000000012006c8e"
+                              ]
+                            },
+                            {
+                              "name": "胡桃木",
+                              "count": 1,
+                              "post_ids": [
+                                "682bdbba000000002202b26e"
+                              ]
+                            },
+                            {
+                              "name": "金属栅栏",
+                              "count": 1,
+                              "post_ids": [
+                                "6900667d000000000300f640"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 40,
+                          "children": [
+                            {
+                              "name": "地面铺装",
+                              "path": "/表象/实体/物品/起居/家居/建材装饰/地面铺装",
+                              "id": 15174,
+                              "source_stable_id": 695,
+                              "source_type": "实质",
+                              "description": "地板、地毯等地面铺装材料",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15167,
+                              "element_count": 6,
+                              "elements": [
+                                {
+                                  "name": "花纹地毯",
+                                  "count": 3,
+                                  "post_ids": [
+                                    "6850c82a000000002100f096",
+                                    "6858eb52000000001203044b",
+                                    "685f514f000000001703339d"
+                                  ]
+                                },
+                                {
+                                  "name": "鱼骨拼木地板",
+                                  "count": 3,
+                                  "post_ids": [
+                                    "682a8f11000000002002a511",
+                                    "684e2d44000000002100cca7",
+                                    "6850c82a000000002100f096"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 6,
+                              "children": [],
+                              "total_posts_count": 5
+                            },
+                            {
+                              "name": "墙面装饰",
+                              "path": "/表象/实体/物品/起居/家居/建材装饰/墙面装饰",
+                              "id": 15172,
+                              "source_stable_id": 693,
+                              "source_type": "实质",
+                              "description": "石膏线条、护墙板、背景墙等墙面装饰材料和构件",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15167,
+                              "element_count": 12,
+                              "elements": [
+                                {
+                                  "name": "法式石膏线条",
+                                  "count": 6,
+                                  "post_ids": [
+                                    "682a8f11000000002002a511",
+                                    "68426c88000000002002b334",
+                                    "684e2d44000000002100cca7",
+                                    "6850c82a000000002100f096",
+                                    "6865ec61000000000b02c53b",
+                                    "687ee6fc000000001c032bb1"
+                                  ]
+                                },
+                                {
+                                  "name": "石膏吊顶",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "684e2d44000000002100cca7",
+                                    "6850c82a000000002100f096"
+                                  ]
+                                },
+                                {
+                                  "name": "水泥风吊顶",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "6837f1270000000012006c8e"
+                                  ]
+                                },
+                                {
+                                  "name": "竖条护墙",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "682bdbba000000002202b26e"
+                                  ]
+                                },
+                                {
+                                  "name": "竖条木饰面",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "682bdb47000000002202dfa0"
+                                  ]
+                                },
+                                {
+                                  "name": "背景墙",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "682bdb47000000002202dfa0"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 12,
+                              "children": [],
+                              "total_posts_count": 9
+                            },
+                            {
+                              "name": "门窗结构",
+                              "path": "/表象/实体/物品/起居/家居/建材装饰/门窗结构",
+                              "id": 15173,
+                              "source_stable_id": 694,
+                              "source_type": "实质",
+                              "description": "门、窗、拱门等建筑开口结构",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15167,
+                              "element_count": 7,
+                              "elements": [
+                                {
+                                  "name": "飘窗",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "688046ef000000002203150e"
+                                  ]
+                                },
+                                {
+                                  "name": "半拱门",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "6865ec61000000000b02c53b"
+                                  ]
+                                },
+                                {
+                                  "name": "复古拱门",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "68538f7c000000002400805b",
+                                    "685b68c300000000150226bd"
+                                  ]
+                                },
+                                {
+                                  "name": "法式双开玻璃门",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "6843ab3f000000002202508e"
+                                  ]
+                                },
+                                {
+                                  "name": "格子门窗",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "682a8f11000000002002a511"
+                                  ]
+                                },
+                                {
+                                  "name": "浴室玻璃门",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "693d0b1d000000001e02ba36"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 7,
+                              "children": [],
+                              "total_posts_count": 7
+                            }
+                          ],
+                          "total_posts_count": 19
+                        },
+                        {
+                          "name": "灯具照明",
+                          "path": "/表象/实体/物品/起居/家居/灯具照明",
+                          "id": 15168,
+                          "source_stable_id": 689,
+                          "source_type": "实质",
+                          "description": "各类照明设备和灯具",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15864,
+                          "element_count": 5,
+                          "elements": [
+                            {
+                              "name": "点光源",
+                              "count": 2,
+                              "post_ids": [
+                                "682bdb47000000002202dfa0",
+                                "688046ef000000002203150e"
+                              ]
+                            },
+                            {
+                              "name": "复古灯具",
+                              "count": 3,
+                              "post_ids": [
+                                "68426c88000000002002b334",
+                                "685b68c300000000150226bd",
+                                "685f514f000000001703339d"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 5,
+                          "children": [],
+                          "total_posts_count": 5
+                        },
+                        {
+                          "name": "软装配饰",
+                          "path": "/表象/实体/物品/起居/家居/软装配饰",
+                          "id": 15169,
+                          "source_stable_id": 690,
+                          "source_type": "实质",
+                          "description": "布艺、装饰品、餐具等可更换的装饰性物品",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15864,
+                          "element_count": 18,
+                          "elements": [
+                            {
+                              "name": "玄关端景",
+                              "count": 1,
+                              "post_ids": [
+                                "6865ec61000000000b02c53b"
+                              ]
+                            },
+                            {
+                              "name": "软装",
+                              "count": 3,
+                              "post_ids": [
+                                "681c64ce000000002200554c",
+                                "684e2d44000000002100cca7",
+                                "68538f7c000000002400805b"
+                              ]
+                            },
+                            {
+                              "name": "生活点缀",
+                              "count": 2,
+                              "post_ids": [
+                                "681c64ce000000002200554c",
+                                "6837f1270000000012006c8e"
+                              ]
+                            },
+                            {
+                              "name": "装饰画",
+                              "count": 1,
+                              "post_ids": [
+                                "6837f019000000000c03aab2"
+                              ]
+                            },
+                            {
+                              "name": "搞怪枕头",
+                              "count": 1,
+                              "post_ids": [
+                                "680e2433000000000e004e91"
+                              ]
+                            },
+                            {
+                              "name": "婚庆床品",
+                              "count": 2,
+                              "post_ids": [
+                                "6602bd07000000001203348c"
+                              ]
+                            },
+                            {
+                              "name": "家居装饰",
+                              "count": 1,
+                              "post_ids": [
+                                "69756d90000000001a020c81"
+                              ]
+                            },
+                            {
+                              "name": "家居好物",
+                              "count": 2,
+                              "post_ids": [
+                                "6965ea53000000000e00f0f1",
+                                "69756d90000000001a020c81"
+                              ]
+                            },
+                            {
+                              "name": "餐具",
+                              "count": 2,
+                              "post_ids": [
+                                "69535514000000001e032b26"
+                              ]
+                            },
+                            {
+                              "name": "婴儿床品",
+                              "count": 3,
+                              "post_ids": [
+                                "68abe632000000001c0348c0",
+                                "68bf8639000000001c03efd2",
+                                "68f5976e000000000700dd28"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 18,
+                          "children": [],
+                          "total_posts_count": 14
+                        }
+                      ],
+                      "total_posts_count": 30
+                    },
+                    {
+                      "name": "食物",
+                      "path": "/表象/实体/物品/起居/食物",
+                      "id": 15865,
+                      "source_stable_id": 112,
+                      "source_type": "实质",
+                      "description": "传统美食、菜肴、食材等可食用物品",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15973,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 47,
+                      "children": [
+                        {
+                          "name": "成品菜肴",
+                          "path": "/表象/实体/物品/起居/食物/成品菜肴",
+                          "id": 15156,
+                          "source_stable_id": 674,
+                          "source_type": "实质",
+                          "description": "直接可食用的成品食物,包括主食、菜品、糕点、快餐等",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15865,
+                          "element_count": 16,
+                          "elements": [
+                            {
+                              "name": "巨型披萨",
+                              "count": 1,
+                              "post_ids": [
+                                "6810596c000000002301d1a6"
+                              ]
+                            },
+                            {
+                              "name": "肯德基法风烧饼",
+                              "count": 1,
+                              "post_ids": [
+                                "67e6398f000000001d005ebb"
+                              ]
+                            },
+                            {
+                              "name": "肯德基早餐组合",
+                              "count": 1,
+                              "post_ids": [
+                                "67e6398f000000001d005ebb"
+                              ]
+                            },
+                            {
+                              "name": "肯德基派产品",
+                              "count": 1,
+                              "post_ids": [
+                                "67bee0df000000002802acd1"
+                              ]
+                            },
+                            {
+                              "name": "Omakase",
+                              "count": 1,
+                              "post_ids": [
+                                "6867d9af000000001203f084"
+                              ]
+                            },
+                            {
+                              "name": "饮料产品",
+                              "count": 1,
+                              "post_ids": [
+                                "6803185a000000000b01ef09"
+                              ]
+                            },
+                            {
+                              "name": "生日蛋糕",
+                              "count": 1,
+                              "post_ids": [
+                                "665971bb000000001303d005"
+                              ]
+                            },
+                            {
+                              "name": "饺子",
+                              "count": 2,
+                              "post_ids": [
+                                "45436779",
+                                "6649dbe3000000000c018112"
+                              ]
+                            },
+                            {
+                              "name": "必胜客爆汁超大大鸡腿堡",
+                              "count": 1,
+                              "post_ids": [
+                                "6915dfc400000000070224d9"
+                              ]
+                            },
+                            {
+                              "name": "汉堡新品",
+                              "count": 1,
+                              "post_ids": [
+                                "6915dfc400000000070224d9"
+                              ]
+                            },
+                            {
+                              "name": "肯德基薄脆金沙鸡翅",
+                              "count": 2,
+                              "post_ids": [
+                                "68e0f5750000000007015ff9"
+                              ]
+                            },
+                            {
+                              "name": "蛋仔派对联名套餐",
+                              "count": 1,
+                              "post_ids": [
+                                "68737e97000000000d027b81"
+                              ]
+                            },
+                            {
+                              "name": "腊八粥",
+                              "count": 2,
+                              "post_ids": [
+                                "64162740"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 16,
+                          "children": [],
+                          "total_posts_count": 10
+                        },
+                        {
+                          "name": "零食",
+                          "path": "/表象/实体/物品/起居/食物/零食",
+                          "id": 15158,
+                          "source_stable_id": 677,
+                          "source_type": "实质",
+                          "description": "休闲食品和小吃,包括膨化食品、糖果等",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15865,
+                          "element_count": 8,
+                          "elements": [
+                            {
+                              "name": "味全每日C果汁",
+                              "count": 1,
+                              "post_ids": [
+                                "68528a360000000010010c6d"
+                              ]
+                            },
+                            {
+                              "name": "产品",
+                              "count": 3,
+                              "post_ids": [
+                                "665971bb000000001303d005",
+                                "67bee0df000000002802acd1",
+                                "68383eb1000000000303e7ef"
+                              ]
+                            },
+                            {
+                              "name": "奇异水果形态",
+                              "count": 1,
+                              "post_ids": [
+                                "683d8695000000001200012a"
+                              ]
+                            },
+                            {
+                              "name": "垃圾食品",
+                              "count": 1,
+                              "post_ids": [
+                                "68383eb1000000000303e7ef"
+                              ]
+                            },
+                            {
+                              "name": "零食产品",
+                              "count": 1,
+                              "post_ids": [
+                                "676535f4000000000b00dfd1"
+                              ]
+                            },
+                            {
+                              "name": "猫罐头",
+                              "count": 1,
+                              "post_ids": [
+                                "6880a7a7000000000b02f5a6"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 8,
+                          "children": [],
+                          "total_posts_count": 7
+                        },
+                        {
+                          "name": "食材原料",
+                          "path": "/表象/实体/物品/起居/食物/食材原料",
+                          "id": 15157,
+                          "source_stable_id": 675,
+                          "source_type": "实质",
+                          "description": "需要加工烹饪的原材料,包括蔬果、肉类、调料等",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15865,
+                          "element_count": 4,
+                          "elements": [
+                            {
+                              "name": "食材",
+                              "count": 4,
+                              "post_ids": [
+                                "66c5b638000000001d018e5a",
+                                "67244ea7000000001b012d18",
+                                "6746fb5600000000070260ce"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 9,
+                          "children": [
+                            {
+                              "name": "药材",
+                              "path": "/表象/实体/物品/起居/食物/食材原料/药材",
+                              "id": 15165,
+                              "source_stable_id": 686,
+                              "source_type": "实质",
+                              "description": "中药材和药食同源的食材",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15157,
+                              "element_count": 3,
+                              "elements": [
+                                {
+                                  "name": "干玫瑰花",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "67adb23f000000002a00c240"
+                                  ]
+                                },
+                                {
+                                  "name": "五黑",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "676f8eac000000000902f53e"
+                                  ]
+                                },
+                                {
+                                  "name": "药材组合",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "6729657b000000001b01149d"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 3,
+                              "children": [],
+                              "total_posts_count": 3
+                            },
+                            {
+                              "name": "调料",
+                              "path": "/表象/实体/物品/起居/食物/食材原料/调料",
+                              "id": 15163,
+                              "source_stable_id": 684,
+                              "source_type": "实质",
+                              "description": "调味品和香料,包括盐、糖、醋、蒜等",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15157,
+                              "element_count": 1,
+                              "elements": [
+                                {
+                                  "name": "散装白糖",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "67adb23f000000002a00c240"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 1,
+                              "children": [],
+                              "total_posts_count": 1
+                            },
+                            {
+                              "name": "谷物",
+                              "path": "/表象/实体/物品/起居/食物/食材原料/谷物",
+                              "id": 15164,
+                              "source_stable_id": 685,
+                              "source_type": "实质",
+                              "description": "米、面、豆类等谷物粮食",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15157,
+                              "element_count": 1,
+                              "elements": [
+                                {
+                                  "name": "燕麦产品",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "68383eb1000000000303e7ef"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 1,
+                              "children": [],
+                              "total_posts_count": 1
+                            }
+                          ],
+                          "total_posts_count": 7
+                        },
+                        {
+                          "name": "饮品",
+                          "path": "/表象/实体/物品/起居/食物/饮品",
+                          "id": 15831,
+                          "source_stable_id": 676,
+                          "source_type": "实质",
+                          "description": "各类液体饮料,包括茶饮、咖啡、果汁、养生饮品等",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15865,
+                          "element_count": 0,
+                          "elements": [],
+                          "total_element_count": 14,
+                          "children": [
+                            {
+                              "name": "养生饮品",
+                              "path": "/表象/实体/物品/起居/食物/饮品/养生饮品",
+                              "id": 15161,
+                              "source_stable_id": 680,
+                              "source_type": "实质",
+                              "description": "具有养生保健功能的饮品,包括豆浆、黑豆水、养生茶饮等",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15831,
+                              "element_count": 5,
+                              "elements": [
+                                {
+                                  "name": "养生饮品",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "6746fb5600000000070260ce",
+                                    "678ce28d000000001603e3a8"
+                                  ]
+                                },
+                                {
+                                  "name": "早C晚A养生饮",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "6746fb5600000000070260ce"
+                                  ]
+                                },
+                                {
+                                  "name": "黑豆水",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "67299a19000000001901483f"
+                                  ]
+                                },
+                                {
+                                  "name": "黑豆养生饮品",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "67299a19000000001901483f"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 5,
+                              "children": [],
+                              "total_posts_count": 3
+                            },
+                            {
+                              "name": "咖啡",
+                              "path": "/表象/实体/物品/起居/食物/饮品/咖啡",
+                              "id": 15160,
+                              "source_stable_id": 679,
+                              "source_type": "实质",
+                              "description": "咖啡类饮品,包括美式咖啡、气泡咖啡等",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15831,
+                              "element_count": 2,
+                              "elements": [
+                                {
+                                  "name": "苦咖啡",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "b4fbfb562ad4863ceb0a12e7110f3da7"
+                                  ]
+                                },
+                                {
+                                  "name": "雀巢葡萄气泡美式咖啡",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "686f606c00000000120167b5"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 2,
+                              "children": [],
+                              "total_posts_count": 1
+                            },
+                            {
+                              "name": "啤酒",
+                              "path": "/表象/实体/物品/起居/食物/饮品/啤酒",
+                              "id": 15162,
+                              "source_stable_id": 681,
+                              "source_type": "实质",
+                              "description": "啤酒类饮品,包括无酒精啤酒、低醇啤酒等",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15831,
+                              "element_count": 3,
+                              "elements": [
+                                {
+                                  "name": "无醇啤酒",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "6879f0f90000000013012f9a"
+                                  ]
+                                },
+                                {
+                                  "name": "Bero无酒精饮料",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "673c37610000000007029ced"
+                                  ]
+                                },
+                                {
+                                  "name": "无酒精啤酒",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "673c37610000000007029ced"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 3,
+                              "children": [],
+                              "total_posts_count": 2
+                            },
+                            {
+                              "name": "茶饮奶茶",
+                              "path": "/表象/实体/物品/起居/食物/饮品/茶饮奶茶",
+                              "id": 15159,
+                              "source_stable_id": 678,
+                              "source_type": "实质",
+                              "description": "茶饮和奶茶类饮品,包括果茶、奶茶等",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15831,
+                              "element_count": 4,
+                              "elements": [
+                                {
+                                  "name": "CoCo奶茶产品",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "68f78b950000000007021a20"
+                                  ]
+                                },
+                                {
+                                  "name": "库迪芝云美荔果茶",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "68c3933e000000001d00a902"
+                                  ]
+                                },
+                                {
+                                  "name": "饮品",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "68c3933e000000001d00a902"
+                                  ]
+                                },
+                                {
+                                  "name": "沪上阿姨奶茶",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "68b69ea9000000001c035a4d"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 4,
+                              "children": [],
+                              "total_posts_count": 3
+                            }
+                          ],
+                          "total_posts_count": 9
+                        }
+                      ],
+                      "total_posts_count": 29
+                    }
+                  ],
+                  "total_posts_count": 59
+                }
+              ],
+              "total_posts_count": 202
+            },
+            {
+              "name": "生物",
+              "path": "/表象/实体/生物",
+              "id": 15719,
+              "source_stable_id": 49,
+              "source_type": "实质",
+              "description": "有生命的自然生命体",
+              "category_nature": "内容",
+              "level": 3,
+              "parent_id": 15946,
+              "element_count": 0,
+              "elements": [],
+              "total_element_count": 104,
+              "children": [
+                {
+                  "name": "动物",
+                  "path": "/表象/实体/生物/动物",
+                  "id": 14899,
+                  "source_stable_id": 100,
+                  "source_type": "实质",
+                  "description": "各类动物生命体",
+                  "category_nature": "维度",
+                  "level": 4,
+                  "parent_id": 15719,
+                  "element_count": 1,
+                  "elements": [
+                    {
+                      "name": "孔雀开屏",
+                      "count": 1,
+                      "post_ids": [
+                        "64662179"
+                      ]
+                    }
+                  ],
+                  "total_element_count": 84,
+                  "children": [
+                    {
+                      "name": "宠物",
+                      "path": "/表象/实体/生物/动物/宠物",
+                      "id": 14943,
+                      "source_stable_id": 243,
+                      "source_type": "实质",
+                      "description": "家养宠物及内容中以宠物形态出现的动物角色",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 14899,
+                      "element_count": 60,
+                      "elements": [
+                        {
+                          "name": "柴犬",
+                          "count": 1,
+                          "post_ids": [
+                            "99823f406c9b376c3998329e1373930f"
+                          ]
+                        },
+                        {
+                          "name": "小驴",
+                          "count": 5,
+                          "post_ids": [
+                            "6961b301000000001a02f6af",
+                            "6964ab0e000000001a035c04",
+                            "6965adce000000001a02a701",
+                            "6966f1df000000001a032514",
+                            "69685275000000000e03c790"
+                          ]
+                        },
+                        {
+                          "name": "柴犬形象",
+                          "count": 1,
+                          "post_ids": [
+                            "68fb6a5c000000000302e5de"
+                          ]
+                        },
+                        {
+                          "name": "宠物",
+                          "count": 4,
+                          "post_ids": [
+                            "67440b66000000000202827e",
+                            "6774ab9a0000000009015a3f",
+                            "68f988f2000000000703ada5"
+                          ]
+                        },
+                        {
+                          "name": "狗狗",
+                          "count": 1,
+                          "post_ids": [
+                            "6711d712000000001b012783"
+                          ]
+                        },
+                        {
+                          "name": "猫狗",
+                          "count": 1,
+                          "post_ids": [
+                            "66daeddb000000002603ea42"
+                          ]
+                        },
+                        {
+                          "name": "猫咪",
+                          "count": 47,
+                          "post_ids": [
+                            "6774ab9a0000000009015a3f",
+                            "686cd3a5000000000d0180b0",
+                            "68708544000000000d026732",
+                            "68737e97000000000d027b81",
+                            "6874c80e000000000d027767",
+                            "6882f593000000001100272d",
+                            "688366bd000000000d024147",
+                            "68875186000000002501649d",
+                            "6892d47c0000000025018c4f",
+                            "68a43a11000000001c03cc96",
+                            "68abe632000000001c0348c0",
+                            "68b69ea9000000001c035a4d",
+                            "68b953e4000000001d00f96f",
+                            "68bf8639000000001c03efd2",
+                            "68ca143d000000001202c3de",
+                            "68ccd4e40000000012030372",
+                            "68d0089400000000120172a5",
+                            "68d76cd100000000120165e4",
+                            "68db5bd00000000007015474",
+                            "68e9b94d0000000007036a6a",
+                            "68ec9d6400000000070389be",
+                            "68ef83150000000007035f42",
+                            "68f0b8140000000007008b05",
+                            "68f1b573000000000702052e",
+                            "68f5976e000000000700dd28",
+                            "68f78b950000000007021a20",
+                            "68fa029e0000000007022932",
+                            "69002ba70000000007008bcc",
+                            "690d977d0000000007036331",
+                            "69114f150000000007001f30",
+                            "6915dfc400000000070224d9"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 60,
+                      "children": [],
+                      "total_posts_count": 41
+                    },
+                    {
+                      "name": "家畜",
+                      "path": "/表象/实体/生物/动物/家畜",
+                      "id": 14951,
+                      "source_stable_id": 268,
+                      "source_type": "实质",
+                      "description": "马、牛、羊等被人类驯养的大型动物及其外观特征",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 14899,
+                      "element_count": 4,
+                      "elements": [
+                        {
+                          "name": "马匹",
+                          "count": 2,
+                          "post_ids": [
+                            "692a535f0000000019026d5b",
+                            "693f94d80000000019025898"
+                          ]
+                        },
+                        {
+                          "name": "飘逸长鬃毛",
+                          "count": 2,
+                          "post_ids": [
+                            "692a535f0000000019026d5b",
+                            "693f94d80000000019025898"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 4,
+                      "children": [],
+                      "total_posts_count": 2
+                    },
+                    {
+                      "name": "虚拟角色",
+                      "path": "/表象/实体/生物/动物/虚拟角色",
+                      "id": 14944,
+                      "source_stable_id": 244,
+                      "source_type": "实质",
+                      "description": "3D渲染、卡通化等非真实动物的虚拟视觉形象",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 14899,
+                      "element_count": 15,
+                      "elements": [
+                        {
+                          "name": "红色毛绒小马",
+                          "count": 13,
+                          "post_ids": [
+                            "6960924b000000001a037a1c",
+                            "6964573a000000000d00800e",
+                            "69698d0c000000001a036078",
+                            "696ad820000000001a022994",
+                            "696c2b7b000000001a02b944",
+                            "696d7ac4000000000e03e459",
+                            "696ede36000000001a028e03",
+                            "6970373f000000000e00f81d",
+                            "697171fd000000000d00bee8",
+                            "697318f2000000001a01fd50",
+                            "697569b0000000001a02448c"
+                          ]
+                        },
+                        {
+                          "name": "蛋仔派对角色",
+                          "count": 1,
+                          "post_ids": [
+                            "68737e97000000000d027b81"
+                          ]
+                        },
+                        {
+                          "name": "金马",
+                          "count": 1,
+                          "post_ids": [
+                            "65027290"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 15,
+                      "children": [],
+                      "total_posts_count": 12
+                    },
+                    {
+                      "name": "野生动物",
+                      "path": "/表象/实体/生物/动物/野生动物",
+                      "id": 14975,
+                      "source_stable_id": 310,
+                      "source_type": "实质",
+                      "description": "自然界中非驯养状态的野生动物",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 14899,
+                      "element_count": 4,
+                      "elements": [
+                        {
+                          "name": "羊狮",
+                          "count": 1,
+                          "post_ids": [
+                            "412f4d35be48179908fef312b53cad43"
+                          ]
+                        },
+                        {
+                          "name": "海豚",
+                          "count": 1,
+                          "post_ids": [
+                            "696079a10000000022031521"
+                          ]
+                        },
+                        {
+                          "name": "蟑螂",
+                          "count": 1,
+                          "post_ids": [
+                            "67e68c9d00000000060282fb"
+                          ]
+                        },
+                        {
+                          "name": "梅花鹿",
+                          "count": 1,
+                          "post_ids": [
+                            "6911532d000000000503bd18"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 4,
+                      "children": [],
+                      "total_posts_count": 3
+                    }
+                  ],
+                  "total_posts_count": 57
+                },
+                {
+                  "name": "植物",
+                  "path": "/表象/实体/生物/植物",
+                  "id": 15723,
+                  "source_stable_id": 54,
+                  "source_type": "实质",
+                  "description": "植物类生命体",
+                  "category_nature": "维度",
+                  "level": 4,
+                  "parent_id": 15719,
+                  "element_count": 0,
+                  "elements": [],
+                  "total_element_count": 20,
+                  "children": [
+                    {
+                      "name": "绿植",
+                      "path": "/表象/实体/生物/植物/绿植",
+                      "id": 14945,
+                      "source_stable_id": 247,
+                      "source_type": "实质",
+                      "description": "室内外摆放的观叶植物及绿色盆栽",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15723,
+                      "element_count": 9,
+                      "elements": [
+                        {
+                          "name": "水杉林",
+                          "count": 1,
+                          "post_ids": [
+                            "6973742d000000002801e8aa"
+                          ]
+                        },
+                        {
+                          "name": "室内绿植",
+                          "count": 5,
+                          "post_ids": [
+                            "682a8f11000000002002a511",
+                            "682bdb47000000002202dfa0",
+                            "682bdbba000000002202b26e",
+                            "6843ab3f000000002202508e",
+                            "68843a4d000000001c037591"
+                          ]
+                        },
+                        {
+                          "name": "植物根系",
+                          "count": 1,
+                          "post_ids": [
+                            "6975b361000000002202d7e8"
+                          ]
+                        },
+                        {
+                          "name": "绿植",
+                          "count": 1,
+                          "post_ids": [
+                            "6968ef250000000021033c7c"
+                          ]
+                        },
+                        {
+                          "name": "落叶",
+                          "count": 1,
+                          "post_ids": [
+                            "691d3112000000001e036559"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 9,
+                      "children": [],
+                      "total_posts_count": 9
+                    },
+                    {
+                      "name": "花卉",
+                      "path": "/表象/实体/生物/植物/花卉",
+                      "id": 14887,
+                      "source_stable_id": 59,
+                      "source_type": "实质",
+                      "description": "具有观赏价值的开花植物",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15723,
+                      "element_count": 3,
+                      "elements": [
+                        {
+                          "name": "花卉",
+                          "count": 3,
+                          "post_ids": [
+                            "46193165",
+                            "65098787"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 11,
+                      "children": [
+                        {
+                          "name": "花卉品种",
+                          "path": "/表象/实体/生物/植物/花卉/花卉品种",
+                          "id": 15929,
+                          "source_stable_id": 1403,
+                          "source_type": "实质",
+                          "description": "具体的花卉物种类型",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 14887,
+                          "element_count": 0,
+                          "elements": [],
+                          "total_element_count": 4,
+                          "children": [
+                            {
+                              "name": "水生花卉",
+                              "path": "/表象/实体/生物/植物/花卉/花卉品种/水生花卉",
+                              "id": 15592,
+                              "source_stable_id": 1408,
+                              "source_type": "实质",
+                              "description": "生长在水中的花卉品种",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15929,
+                              "element_count": 1,
+                              "elements": [
+                                {
+                                  "name": "莲花",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "62675775"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 1,
+                              "children": [],
+                              "total_posts_count": 0
+                            },
+                            {
+                              "name": "观赏花卉",
+                              "path": "/表象/实体/生物/植物/花卉/花卉品种/观赏花卉",
+                              "id": 15591,
+                              "source_stable_id": 1407,
+                              "source_type": "实质",
+                              "description": "观赏性花卉品种",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15929,
+                              "element_count": 3,
+                              "elements": [
+                                {
+                                  "name": "向日葵",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "65602591"
+                                  ]
+                                },
+                                {
+                                  "name": "红玫瑰",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "64246342"
+                                  ]
+                                },
+                                {
+                                  "name": "雪中红梅",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "60527248"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 3,
+                              "children": [],
+                              "total_posts_count": 0
+                            }
+                          ],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "花卉应用",
+                          "path": "/表象/实体/生物/植物/花卉/花卉应用",
+                          "id": 15590,
+                          "source_stable_id": 1406,
+                          "source_type": "实质",
+                          "description": "花卉在设计中的应用形式",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 14887,
+                          "element_count": 3,
+                          "elements": [
+                            {
+                              "name": "花卉素材",
+                              "count": 1,
+                              "post_ids": [
+                                "65098787"
+                              ]
+                            },
+                            {
+                              "name": "花卉元素",
+                              "count": 1,
+                              "post_ids": [
+                                "65091188"
+                              ]
+                            },
+                            {
+                              "name": "花卉盆景",
+                              "count": 1,
+                              "post_ids": [
+                                "64603799"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 3,
+                          "children": [],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "花卉形态",
+                          "path": "/表象/实体/生物/植物/花卉/花卉形态",
+                          "id": 15589,
+                          "source_stable_id": 1404,
+                          "source_type": "实质",
+                          "description": "花卉的数量规模和形态特征",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 14887,
+                          "element_count": 1,
+                          "elements": [
+                            {
+                              "name": "繁花",
+                              "count": 1,
+                              "post_ids": [
+                                "64851907"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 1,
+                          "children": [],
+                          "total_posts_count": 0
+                        }
+                      ],
+                      "total_posts_count": 0
+                    }
+                  ],
+                  "total_posts_count": 9
+                }
+              ],
+              "total_posts_count": 66
+            }
+          ],
+          "total_posts_count": 268
+        },
+        {
+          "name": "符号",
+          "path": "/表象/符号",
+          "id": 15945,
+          "source_stable_id": 40,
+          "source_type": "实质",
+          "description": "内容中可见的文字、图案等视觉符号要素",
+          "category_nature": "内容",
+          "level": 2,
+          "parent_id": 15713,
+          "element_count": 0,
+          "elements": [],
+          "total_element_count": 273,
+          "children": [
+            {
+              "name": "叙事符号",
+              "path": "/表象/符号/叙事符号",
+              "id": 15949,
+              "source_stable_id": 68,
+              "source_type": "实质",
+              "description": "用于叙述、讲述内容的文字符号",
+              "category_nature": "维度",
+              "level": 3,
+              "parent_id": 15945,
+              "element_count": 0,
+              "elements": [],
+              "total_element_count": 19,
+              "children": [
+                {
+                  "name": "叙事文字",
+                  "path": "/表象/符号/叙事符号/叙事文字",
+                  "id": 15730,
+                  "source_stable_id": 69,
+                  "source_type": "实质",
+                  "description": "用于叙述内容的语言文字,如旁白、文字素材等",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 15949,
+                  "element_count": 0,
+                  "elements": [],
+                  "total_element_count": 19,
+                  "children": [
+                    {
+                      "name": "作品文字",
+                      "path": "/表象/符号/叙事符号/叙事文字/作品文字",
+                      "id": 15858,
+                      "source_stable_id": 984,
+                      "source_type": "实质",
+                      "description": "来自影视、音乐、文学等文艺作品中的文字内容",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15730,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 3,
+                      "children": [
+                        {
+                          "name": "影视对白",
+                          "path": "/表象/符号/叙事符号/叙事文字/作品文字/影视对白",
+                          "id": 15335,
+                          "source_stable_id": 782,
+                          "source_type": "实质",
+                          "description": "影视作品中的语言文字,包括台词、对白、旁白、解说词等",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15858,
+                          "element_count": 2,
+                          "elements": [
+                            {
+                              "name": "旁白",
+                              "count": 1,
+                              "post_ids": [
+                                "64662179"
+                              ]
+                            },
+                            {
+                              "name": "对白",
+                              "count": 1,
+                              "post_ids": [
+                                "64400730"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 2,
+                          "children": [],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "歌词唱词",
+                          "path": "/表象/符号/叙事符号/叙事文字/作品文字/歌词唱词",
+                          "id": 15336,
+                          "source_stable_id": 783,
+                          "source_type": "实质",
+                          "description": "音乐相关的文字内容,包括歌词、歌词字幕、唱词等",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15858,
+                          "element_count": 1,
+                          "elements": [
+                            {
+                              "name": "唱词",
+                              "count": 1,
+                              "post_ids": [
+                                "64855234"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 1,
+                          "children": [],
+                          "total_posts_count": 0
+                        }
+                      ],
+                      "total_posts_count": 0
+                    },
+                    {
+                      "name": "叙事篇章",
+                      "path": "/表象/符号/叙事符号/叙事文字/叙事篇章",
+                      "id": 15860,
+                      "source_stable_id": 986,
+                      "source_type": "实质",
+                      "description": "较完整篇幅的叙事性或主题性文本内容",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15730,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 4,
+                      "children": [
+                        {
+                          "name": "故事文本",
+                          "path": "/表象/符号/叙事符号/叙事文字/叙事篇章/故事文本",
+                          "id": 15339,
+                          "source_stable_id": 786,
+                          "source_type": "实质",
+                          "description": "叙事性故事内容,包括段子、故事、作文等",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15860,
+                          "element_count": 4,
+                          "elements": [
+                            {
+                              "name": "搞笑段子",
+                              "count": 4,
+                              "post_ids": [
+                                "56717837",
+                                "64442545",
+                                "64456019",
+                                "64975752"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 4,
+                          "children": [],
+                          "total_posts_count": 0
+                        }
+                      ],
+                      "total_posts_count": 0
+                    },
+                    {
+                      "name": "话语短文",
+                      "path": "/表象/符号/叙事符号/叙事文字/话语短文",
+                      "id": 15859,
+                      "source_stable_id": 985,
+                      "source_type": "实质",
+                      "description": "人物言论摘录或简短创意文字表达",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15730,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 7,
+                      "children": [
+                        {
+                          "name": "文案短句",
+                          "path": "/表象/符号/叙事符号/叙事文字/话语短文/文案短句",
+                          "id": 15338,
+                          "source_stable_id": 787,
+                          "source_type": "实质",
+                          "description": "简短的文案表达,包括扎心文案、短句、顺口溜等",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15859,
+                          "element_count": 3,
+                          "elements": [
+                            {
+                              "name": "口语顺口溜",
+                              "count": 1,
+                              "post_ids": [
+                                "59422696"
+                              ]
+                            },
+                            {
+                              "name": "扎心文案",
+                              "count": 1,
+                              "post_ids": [
+                                "57447289"
+                              ]
+                            },
+                            {
+                              "name": "扎心短句",
+                              "count": 1,
+                              "post_ids": [
+                                "56726652"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 3,
+                          "children": [],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "语录言论",
+                          "path": "/表象/符号/叙事符号/叙事文字/话语短文/语录言论",
+                          "id": 15337,
+                          "source_stable_id": 785,
+                          "source_type": "实质",
+                          "description": "人物发表的言论文字,包括各类语录",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15859,
+                          "element_count": 4,
+                          "elements": [
+                            {
+                              "name": "金句语录",
+                              "count": 1,
+                              "post_ids": [
+                                "82b864cd83e9a5f376214dbc341d6dad"
+                              ]
+                            },
+                            {
+                              "name": "名家语录",
+                              "count": 3,
+                              "post_ids": [
+                                "68e6ecb90000000003021e34",
+                                "68ec3f9d000000000700de97",
+                                "6911177d0000000007031417"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 4,
+                          "children": [],
+                          "total_posts_count": 3
+                        }
+                      ],
+                      "total_posts_count": 3
+                    },
+                    {
+                      "name": "通用文字",
+                      "path": "/表象/符号/叙事符号/叙事文字/通用文字",
+                      "id": 15241,
+                      "source_stable_id": 789,
+                      "source_type": "实质",
+                      "description": "泛指的文字、文本等通用概念",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15730,
+                      "element_count": 5,
+                      "elements": [
+                        {
+                          "name": "文字",
+                          "count": 4,
+                          "post_ids": [
+                            "47567298",
+                            "60570460",
+                            "64603799",
+                            "64801086"
+                          ]
+                        },
+                        {
+                          "name": "结语",
+                          "count": 1,
+                          "post_ids": [
+                            "57447289"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 5,
+                      "children": [],
+                      "total_posts_count": 0
+                    }
+                  ],
+                  "total_posts_count": 3
+                }
+              ],
+              "total_posts_count": 3
+            },
+            {
+              "name": "标识符号",
+              "path": "/表象/符号/标识符号",
+              "id": 15717,
+              "source_stable_id": 46,
+              "source_type": "实质",
+              "description": "用于标识、命名或说明的文字符号",
+              "category_nature": "维度",
+              "level": 3,
+              "parent_id": 15945,
+              "element_count": 0,
+              "elements": [],
+              "total_element_count": 31,
+              "children": [
+                {
+                  "name": "政治符号",
+                  "path": "/表象/符号/标识符号/政治符号",
+                  "id": 14913,
+                  "source_stable_id": 130,
+                  "source_type": "实质",
+                  "description": "具有政治、革命、爱国等象征意义的视觉标识和文字标语",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 15717,
+                  "element_count": 5,
+                  "elements": [
+                    {
+                      "name": "政治符号",
+                      "count": 2,
+                      "post_ids": [
+                        "4020e56c08340e92c9862e481c07d2e2",
+                        "b64188c6bcb0fb359d8e8075671584d6"
+                      ]
+                    },
+                    {
+                      "name": "政党标识",
+                      "count": 2,
+                      "post_ids": [
+                        "4bab077aa99a235a81c41631af69aa78",
+                        "accf5d531aaa9ef7b9e6fee360944151"
+                      ]
+                    },
+                    {
+                      "name": "英雄画像",
+                      "count": 1,
+                      "post_ids": [
+                        "64076321"
+                      ]
+                    }
+                  ],
+                  "total_element_count": 5,
+                  "children": [],
+                  "total_posts_count": 0
+                },
+                {
+                  "name": "文本标识",
+                  "path": "/表象/符号/标识符号/文本标识",
+                  "id": 15725,
+                  "source_stable_id": 56,
+                  "source_type": "实质",
+                  "description": "用于标识或说明的文字,如作品标题、视频字幕等",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 15717,
+                  "element_count": 0,
+                  "elements": [],
+                  "total_element_count": 26,
+                  "children": [
+                    {
+                      "name": "字幕",
+                      "path": "/表象/符号/标识符号/文本标识/字幕",
+                      "id": 14958,
+                      "source_stable_id": 291,
+                      "source_type": "实质",
+                      "description": "视频画面中同步呈现的对白、翻译及提示文字",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15725,
+                      "element_count": 5,
+                      "elements": [
+                        {
+                          "name": "字幕",
+                          "count": 4,
+                          "post_ids": [
+                            "46193165",
+                            "56380736",
+                            "59587187",
+                            "65114702"
+                          ]
+                        },
+                        {
+                          "name": "交互字幕",
+                          "count": 1,
+                          "post_ids": [
+                            "64855234"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 5,
+                      "children": [],
+                      "total_posts_count": 0
+                    },
+                    {
+                      "name": "数据清单",
+                      "path": "/表象/符号/标识符号/文本标识/数据清单",
+                      "id": 14961,
+                      "source_stable_id": 294,
+                      "source_type": "实质",
+                      "description": "日期信息、量化数据、清单等结构化文字",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15725,
+                      "element_count": 2,
+                      "elements": [
+                        {
+                          "name": "名单",
+                          "count": 1,
+                          "post_ids": [
+                            "d7a04d4550a7c852ac4a16301e600aa5"
+                          ]
+                        },
+                        {
+                          "name": "量化数据",
+                          "count": 1,
+                          "post_ids": [
+                            "64415308"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 2,
+                      "children": [],
+                      "total_posts_count": 0
+                    },
+                    {
+                      "name": "标注标记",
+                      "path": "/表象/符号/标识符号/文本标识/标注标记",
+                      "id": 14960,
+                      "source_stable_id": 293,
+                      "source_type": "实质",
+                      "description": "画面上叠加的标识、标签等说明性文字",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15725,
+                      "element_count": 5,
+                      "elements": [
+                        {
+                          "name": "标识",
+                          "count": 1,
+                          "post_ids": [
+                            "b76365fa6008e98aea8b6876bcc4e3d0"
+                          ]
+                        },
+                        {
+                          "name": "红点",
+                          "count": 1,
+                          "post_ids": [
+                            "6776b27d0000000013018545"
+                          ]
+                        },
+                        {
+                          "name": "地标",
+                          "count": 2,
+                          "post_ids": [
+                            "68a8241a000000001c011403",
+                            "693a2428000000001e027639"
+                          ]
+                        },
+                        {
+                          "name": "退休群",
+                          "count": 1,
+                          "post_ids": [
+                            "64855234"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 5,
+                      "children": [],
+                      "total_posts_count": 3
+                    },
+                    {
+                      "name": "标题标语",
+                      "path": "/表象/符号/标识符号/文本标识/标题标语",
+                      "id": 14959,
+                      "source_stable_id": 292,
+                      "source_type": "实质",
+                      "description": "作品标题、主题名称、宣传口号等醒目展示文字",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15725,
+                      "element_count": 12,
+                      "elements": [
+                        {
+                          "name": "标题",
+                          "count": 6,
+                          "post_ids": [
+                            "4020e56c08340e92c9862e481c07d2e2",
+                            "57442193",
+                            "57853678",
+                            "63712731",
+                            "9b95ed26ea9f265079b09e2d1032bc7c",
+                            "f97823103ca8ad6cd69037958d17ae32"
+                          ]
+                        },
+                        {
+                          "name": "新闻标题",
+                          "count": 1,
+                          "post_ids": [
+                            "4bab077aa99a235a81c41631af69aa78"
+                          ]
+                        },
+                        {
+                          "name": "土城十讲",
+                          "count": 3,
+                          "post_ids": [
+                            "3b8bfac263ace2eb578c85c98630e566",
+                            "b90a1bbdf6dcddcaf4f4ee2f201e1d26",
+                            "e04fd15a06f8c97486e48990e85c8492"
+                          ]
+                        },
+                        {
+                          "name": "未来无限",
+                          "count": 1,
+                          "post_ids": [
+                            "6732cd8a000000001b02f948"
+                          ]
+                        },
+                        {
+                          "name": "猫德",
+                          "count": 1,
+                          "post_ids": [
+                            "6880a7a7000000000b02f5a6"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 12,
+                      "children": [],
+                      "total_posts_count": 2
+                    },
+                    {
+                      "name": "通用文字",
+                      "path": "/表象/符号/标识符号/文本标识/通用文字",
+                      "id": 14962,
+                      "source_stable_id": 295,
+                      "source_type": "实质",
+                      "description": "泛指的文字、文本等通用概念",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15725,
+                      "element_count": 2,
+                      "elements": [
+                        {
+                          "name": "文字",
+                          "count": 2,
+                          "post_ids": [
+                            "58933772",
+                            "64029781"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 2,
+                      "children": [],
+                      "total_posts_count": 0
+                    }
+                  ],
+                  "total_posts_count": 5
+                }
+              ],
+              "total_posts_count": 5
+            },
+            {
+              "name": "表达符号",
+              "path": "/表象/符号/表达符号",
+              "id": 15716,
+              "source_stable_id": 45,
+              "source_type": "实质",
+              "description": "用于表达情感、意图或祝愿的文字符号",
+              "category_nature": "维度",
+              "level": 3,
+              "parent_id": 15945,
+              "element_count": 0,
+              "elements": [],
+              "total_element_count": 137,
+              "children": [
+                {
+                  "name": "祝福语",
+                  "path": "/表象/符号/表达符号/祝福语",
+                  "id": 15724,
+                  "source_stable_id": 55,
+                  "source_type": "实质",
+                  "description": "表达美好祝愿的文字内容,如吉祥如意、早安问候、节日祝福等",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 15716,
+                  "element_count": 0,
+                  "elements": [],
+                  "total_element_count": 122,
+                  "children": [
+                    {
+                      "name": "吉祥用语",
+                      "path": "/表象/符号/表达符号/祝福语/吉祥用语",
+                      "id": 14911,
+                      "source_stable_id": 125,
+                      "source_type": "实质",
+                      "description": "通用的吉祥话语和祝福词句,如吉祥如意、幸福安康等泛用祝福内容",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15724,
+                      "element_count": 2,
+                      "elements": [
+                        {
+                          "name": "祝福元素",
+                          "count": 1,
+                          "post_ids": [
+                            "65801945"
+                          ]
+                        },
+                        {
+                          "name": "祝福视觉",
+                          "count": 1,
+                          "post_ids": [
+                            "65602591"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 75,
+                      "children": [
+                        {
+                          "name": "动态祝福",
+                          "path": "/表象/符号/表达符号/祝福语/吉祥用语/动态祝福",
+                          "id": 15557,
+                          "source_stable_id": 1351,
+                          "source_type": "实质",
+                          "description": "以动态效果或视频形式呈现的祝福内容",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 14911,
+                          "element_count": 3,
+                          "elements": [
+                            {
+                              "name": "祝福素材",
+                              "count": 1,
+                              "post_ids": [
+                                "65067062"
+                              ]
+                            },
+                            {
+                              "name": "动态祝福",
+                              "count": 2,
+                              "post_ids": [
+                                "47951584",
+                                "64886621"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 3,
+                          "children": [],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "特定寓意",
+                          "path": "/表象/符号/表达符号/祝福语/吉祥用语/特定寓意",
+                          "id": 15558,
+                          "source_stable_id": 1352,
+                          "source_type": "实质",
+                          "description": "具有特定主题寓意的吉祥表达,如圆满、长寿、好兆头等",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 14911,
+                          "element_count": 4,
+                          "elements": [
+                            {
+                              "name": "十全十美",
+                              "count": 3,
+                              "post_ids": [
+                                "59323915",
+                                "65402572",
+                                "65407794"
+                              ]
+                            },
+                            {
+                              "name": "长寿祝福",
+                              "count": 1,
+                              "post_ids": [
+                                "64662179"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 4,
+                          "children": [],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "祝福文字",
+                          "path": "/表象/符号/表达符号/祝福语/吉祥用语/祝福文字",
+                          "id": 15556,
+                          "source_stable_id": 1350,
+                          "source_type": "实质",
+                          "description": "以静态文字、字幕、文案等形式呈现的祝福内容",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 14911,
+                          "element_count": 5,
+                          "elements": [
+                            {
+                              "name": "祝福文案",
+                              "count": 2,
+                              "post_ids": [
+                                "65450821",
+                                "65608649"
+                              ]
+                            },
+                            {
+                              "name": "祝福文字",
+                              "count": 2,
+                              "post_ids": [
+                                "60527248",
+                                "65091188"
+                              ]
+                            },
+                            {
+                              "name": "祝福字幕",
+                              "count": 1,
+                              "post_ids": [
+                                "64662179"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 5,
+                          "children": [],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "祝福词句",
+                          "path": "/表象/符号/表达符号/祝福语/吉祥用语/祝福词句",
+                          "id": 15555,
+                          "source_stable_id": 1349,
+                          "source_type": "实质",
+                          "description": "通用的吉祥祝福话语和词句的泛称",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 14911,
+                          "element_count": 61,
+                          "elements": [
+                            {
+                              "name": "祝福语",
+                              "count": 36,
+                              "post_ids": [
+                                "45436779",
+                                "47537727",
+                                "58896244",
+                                "58933772",
+                                "59146568",
+                                "60570460",
+                                "62675775",
+                                "64162740",
+                                "64415308",
+                                "64603799",
+                                "64650216",
+                                "64816949",
+                                "64820485",
+                                "64851184",
+                                "64851907",
+                                "64886621",
+                                "64903753",
+                                "65026165",
+                                "65027290",
+                                "65061667",
+                                "65084923",
+                                "65133109",
+                                "65162446",
+                                "65170329",
+                                "65196789",
+                                "65203608",
+                                "65298913",
+                                "65411458",
+                                "65450821",
+                                "65489167",
+                                "65529862",
+                                "65571251",
+                                "65600878",
+                                "65604986",
+                                "65801945",
+                                "682086dc0000000012003cbd"
+                              ]
+                            },
+                            {
+                              "name": "祝福",
+                              "count": 23,
+                              "post_ids": [
+                                "46193165",
+                                "47567298",
+                                "59323915",
+                                "60527248",
+                                "62675775",
+                                "63146000",
+                                "64203380",
+                                "64246342",
+                                "64603799",
+                                "64662179",
+                                "65135957",
+                                "65162446",
+                                "65233075",
+                                "65270425",
+                                "65402572",
+                                "65407794",
+                                "65489167",
+                                "65529862",
+                                "65600878",
+                                "65602591",
+                                "65801945"
+                              ]
+                            },
+                            {
+                              "name": "系列祝福",
+                              "count": 1,
+                              "post_ids": [
+                                "65139072"
+                              ]
+                            },
+                            {
+                              "name": "祝福语录",
+                              "count": 1,
+                              "post_ids": [
+                                "61822382"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 61,
+                          "children": [],
+                          "total_posts_count": 1
+                        }
+                      ],
+                      "total_posts_count": 1
+                    },
+                    {
+                      "name": "日常问候",
+                      "path": "/表象/符号/表达符号/祝福语/日常问候",
+                      "id": 14910,
+                      "source_stable_id": 124,
+                      "source_type": "实质",
+                      "description": "日常生活中的问候和祝福,如早安问候、日常关怀等",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15724,
+                      "element_count": 1,
+                      "elements": [
+                        {
+                          "name": "早安",
+                          "count": 1,
+                          "post_ids": [
+                            "65061667"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 1,
+                      "children": [],
+                      "total_posts_count": 0
+                    },
+                    {
+                      "name": "节日祝福",
+                      "path": "/表象/符号/表达符号/祝福语/节日祝福",
+                      "id": 14908,
+                      "source_stable_id": 122,
+                      "source_type": "实质",
+                      "description": "与特定节日相关的祝福语,如春节、中秋、国庆、元宵等节日的祝愿内容",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15724,
+                      "element_count": 43,
+                      "elements": [
+                        {
+                          "name": "节日祝福",
+                          "count": 21,
+                          "post_ids": [
+                            "47951584",
+                            "58933772",
+                            "59323915",
+                            "61822382",
+                            "64162740",
+                            "64203380",
+                            "64820485",
+                            "64851907",
+                            "64886621",
+                            "65233075",
+                            "65298913",
+                            "65402572",
+                            "65411458",
+                            "65450821",
+                            "65489167",
+                            "65529862",
+                            "65571251",
+                            "65604986",
+                            "65608649",
+                            "65801945"
+                          ]
+                        },
+                        {
+                          "name": "新年祝福",
+                          "count": 10,
+                          "post_ids": [
+                            "47537727",
+                            "65026165",
+                            "65027290",
+                            "65061667",
+                            "65084923",
+                            "65091188",
+                            "65098787",
+                            "65170329",
+                            "65203608"
+                          ]
+                        },
+                        {
+                          "name": "春节祝福",
+                          "count": 4,
+                          "post_ids": [
+                            "47567298",
+                            "64314678",
+                            "65133109",
+                            "65196789"
+                          ]
+                        },
+                        {
+                          "name": "新春祝福",
+                          "count": 2,
+                          "post_ids": [
+                            "65139072",
+                            "65407794"
+                          ]
+                        },
+                        {
+                          "name": "腊八节祝福",
+                          "count": 1,
+                          "post_ids": [
+                            "64162740"
+                          ]
+                        },
+                        {
+                          "name": "跨年祝福",
+                          "count": 1,
+                          "post_ids": [
+                            "63146000"
+                          ]
+                        },
+                        {
+                          "name": "中秋祝福",
+                          "count": 2,
+                          "post_ids": [
+                            "59121599",
+                            "59146568"
+                          ]
+                        },
+                        {
+                          "name": "中秋节祝福",
+                          "count": 1,
+                          "post_ids": [
+                            "59146568"
+                          ]
+                        },
+                        {
+                          "name": "国庆祝福",
+                          "count": 1,
+                          "post_ids": [
+                            "58896244"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 43,
+                      "children": [],
+                      "total_posts_count": 0
+                    },
+                    {
+                      "name": "节气祝福",
+                      "path": "/表象/符号/表达符号/祝福语/节气祝福",
+                      "id": 14909,
+                      "source_stable_id": 123,
+                      "source_type": "实质",
+                      "description": "与二十四节气相关的祝福语,如立春、冬至等时令的祝愿内容",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15724,
+                      "element_count": 3,
+                      "elements": [
+                        {
+                          "name": "立冬祝福",
+                          "count": 1,
+                          "post_ids": [
+                            "60570460"
+                          ]
+                        },
+                        {
+                          "name": "冬至祝福",
+                          "count": 1,
+                          "post_ids": [
+                            "45436779"
+                          ]
+                        },
+                        {
+                          "name": "节气祝福",
+                          "count": 1,
+                          "post_ids": [
+                            "64029781"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 3,
+                      "children": [],
+                      "total_posts_count": 0
+                    }
+                  ],
+                  "total_posts_count": 1
+                },
+                {
+                  "name": "话术",
+                  "path": "/表象/符号/表达符号/话术",
+                  "id": 14890,
+                  "source_stable_id": 70,
+                  "source_type": "实质",
+                  "description": "为达到特定目的而设计的语言表达",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 15716,
+                  "element_count": 2,
+                  "elements": [
+                    {
+                      "name": "话术",
+                      "count": 2,
+                      "post_ids": [
+                        "65402572",
+                        "65801945"
+                      ]
+                    }
+                  ],
+                  "total_element_count": 15,
+                  "children": [
+                    {
+                      "name": "互动引导",
+                      "path": "/表象/符号/表达符号/话术/互动引导",
+                      "id": 15926,
+                      "source_stable_id": 1339,
+                      "source_type": "实质",
+                      "description": "引导受众进行互动、转发、分享等行为的语言表达",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 14890,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 3,
+                      "children": [
+                        {
+                          "name": "引导提示",
+                          "path": "/表象/符号/表达符号/话术/互动引导/引导提示",
+                          "id": 15551,
+                          "source_stable_id": 1343,
+                          "source_type": "实质",
+                          "description": "在内容中起引导、提示作用的语言表达",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15926,
+                          "element_count": 3,
+                          "elements": [
+                            {
+                              "name": "引导话术",
+                              "count": 3,
+                              "post_ids": [
+                                "57373464",
+                                "57919607",
+                                "65801945"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 3,
+                          "children": [],
+                          "total_posts_count": 0
+                        }
+                      ],
+                      "total_posts_count": 0
+                    },
+                    {
+                      "name": "创意文案",
+                      "path": "/表象/符号/表达符号/话术/创意文案",
+                      "id": 15548,
+                      "source_stable_id": 1340,
+                      "source_type": "实质",
+                      "description": "具有表现力和传播力的创意性文字内容",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 14890,
+                      "element_count": 6,
+                      "elements": [
+                        {
+                          "name": "网络热梗",
+                          "count": 2,
+                          "post_ids": [
+                            "6964ab0e000000001a035c04",
+                            "696ede36000000001a028e03"
+                          ]
+                        },
+                        {
+                          "name": "文案",
+                          "count": 3,
+                          "post_ids": [
+                            "63712737",
+                            "64415308",
+                            "65067062"
+                          ]
+                        },
+                        {
+                          "name": "顺口溜",
+                          "count": 1,
+                          "post_ids": [
+                            "59422696"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 6,
+                      "children": [],
+                      "total_posts_count": 2
+                    },
+                    {
+                      "name": "劝导寄语",
+                      "path": "/表象/符号/表达符号/话术/劝导寄语",
+                      "id": 15550,
+                      "source_stable_id": 1342,
+                      "source_type": "实质",
+                      "description": "带有劝告、祝福、寄语性质的话语",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 14890,
+                      "element_count": 1,
+                      "elements": [
+                        {
+                          "name": "寄语",
+                          "count": 1,
+                          "post_ids": [
+                            "64314678"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 1,
+                      "children": [],
+                      "total_posts_count": 0
+                    },
+                    {
+                      "name": "场景话术",
+                      "path": "/表象/符号/表达符号/话术/场景话术",
+                      "id": 15549,
+                      "source_stable_id": 1341,
+                      "source_type": "实质",
+                      "description": "特定社交或职业场景中使用的语言表达",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 14890,
+                      "element_count": 3,
+                      "elements": [
+                        {
+                          "name": "职场黑话",
+                          "count": 1,
+                          "post_ids": [
+                            "6810596c000000002301d1a6"
+                          ]
+                        },
+                        {
+                          "name": "办公搭子",
+                          "count": 1,
+                          "post_ids": [
+                            "6879f4b1000000000b02c2e0"
+                          ]
+                        },
+                        {
+                          "name": "修车话术",
+                          "count": 1,
+                          "post_ids": [
+                            "64442545"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 3,
+                      "children": [],
+                      "total_posts_count": 2
+                    }
+                  ],
+                  "total_posts_count": 4
+                }
+              ],
+              "total_posts_count": 5
+            },
+            {
+              "name": "装饰符号",
+              "path": "/表象/符号/装饰符号",
+              "id": 15718,
+              "source_stable_id": 47,
+              "source_type": "实质",
+              "description": "用于装饰或美化的图案、纹理等视觉符号",
+              "category_nature": "维度",
+              "level": 3,
+              "parent_id": 15945,
+              "element_count": 0,
+              "elements": [],
+              "total_element_count": 86,
+              "children": [
+                {
+                  "name": "吉祥图案",
+                  "path": "/表象/符号/装饰符号/吉祥图案",
+                  "id": 14891,
+                  "source_stable_id": 76,
+                  "source_type": "实质",
+                  "description": "中国传统文化中代表吉祥、福运的视觉符号,如中国结、福字、财神、祥云等",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 15718,
+                  "element_count": 2,
+                  "elements": [
+                    {
+                      "name": "万马奔腾",
+                      "count": 1,
+                      "post_ids": [
+                        "65600878"
+                      ]
+                    },
+                    {
+                      "name": "节日符号",
+                      "count": 1,
+                      "post_ids": [
+                        "63146000"
+                      ]
+                    }
+                  ],
+                  "total_element_count": 51,
+                  "children": [
+                    {
+                      "name": "文字图案",
+                      "path": "/表象/符号/装饰符号/吉祥图案/文字图案",
+                      "id": 15514,
+                      "source_stable_id": 1291,
+                      "source_type": "实质",
+                      "description": "以文字为主体的吉祥图案,如福字、寿字等汉字符号",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 14891,
+                      "element_count": 2,
+                      "elements": [
+                        {
+                          "name": "福字",
+                          "count": 2,
+                          "post_ids": [
+                            "64029781",
+                            "65407794"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 2,
+                      "children": [],
+                      "total_posts_count": 0
+                    },
+                    {
+                      "name": "物品图案",
+                      "path": "/表象/符号/装饰符号/吉祥图案/物品图案",
+                      "id": 15516,
+                      "source_stable_id": 1293,
+                      "source_type": "实质",
+                      "description": "以具体物品为主体的吉祥图案,如金元宝、烟花等实物符号",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 14891,
+                      "element_count": 5,
+                      "elements": [
+                        {
+                          "name": "烟花",
+                          "count": 3,
+                          "post_ids": [
+                            "58896244",
+                            "64851907",
+                            "65602591"
+                          ]
+                        },
+                        {
+                          "name": "喜庆元素",
+                          "count": 1,
+                          "post_ids": [
+                            "65026165"
+                          ]
+                        },
+                        {
+                          "name": "大红灯笼",
+                          "count": 1,
+                          "post_ids": [
+                            "60570460"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 5,
+                      "children": [],
+                      "total_posts_count": 0
+                    },
+                    {
+                      "name": "神明图案",
+                      "path": "/表象/符号/装饰符号/吉祥图案/神明图案",
+                      "id": 15515,
+                      "source_stable_id": 1292,
+                      "source_type": "实质",
+                      "description": "以神明形象为主体的吉祥图案,如财神、门神等传统神明",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 14891,
+                      "element_count": 2,
+                      "elements": [
+                        {
+                          "name": "Q版财神",
+                          "count": 1,
+                          "post_ids": [
+                            "65270425"
+                          ]
+                        },
+                        {
+                          "name": "财神",
+                          "count": 1,
+                          "post_ids": [
+                            "64816949"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 2,
+                      "children": [],
+                      "total_posts_count": 0
+                    },
+                    {
+                      "name": "综合意象",
+                      "path": "/表象/符号/装饰符号/吉祥图案/综合意象",
+                      "id": 15517,
+                      "source_stable_id": 1294,
+                      "source_type": "实质",
+                      "description": "抽象的吉祥意象和泛指性概念,包括形状、色彩及各类吉祥寓意的统称",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 14891,
+                      "element_count": 2,
+                      "elements": [
+                        {
+                          "name": "民俗文化符号",
+                          "count": 2,
+                          "post_ids": [
+                            "45436779",
+                            "64851907"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 40,
+                      "children": [
+                        {
+                          "name": "元素概念",
+                          "path": "/表象/符号/装饰符号/吉祥图案/综合意象/元素概念",
+                          "id": 15520,
+                          "source_stable_id": 1297,
+                          "source_type": "实质",
+                          "description": "以\"元素\"为核心的泛指性概念,如吉祥元素、民俗元素等",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15517,
+                          "element_count": 12,
+                          "elements": [
+                            {
+                              "name": "吉祥元素",
+                              "count": 2,
+                              "post_ids": [
+                                "59323915",
+                                "65608649"
+                              ]
+                            },
+                            {
+                              "name": "民俗元素",
+                              "count": 5,
+                              "post_ids": [
+                                "58896244",
+                                "64820485",
+                                "65133109",
+                                "65489167",
+                                "65602591"
+                              ]
+                            },
+                            {
+                              "name": "传统吉祥元素",
+                              "count": 4,
+                              "post_ids": [
+                                "47951584",
+                                "65027290",
+                                "65162446",
+                                "65298913"
+                              ]
+                            },
+                            {
+                              "name": "民俗吉祥符号",
+                              "count": 1,
+                              "post_ids": [
+                                "64820485"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 12,
+                          "children": [],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "寓意概念",
+                          "path": "/表象/符号/装饰符号/吉祥图案/综合意象/寓意概念",
+                          "id": 15522,
+                          "source_stable_id": 1299,
+                          "source_type": "实质",
+                          "description": "以\"寓意\"为核心的泛指性概念,如吉祥寓意、传统吉祥等",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15517,
+                          "element_count": 2,
+                          "elements": [
+                            {
+                              "name": "民俗",
+                              "count": 1,
+                              "post_ids": [
+                                "65133109"
+                              ]
+                            },
+                            {
+                              "name": "吉祥寓意",
+                              "count": 1,
+                              "post_ids": [
+                                "64662179"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 2,
+                          "children": [],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "形状色彩",
+                          "path": "/表象/符号/装饰符号/吉祥图案/综合意象/形状色彩",
+                          "id": 15518,
+                          "source_stable_id": 1295,
+                          "source_type": "实质",
+                          "description": "具有特定形状或色彩的吉祥符号,如爱心、中国红等",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15517,
+                          "element_count": 1,
+                          "elements": [
+                            {
+                              "name": "中国红",
+                              "count": 1,
+                              "post_ids": [
+                                "64246342"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 1,
+                          "children": [],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "意象概念",
+                          "path": "/表象/符号/装饰符号/吉祥图案/综合意象/意象概念",
+                          "id": 15519,
+                          "source_stable_id": 1296,
+                          "source_type": "实质",
+                          "description": "以\"意象\"为核心的泛指性概念,如吉祥意象、传统吉祥意象等",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15517,
+                          "element_count": 8,
+                          "elements": [
+                            {
+                              "name": "吉祥意象",
+                              "count": 5,
+                              "post_ids": [
+                                "65067062",
+                                "65407794",
+                                "65489167",
+                                "65571251",
+                                "65600878"
+                              ]
+                            },
+                            {
+                              "name": "意象元素",
+                              "count": 2,
+                              "post_ids": [
+                                "59121599",
+                                "59146568"
+                              ]
+                            },
+                            {
+                              "name": "意象",
+                              "count": 1,
+                              "post_ids": [
+                                "65529862"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 8,
+                          "children": [],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "符号概念",
+                          "path": "/表象/符号/装饰符号/吉祥图案/综合意象/符号概念",
+                          "id": 15521,
+                          "source_stable_id": 1298,
+                          "source_type": "实质",
+                          "description": "以\"符号\"为核心的泛指性概念,如吉祥符号、民俗符号等",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15517,
+                          "element_count": 15,
+                          "elements": [
+                            {
+                              "name": "民俗符号",
+                              "count": 7,
+                              "post_ids": [
+                                "64729260",
+                                "64903753",
+                                "65170329",
+                                "65233075",
+                                "65450821",
+                                "65604986"
+                              ]
+                            },
+                            {
+                              "name": "吉祥符号",
+                              "count": 4,
+                              "post_ids": [
+                                "59323915",
+                                "60570460",
+                                "65084923",
+                                "65270425"
+                              ]
+                            },
+                            {
+                              "name": "传统民俗符号",
+                              "count": 2,
+                              "post_ids": [
+                                "65139072",
+                                "65411458"
+                              ]
+                            },
+                            {
+                              "name": "传统吉祥符号",
+                              "count": 1,
+                              "post_ids": [
+                                "58933772"
+                              ]
+                            },
+                            {
+                              "name": "历史符号",
+                              "count": 1,
+                              "post_ids": [
+                                "59587187"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 15,
+                          "children": [],
+                          "total_posts_count": 0
+                        }
+                      ],
+                      "total_posts_count": 0
+                    }
+                  ],
+                  "total_posts_count": 0
+                },
+                {
+                  "name": "装饰元素",
+                  "path": "/表象/符号/装饰符号/装饰元素",
+                  "id": 14886,
+                  "source_stable_id": 57,
+                  "source_type": "实质",
+                  "description": "用于装饰或美化的图案、纹理、文字等视觉元素",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 15718,
+                  "element_count": 8,
+                  "elements": [
+                    {
+                      "name": "新月",
+                      "count": 1,
+                      "post_ids": [
+                        "89627e4bf8ad865f175c54e3b0ddd2cd"
+                      ]
+                    },
+                    {
+                      "name": "宫廷元素",
+                      "count": 1,
+                      "post_ids": [
+                        "99823f406c9b376c3998329e1373930f"
+                      ]
+                    },
+                    {
+                      "name": "时尚元素",
+                      "count": 1,
+                      "post_ids": [
+                        "b6482cda993c100f39d6eccf65261a24"
+                      ]
+                    },
+                    {
+                      "name": "元素",
+                      "count": 5,
+                      "post_ids": [
+                        "47537727",
+                        "56380736",
+                        "65067062",
+                        "65571251",
+                        "6975b27c000000002202d2fb"
+                      ]
+                    }
+                  ],
+                  "total_element_count": 35,
+                  "children": [
+                    {
+                      "name": "动态装饰",
+                      "path": "/表象/符号/装饰符号/装饰元素/动态装饰",
+                      "id": 15263,
+                      "source_stable_id": 828,
+                      "source_type": "实质",
+                      "description": "具有动态效果的装饰元素",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 14886,
+                      "element_count": 3,
+                      "elements": [
+                        {
+                          "name": "贴纸",
+                          "count": 1,
+                          "post_ids": [
+                            "6794ca60000000001801ba29"
+                          ]
+                        },
+                        {
+                          "name": "动态烟花",
+                          "count": 1,
+                          "post_ids": [
+                            "65600878"
+                          ]
+                        },
+                        {
+                          "name": "粒子特效",
+                          "count": 1,
+                          "post_ids": [
+                            "47567298"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 3,
+                      "children": [],
+                      "total_posts_count": 1
+                    },
+                    {
+                      "name": "图案装饰",
+                      "path": "/表象/符号/装饰符号/装饰元素/图案装饰",
+                      "id": 15261,
+                      "source_stable_id": 825,
+                      "source_type": "实质",
+                      "description": "各种图案纹样类装饰元素,包括动物、印花、几何等图案",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 14886,
+                      "element_count": 1,
+                      "elements": [
+                        {
+                          "name": "彩绘",
+                          "count": 1,
+                          "post_ids": [
+                            "12357835"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 15,
+                      "children": [
+                        {
+                          "name": "几何图案",
+                          "path": "/表象/符号/装饰符号/装饰元素/图案装饰/几何图案",
+                          "id": 15267,
+                          "source_stable_id": 832,
+                          "source_type": "实质",
+                          "description": "几何形状的图案装饰",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15261,
+                          "element_count": 5,
+                          "elements": [
+                            {
+                              "name": "格纹",
+                              "count": 3,
+                              "post_ids": [
+                                "696f0da3000000001a029d29",
+                                "696f8d95000000001a028641",
+                                "6971878d000000001a01e6cc"
+                              ]
+                            },
+                            {
+                              "name": "黑白条纹",
+                              "count": 1,
+                              "post_ids": [
+                                "69647323000000001a01ef60"
+                              ]
+                            },
+                            {
+                              "name": "红色方块",
+                              "count": 1,
+                              "post_ids": [
+                                "69647323000000001a01ef60"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 5,
+                          "children": [],
+                          "total_posts_count": 4
+                        },
+                        {
+                          "name": "动物图案",
+                          "path": "/表象/符号/装饰符号/装饰元素/图案装饰/动物图案",
+                          "id": 15265,
+                          "source_stable_id": 830,
+                          "source_type": "实质",
+                          "description": "动物形象的图案装饰",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15261,
+                          "element_count": 4,
+                          "elements": [
+                            {
+                              "name": "骷髅",
+                              "count": 1,
+                              "post_ids": [
+                                "6975b361000000002202d7e8"
+                              ]
+                            },
+                            {
+                              "name": "动物脸",
+                              "count": 1,
+                              "post_ids": [
+                                "66daeddb000000002603ea42"
+                              ]
+                            },
+                            {
+                              "name": "动物轮廓",
+                              "count": 1,
+                              "post_ids": [
+                                "691d3112000000001e036559"
+                              ]
+                            },
+                            {
+                              "name": "鲸鱼造型",
+                              "count": 1,
+                              "post_ids": [
+                                "69003bb30000000004015797"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 4,
+                          "children": [],
+                          "total_posts_count": 4
+                        },
+                        {
+                          "name": "印花图案",
+                          "path": "/表象/符号/装饰符号/装饰元素/图案装饰/印花图案",
+                          "id": 15266,
+                          "source_stable_id": 831,
+                          "source_type": "实质",
+                          "description": "印制在物品上的图案装饰",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15261,
+                          "element_count": 3,
+                          "elements": [
+                            {
+                              "name": "印花",
+                              "count": 1,
+                              "post_ids": [
+                                "6781e8640000000001001d18"
+                              ]
+                            },
+                            {
+                              "name": "假发图案",
+                              "count": 1,
+                              "post_ids": [
+                                "66519efa000000001500a2bb"
+                              ]
+                            },
+                            {
+                              "name": "卡通印花",
+                              "count": 1,
+                              "post_ids": [
+                                "68f5976e000000000700dd28"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 3,
+                          "children": [],
+                          "total_posts_count": 3
+                        },
+                        {
+                          "name": "符号图案",
+                          "path": "/表象/符号/装饰符号/装饰元素/图案装饰/符号图案",
+                          "id": 15268,
+                          "source_stable_id": 833,
+                          "source_type": "实质",
+                          "description": "具有特定意义的符号类图案装饰",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15261,
+                          "element_count": 2,
+                          "elements": [
+                            {
+                              "name": "点状星芒",
+                              "count": 1,
+                              "post_ids": [
+                                "696b537f00000000220398ad"
+                              ]
+                            },
+                            {
+                              "name": "扑克牌符号",
+                              "count": 1,
+                              "post_ids": [
+                                "6687d458000000000a026f91"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 2,
+                          "children": [],
+                          "total_posts_count": 2
+                        }
+                      ],
+                      "total_posts_count": 13
+                    },
+                    {
+                      "name": "文字装饰",
+                      "path": "/表象/符号/装饰符号/装饰元素/文字装饰",
+                      "id": 15260,
+                      "source_stable_id": 824,
+                      "source_type": "实质",
+                      "description": "以文字为主体的装饰元素,包括艺术字体、排版设计等",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 14886,
+                      "element_count": 2,
+                      "elements": [
+                        {
+                          "name": "书法文字",
+                          "count": 1,
+                          "post_ids": [
+                            "64203380"
+                          ]
+                        },
+                        {
+                          "name": "书法字体",
+                          "count": 1,
+                          "post_ids": [
+                            "47567298"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 2,
+                      "children": [],
+                      "total_posts_count": 0
+                    },
+                    {
+                      "name": "表情装饰",
+                      "path": "/表象/符号/装饰符号/装饰元素/表情装饰",
+                      "id": 15264,
+                      "source_stable_id": 829,
+                      "source_type": "实质",
+                      "description": "表情包类装饰元素",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 14886,
+                      "element_count": 3,
+                      "elements": [
+                        {
+                          "name": "熊猫头表情包",
+                          "count": 1,
+                          "post_ids": [
+                            "6794ca60000000001801ba29"
+                          ]
+                        },
+                        {
+                          "name": "猫咪表情包",
+                          "count": 1,
+                          "post_ids": [
+                            "689bf685000000001d0021d3"
+                          ]
+                        },
+                        {
+                          "name": "动态元素",
+                          "count": 1,
+                          "post_ids": [
+                            "64851907"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 3,
+                      "children": [],
+                      "total_posts_count": 2
+                    },
+                    {
+                      "name": "边框装饰",
+                      "path": "/表象/符号/装饰符号/装饰元素/边框装饰",
+                      "id": 15262,
+                      "source_stable_id": 826,
+                      "source_type": "实质",
+                      "description": "位于画面或物体边缘的框架类装饰元素",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 14886,
+                      "element_count": 4,
+                      "elements": [
+                        {
+                          "name": "红宝石爱心",
+                          "count": 1,
+                          "post_ids": [
+                            "65162446"
+                          ]
+                        },
+                        {
+                          "name": "花卉边框",
+                          "count": 2,
+                          "post_ids": [
+                            "61822382",
+                            "65091188"
+                          ]
+                        },
+                        {
+                          "name": "边框",
+                          "count": 1,
+                          "post_ids": [
+                            "65091188"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 4,
+                      "children": [],
+                      "total_posts_count": 0
+                    }
+                  ],
+                  "total_posts_count": 16
+                }
+              ],
+              "total_posts_count": 16
+            }
+          ],
+          "total_posts_count": 29
+        },
+        {
+          "name": "行为",
+          "path": "/表象/行为",
+          "id": 15738,
+          "source_stable_id": 94,
+          "source_type": "实质",
+          "description": "人物的动作、表演、互动等活动要素",
+          "category_nature": "内容",
+          "level": 2,
+          "parent_id": 15713,
+          "element_count": 0,
+          "elements": [],
+          "total_element_count": 144,
+          "children": [
+            {
+              "name": "日常互动",
+              "path": "/表象/行为/日常互动",
+              "id": 15744,
+              "source_stable_id": 109,
+              "source_type": "实质",
+              "description": "对话、情感表达、情绪反应等人际间的日常交流行为",
+              "category_nature": "领域",
+              "level": 3,
+              "parent_id": 15738,
+              "element_count": 0,
+              "elements": [],
+              "total_element_count": 31,
+              "children": [
+                {
+                  "name": "关系行为",
+                  "path": "/表象/行为/日常互动/关系行为",
+                  "id": 15932,
+                  "source_stable_id": 1416,
+                  "source_type": "实质",
+                  "description": "基于特定关系类型的互动行为,包括正面的关系维护、正式的礼仪规范和负面的冲突对抗",
+                  "category_nature": "维度",
+                  "level": 4,
+                  "parent_id": 15744,
+                  "element_count": 0,
+                  "elements": [],
+                  "total_element_count": 18,
+                  "children": [
+                    {
+                      "name": "关系互动",
+                      "path": "/表象/行为/日常互动/关系行为/关系互动",
+                      "id": 15933,
+                      "source_stable_id": 1195,
+                      "source_type": "实质",
+                      "description": "基于特定关系类型的互动行为",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15932,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 13,
+                      "children": [
+                        {
+                          "name": "亲密关系",
+                          "path": "/表象/行为/日常互动/关系行为/关系互动/亲密关系",
+                          "id": 15446,
+                          "source_stable_id": 1200,
+                          "source_type": "实质",
+                          "description": "家庭成员、情侣等亲密关系间的互动行为",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15933,
+                          "element_count": 7,
+                          "elements": [
+                            {
+                              "name": "亲情互动",
+                              "count": 1,
+                              "post_ids": [
+                                "682086dc0000000012003cbd"
+                              ]
+                            },
+                            {
+                              "name": "情侣互动",
+                              "count": 5,
+                              "post_ids": [
+                                "65f4359b00000000140079b5",
+                                "6666b3a10000000015008834",
+                                "670baf34000000001600f52a",
+                                "672ed3b6000000003c017f82",
+                                "675fec1f000000000800c6f4"
+                              ]
+                            },
+                            {
+                              "name": "亲子互动",
+                              "count": 1,
+                              "post_ids": [
+                                "691d3112000000001e036559"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 7,
+                          "children": [],
+                          "total_posts_count": 7
+                        },
+                        {
+                          "name": "政治关系",
+                          "path": "/表象/行为/日常互动/关系行为/关系互动/政治关系",
+                          "id": 15448,
+                          "source_stable_id": 1202,
+                          "source_type": "实质",
+                          "description": "政治人物、领袖与民众等政治场景中的互动行为",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15933,
+                          "element_count": 1,
+                          "elements": [
+                            {
+                              "name": "国民党内部互动",
+                              "count": 1,
+                              "post_ids": [
+                                "601c09554a9851f9038026035b95fce9"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 1,
+                          "children": [],
+                          "total_posts_count": 0
+                        },
+                        {
+                          "name": "社交关系",
+                          "path": "/表象/行为/日常互动/关系行为/关系互动/社交关系",
+                          "id": 15447,
+                          "source_stable_id": 1201,
+                          "source_type": "实质",
+                          "description": "朋友、同事等一般社交关系间的互动行为",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15933,
+                          "element_count": 5,
+                          "elements": [
+                            {
+                              "name": "人物互动",
+                              "count": 1,
+                              "post_ids": [
+                                "e04fd15a06f8c97486e48990e85c8492"
+                              ]
+                            },
+                            {
+                              "name": "互动",
+                              "count": 1,
+                              "post_ids": [
+                                "b485a7858fbfc4b74e805bfadf6fce90"
+                              ]
+                            },
+                            {
+                              "name": "肢体互动",
+                              "count": 1,
+                              "post_ids": [
+                                "6879f0f90000000013012f9a"
+                              ]
+                            },
+                            {
+                              "name": "互动日常",
+                              "count": 2,
+                              "post_ids": [
+                                "68a43a11000000001c03cc96",
+                                "68be928b000000001c0361ea"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 5,
+                          "children": [],
+                          "total_posts_count": 3
+                        }
+                      ],
+                      "total_posts_count": 10
+                    },
+                    {
+                      "name": "冲突对抗",
+                      "path": "/表象/行为/日常互动/关系行为/冲突对抗",
+                      "id": 15599,
+                      "source_stable_id": 1194,
+                      "source_type": "实质",
+                      "description": "具有对抗性、戏剧性的冲突场景和行为",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15932,
+                      "element_count": 3,
+                      "elements": [
+                        {
+                          "name": "恶作剧",
+                          "count": 3,
+                          "post_ids": [
+                            "65f4359b00000000140079b5",
+                            "66d1ab42000000001f015507",
+                            "670baf34000000001600f52a"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 3,
+                      "children": [],
+                      "total_posts_count": 3
+                    },
+                    {
+                      "name": "礼仪仪式",
+                      "path": "/表象/行为/日常互动/关系行为/礼仪仪式",
+                      "id": 15598,
+                      "source_stable_id": 1197,
+                      "source_type": "实质",
+                      "description": "正式的礼节和仪式性行为",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15932,
+                      "element_count": 2,
+                      "elements": [
+                        {
+                          "name": "王室屈膝礼",
+                          "count": 1,
+                          "post_ids": [
+                            "b5245c3e7b1c09af072ea40e41d3cca8"
+                          ]
+                        },
+                        {
+                          "name": "屈膝礼",
+                          "count": 1,
+                          "post_ids": [
+                            "b5245c3e7b1c09af072ea40e41d3cca8"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 2,
+                      "children": [],
+                      "total_posts_count": 0
+                    }
+                  ],
+                  "total_posts_count": 11
+                },
+                {
+                  "name": "动物互动",
+                  "path": "/表象/行为/日常互动/动物互动",
+                  "id": 15444,
+                  "source_stable_id": 1196,
+                  "source_type": "实质",
+                  "description": "人与动物、动物之间的互动交流行为",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 15744,
+                  "element_count": 5,
+                  "elements": [
+                    {
+                      "name": "动物交互",
+                      "count": 3,
+                      "post_ids": [
+                        "68a4107f000000001c00e8e9",
+                        "68a8241a000000001c011403",
+                        "68f1af7c0000000005003459"
+                      ]
+                    },
+                    {
+                      "name": "镜面互动",
+                      "count": 1,
+                      "post_ids": [
+                        "69002ba70000000007008bcc"
+                      ]
+                    },
+                    {
+                      "name": "多猫互动",
+                      "count": 1,
+                      "post_ids": [
+                        "68abe632000000001c0348c0"
+                      ]
+                    }
+                  ],
+                  "total_element_count": 5,
+                  "children": [],
+                  "total_posts_count": 5
+                },
+                {
+                  "name": "表达沟通",
+                  "path": "/表象/行为/日常互动/表达沟通",
+                  "id": 15931,
+                  "source_stable_id": 1415,
+                  "source_type": "实质",
+                  "description": "通过语言、情感、网络等方式进行的主动表达和沟通行为",
+                  "category_nature": "维度",
+                  "level": 4,
+                  "parent_id": 15744,
+                  "element_count": 0,
+                  "elements": [],
+                  "total_element_count": 8,
+                  "children": [
+                    {
+                      "name": "情感表达",
+                      "path": "/表象/行为/日常互动/表达沟通/情感表达",
+                      "id": 15596,
+                      "source_stable_id": 1192,
+                      "source_type": "实质",
+                      "description": "传递情感、关怀和爱意的表达行为",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15931,
+                      "element_count": 3,
+                      "elements": [
+                        {
+                          "name": "生理期关怀",
+                          "count": 1,
+                          "post_ids": [
+                            "68e8cac8000000000700da88"
+                          ]
+                        },
+                        {
+                          "name": "关怀",
+                          "count": 1,
+                          "post_ids": [
+                            "64314678"
+                          ]
+                        },
+                        {
+                          "name": "情感表达",
+                          "count": 1,
+                          "post_ids": [
+                            "56717837"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 3,
+                      "children": [],
+                      "total_posts_count": 1
+                    },
+                    {
+                      "name": "网络社交",
+                      "path": "/表象/行为/日常互动/表达沟通/网络社交",
+                      "id": 15597,
+                      "source_stable_id": 1198,
+                      "source_type": "实质",
+                      "description": "通过网络平台进行的分享和社交行为",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15931,
+                      "element_count": 1,
+                      "elements": [
+                        {
+                          "name": "视频转发",
+                          "count": 1,
+                          "post_ids": [
+                            "65142392"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 1,
+                      "children": [],
+                      "total_posts_count": 0
+                    },
+                    {
+                      "name": "言语交流",
+                      "path": "/表象/行为/日常互动/表达沟通/言语交流",
+                      "id": 15595,
+                      "source_stable_id": 1191,
+                      "source_type": "实质",
+                      "description": "通过语言进行的对话、讨论、演讲等交流行为",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15931,
+                      "element_count": 4,
+                      "elements": [
+                        {
+                          "name": "改口",
+                          "count": 1,
+                          "post_ids": [
+                            "cb673ebabb42a9499b3532943f8bb974"
+                          ]
+                        },
+                        {
+                          "name": "政治对话",
+                          "count": 1,
+                          "post_ids": [
+                            "b90a1bbdf6dcddcaf4f4ee2f201e1d26"
+                          ]
+                        },
+                        {
+                          "name": "逻辑反击",
+                          "count": 1,
+                          "post_ids": [
+                            "64935973"
+                          ]
+                        },
+                        {
+                          "name": "讨论",
+                          "count": 1,
+                          "post_ids": [
+                            "59943231"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 4,
+                      "children": [],
+                      "total_posts_count": 0
+                    }
+                  ],
+                  "total_posts_count": 1
+                }
+              ],
+              "total_posts_count": 17
+            },
+            {
+              "name": "日常活动",
+              "path": "/表象/行为/日常活动",
+              "id": 14904,
+              "source_stable_id": 113,
+              "source_type": "实质",
+              "description": "烹饪、劳作、出行等日常生活中的具体行为活动",
+              "category_nature": "领域",
+              "level": 3,
+              "parent_id": 15738,
+              "element_count": 1,
+              "elements": [
+                {
+                  "name": "坐着入睡",
+                  "count": 1,
+                  "post_ids": [
+                    "7fc2ebb73d9fefe1e79111dd9b17ad65"
+                  ]
+                }
+              ],
+              "total_element_count": 85,
+              "children": [
+                {
+                  "name": "养生健身",
+                  "path": "/表象/行为/日常活动/养生健身",
+                  "id": 14983,
+                  "source_stable_id": 321,
+                  "source_type": "实质",
+                  "description": "养生保健、体育锻炼和健康管理相关的行为活动",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 14904,
+                  "element_count": 15,
+                  "elements": [
+                    {
+                      "name": "打网球",
+                      "count": 1,
+                      "post_ids": [
+                        "67b9840d000000000603a241"
+                      ]
+                    },
+                    {
+                      "name": "按摩",
+                      "count": 1,
+                      "post_ids": [
+                        "6776b27d0000000013018545"
+                      ]
+                    },
+                    {
+                      "name": "调理",
+                      "count": 1,
+                      "post_ids": [
+                        "676f8eac000000000902f53e"
+                      ]
+                    },
+                    {
+                      "name": "健身操",
+                      "count": 2,
+                      "post_ids": [
+                        "669b52720000000025003596",
+                        "672de546000000001b02cfeb"
+                      ]
+                    },
+                    {
+                      "name": "养肝动作",
+                      "count": 2,
+                      "post_ids": [
+                        "669b52720000000025003596",
+                        "672de546000000001b02cfeb"
+                      ]
+                    },
+                    {
+                      "name": "养生动作",
+                      "count": 2,
+                      "post_ids": [
+                        "669b52720000000025003596",
+                        "672de546000000001b02cfeb"
+                      ]
+                    },
+                    {
+                      "name": "职场养生",
+                      "count": 3,
+                      "post_ids": [
+                        "6729dd5300000000190183a8"
+                      ]
+                    },
+                    {
+                      "name": "泡脚",
+                      "count": 1,
+                      "post_ids": [
+                        "67284f9c000000001901875a"
+                      ]
+                    },
+                    {
+                      "name": "戒酒",
+                      "count": 1,
+                      "post_ids": [
+                        "673c37610000000007029ced"
+                      ]
+                    },
+                    {
+                      "name": "跨国医疗",
+                      "count": 1,
+                      "post_ids": [
+                        "64450659"
+                      ]
+                    }
+                  ],
+                  "total_element_count": 15,
+                  "children": [],
+                  "total_posts_count": 8
+                },
+                {
+                  "name": "出行游玩",
+                  "path": "/表象/行为/日常活动/出行游玩",
+                  "id": 15797,
+                  "source_stable_id": 320,
+                  "source_type": "实质",
+                  "description": "旅行出游、户外休闲和游玩娱乐等外出活动",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 14904,
+                  "element_count": 0,
+                  "elements": [],
+                  "total_element_count": 23,
+                  "children": [
+                    {
+                      "name": "亲子出游",
+                      "path": "/表象/行为/日常活动/出行游玩/亲子出游",
+                      "id": 14985,
+                      "source_stable_id": 325,
+                      "source_type": "实质",
+                      "description": "家长带孩子共同参与的户外游玩和亲子休闲活动",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15797,
+                      "element_count": 12,
+                      "elements": [
+                        {
+                          "name": "遛娃",
+                          "count": 2,
+                          "post_ids": [
+                            "6911532d000000000503bd18",
+                            "693a2428000000001e027639"
+                          ]
+                        },
+                        {
+                          "name": "亲子游玩",
+                          "count": 7,
+                          "post_ids": [
+                            "68a8241a000000001c011403",
+                            "68f1af7c0000000005003459",
+                            "69003bb30000000004015797",
+                            "691acd15000000000402134e",
+                            "6923b4b2000000001e03531a",
+                            "692fa7e0000000001e039786",
+                            "693a2428000000001e027639"
+                          ]
+                        },
+                        {
+                          "name": "亲子野餐",
+                          "count": 1,
+                          "post_ids": [
+                            "692d3b99000000001e022295"
+                          ]
+                        },
+                        {
+                          "name": "遛娃体验",
+                          "count": 1,
+                          "post_ids": [
+                            "6923b4b2000000001e03531a"
+                          ]
+                        },
+                        {
+                          "name": "亲子游",
+                          "count": 1,
+                          "post_ids": [
+                            "6911532d000000000503bd18"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 12,
+                      "children": [],
+                      "total_posts_count": 9
+                    },
+                    {
+                      "name": "户外玩乐",
+                      "path": "/表象/行为/日常活动/出行游玩/户外玩乐",
+                      "id": 14987,
+                      "source_stable_id": 327,
+                      "source_type": "实质",
+                      "description": "在户外场所进行的休闲娱乐和互动体验活动",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15797,
+                      "element_count": 5,
+                      "elements": [
+                        {
+                          "name": "海边游玩",
+                          "count": 2,
+                          "post_ids": [
+                            "6843fb690000000012001659",
+                            "6881d560000000001703076c"
+                          ]
+                        },
+                        {
+                          "name": "面部彩绘",
+                          "count": 1,
+                          "post_ids": [
+                            "6911532d000000000503bd18"
+                          ]
+                        },
+                        {
+                          "name": "捞鱼",
+                          "count": 1,
+                          "post_ids": [
+                            "69003bb30000000004015797"
+                          ]
+                        },
+                        {
+                          "name": "投喂",
+                          "count": 1,
+                          "post_ids": [
+                            "68f1af7c0000000005003459"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 5,
+                      "children": [],
+                      "total_posts_count": 5
+                    },
+                    {
+                      "name": "旅行体验",
+                      "path": "/表象/行为/日常活动/出行游玩/旅行体验",
+                      "id": 14986,
+                      "source_stable_id": 326,
+                      "source_type": "实质",
+                      "description": "旅行出游过程中的行程、经历和目的地体验等活动",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15797,
+                      "element_count": 6,
+                      "elements": [
+                        {
+                          "name": "旅行经历",
+                          "count": 2,
+                          "post_ids": [
+                            "6971878d000000001a01e6cc",
+                            "697b64c5000000001a021517"
+                          ]
+                        },
+                        {
+                          "name": "旅行出发",
+                          "count": 1,
+                          "post_ids": [
+                            "6971878d000000001a01e6cc"
+                          ]
+                        },
+                        {
+                          "name": "旅程",
+                          "count": 1,
+                          "post_ids": [
+                            "6964be3900000000210282a4"
+                          ]
+                        },
+                        {
+                          "name": "目的地特色体验",
+                          "count": 1,
+                          "post_ids": [
+                            "692006ef000000001f008b41"
+                          ]
+                        },
+                        {
+                          "name": "旅居",
+                          "count": 1,
+                          "post_ids": [
+                            "68a8241a000000001c011403"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 6,
+                      "children": [],
+                      "total_posts_count": 5
+                    }
+                  ],
+                  "total_posts_count": 15
+                },
+                {
+                  "name": "居家生活",
+                  "path": "/表象/行为/日常活动/居家生活",
+                  "id": 14984,
+                  "source_stable_id": 323,
+                  "source_type": "实质",
+                  "description": "家务整理、个人护理、手工制作等日常居家事务",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 14904,
+                  "element_count": 18,
+                  "elements": [
+                    {
+                      "name": "街边洗头",
+                      "count": 2,
+                      "post_ids": [
+                        "67bafc850000000029036328"
+                      ]
+                    },
+                    {
+                      "name": "吹头",
+                      "count": 1,
+                      "post_ids": [
+                        "67bafc850000000029036328"
+                      ]
+                    },
+                    {
+                      "name": "纸杯剪制",
+                      "count": 1,
+                      "post_ids": [
+                        "67adb23f000000002a00c240"
+                      ]
+                    },
+                    {
+                      "name": "固定行为",
+                      "count": 1,
+                      "post_ids": [
+                        "692c3402000000000d03b7b7"
+                      ]
+                    },
+                    {
+                      "name": "卧室改造",
+                      "count": 1,
+                      "post_ids": [
+                        "6900667d000000000300f640"
+                      ]
+                    },
+                    {
+                      "name": "拍照",
+                      "count": 1,
+                      "post_ids": [
+                        "67d55ec7000000000e004e69"
+                      ]
+                    },
+                    {
+                      "name": "错拿装备",
+                      "count": 1,
+                      "post_ids": [
+                        "67b9840d000000000603a241"
+                      ]
+                    },
+                    {
+                      "name": "DIY收纳",
+                      "count": 1,
+                      "post_ids": [
+                        "662ce86d0000000003023f0a"
+                      ]
+                    },
+                    {
+                      "name": "新人照片定制",
+                      "count": 1,
+                      "post_ids": [
+                        "6602bd07000000001203348c"
+                      ]
+                    },
+                    {
+                      "name": "生活习惯",
+                      "count": 4,
+                      "post_ids": [
+                        "669b52720000000025003596",
+                        "67206035000000001b02f4b1",
+                        "6727171b000000001b01114b",
+                        "672de546000000001b02cfeb"
+                      ]
+                    },
+                    {
+                      "name": "落叶拼贴手工",
+                      "count": 1,
+                      "post_ids": [
+                        "691d3112000000001e036559"
+                      ]
+                    },
+                    {
+                      "name": "植物拓印",
+                      "count": 1,
+                      "post_ids": [
+                        "68a4107f000000001c00e8e9"
+                      ]
+                    },
+                    {
+                      "name": "自然手作",
+                      "count": 1,
+                      "post_ids": [
+                        "68a4107f000000001c00e8e9"
+                      ]
+                    },
+                    {
+                      "name": "照镜子",
+                      "count": 1,
+                      "post_ids": [
+                        "69002ba70000000007008bcc"
+                      ]
+                    }
+                  ],
+                  "total_element_count": 18,
+                  "children": [],
+                  "total_posts_count": 15
+                },
+                {
+                  "name": "组织活动",
+                  "path": "/表象/行为/日常活动/组织活动",
+                  "id": 15799,
+                  "source_stable_id": 324,
+                  "source_type": "实质",
+                  "description": "婚丧仪式、集会、宣讲、训练等组织性群体活动",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 14904,
+                  "element_count": 0,
+                  "elements": [],
+                  "total_element_count": 7,
+                  "children": [
+                    {
+                      "name": "仪式庆典",
+                      "path": "/表象/行为/日常活动/组织活动/仪式庆典",
+                      "id": 15919,
+                      "source_stable_id": 1259,
+                      "source_type": "实质",
+                      "description": "具有仪式性质的正式活动,包括军事仪式、人生仪式、宗教仪式等",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15799,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 3,
+                      "children": [
+                        {
+                          "name": "人生仪式",
+                          "path": "/表象/行为/日常活动/组织活动/仪式庆典/人生仪式",
+                          "id": 15495,
+                          "source_stable_id": 1264,
+                          "source_type": "实质",
+                          "description": "婚礼、葬礼等人生重要时刻的仪式",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15919,
+                          "element_count": 1,
+                          "elements": [
+                            {
+                              "name": "婚礼",
+                              "count": 1,
+                              "post_ids": [
+                                "65febd8e0000000012035538"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 1,
+                          "children": [],
+                          "total_posts_count": 1
+                        },
+                        {
+                          "name": "宗教仪式",
+                          "path": "/表象/行为/日常活动/组织活动/仪式庆典/宗教仪式",
+                          "id": 15496,
+                          "source_stable_id": 1265,
+                          "source_type": "实质",
+                          "description": "祈福、撞钟等宗教或民俗仪式活动",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15919,
+                          "element_count": 2,
+                          "elements": [
+                            {
+                              "name": "撞钟",
+                              "count": 1,
+                              "post_ids": [
+                                "fc4773ccef61d3092666496328603e9d"
+                              ]
+                            },
+                            {
+                              "name": "政治祈福",
+                              "count": 1,
+                              "post_ids": [
+                                "fc4773ccef61d3092666496328603e9d"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 2,
+                          "children": [],
+                          "total_posts_count": 0
+                        }
+                      ],
+                      "total_posts_count": 1
+                    },
+                    {
+                      "name": "演讲宣讲",
+                      "path": "/表象/行为/日常活动/组织活动/演讲宣讲",
+                      "id": 15494,
+                      "source_stable_id": 1260,
+                      "source_type": "实质",
+                      "description": "以传播信息为目的的演说活动,包括演讲、访谈、讲座、宣讲等",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15799,
+                      "element_count": 4,
+                      "elements": [
+                        {
+                          "name": "专家访谈",
+                          "count": 3,
+                          "post_ids": [
+                            "57442193",
+                            "64591962",
+                            "afb320f2428ca07a2743d96dc21e4127"
+                          ]
+                        },
+                        {
+                          "name": "现场演讲",
+                          "count": 1,
+                          "post_ids": [
+                            "56603938"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 4,
+                      "children": [],
+                      "total_posts_count": 0
+                    }
+                  ],
+                  "total_posts_count": 1
+                },
+                {
+                  "name": "职场劳作",
+                  "path": "/表象/行为/日常活动/职场劳作",
+                  "id": 15798,
+                  "source_stable_id": 322,
+                  "source_type": "实质",
+                  "description": "工作办公、求职和各类体力劳动等生产性行为",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 14904,
+                  "element_count": 0,
+                  "elements": [],
+                  "total_element_count": 15,
+                  "children": [
+                    {
+                      "name": "专业作业",
+                      "path": "/表象/行为/日常活动/职场劳作/专业作业",
+                      "id": 15679,
+                      "source_stable_id": 1529,
+                      "source_type": "实质",
+                      "description": "需要专业技能的技术性工作操作",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15798,
+                      "element_count": 1,
+                      "elements": [
+                        {
+                          "name": "修车流程",
+                          "count": 1,
+                          "post_ids": [
+                            "64631158"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 1,
+                      "children": [],
+                      "total_posts_count": 0
+                    },
+                    {
+                      "name": "体力劳作",
+                      "path": "/表象/行为/日常活动/职场劳作/体力劳作",
+                      "id": 15677,
+                      "source_stable_id": 1527,
+                      "source_type": "实质",
+                      "description": "体力劳动和农业生产等需要身体力量的工作行为",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15798,
+                      "element_count": 3,
+                      "elements": [
+                        {
+                          "name": "劳动场景",
+                          "count": 1,
+                          "post_ids": [
+                            "59587187"
+                          ]
+                        },
+                        {
+                          "name": "卖麦子",
+                          "count": 2,
+                          "post_ids": [
+                            "64975752",
+                            "65514975"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 3,
+                      "children": [],
+                      "total_posts_count": 0
+                    },
+                    {
+                      "name": "办公行为",
+                      "path": "/表象/行为/日常活动/职场劳作/办公行为",
+                      "id": 15678,
+                      "source_stable_id": 1528,
+                      "source_type": "实质",
+                      "description": "办公室和职场中的日常工作行为与状态",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15798,
+                      "element_count": 10,
+                      "elements": [
+                        {
+                          "name": "办公",
+                          "count": 1,
+                          "post_ids": [
+                            "6810596c000000002301d1a6"
+                          ]
+                        },
+                        {
+                          "name": "钻桌底",
+                          "count": 1,
+                          "post_ids": [
+                            "61bdc28b0000000001024896"
+                          ]
+                        },
+                        {
+                          "name": "顶门式",
+                          "count": 1,
+                          "post_ids": [
+                            "61bdc28b0000000001024896"
+                          ]
+                        },
+                        {
+                          "name": "职场午休",
+                          "count": 1,
+                          "post_ids": [
+                            "61bdc28b0000000001024896"
+                          ]
+                        },
+                        {
+                          "name": "摸鱼",
+                          "count": 4,
+                          "post_ids": [
+                            "67aea9de000000001800d129",
+                            "67ee4e29000000001200f3c2",
+                            "68070ccb000000000f039a1b"
+                          ]
+                        },
+                        {
+                          "name": "随地办公",
+                          "count": 1,
+                          "post_ids": [
+                            "671f7fab000000003c01fffc"
+                          ]
+                        },
+                        {
+                          "name": "等放假",
+                          "count": 1,
+                          "post_ids": [
+                            "68d610800000000012023282"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 10,
+                      "children": [],
+                      "total_posts_count": 7
+                    },
+                    {
+                      "name": "职业变动",
+                      "path": "/表象/行为/日常活动/职场劳作/职业变动",
+                      "id": 15680,
+                      "source_stable_id": 1530,
+                      "source_type": "实质",
+                      "description": "求职、入伍、晋升等与职业转变相关的行为",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15798,
+                      "element_count": 1,
+                      "elements": [
+                        {
+                          "name": "找暑假工",
+                          "count": 1,
+                          "post_ids": [
+                            "6892d47c0000000025018c4f"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 1,
+                      "children": [],
+                      "total_posts_count": 1
+                    }
+                  ],
+                  "total_posts_count": 8
+                },
+                {
+                  "name": "饮食烹饪",
+                  "path": "/表象/行为/日常活动/饮食烹饪",
+                  "id": 14982,
+                  "source_stable_id": 319,
+                  "source_type": "实质",
+                  "description": "食物制作、加工和饮食相关的行为活动",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 14904,
+                  "element_count": 6,
+                  "elements": [
+                    {
+                      "name": "吃柠檬",
+                      "count": 1,
+                      "post_ids": [
+                        "68528a360000000010010c6d"
+                      ]
+                    },
+                    {
+                      "name": "晾面条",
+                      "count": 1,
+                      "post_ids": [
+                        "680898fa000000001c01c23e"
+                      ]
+                    },
+                    {
+                      "name": "吹面",
+                      "count": 1,
+                      "post_ids": [
+                        "680898fa000000001c01c23e"
+                      ]
+                    },
+                    {
+                      "name": "嘴里泡茶",
+                      "count": 2,
+                      "post_ids": [
+                        "67862d98000000001a01f443"
+                      ]
+                    },
+                    {
+                      "name": "外卖自制",
+                      "count": 1,
+                      "post_ids": [
+                        "6867d9af000000001203f084"
+                      ]
+                    }
+                  ],
+                  "total_element_count": 6,
+                  "children": [],
+                  "total_posts_count": 4
+                }
+              ],
+              "total_posts_count": 48
+            },
+            {
+              "name": "纪念活动",
+              "path": "/表象/行为/纪念活动",
+              "id": 14912,
+              "source_stable_id": 127,
+              "source_type": "实质",
+              "description": "祭奠、缅怀、悼念等表达对逝者或历史事件纪念的行为活动",
+              "category_nature": "领域",
+              "level": 3,
+              "parent_id": 15738,
+              "element_count": 1,
+              "elements": [
+                {
+                  "name": "1950年代白色恐怖秋祭追思",
+                  "count": 1,
+                  "post_ids": [
+                    "333bd89e657acbcd9b26201f93cd8993"
+                  ]
+                }
+              ],
+              "total_element_count": 1,
+              "children": [],
+              "total_posts_count": 0
+            },
+            {
+              "name": "表演",
+              "path": "/表象/行为/表演",
+              "id": 15739,
+              "source_stable_id": 95,
+              "source_type": "实质",
+              "description": "为观众呈现的动作展示和演出",
+              "category_nature": "维度",
+              "level": 3,
+              "parent_id": 15738,
+              "element_count": 0,
+              "elements": [],
+              "total_element_count": 27,
+              "children": [
+                {
+                  "name": "综艺表演",
+                  "path": "/表象/行为/表演/综艺表演",
+                  "id": 14906,
+                  "source_stable_id": 118,
+                  "source_type": "实质",
+                  "description": "搞笑、才艺展示等综合性娱乐演出",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 15739,
+                  "element_count": 3,
+                  "elements": [
+                    {
+                      "name": "草根小品",
+                      "count": 3,
+                      "post_ids": [
+                        "64400730",
+                        "64935973",
+                        "64958390"
+                      ]
+                    }
+                  ],
+                  "total_element_count": 3,
+                  "children": [],
+                  "total_posts_count": 0
+                },
+                {
+                  "name": "肢体动作",
+                  "path": "/表象/行为/表演/肢体动作",
+                  "id": 15741,
+                  "source_stable_id": 104,
+                  "source_type": "实质",
+                  "description": "舞蹈、体态、手势等身体动作",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 15739,
+                  "element_count": 0,
+                  "elements": [],
+                  "total_element_count": 24,
+                  "children": [
+                    {
+                      "name": "基础动作",
+                      "path": "/表象/行为/表演/肢体动作/基础动作",
+                      "id": 15480,
+                      "source_stable_id": 1245,
+                      "source_type": "实质",
+                      "description": "行走、操作等日常基础肢体动作",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15741,
+                      "element_count": 6,
+                      "elements": [
+                        {
+                          "name": "三度拥抱",
+                          "count": 1,
+                          "post_ids": [
+                            "601c09554a9851f9038026035b95fce9"
+                          ]
+                        },
+                        {
+                          "name": "肢体动作",
+                          "count": 1,
+                          "post_ids": [
+                            "677b5460000000000b00d33e"
+                          ]
+                        },
+                        {
+                          "name": "行走",
+                          "count": 1,
+                          "post_ids": [
+                            "68a06bea000000001d021202"
+                          ]
+                        },
+                        {
+                          "name": "拼合",
+                          "count": 1,
+                          "post_ids": [
+                            "66daeddb000000002603ea42"
+                          ]
+                        },
+                        {
+                          "name": "展开",
+                          "count": 1,
+                          "post_ids": [
+                            "66daeddb000000002603ea42"
+                          ]
+                        },
+                        {
+                          "name": "操作",
+                          "count": 1,
+                          "post_ids": [
+                            "6776b27d0000000013018545"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 6,
+                      "children": [],
+                      "total_posts_count": 4
+                    },
+                    {
+                      "name": "手势姿态",
+                      "path": "/表象/行为/表演/肢体动作/手势姿态",
+                      "id": 15479,
+                      "source_stable_id": 1244,
+                      "source_type": "实质",
+                      "description": "手势、姿态、体态等静态或局部肢体表现",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15741,
+                      "element_count": 9,
+                      "elements": [
+                        {
+                          "name": "发言手势",
+                          "count": 1,
+                          "post_ids": [
+                            "412f4d35be48179908fef312b53cad43"
+                          ]
+                        },
+                        {
+                          "name": "摸鼻沉思脸",
+                          "count": 1,
+                          "post_ids": [
+                            "6781eb19000000000b039867"
+                          ]
+                        },
+                        {
+                          "name": "仰卧睡姿",
+                          "count": 4,
+                          "post_ids": [
+                            "68bf8639000000001c03efd2",
+                            "68ca143d000000001202c3de",
+                            "68db5bd00000000007015474",
+                            "68f5976e000000000700dd28"
+                          ]
+                        },
+                        {
+                          "name": "一字马",
+                          "count": 1,
+                          "post_ids": [
+                            "44556070"
+                          ]
+                        },
+                        {
+                          "name": "肢体造型",
+                          "count": 1,
+                          "post_ids": [
+                            "44556070"
+                          ]
+                        },
+                        {
+                          "name": "动态瞬间",
+                          "count": 1,
+                          "post_ids": [
+                            "44556070"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 9,
+                      "children": [],
+                      "total_posts_count": 5
+                    },
+                    {
+                      "name": "舞蹈",
+                      "path": "/表象/行为/表演/肢体动作/舞蹈",
+                      "id": 15477,
+                      "source_stable_id": 1241,
+                      "source_type": "实质",
+                      "description": "各类舞蹈形式、动作和表演",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15741,
+                      "element_count": 7,
+                      "elements": [
+                        {
+                          "name": "现代舞",
+                          "count": 1,
+                          "post_ids": [
+                            "3a8712377c1ad3ad44d0f0271e28532d"
+                          ]
+                        },
+                        {
+                          "name": "跳舞",
+                          "count": 1,
+                          "post_ids": [
+                            "63253503"
+                          ]
+                        },
+                        {
+                          "name": "萌娃跳舞",
+                          "count": 1,
+                          "post_ids": [
+                            "63253503"
+                          ]
+                        },
+                        {
+                          "name": "舞蹈动作",
+                          "count": 3,
+                          "post_ids": [
+                            "44556070",
+                            "63253503"
+                          ]
+                        },
+                        {
+                          "name": "踏马飞燕舞蹈",
+                          "count": 1,
+                          "post_ids": [
+                            "44556070"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 7,
+                      "children": [],
+                      "total_posts_count": 0
+                    },
+                    {
+                      "name": "表演形式",
+                      "path": "/表象/行为/表演/肢体动作/表演形式",
+                      "id": 15478,
+                      "source_stable_id": 1243,
+                      "source_type": "实质",
+                      "description": "肢体表演、方阵、无人机等各类表演形式",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15741,
+                      "element_count": 2,
+                      "elements": [
+                        {
+                          "name": "肢体语言",
+                          "count": 1,
+                          "post_ids": [
+                            "3a8712377c1ad3ad44d0f0271e28532d"
+                          ]
+                        },
+                        {
+                          "name": "街头行为艺术",
+                          "count": 1,
+                          "post_ids": [
+                            "67e37ff8000000001c008b5e"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 2,
+                      "children": [],
+                      "total_posts_count": 1
+                    }
+                  ],
+                  "total_posts_count": 10
+                }
+              ],
+              "total_posts_count": 10
+            }
+          ],
+          "total_posts_count": 69
+        },
+        {
+          "name": "视觉",
+          "path": "/表象/视觉",
+          "id": 15985,
+          "source_stable_id": 248,
+          "source_type": "实质",
+          "description": "内容画面中的色彩、风格、氛围、质感等视觉感官特征",
+          "category_nature": "内容",
+          "level": 2,
+          "parent_id": 15713,
+          "element_count": 0,
+          "elements": [],
+          "total_element_count": 179,
+          "children": [
+            {
+              "name": "画面特征",
+              "path": "/表象/视觉/画面特征",
+              "id": 15966,
+              "source_stable_id": 249,
+              "source_type": "实质",
+              "description": "画面的色彩、风格、氛围、质感等视觉表现特征",
+              "category_nature": "维度",
+              "level": 3,
+              "parent_id": 15985,
+              "element_count": 0,
+              "elements": [],
+              "total_element_count": 179,
+              "children": [
+                {
+                  "name": "色彩表现",
+                  "path": "/表象/视觉/画面特征/色彩表现",
+                  "id": 15780,
+                  "source_stable_id": 250,
+                  "source_type": "实质",
+                  "description": "画面中的色调、饱和度、色温等色彩视觉特征",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 15966,
+                  "element_count": 0,
+                  "elements": [],
+                  "total_element_count": 67,
+                  "children": [
+                    {
+                      "name": "主题性",
+                      "path": "/表象/视觉/画面特征/色彩表现/主题性",
+                      "id": 15527,
+                      "source_stable_id": 1309,
+                      "source_type": "实质",
+                      "description": "为特定主题选定的色彩",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15780,
+                      "element_count": 1,
+                      "elements": [
+                        {
+                          "name": "主题色",
+                          "count": 1,
+                          "post_ids": [
+                            "6634a322000000001e01bcd5"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 1,
+                      "children": [],
+                      "total_posts_count": 1
+                    },
+                    {
+                      "name": "光效",
+                      "path": "/表象/视觉/画面特征/色彩表现/光效",
+                      "id": 15526,
+                      "source_stable_id": 1308,
+                      "source_type": "实质",
+                      "description": "光线产生的视觉效果",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15780,
+                      "element_count": 1,
+                      "elements": [
+                        {
+                          "name": "高光",
+                          "count": 1,
+                          "post_ids": [
+                            "67d55ec7000000000e004e69"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 1,
+                      "children": [],
+                      "total_posts_count": 1
+                    },
+                    {
+                      "name": "具体色彩",
+                      "path": "/表象/视觉/画面特征/色彩表现/具体色彩",
+                      "id": 15923,
+                      "source_stable_id": 1306,
+                      "source_type": "实质",
+                      "description": "画面中使用的具体颜色",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15780,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 28,
+                      "children": [
+                        {
+                          "name": "单色系",
+                          "path": "/表象/视觉/画面特征/色彩表现/具体色彩/单色系",
+                          "id": 15924,
+                          "source_stable_id": 1310,
+                          "source_type": "实质",
+                          "description": "单一色彩或色系",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15923,
+                          "element_count": 0,
+                          "elements": [],
+                          "total_element_count": 19,
+                          "children": [
+                            {
+                              "name": "中性色系",
+                              "path": "/表象/视觉/画面特征/色彩表现/具体色彩/单色系/中性色系",
+                              "id": 15531,
+                              "source_stable_id": 1314,
+                              "source_type": "实质",
+                              "description": "白、黑、灰等无明显冷暖倾向的色彩",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15924,
+                              "element_count": 9,
+                              "elements": [
+                                {
+                                  "name": "白色",
+                                  "count": 3,
+                                  "post_ids": [
+                                    "6960e87a000000000e00c216",
+                                    "6964d4bf000000001a031a54",
+                                    "697a20e9000000001a033338"
+                                  ]
+                                },
+                                {
+                                  "name": "全白系",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "69770dc6000000001a02efe9"
+                                  ]
+                                },
+                                {
+                                  "name": "深木色",
+                                  "count": 4,
+                                  "post_ids": [
+                                    "6848e2340000000021009f3a",
+                                    "6858eb52000000001203044b",
+                                    "685f514f000000001703339d"
+                                  ]
+                                },
+                                {
+                                  "name": "绿橄榄色",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "6850c82a000000002100f096"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 9,
+                              "children": [],
+                              "total_posts_count": 8
+                            },
+                            {
+                              "name": "冷色系",
+                              "path": "/表象/视觉/画面特征/色彩表现/具体色彩/单色系/冷色系",
+                              "id": 15530,
+                              "source_stable_id": 1313,
+                              "source_type": "实质",
+                              "description": "以蓝、紫等冷色为主的色彩",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15924,
+                              "element_count": 2,
+                              "elements": [
+                                {
+                                  "name": "克莱因蓝",
+                                  "count": 2,
+                                  "post_ids": [
+                                    "6964beb3000000002103361a",
+                                    "69706aa0000000002202d723"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 2,
+                              "children": [],
+                              "total_posts_count": 2
+                            },
+                            {
+                              "name": "暖色系",
+                              "path": "/表象/视觉/画面特征/色彩表现/具体色彩/单色系/暖色系",
+                              "id": 15529,
+                              "source_stable_id": 1312,
+                              "source_type": "实质",
+                              "description": "以红、橙、黄等暖色为主的色彩",
+                              "category_nature": "领域",
+                              "level": 7,
+                              "parent_id": 15924,
+                              "element_count": 8,
+                              "elements": [
+                                {
+                                  "name": "红褐色",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "6973742d000000002801e8aa"
+                                  ]
+                                },
+                                {
+                                  "name": "粉色",
+                                  "count": 3,
+                                  "post_ids": [
+                                    "6781eb19000000000b039867",
+                                    "696a5a3e000000001a022b1d",
+                                    "6971ec6f000000001a02d248"
+                                  ]
+                                },
+                                {
+                                  "name": "奶油色系",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "6971ec6f000000001a02d248"
+                                  ]
+                                },
+                                {
+                                  "name": "香芋紫",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "6964d4bf000000001a031a54"
+                                  ]
+                                },
+                                {
+                                  "name": "焦糖色",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "685f514f000000001703339d"
+                                  ]
+                                },
+                                {
+                                  "name": "金色",
+                                  "count": 1,
+                                  "post_ids": [
+                                    "6867d9af000000001203f084"
+                                  ]
+                                }
+                              ],
+                              "total_element_count": 8,
+                              "children": [],
+                              "total_posts_count": 7
+                            }
+                          ],
+                          "total_posts_count": 15
+                        },
+                        {
+                          "name": "组合色",
+                          "path": "/表象/视觉/画面特征/色彩表现/具体色彩/组合色",
+                          "id": 15528,
+                          "source_stable_id": 1311,
+                          "source_type": "实质",
+                          "description": "多种颜色的组合搭配",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15923,
+                          "element_count": 9,
+                          "elements": [
+                            {
+                              "name": "红黑撞色",
+                              "count": 3,
+                              "post_ids": [
+                                "6960e87a000000000e00c216",
+                                "69647323000000001a01ef60"
+                              ]
+                            },
+                            {
+                              "name": "深蓝与奶黄",
+                              "count": 1,
+                              "post_ids": [
+                                "6837f019000000000c03aab2"
+                              ]
+                            },
+                            {
+                              "name": "红蓝",
+                              "count": 3,
+                              "post_ids": [
+                                "6970693f000000002102bec2",
+                                "697069b7000000002202d264",
+                                "69706a0600000000210282bd"
+                              ]
+                            },
+                            {
+                              "name": "粉紫色调",
+                              "count": 1,
+                              "post_ids": [
+                                "6964bee80000000022039e8c"
+                              ]
+                            },
+                            {
+                              "name": "粉色背景",
+                              "count": 1,
+                              "post_ids": [
+                                "68e8cac8000000000700da88"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 9,
+                          "children": [],
+                          "total_posts_count": 8
+                        }
+                      ],
+                      "total_posts_count": 22
+                    },
+                    {
+                      "name": "色彩构成",
+                      "path": "/表象/视觉/画面特征/色彩表现/色彩构成",
+                      "id": 15525,
+                      "source_stable_id": 1307,
+                      "source_type": "实质",
+                      "description": "色彩在画面中的组织形式",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15780,
+                      "element_count": 3,
+                      "elements": [
+                        {
+                          "name": "色块",
+                          "count": 3,
+                          "post_ids": [
+                            "6964beb3000000002103361a",
+                            "6964bee80000000022039e8c",
+                            "6975b3c50000000022020356"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 3,
+                      "children": [],
+                      "total_posts_count": 3
+                    },
+                    {
+                      "name": "色温",
+                      "path": "/表象/视觉/画面特征/色彩表现/色温",
+                      "id": 15524,
+                      "source_stable_id": 1305,
+                      "source_type": "实质",
+                      "description": "色彩的冷暖倾向",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15780,
+                      "element_count": 15,
+                      "elements": [
+                        {
+                          "name": "暖色调",
+                          "count": 12,
+                          "post_ids": [
+                            "681c64ce000000002200554c",
+                            "68426c88000000002002b334",
+                            "6843ab3f000000002202508e",
+                            "6848e2340000000021009f3a",
+                            "684e2d44000000002100cca7",
+                            "6850c82a000000002100f096",
+                            "68538f7c000000002400805b",
+                            "6858eb52000000001203044b",
+                            "685f514f000000001703339d",
+                            "687ee6fc000000001c032bb1"
+                          ]
+                        },
+                        {
+                          "name": "冷暖色调",
+                          "count": 3,
+                          "post_ids": [
+                            "6964beb3000000002103361a",
+                            "6968ef250000000021033c7c",
+                            "696b537f00000000220398ad"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 15,
+                      "children": [],
+                      "total_posts_count": 13
+                    },
+                    {
+                      "name": "饱和度",
+                      "path": "/表象/视觉/画面特征/色彩表现/饱和度",
+                      "id": 15523,
+                      "source_stable_id": 1304,
+                      "source_type": "实质",
+                      "description": "色彩的纯度和鲜艳程度",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15780,
+                      "element_count": 19,
+                      "elements": [
+                        {
+                          "name": "高饱和度",
+                          "count": 2,
+                          "post_ids": [
+                            "696b658e000000001a01d2ef",
+                            "697638e8000000001a025711"
+                          ]
+                        },
+                        {
+                          "name": "低饱和度色系",
+                          "count": 2,
+                          "post_ids": [
+                            "6964d4bf000000001a031a54",
+                            "696f8d95000000001a028641"
+                          ]
+                        },
+                        {
+                          "name": "低饱和",
+                          "count": 14,
+                          "post_ids": [
+                            "681c64ce000000002200554c",
+                            "682a8f11000000002002a511",
+                            "682bdb47000000002202dfa0",
+                            "682bdbba000000002202b26e",
+                            "6837f019000000000c03aab2",
+                            "6843ab3f000000002202508e",
+                            "684e2d44000000002100cca7",
+                            "68538f7c000000002400805b",
+                            "685b68c300000000150226bd",
+                            "6865ec61000000000b02c53b",
+                            "687ee6fc000000001c032bb1",
+                            "688046ef000000002203150e",
+                            "68843a4d000000001c037591"
+                          ]
+                        },
+                        {
+                          "name": "油膜虹彩",
+                          "count": 1,
+                          "post_ids": [
+                            "696b52dd000000002202c60a"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 19,
+                      "children": [],
+                      "total_posts_count": 18
+                    }
+                  ],
+                  "total_posts_count": 44
+                },
+                {
+                  "name": "风格氛围",
+                  "path": "/表象/视觉/画面特征/风格氛围",
+                  "id": 15781,
+                  "source_stable_id": 251,
+                  "source_type": "实质",
+                  "description": "画面整体的设计风格、情绪氛围和感官质感",
+                  "category_nature": "领域",
+                  "level": 4,
+                  "parent_id": 15966,
+                  "element_count": 0,
+                  "elements": [],
+                  "total_element_count": 112,
+                  "children": [
+                    {
+                      "name": "光影效果",
+                      "path": "/表象/视觉/画面特征/风格氛围/光影效果",
+                      "id": 15201,
+                      "source_stable_id": 738,
+                      "source_type": "实质",
+                      "description": "光线在空间中形成的明暗变化和视觉效果",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15781,
+                      "element_count": 4,
+                      "elements": [
+                        {
+                          "name": "自然光影",
+                          "count": 3,
+                          "post_ids": [
+                            "682a8f11000000002002a511",
+                            "682bdbba000000002202b26e",
+                            "6837f019000000000c03aab2"
+                          ]
+                        },
+                        {
+                          "name": "发光主体",
+                          "count": 1,
+                          "post_ids": [
+                            "696b52dd000000002202c60a"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 4,
+                      "children": [],
+                      "total_posts_count": 4
+                    },
+                    {
+                      "name": "形态特征",
+                      "path": "/表象/视觉/画面特征/风格氛围/形态特征",
+                      "id": 15202,
+                      "source_stable_id": 739,
+                      "source_type": "实质",
+                      "description": "物体或空间的几何形状和结构特点",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15781,
+                      "element_count": 4,
+                      "elements": [
+                        {
+                          "name": "圆弧",
+                          "count": 1,
+                          "post_ids": [
+                            "68843a4d000000001c037591"
+                          ]
+                        },
+                        {
+                          "name": "嵌入式",
+                          "count": 1,
+                          "post_ids": [
+                            "68843a4d000000001c037591"
+                          ]
+                        },
+                        {
+                          "name": "小行星视角",
+                          "count": 1,
+                          "post_ids": [
+                            "672ed3b6000000003c017f82"
+                          ]
+                        },
+                        {
+                          "name": "几何对称",
+                          "count": 1,
+                          "post_ids": [
+                            "44556070"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 4,
+                      "children": [],
+                      "total_posts_count": 2
+                    },
+                    {
+                      "name": "情绪意境",
+                      "path": "/表象/视觉/画面特征/风格氛围/情绪意境",
+                      "id": 15199,
+                      "source_stable_id": 736,
+                      "source_type": "实质",
+                      "description": "画面传达的情感氛围和精神感受",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15781,
+                      "element_count": 33,
+                      "elements": [
+                        {
+                          "name": "温润",
+                          "count": 5,
+                          "post_ids": [
+                            "682bdb47000000002202dfa0",
+                            "682bdbba000000002202b26e",
+                            "6837f019000000000c03aab2",
+                            "68426c88000000002002b334",
+                            "688046ef000000002203150e"
+                          ]
+                        },
+                        {
+                          "name": "静谧",
+                          "count": 13,
+                          "post_ids": [
+                            "692a535f0000000019026d5b",
+                            "696078f70000000022038479",
+                            "6964bc98000000002202c86f",
+                            "6964be3900000000210282a4",
+                            "6964beb3000000002103361a",
+                            "6964bee80000000022039e8c",
+                            "6968ef250000000021033c7c",
+                            "696b52dd000000002202c60a",
+                            "696b5332000000002103c497",
+                            "69706aa0000000002202d723",
+                            "6975b27c000000002202d2fb",
+                            "6975b2d7000000002200b4ae",
+                            "6975b361000000002202d7e8"
+                          ]
+                        },
+                        {
+                          "name": "孤独意境",
+                          "count": 14,
+                          "post_ids": [
+                            "692a535f0000000019026d5b",
+                            "696078f70000000022038479",
+                            "6964bc98000000002202c86f",
+                            "6964be3900000000210282a4",
+                            "6964beb3000000002103361a",
+                            "6964bee80000000022039e8c",
+                            "6968ef250000000021033c7c",
+                            "696b52dd000000002202c60a",
+                            "696b5332000000002103c497",
+                            "69706aa0000000002202d723",
+                            "6975b27c000000002202d2fb",
+                            "6975b2d7000000002200b4ae",
+                            "6975b361000000002202d7e8"
+                          ]
+                        },
+                        {
+                          "name": "奢华",
+                          "count": 1,
+                          "post_ids": [
+                            "6867d9af000000001203f084"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 33,
+                      "children": [],
+                      "total_posts_count": 19
+                    },
+                    {
+                      "name": "文化属性",
+                      "path": "/表象/视觉/画面特征/风格氛围/文化属性",
+                      "id": 15203,
+                      "source_stable_id": 740,
+                      "source_type": "实质",
+                      "description": "画面呈现的时代、地域或生活方式特征",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15781,
+                      "element_count": 5,
+                      "elements": [
+                        {
+                          "name": "装修效果",
+                          "count": 1,
+                          "post_ids": [
+                            "682a8f11000000002002a511"
+                          ]
+                        },
+                        {
+                          "name": "意象",
+                          "count": 1,
+                          "post_ids": [
+                            "697069b7000000002202d264"
+                          ]
+                        },
+                        {
+                          "name": "古今元素",
+                          "count": 1,
+                          "post_ids": [
+                            "685f974300000000120144db"
+                          ]
+                        },
+                        {
+                          "name": "专业运动",
+                          "count": 1,
+                          "post_ids": [
+                            "67e243d0000000001d02495b"
+                          ]
+                        },
+                        {
+                          "name": "生活化",
+                          "count": 1,
+                          "post_ids": [
+                            "64314678"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 5,
+                      "children": [],
+                      "total_posts_count": 4
+                    },
+                    {
+                      "name": "材质质感",
+                      "path": "/表象/视觉/画面特征/风格氛围/材质质感",
+                      "id": 15200,
+                      "source_stable_id": 737,
+                      "source_type": "实质",
+                      "description": "物体表面的触觉和视觉质地特征",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15781,
+                      "element_count": 14,
+                      "elements": [
+                        {
+                          "name": "银色丝绸",
+                          "count": 1,
+                          "post_ids": [
+                            "3a8712377c1ad3ad44d0f0271e28532d"
+                          ]
+                        },
+                        {
+                          "name": "毛绒质感",
+                          "count": 5,
+                          "post_ids": [
+                            "696f0da3000000001a029d29",
+                            "6973742d000000002801e8aa",
+                            "69770dc6000000001a02efe9",
+                            "6978db47000000001a0293e7",
+                            "697a20e9000000001a033338"
+                          ]
+                        },
+                        {
+                          "name": "软硬材质",
+                          "count": 1,
+                          "post_ids": [
+                            "69679e0e000000000e03ca97"
+                          ]
+                        },
+                        {
+                          "name": "自然材质",
+                          "count": 2,
+                          "post_ids": [
+                            "681c64ce000000002200554c",
+                            "68843a4d000000001c037591"
+                          ]
+                        },
+                        {
+                          "name": "粗粝",
+                          "count": 1,
+                          "post_ids": [
+                            "6968ef250000000021033c7c"
+                          ]
+                        },
+                        {
+                          "name": "土质纹理",
+                          "count": 1,
+                          "post_ids": [
+                            "6968ef250000000021033c7c"
+                          ]
+                        },
+                        {
+                          "name": "受损状态",
+                          "count": 1,
+                          "post_ids": [
+                            "6794ca60000000001801ba29"
+                          ]
+                        },
+                        {
+                          "name": "产品质感",
+                          "count": 1,
+                          "post_ids": [
+                            "664c38f0000000001303c21f"
+                          ]
+                        },
+                        {
+                          "name": "幼态特征",
+                          "count": 1,
+                          "post_ids": [
+                            "68e9b94d0000000007036a6a"
+                          ]
+                        }
+                      ],
+                      "total_element_count": 14,
+                      "children": [],
+                      "total_posts_count": 12
+                    },
+                    {
+                      "name": "装修风格",
+                      "path": "/表象/视觉/画面特征/风格氛围/装修风格",
+                      "id": 15832,
+                      "source_stable_id": 735,
+                      "source_type": "实质",
+                      "description": "室内空间的整体设计风格类型",
+                      "category_nature": "领域",
+                      "level": 5,
+                      "parent_id": 15781,
+                      "element_count": 0,
+                      "elements": [],
+                      "total_element_count": 52,
+                      "children": [
+                        {
+                          "name": "地域风格",
+                          "path": "/表象/视觉/画面特征/风格氛围/装修风格/地域风格",
+                          "id": 15204,
+                          "source_stable_id": 741,
+                          "source_type": "实质",
+                          "description": "具有特定地域文化特色的装修风格",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15832,
+                          "element_count": 7,
+                          "elements": [
+                            {
+                              "name": "港式街头",
+                              "count": 2,
+                              "post_ids": [
+                                "696b658e000000001a01d2ef"
+                              ]
+                            },
+                            {
+                              "name": "英伦复古风",
+                              "count": 2,
+                              "post_ids": [
+                                "6848e2340000000021009f3a",
+                                "685f514f000000001703339d"
+                              ]
+                            },
+                            {
+                              "name": "意式",
+                              "count": 1,
+                              "post_ids": [
+                                "685f514f000000001703339d"
+                              ]
+                            },
+                            {
+                              "name": "摩洛哥风格",
+                              "count": 1,
+                              "post_ids": [
+                                "6968ef250000000021033c7c"
+                              ]
+                            },
+                            {
+                              "name": "中式",
+                              "count": 1,
+                              "post_ids": [
+                                "6729657b000000001b01149d"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 7,
+                          "children": [],
+                          "total_posts_count": 5
+                        },
+                        {
+                          "name": "工业风格",
+                          "path": "/表象/视觉/画面特征/风格氛围/装修风格/工业风格",
+                          "id": 15208,
+                          "source_stable_id": 745,
+                          "source_type": "实质",
+                          "description": "强调工业元素和线条感的装修风格",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15832,
+                          "element_count": 3,
+                          "elements": [
+                            {
+                              "name": "极简工业风",
+                              "count": 2,
+                              "post_ids": [
+                                "69679e0e000000000e03ca97",
+                                "696a5a3e000000001a022b1d"
+                              ]
+                            },
+                            {
+                              "name": "工业风",
+                              "count": 1,
+                              "post_ids": [
+                                "6960e87a000000000e00c216"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 3,
+                          "children": [],
+                          "total_posts_count": 3
+                        },
+                        {
+                          "name": "时代风格",
+                          "path": "/表象/视觉/画面特征/风格氛围/装修风格/时代风格",
+                          "id": 15206,
+                          "source_stable_id": 743,
+                          "source_type": "实质",
+                          "description": "体现特定历史时期特征的装修风格",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15832,
+                          "element_count": 9,
+                          "elements": [
+                            {
+                              "name": "复古混搭风",
+                              "count": 7,
+                              "post_ids": [
+                                "6848e2340000000021009f3a",
+                                "684e2d44000000002100cca7",
+                                "68538f7c000000002400805b",
+                                "6858eb52000000001203044b",
+                                "685b68c300000000150226bd",
+                                "685f514f000000001703339d"
+                              ]
+                            },
+                            {
+                              "name": "中古风",
+                              "count": 1,
+                              "post_ids": [
+                                "68538f7c000000002400805b"
+                              ]
+                            },
+                            {
+                              "name": "Y2K千禧",
+                              "count": 1,
+                              "post_ids": [
+                                "68b15f32000000001d00ef75"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 9,
+                          "children": [],
+                          "total_posts_count": 7
+                        },
+                        {
+                          "name": "法式风格",
+                          "path": "/表象/视觉/画面特征/风格氛围/装修风格/法式风格",
+                          "id": 15205,
+                          "source_stable_id": 742,
+                          "source_type": "实质",
+                          "description": "源自法国的各类装修风格",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15832,
+                          "element_count": 3,
+                          "elements": [
+                            {
+                              "name": "法式复古风格",
+                              "count": 1,
+                              "post_ids": [
+                                "6850c82a000000002100f096"
+                              ]
+                            },
+                            {
+                              "name": "法式公馆风",
+                              "count": 1,
+                              "post_ids": [
+                                "68426c88000000002002b334"
+                              ]
+                            },
+                            {
+                              "name": "法式奶油风",
+                              "count": 1,
+                              "post_ids": [
+                                "682a8f11000000002002a511"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 3,
+                          "children": [],
+                          "total_posts_count": 3
+                        },
+                        {
+                          "name": "特色风格",
+                          "path": "/表象/视觉/画面特征/风格氛围/装修风格/特色风格",
+                          "id": 15209,
+                          "source_stable_id": 746,
+                          "source_type": "实质",
+                          "description": "具有独特主题或特殊场景特征的装修风格",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15832,
+                          "element_count": 3,
+                          "elements": [
+                            {
+                              "name": "学院风",
+                              "count": 2,
+                              "post_ids": [
+                                "696a5a3e000000001a022b1d",
+                                "697a20e9000000001a033338"
+                              ]
+                            },
+                            {
+                              "name": "监狱风",
+                              "count": 1,
+                              "post_ids": [
+                                "6900667d000000000300f640"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 3,
+                          "children": [],
+                          "total_posts_count": 3
+                        },
+                        {
+                          "name": "色调风格",
+                          "path": "/表象/视觉/画面特征/风格氛围/装修风格/色调风格",
+                          "id": 15207,
+                          "source_stable_id": 744,
+                          "source_type": "实质",
+                          "description": "以特定色调为主导的装修风格",
+                          "category_nature": "领域",
+                          "level": 6,
+                          "parent_id": 15832,
+                          "element_count": 27,
+                          "elements": [
+                            {
+                              "name": "红色家装",
+                              "count": 1,
+                              "post_ids": [
+                                "82b864cd83e9a5f376214dbc341d6dad"
+                              ]
+                            },
+                            {
+                              "name": "奶油风",
+                              "count": 23,
+                              "post_ids": [
+                                "681c64ce000000002200554c",
+                                "682a8f11000000002002a511",
+                                "682bdb47000000002202dfa0",
+                                "682bdbba000000002202b26e",
+                                "6837f019000000000c03aab2",
+                                "6843ab3f000000002202508e",
+                                "684e2d44000000002100cca7",
+                                "68538f7c000000002400805b",
+                                "685b68c300000000150226bd",
+                                "6865ec61000000000b02c53b",
+                                "687ee6fc000000001c032bb1",
+                                "688046ef000000002203150e",
+                                "68843a4d000000001c037591"
+                              ]
+                            },
+                            {
+                              "name": "奶油色空间",
+                              "count": 3,
+                              "post_ids": [
+                                "681c64ce000000002200554c",
+                                "6843ab3f000000002202508e",
+                                "685b68c300000000150226bd"
+                              ]
+                            }
+                          ],
+                          "total_element_count": 27,
+                          "children": [],
+                          "total_posts_count": 13
+                        }
+                      ],
+                      "total_posts_count": 27
+                    }
+                  ],
+                  "total_posts_count": 51
+                }
+              ],
+              "total_posts_count": 64
+            }
+          ],
+          "total_posts_count": 64
+        }
+      ],
+      "total_posts_count": 300
+    },
+    {
+      "name": "表达",
+      "path": "/表达",
+      "id": 16002,
+      "source_stable_id": -16,
+      "source_type": "意图",
+      "description": null,
+      "category_nature": null,
+      "level": 1,
+      "parent_id": null,
+      "element_count": 3,
+      "elements": [
+        {
+          "name": "表达",
+          "count": 3,
+          "post_ids": [
+            "63762367",
+            "64801086",
+            "65084923"
+          ]
+        }
+      ],
+      "total_element_count": 3,
+      "children": [],
+      "total_posts_count": 0
+    },
+    {
+      "name": "解读",
+      "path": "/解读",
+      "id": 15988,
+      "source_stable_id": -2,
+      "source_type": "意图",
+      "description": null,
+      "category_nature": null,
+      "level": 1,
+      "parent_id": null,
+      "element_count": 1,
+      "elements": [
+        {
+          "name": "解读",
+          "count": 1,
+          "post_ids": [
+            "9b95ed26ea9f265079b09e2d1032bc7c"
+          ]
+        }
+      ],
+      "total_element_count": 1,
+      "children": [],
+      "total_posts_count": 0
+    },
+    {
+      "name": "评论",
+      "path": "/评论",
+      "id": 15993,
+      "source_stable_id": -7,
+      "source_type": "意图",
+      "description": null,
+      "category_nature": null,
+      "level": 1,
+      "parent_id": null,
+      "element_count": 4,
+      "elements": [
+        {
+          "name": "评论",
+          "count": 4,
+          "post_ids": [
+            "22bcaccb2262e8864af03c8323490832",
+            "62da797f45d5b2a8ebd9149c3b52c719",
+            "63762379",
+            "df635f43f39a1fa41c13da96320c45c3"
+          ]
+        }
+      ],
+      "total_element_count": 4,
+      "children": [],
+      "total_posts_count": 0
+    }
+  ]
+}

Разлика између датотеке није приказан због своје велике величине
+ 1686 - 0
examples/tool_research/prompts/itemset_posts.json


+ 70 - 0
examples/tool_research/prompts/step1_extract_demands.prompt

@@ -0,0 +1,70 @@
+---
+model: qwen-vl-max
+temperature: 0.3
+---
+
+$system$
+## 角色
+
+你是一名内容制作顾问,熟悉当前主流 AI 内容制作工具的能力边界。
+
+## 任务
+
+我会给你一个具体的制作案例(帖子),可能包含文字描述和效果图片。
+你需要从这个案例中提炼出具体的 AI 制作需求。
+
+## 什么是"制作需求"
+
+制作需求 = 这个案例体现出的、可以用来匹配内容分类节点的具体能力诉求。
+
+**不是**笼统的分类(如"AI 绘画"),**而是**具体的诉求。
+
+**示例**:
+- "行星级尺度的巨构建筑场景渲染"
+- "中文文字嵌入画面的生成"
+- "传统戏曲妆容与服饰的精细还原"
+
+## 过滤规则
+
+- 忽略用户行为描述("分享""点赞"),只关注**画面内容、视觉风格、技术手段**
+- 如果有图片,仔细观察图片中的视觉特征(构图、色调、主体、风格),作为需求提取的依据
+
+## 输出格式
+
+JSON 数组,每个元素:
+- "demand_name": 需求简短名称(字符串,不含换行)
+- "description": 详细描述(字符串,不含未转义的引号和换行)
+- "search_keywords": 用于在内容分类树中搜索的关键词列表(4-8个),应包含:
+  - 核心主题词(如"科幻"、"建筑"、"人物")
+  - 风格词(如"电影感"、"写实"、"赛博朋克")
+  - 技术词(如"光影"、"渲染"、"细节")
+  - 尽量拆分成单个词或短语,避免长句
+- "evidence": 从本案例中提取此需求的依据(简要,字符串)
+
+**重要**:
+- **所有字符串字段中绝对不要使用双引号**,如需引用用单引号或直接省略
+- 描述中不要使用换行符,用空格、逗号或句号分隔
+- evidence 字段保持简短,不要包含复杂的标点符号
+- 确保输出是合法的 JSON 格式
+
+只输出 JSON,不要其他内容。
+
+JSON Schema:
+```json
+{
+  "type": "array",
+  "items": {
+    "type": "object",
+    "required": ["demand_name", "description", "search_keywords", "evidence"],
+    "properties": {
+      "demand_name": {"type": "string"},
+      "description": {"type": "string"},
+      "search_keywords": {"type": "array", "items": {"type": "string"}, "minItems": 4, "maxItems": 8},
+      "evidence": {"type": "string"}
+    }
+  }
+}
+```
+
+$user$
+{case_content}

+ 64 - 0
examples/tool_research/prompts/step1b_merge_demands.prompt

@@ -0,0 +1,64 @@
+---
+model: qwen-plus
+temperature: 0.3
+---
+
+$system$
+## 角色
+你是一个需求分析专家,擅长对相似需求进行归类合并。
+
+## 任务
+我会给你从多个帖子中分别提取的制作需求列表。你需要:
+1. 找出语义相同或高度相似的需求,合并为一个
+2. 保留每个需求来源于哪些帖子(case_id)
+3. 合并后的需求取最精确的描述和关键词
+
+## 合并原则
+- **只合并几乎完全相同的需求**:名称和描述必须高度一致,才能合并
+- **保持具体性**:宁可保留多个具体需求,也不要合并成抽象的大类
+- **侧重点不同则独立**:即使领域相近,只要侧重点、技术手段、风格特征有明显差异,就保持独立
+- **合并示例**:
+  - ✅ 可合并:"3D角色建模" + "3D人物建模" → "3D角色/人物建模"
+  - ❌ 不合并:"科幻场景渲染" + "赛博朋克城市生成"(风格不同)
+  - ❌ 不合并:"电影级光影" + "自然光渲染"(技术侧重不同)
+- search_keywords 取并集并去重
+- 合并后的 demand_name 保留最具体、最有区分度的那个
+
+## 输出格式
+JSON 数组,每个元素:
+- "demand_name": 合并后的需求名称(字符串,不含换行)
+- "description": 合并后的描述(字符串,不含未转义的引号和换行)
+- "search_keywords": 合并后的关键词列表(字符串数组)
+- "source_case_ids": 来源帖子的 case_id 列表(数组)
+- "evidence": 合并后的依据摘要(字符串,不含换行)
+
+**重要**:
+- **所有字符串字段中绝对不要使用双引号**,如需引用用单引号或直接省略
+- 描述中不要使用换行符,用空格、逗号或句号分隔
+- evidence 字段保持简短,不要包含复杂的标点符号
+- 确保输出是合法的 JSON 格式
+
+只输出 JSON,不要其他内容。
+
+JSON Schema:
+```json
+{
+  "type": "array",
+  "items": {
+    "type": "object",
+    "required": ["demand_name", "description", "search_keywords", "source_case_ids", "evidence"],
+    "properties": {
+      "demand_name": {"type": "string"},
+      "description": {"type": "string"},
+      "search_keywords": {"type": "array", "items": {"type": "string"}},
+      "source_case_ids": {"type": "array"},
+      "evidence": {"type": "string"}
+    }
+  }
+}
+```
+
+$user$
+以下是从各个帖子中分别提取的需求:
+
+{all_demands_json}

+ 84 - 0
examples/tool_research/prompts/step3_mount_decision.prompt

@@ -0,0 +1,84 @@
+---
+model: qwen-plus
+temperature: 0.3
+---
+
+$system$
+## 角色
+你是一个内容分类挂载专家,熟悉内容分类树的结构和语义。
+
+## 任务
+你需要根据:
+1. 已提炼的制作需求(含描述和数据依据)
+2. 每个需求在内容树中搜索到的候选节点(含父链和子节点)
+
+为每个需求决定应该挂载到哪些内容树节点上。
+
+## 挂载原则
+1. **语义匹配优先**:选择与需求语义最贴合的节点
+2. **粒度适当**:如果某个节点的子节点更精确,优先挂到子节点;但如果需求覆盖面广,可以挂到较高层级
+3. **多维度挂载**:一个需求可以同时挂载到实质、形式、意图等不同维度的节点
+4. **有理有据**:每个挂载建议必须说明理由
+5. **敢于否定**:如果搜索到的节点都不合适,说明原因并建议可能的替代搜索方向
+
+## 输出格式
+输出 JSON 对象,包含以下字段:
+- "demand_name": 需求名称(字符串)
+- "mounted_nodes": 建议挂载的节点数组,每个元素包含:
+  - "entity_id": 节点 ID(整数)
+  - "name": 节点名称(字符串)
+  - "source_type": 所属维度,如"实质"、"形式"、"意图"(字符串)
+  - "reason": 挂载理由(字符串)
+- "rejected_nodes": 不建议挂载的节点数组(可选),每个元素包含:
+  - "entity_id": 节点 ID(整数)
+  - "name": 节点名称(字符串)
+  - "reason": 不挂载的理由(字符串)
+- "notes": 补充说明(字符串,可选)
+
+**重要**:
+- 只输出 JSON,不要其他内容
+- 所有字符串字段中不要使用双引号,如需引用用单引号
+- 确保输出是合法的 JSON 格式
+
+JSON Schema:
+```json
+{
+  "type": "object",
+  "required": ["demand_name", "mounted_nodes"],
+  "properties": {
+    "demand_name": {"type": "string"},
+    "mounted_nodes": {
+      "type": "array",
+      "items": {
+        "type": "object",
+        "required": ["entity_id", "name", "source_type", "reason"],
+        "properties": {
+          "entity_id": {"type": "integer"},
+          "name": {"type": "string"},
+          "source_type": {"type": "string"},
+          "reason": {"type": "string"}
+        }
+      }
+    },
+    "rejected_nodes": {
+      "type": "array",
+      "items": {
+        "type": "object",
+        "required": ["entity_id", "name", "reason"],
+        "properties": {
+          "entity_id": {"type": "integer"},
+          "name": {"type": "string"},
+          "reason": {"type": "string"}
+        }
+      }
+    },
+    "notes": {"type": "string"}
+  }
+}
+```
+
+$user$
+# 需求及其搜索到的内容树节点
+{node_context}
+
+请为这个需求给出挂载建议,只输出 JSON。

+ 1 - 1
examples/tool_research/research.prompt

@@ -76,7 +76,7 @@ $system$
 - 方向不明确,需要用户指导
 
 **如何结束**:
-1. **必须**使用 `write_file` 将调研结果按照下面的 JSON 格式写入到examples/research/outputs/seedream
+1. **必须**使用 `write_file` 将调研结果按照下面的 JSON 格式写入到examples/tool_research/outputs/flux_1
 2. 输出文件路径由调用方在 task 中指定,如未指定则输出为纯文本消息
 
 

+ 5 - 4
examples/tool_research/tool_research.prompt

@@ -44,8 +44,8 @@ $system$
 
 **调研任务分解**(将 %output_dir% 替换为实际路径后调用):
 1. **官网调研**:搜索 [工具名] 的官网,获取官方介绍、技术文档、API 文档。记录所有链接和图片。将结果写入 [实际路径]/01_official.json
-2. **用户案例调研(重点)**:**大量搜索**用户在微信公众号、X、知乎上分享的 [工具名] 使用案例。每个案例必须记录:用户输入、输出结果、操作过程、效果图片链接、信源链接。至少收集 10+ 个真实案例。将结果写入 [实际路径]/02_cases.json
-3. **视频教程调研**:在 YouTube 搜索 [工具名] 的教程视频。记录视频标题、链接、关键截图、使用步骤。将结果写入 [实际路径]/03_video.json
+2. **用户案例调研 - 图文渠道(重点)**:**大量搜索**用户在微信公众号、X、知乎、小红书上分享的 [工具名] 使用案例。每个案例必须记录:用户输入、输出结果、操作过程、效果图片链接、信源链接。至少收集 10+ 个真实案例。将结果写入 [实际路径]/02_cases.json
+3. **用户案例调研 - 视频渠道(补充)**:在上一轮图文渠道**未覆盖**的渠道中搜索用例,包括 YouTube(使用 youtube_detail 获取字幕来提取用例细节)和 B站。重点通过字幕/描述还原用户的实际操作过程和输入输出。将新增案例**追加**到 [实际路径]/02_cases.json 中(读取已有文件,在 cases 数组末尾追加,更新 total_cases 计数)。
 4. **评测调研**:搜索 [工具名] 的评测文章和测试报告。记录评测结论、测试数据、信源链接。将结果写入 [实际路径]/04_review.json
 5. **竞品对比调研**:搜索 [工具名] 与竞品的对比讨论。记录对比结论、优劣势、信源链接。将结果写入 [实际路径]/05_comparison.json
 
@@ -77,12 +77,13 @@ $system$
    - API 文档链接:`[API 文档](https://...)`
 
 4. **用户案例(重点)**
-   - **至少 10+ 个真实案例**,每个案例必须包含:
+   - **至少 10+ 个真实案例**(图文渠道 + 视频渠道),每个案例必须包含:
      - 案例标题和来源:`### 案例 X:[标题] | [来源](链接)`
      - 用户输入:具体的 prompt/参数
      - 输出结果:文字描述 + 效果图
      - 操作过程:关键步骤
      - 效果图片:`![效果图](图片链接)`
+     - 来源渠道标注(图文/视频)
    - 按应用场景分类(如:图像生成、风格迁移、产品设计等)
 
 5. **评测与对比**
@@ -101,6 +102,6 @@ $system$
 - 文件路径格式:`%output_dir%/[工具名称]_guide.md`
 
 $user$
-请开始工作:调研 seedream 5.0 Lite,生成完整文档并结构化存储。
+请开始工作:调研 flux 2.0 max,生成完整文档并结构化存储。
 
 输出目录:%output_dir%/

+ 1 - 0
examples/tool_research/tools/__init__.py

@@ -0,0 +1 @@
+# tools/__init__.py

+ 234 - 0
examples/tool_research/tools/content_tree.py

@@ -0,0 +1,234 @@
+"""
+内容树 API 工具
+
+封装内容树搜索接口:
+1. search_content_tree - 关键词搜索分类和元素
+2. get_category_tree - 获取指定分类的完整路径和子树
+"""
+
+import logging
+from typing import Optional
+
+import httpx
+
+from agent.tools import tool
+from agent.tools.models import ToolResult
+
+logger = logging.getLogger(__name__)
+
+BASE_URL = "http://8.147.104.190:8001"
+
+
+@tool(description="在内容树中搜索分类(category)和元素(element),支持获取祖先路径和子孙节点")
+async def search_content_tree(
+    q: str,
+    source_type: str,
+    entity_type: str = "all",
+    top_k: int = 20,
+    use_description: bool = False,
+    include_ancestors: bool = False,
+    descendant_depth: int = 0,
+) -> ToolResult:
+    """
+    关键词搜索内容树中的分类和元素。
+
+    Args:
+        q: 搜索关键词
+        source_type: 维度,必须是 "实质" / "形式" / "意图" 之一
+        entity_type: 搜索对象类型,"category" / "element" / "all"(默认)
+        top_k: 返回结果数量,1-100(默认20)
+        use_description: 是否同时搜索描述字段(默认仅搜索名称)
+        include_ancestors: 是否返回祖先路径
+        descendant_depth: 返回子孙节点深度,0=不返回,1=直接子节点,2=子+孙...
+    """
+    params = {
+        "q": q,
+        "source_type": source_type,
+        "entity_type": entity_type,
+        "top_k": top_k,
+        "use_description": str(use_description).lower(),
+        "include_ancestors": str(include_ancestors).lower(),
+        "descendant_depth": descendant_depth,
+    }
+
+    try:
+        async with httpx.AsyncClient(timeout=30.0) as client:
+            resp = await client.get(f"{BASE_URL}/api/agent/search", params=params)
+            resp.raise_for_status()
+            data = resp.json()
+
+        count = data.get("count", 0)
+        results = data.get("results", [])
+
+        # 格式化输出
+        lines = [f"搜索「{q}」({source_type}维度)共找到 {count} 条结果:\n"]
+        for r in results:
+            etype = r.get("entity_type", "")
+            name = r.get("name", "")
+            score = r.get("score", 0)
+            if etype == "category":
+                sid = r.get("entity_id", "")
+                path = r.get("path", "")
+                desc = r.get("description", "")
+                lines.append(f"[分类] entity_id={sid} | {path} | score={score:.2f}")
+                if desc:
+                    lines.append(f"  描述: {desc}")
+                ancestors = r.get("ancestors", [])
+                if ancestors:
+                    anc_names = " > ".join(a["name"] for a in ancestors)
+                    lines.append(f"  祖先: {anc_names}")
+                descendants = r.get("descendants", [])
+                if descendants:
+                    desc_names = ", ".join(d["name"] for d in descendants[:10])
+                    lines.append(f"  子孙({len(descendants)}): {desc_names}")
+            else:
+                eid = r.get("entity_id", "")
+                belong = r.get("belong_category_entity_id", "")
+                occ = r.get("occurrence_count", 0)
+                lines.append(f"[元素] entity_id={eid} | {name} | belong_category={belong} | 出现次数={occ} | score={score:.2f}")
+                edesc = r.get("description", "")
+                if edesc:
+                    lines.append(f"  描述: {edesc}")
+            lines.append("")
+
+        return ToolResult(
+            title=f"内容树搜索: {q} ({source_type}) → {count} 条",
+            output="\n".join(lines),
+        )
+
+    except httpx.HTTPError as e:
+        return ToolResult(title="内容树搜索失败", output=f"HTTP 错误: {e}")
+    except Exception as e:
+        logger.exception("search_content_tree error")
+        return ToolResult(title="内容树搜索失败", output=f"错误: {e}")
+
+
+@tool(description="获取指定分类节点的完整路径、祖先和子孙结构(通过 entity_id 精确查询)")
+async def get_category_tree(
+    entity_id: int,
+    source_type: str,
+    include_ancestors: bool = True,
+    descendant_depth: int = -1,
+) -> ToolResult:
+    """
+    获取指定分类的完整路径和子树结构。
+
+    Args:
+        entity_id: 分类的 entity_id
+        source_type: 维度,"实质" / "形式" / "意图"
+        include_ancestors: 是否返回祖先路径(默认 True)
+        descendant_depth: 子孙深度,-1=全部,0=仅当前,1=子节点,2=子+孙...
+    """
+    params = {
+        "source_type": source_type,
+        "include_ancestors": str(include_ancestors).lower(),
+        "descendant_depth": descendant_depth,
+    }
+
+    try:
+        async with httpx.AsyncClient(timeout=30.0) as client:
+            resp = await client.get(f"{BASE_URL}/api/agent/search/category/{entity_id}", params=params)
+            resp.raise_for_status()
+            data = resp.json()
+
+        current = data.get("current", {})
+        ancestors = data.get("ancestors", [])
+        descendants = data.get("descendants", [])
+
+        lines = []
+        lines.append(f"分类节点: {current.get('name', '')} (entity_id={entity_id})")
+        lines.append(f"路径: {current.get('path', '')}")
+        if current.get("description"):
+            lines.append(f"描述: {current['description']}")
+        lines.append("")
+
+        if ancestors:
+            lines.append("祖先路径:")
+            for a in ancestors:
+                lines.append(f"  L{a.get('level', '?')} {a.get('name', '')} (entity_id={a.get('entity_id', '')})")
+            lines.append("")
+
+        if descendants:
+            lines.append(f"子孙节点 ({len(descendants)} 个):")
+            for d in descendants:
+                indent = "  " * d.get("depth_from_parent", 1)
+                leaf_mark = " [叶]" if d.get("is_leaf") else ""
+                lines.append(f"{indent}L{d.get('level', '?')} {d.get('name', '')} (entity_id={d.get('entity_id', '')}){leaf_mark}")
+
+        return ToolResult(
+            title=f"分类树: {current.get('name', entity_id)} (entity_id={entity_id})",
+            output="\n".join(lines),
+        )
+
+    except httpx.HTTPError as e:
+        return ToolResult(title="获取分类树失败", output=f"HTTP 错误: {e}")
+    except Exception as e:
+        logger.exception("get_category_tree error")
+        return ToolResult(title="获取分类树失败", output=f"错误: {e}")
+
+
+@tool(description="获取指定分类下的所有元素,支持分页、排序和筛选")
+async def get_category_elements(
+    category_id: int,
+    source_type: str,
+    page_size: int = 50,
+    sort_by: str = "occurrence_count",
+    order: str = "desc",
+    min_occurrence: Optional[int] = None,
+) -> ToolResult:
+    """
+    获取指定分类下的所有元素。
+
+    Args:
+        category_id: 分类的 entity_id
+        source_type: 维度,"实质" / "形式" / "意图"
+        page_size: 每页数量,1-200(默认50)
+        sort_by: 排序字段,"name" / "id" / "occurrence_count"(默认)
+        order: 排序方向,"asc" / "desc"(默认)
+        min_occurrence: 最小出现次数,用于过滤低频元素(可选)
+    """
+    params = {
+        "source_type": source_type,
+        "category_entity_id": category_id,
+        "page_size": page_size,
+        "sort_by": sort_by,
+        "order": order,
+    }
+    if min_occurrence is not None:
+        params["min_occurrence"] = min_occurrence
+
+    try:
+        async with httpx.AsyncClient(timeout=30.0) as client:
+            resp = await client.get(f"{BASE_URL}/api/agent/search/elements", params=params)
+            resp.raise_for_status()
+            data = resp.json()
+
+        total = data.get("total", 0)
+        results = data.get("results", [])
+
+        lines = [f"分类 {category_id} 下的元素({source_type}维度)共 {total} 个,返回 {len(results)} 个:\n"]
+        for r in results:
+            eid = r.get("id", "")
+            name = r.get("name", "")
+            occ = r.get("occurrence_count", 0)
+            desc = r.get("description", "")
+            category = r.get("category", {})
+            cat_path = category.get("path", "")
+
+            lines.append(f"[元素] entity_id={eid} | {name} | 出现次数={occ}")
+            if desc:
+                lines.append(f"  描述: {desc}")
+            if cat_path:
+                lines.append(f"  所属分类: {cat_path}")
+            lines.append("")
+
+        return ToolResult(
+            title=f"分类元素: category_id={category_id} → {total} 个",
+            output="\n".join(lines),
+        )
+
+    except httpx.HTTPError as e:
+        return ToolResult(title="获取分类元素失败", output=f"HTTP 错误: {e}")
+    except Exception as e:
+        logger.exception("get_category_elements error")
+        return ToolResult(title="获取分类元素失败", output=f"错误: {e}")

+ 99 - 0
examples/tool_research/tools/frequent_itemsets.py

@@ -0,0 +1,99 @@
+"""
+频繁项集 API 工具
+
+封装 pattern.aiddit.com 的频繁项集接口,用于查询与指定分类节点
+在优质内容中共同出现的关联要素。
+"""
+
+import logging
+
+import httpx
+
+from agent.tools import tool
+from agent.tools.models import ToolResult
+
+logger = logging.getLogger(__name__)
+
+ITEMSETS_URL = "https://pattern.aiddit.com/api/pattern/tools/get_frequent_itemsets/execute"
+
+HEADERS = {
+    "Accept": "*/*",
+    "Accept-Language": "zh-CN,zh;q=0.9",
+    "Connection": "keep-alive",
+    "Content-Type": "application/json",
+    "Origin": "https://pattern.aiddit.com",
+    "Referer": "https://pattern.aiddit.com/execution/33",
+    "User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36",
+}
+
+
+@tool(description="查询与指定分类节点在优质内容中共同出现的频繁项集(关联要素),用于扩展制作需求的关联维度")
+async def get_frequent_itemsets(
+    entity_ids: list,
+    top_n: int = 20,
+    execution_id: int = 33,
+    sort_by: str = "absolute_support",
+) -> ToolResult:
+    """
+    获取与指定分类节点关联的频繁项集。
+
+    Args:
+        entity_ids: 分类节点的 entity_id 列表(即搜索接口返回的 entity_id 字段,非 stable_id)
+        top_n: 返回前 N 个项集,默认 20
+        execution_id: 执行 ID,默认 33
+        sort_by: 排序字段,默认 "absolute_support"
+    """
+    payload = {
+        "execution_id": execution_id,
+        "args": {
+            "top_n": top_n,
+            "category_ids": entity_ids,
+            "sort_by": sort_by,
+        },
+    }
+
+    try:
+        import json as _json
+        async with httpx.AsyncClient(timeout=30.0) as client:
+            resp = await client.post(ITEMSETS_URL, json=payload, headers=HEADERS)
+            resp.raise_for_status()
+            outer = resp.json()
+
+        # result 字段是 JSON 字符串,需要二次解析
+        data = _json.loads(outer["result"])
+        total = data.get("total", 0)
+        groups = data.get("groups", {})
+
+        # 收集所有 group 下的 itemsets
+        all_itemsets = []
+        for group_key, group in groups.items():
+            for itemset in group.get("itemsets", []):
+                itemset["_group"] = group_key
+                all_itemsets.append(itemset)
+
+        lines = [f"频繁项集查询 entity_ids={entity_ids},共 {total} 条,返回 {len(all_itemsets)} 条:\n"]
+        for i, itemset in enumerate(all_itemsets, 1):
+            itemset_id = itemset.get("id", "")
+            item_count = itemset.get("item_count", "")
+            support = itemset.get("support", 0)
+            abs_support = itemset.get("absolute_support", "")
+            lines.append(f"{i}. 项集ID={itemset_id} | 项数={item_count} | support={support:.4f} | abs={abs_support}")
+            for elem in itemset.get("items", []):
+                dim = elem.get("dimension", "")
+                path = elem.get("category_path", "")
+                ename = elem.get("element_name") or ""
+                label = f"{path}({ename})" if ename else path
+                lines.append(f"   [{dim}] {label}")
+            lines.append("")
+
+        return ToolResult(
+            title=f"频繁项集: entity_ids={entity_ids} → {total} 条",
+            output="\n".join(lines),
+        )
+        return ToolResult(
+            title="频繁项集查询失败",
+            output=f"HTTP {e.response.status_code}: {e.response.text[:200]}",
+        )
+    except Exception as e:
+        logger.exception("get_frequent_itemsets error")
+        return ToolResult(title="频繁项集查询失败", output=f"错误: {e}")

+ 269 - 0
examples/tool_research/visualize_results.py

@@ -0,0 +1,269 @@
+import json
+import sys
+from pathlib import Path
+
+def generate_html_visualization(result_data: dict, cases_data: dict) -> str:
+    merged_demands = result_data.get("merged_demands", [])
+    mount_decisions = result_data.get("mount_decisions", [])
+
+    # 构建 decision_map:demand_name → mounted_nodes
+    decision_map = {}
+    for d in mount_decisions:
+        dec = d.get("decision", {})
+        if isinstance(dec, dict):
+            decision_map[d["demand_name"]] = dec.get("mounted_nodes", [])
+        else:
+            decision_map[d["demand_name"]] = []
+
+    # 优先从 result_data 读取 case_info,如果没有则从 cases_data 构建
+    if "case_info" in result_data:
+        case_map = result_data["case_info"]
+    else:
+        case_map = {}
+        for c in cases_data.get("cases", []):
+            case_map[c["case_id"]] = {
+                "title": c.get("title") or c.get("video_title") or c.get("post_title", ""),
+                "images": c.get("images") or c.get("effect_images", []),
+                "link": c.get("source_link") or c.get("video_url") or c.get("post_url", "")
+            }
+
+    nodes_js = []
+    edges_js = []
+    node_id = 0
+
+    COLOR_CASE_BG = "#e3f2fd"
+    COLOR_CASE_BORDER = "#2196f3"
+    COLOR_DEMAND_BG = "#fff3e0"
+    COLOR_DEMAND_BORDER = "#ff9800"
+
+    for md in merged_demands:
+        demand_id = node_id
+        node_id += 1
+
+        dn = md["demand_name"]
+        
+        # 从挂载决策中获取最终选择的节点
+        mounted = decision_map.get(dn, [])
+        node_tags = []
+        for n in mounted:
+            node_tags.append(f"{n['name']}")
+
+        tags_str = " | ".join(node_tags) if node_tags else "无挂载节点"
+
+        demand_label = f"<b>{dn}</b>\n\n[{tags_str}]"
+        
+        demand_title_html = f"""
+            <div class='tooltip-title' style='background:{COLOR_DEMAND_BG}; border-color:{COLOR_DEMAND_BORDER}'>需求详情</div>
+            <div class='tooltip-content'>
+                <p><b>名称:</b> {dn}</p>
+                <p><b>描述:</b> {md["description"]}</p>
+                <p><b>挂载节点:</b> {tags_str}</p>
+                {"".join(f"<p>· {n['name']}({n.get('source_type','')}) — {n.get('reason','')}</p>" for n in mounted)}
+            </div>
+        """
+
+        nodes_js.append({
+            "id": demand_id,
+            "label": demand_label,
+            "title": demand_title_html,
+            "group": "demand",
+            "level": 0  # 核心改动1:Demand 改为 Level 0 (根节点)
+        })
+
+        for cid in md.get("source_case_ids", []):
+            case_id = node_id
+            node_id += 1
+
+            # 类型转换:case_info 的 key 可能是字符串
+            cid_str = str(cid)
+            case_info = case_map.get(cid_str) or case_map.get(cid, {"title": f"Case {cid}", "images": [], "link": ""})
+            title_short = case_info['title'][:20] + "..." if len(case_info['title']) > 20 else case_info['title']
+            case_label = f"<b>Case {cid}</b>\n{title_short}"
+
+            img_html = ""
+            if case_info['images']:
+                img_url = case_info['images'][0]
+                img_html = f'<img src="{img_url}" class="tooltip-img"/>'
+
+            case_title_html = f"""
+                <div class='tooltip-title' style='background:{COLOR_CASE_BG}; border-color:{COLOR_CASE_BORDER}'>帖子详情 (点击跳转)</div>
+                <div class='tooltip-content'>
+                    <p><b>ID:</b> {cid}</p>
+                    <p><b>标题:</b> {case_info["title"]}</p>
+                    {img_html}
+                </div>
+            """
+
+            nodes_js.append({
+                "id": case_id,
+                "label": case_label,
+                "title": case_title_html,
+                "url": case_info['link'], 
+                "group": "case",
+                "level": 1  # 核心改动2:Case 改为 Level 1 (叶子节点)
+            })
+
+            # 核心改动3:在数据上把连线方向反转为 Demand -> Case
+            edges_js.append({"from": demand_id, "to": case_id})
+
+    html = f"""<!DOCTYPE html>
+<html><head>
+<meta charset="utf-8">
+<meta name="referrer" content="no-referrer">
+<title>Case → Demand 语义映射图</title>
+<script src="https://unpkg.com/vis-network/standalone/umd/vis-network.min.js"></script>
+<style>
+  body {{ 
+    margin: 0; 
+    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; 
+    background-color: #f4f7f6; 
+    overflow: hidden; 
+  }}
+  #graph {{ width: 100vw; height: 100vh; background-color: white; }}
+  #header {{ 
+    position: absolute; top: 10px; left: 20px; padding: 10px 20px; 
+    display: flex; gap: 30px; align-items: center; 
+    background: rgba(255, 255, 255, 0.9); box-shadow: 0 4px 10px rgba(0,0,0,0.1);
+    border-radius: 8px; z-index: 10;
+  }}
+  .brand {{ font-size: 16px; font-weight: bold; color: #333; }}
+  #legend {{ display: flex; gap: 15px; align-items: center; font-size: 13px; }}
+  .legend-item {{ display: flex; align-items: center; gap: 6px; }}
+  .dot {{ width: 14px; height: 14px; border-radius: 3px; border: 1px solid; }}
+  div.vis-network div.vis-tooltip {{
+    padding: 0; border: none; border-radius: 8px; background-color: white;
+    box-shadow: 0 4px 15px rgba(0,0,0,0.25); font-size: 14px; max-width: 400px; overflow: hidden;
+  }}
+  .tooltip-title {{ padding: 10px 15px; font-weight: bold; border-bottom: 1px solid; color: #333; }}
+  .tooltip-content {{ padding: 15px; color: #555; }}
+  .tooltip-content p {{ margin: 0 0 10px 0; line-height: 1.5; }}
+  .tooltip-img {{ max-width: 100%; max-height: 250px; display: block; margin-top: 10px; border-radius: 4px; border: 1px solid #eee; }}
+</style>
+</head><body>
+
+<div id="header">
+  <div class="brand">语义映射网络 (鼠标拖拽平移,滚轮缩放)</div>
+  <div id="legend">
+    <span class="legend-item"><span class="dot" style="background:{COLOR_CASE_BG}; border-color:{COLOR_CASE_BORDER}"></span> 帖子 (Case)</span>
+    <span class="legend-item"><span class="dot" style="background:{COLOR_DEMAND_BG}; border-color:{COLOR_DEMAND_BORDER}"></span> 需求 (Demand)</span>
+  </div>
+</div>
+<div id="graph"></div>
+
+<script>
+var nodesRaw = {json.dumps(nodes_js, ensure_ascii=False)};
+var edgesRaw = {json.dumps(edges_js, ensure_ascii=False)};
+
+nodesRaw.forEach(function(node) {{
+    if (node.title && typeof node.title === 'string') {{
+        var container = document.createElement('div');
+        container.innerHTML = node.title;
+        node.title = container;
+    }}
+}});
+
+var nodes = new vis.DataSet(nodesRaw);
+var edges = new vis.DataSet(edgesRaw);
+var container = document.getElementById("graph");
+
+var options = {{
+  layout: {{
+    hierarchical: {{
+      direction: "DU",      /* 核心改动4:改为从下往上 (Down-Up) 生长。Level 0(Demand)在底,Level 1(Case)在顶 */
+      sortMethod: "directed", 
+      levelSeparation: 300,
+      nodeSpacing: 180,
+      treeSpacing: 350,
+      parentCentralization: true /* 由于 Demand 在逻辑上成了父节点,这个属性会完美将它居中 */
+    }}
+  }},
+  groups: {{
+    useDefaultGroups: false,
+    case: {{
+      shape: "box",
+      color: {{ background: "{COLOR_CASE_BG}", border: "{COLOR_CASE_BORDER}" }},
+      font: {{ size: 14, multi: 'html', color: "#0d47a1" }},
+      widthConstraint: {{ minimum: 150, maximum: 220 }},
+      shapeProperties: {{ borderDashes: false, borderRadius: 6 }},
+      margin: 12
+    }},
+    demand: {{
+      shape: "box",
+      color: {{ background: "{COLOR_DEMAND_BG}", border: "{COLOR_DEMAND_BORDER}" }},
+      font: {{ size: 15, multi: 'html', color: "#e65100" }},
+      widthConstraint: {{ minimum: 200, maximum: 300 }},
+      shapeProperties: {{ borderDashes: false, borderRadius: 6 }},
+      margin: 15
+    }}
+  }},
+  edges: {{ 
+    arrows: "from",   /* 核心改动5:虽然连线是 Demand->Case,但把箭头强制画在 Demand 一侧,看起来就是 Case->Demand */
+    color: {{ color: "#b0bec5", highlight: "#78909c" }},
+    smooth: {{ type: "cubicBezier", forceDirection: "vertical", roundness: 0.5 }},
+    width: 1.5
+  }},
+  physics: {{ enabled: false }}, 
+  interaction: {{ 
+    hover: true, tooltipDelay: 100, dragView: true, zoomView: true 
+  }}
+}};
+
+var network = new vis.Network(container, {{ nodes: nodes, edges: edges }}, options);
+
+network.once("afterDrawing", function() {{
+    if (nodesRaw.length > 0) {{
+        network.focus(nodesRaw[0].id, {{
+            scale: 1.0, 
+            animation: false,
+            offset: {{x: 0, y: -100}} 
+        }});
+    }}
+}});
+
+network.on("click", function(params) {{
+    if (params.nodes.length > 0) {{
+        var nodeData = nodes.get(params.nodes[0]);
+        if (nodeData.url && nodeData.url.startsWith('http')) window.open(nodeData.url, '_blank');
+    }}
+}});
+
+network.on("hoverNode", function(params) {{
+    if (nodes.get(params.node).url) network.canvas.body.container.style.cursor = 'pointer';
+}});
+network.on("blurNode", function() {{
+    network.canvas.body.container.style.cursor = 'default';
+}});
+</script>
+</body></html>"""
+    return html
+
+def main():
+    if len(sys.argv) < 2:
+        print("用法: python visualize_results.py <match_nodes_result.json路径>")
+        sys.exit(1)
+
+    result_path = Path(sys.argv[1])
+    if not result_path.exists():
+        print(f"错误: 文件不存在: {result_path}")
+        sys.exit(1)
+
+    with open(result_path, "r", encoding="utf-8") as f:
+        result_data = json.load(f)
+
+    cases_path = result_path.parent / "02_cases.json"
+    if not cases_path.exists():
+        cases_data = {"cases": []}
+    else:
+        with open(cases_path, "r", encoding="utf-8") as f:
+            cases_data = json.load(f)
+
+    html = generate_html_visualization(result_data, cases_data)
+
+    output_path = result_path.parent / "match_nodes_graph.html"
+    with open(output_path, "w", encoding="utf-8") as f:
+        f.write(html)
+
+    print(f"[OK] Visualization generated: {output_path}")
+
+if __name__ == "__main__":
+    main()

+ 21 - 0
test_api.py

@@ -0,0 +1,21 @@
+import asyncio
+import httpx
+import json
+
+async def test():
+    async with httpx.AsyncClient(timeout=10) as client:
+        resp = await client.get(
+            "http://8.147.104.190:8001/api/agent/search",
+            params={
+                "q": "科幻",
+                "source_type": "实质",
+                "entity_type": "all",
+                "top_k": 2,
+                "use_description": "true",
+            }
+        )
+        data = resp.json()
+        with open("test_api_output.json", "w", encoding="utf-8") as f:
+            json.dump(data, f, ensure_ascii=False, indent=2)
+
+asyncio.run(test())

+ 23 - 0
test_api_output.json

@@ -0,0 +1,23 @@
+{
+  "success": true,
+  "query": "科幻",
+  "source_type": "实质",
+  "entity_type": "all",
+  "count": 2,
+  "results": [
+    {
+      "entity_type": "element",
+      "entity_id": 120420,
+      "name": "赛博民俗",
+      "description": "结合传统民俗与科幻赛博风格的文化概念",
+      "category_path": null
+    },
+    {
+      "entity_type": "element",
+      "entity_id": 127947,
+      "name": "赛博民俗",
+      "description": "结合传统民俗与科幻赛博风格的文化概念",
+      "category_path": null
+    }
+  ]
+}

Неке датотеке нису приказане због велике количине промена