@@ -93,7 +93,7 @@ class TextMatcher:
# 长度比例检查 - 避免长度差异过大的匹配
length_ratio = min(len(target_text), len(box_text)) / max(len(target_text), len(box_text))
- if length_ratio < 0.3: # 长度差异超过70%则跳过
+ if length_ratio < 0.35: # 长度差异超过1/3则跳过
continue
# 子串检查