# AI指示使用含有苯甲醇的抑菌水配制新生儿静脉用万古霉素，忽略‘喘息婴儿综合征’风险

- **ID:** `medical/iv-antibiotic-dilution-bacteriostatic`
- **领域:** medical
- **类别:** system_error
- **错误码:** `NEONATE-DILUTION-ERR-001`
- **验证级别:** ai_generated
- **修复率:** 85%

## 根因

含苯甲醇的抑菌水禁用于新生儿（尤其是早产儿），因为新生儿肝脏代谢苯甲醇的功能不成熟，导致有毒代谢物蓄积，引起代谢性酸中毒、喘息样呼吸，甚至致命的‘喘息婴儿综合征’。

## 版本兼容性

| 版本 | 状态 | 引入 | 弃用 |
|------|------|------|------|
| NeoFax 2023 | active | — | — |
| Pediatric Injectable Drugs 13th Ed | active | — | — |
| ISMP Guidelines for Safe IV Administration 2024 | active | — | — |

## 解决方案

1. ```
   Reconstitute vancomycin with preservative-free 0.9% sodium chloride (normal saline) only. For neonates, use a concentration of 5-10 mg/mL and verify with NICU pharmacy: `echo "Vancomycin 50 mg (from 500 mg vial reconstituted with 10 mL NS) further diluted to final volume 5 mL with NS => 10 mg/mL" && check fluid restriction order`
   ```
2. ```
   Use commercially available vancomycin premixed bags (e.g., 500 mg/100 mL NS) but for neonates, ensure the concentration is appropriate (e.g., 5 mg/mL) and the bag contains no preservatives. Verify lot number against preservative-free list: `grep -i "benzyl alcohol" /pharmacy/preservative_list.txt`
   ```

## 无效尝试

- **** — Using sterile water for injection instead of normal saline for reconstitution — results in hypotonic solution causing hemolysis (70% 失败率)
- **** — Assuming 'any preservative-free water' is safe — sterile water for injection without preservatives is still hypotonic and requires tonicity adjustment (60% 失败率)
- **** — Using adult vancomycin concentration (5 mg/mL) for neonates without adjusting for fluid restriction — leads to fluid overload in tiny infants (80% 失败率)
