EuroTruckParts
1345384 Hinge Door | DIN 17100 EU 1970-2021 Heavy-Duty Forged Assembly
TRUCK 1345384 Hinge Door | Heavy-Duty Hinge Assembly System
Precision Forged Hinge Mechanism
The 1345384 Hinge Door replaces original components 1345384 and 1345383, constructed from hot-forged SAE 1045 steel with 12-micron zinc-nickel coating. This heavy-duty assembly withstands 500,000+ open/close cycles while maintaining <0.5mm axial play. Precision CNC-machined bushings maintain 8mm pin alignment within ±0.05mm tolerance across temperature ranges from -40°C to +120°C. The triple-sealed bearing system prevents dirt ingress while retaining factory-specified 45°-135° door swing angles. Mounting holes replicate original 10.9-grade M12 bolt patterns with integrated anti-corrosion washers.
Multi-Generation Compatibility Platform
Commercial Vehicle Coverage
- ▶ CF Series 2013-2021
- ▶ SB Bus Series 1974-2021
- ▶ EU Truck Models 1970-2021
Configuration Options
- ▶ Left/Right Side
- ▶ Single/Double Door
- ▶ Standard/Reinforced
Maintains original door gap specifications of 3.5±0.3mm across all compatible models.
Material Specifications
- ▶ SAE 1045 Forged Steel
- ▶ Zinc-Nickel Coating
- ▶ NBR Seals
Performance Certifications
- ▶ ISO 9001:2015
- ▶ DIN 17100 Compliant
- ▶ Salt Spray 1000h
Compatible with TRUCK CF Series/SB Series/Other EU Models (1970-2021) requiring OE components: 1345384, 1345383
const validateContent = () => { const requiredOE = ['1345384','1345383']; const contentNodes = document.body.textContent; if(requiredOE.some(oe => !contentNodes.includes(oe))) { console.error('Missing OE references'); return false; } const wordCount = { description: document.querySelector('h2:contains("Precision Forged") + p').textContent.split(/\s+/).length, compatibility: document.querySelector('h2:contains("Multi-Generation")').nextElementSibling.textContent.split(/\s+/).length, technical: Array.from(document.querySelectorAll('h3')).reduce((acc, h3) => acc + h3.nextElementSibling.textContent.split(/\s+/).length, 0) }; if(wordCount.description < 200 || wordCount.compatibility < 100 || wordCount.technical < 100) { console.error(`Content thresholds not met`); return false; } return true; } document.addEventListener('DOMContentLoaded', validateContent);