我的商店
2380955 SCANIA Tail Lamp | ECE R48:2025 Compliant LED Assembly
2380955 SCANIA Tail Lamp | L-/P-/G-/R-/S-Series Lighting System
Integrated Lighting Solution
Precision-engineered as direct replacements 2380955 SCANIA Tail Lamp assemblies combine license plate illumination with ECE R48-compliant signaling functions. High-output LED clusters maintain 130° horizontal visibility while consuming 68% less power than conventional bulbs. The corrosion-resistant polycarbonate housing exceeds ISO 4892-2:2013 weathering standards, with integrated moisture barriers preventing lens fogging. Cross-compatible with 2241860, 1905044, and 2380956 variants for complete lighting system upgrades across left-hand configurations.
Multi-Function System
- ▶ L-series long-haul configurations
- ▶ P-series construction models
- ▶ G-series regional distribution
- ▶ R-series premium cabs
- ▶ S-series high-roof variants
Full electrical compatibility with SCANIA CANbus systems using OE references: 2380955, 2241860, 1905044, 2380956, 2241861, 1939011 (Left) and 1905042, 2241858, 2380953, 1905043, 2241859, 2380954 (Right).
Optical Specifications
- ▶ 3D-injected lens optics
- ▶ 12V/24V dual voltage
- ▶ IP67K ingress protection
Structural Features
- ▶ Vibration-dampened mounts
- ▶ Tool-free bulb access
- ▶ Pre-wired connectors
Compatible with SCANIA commercial vehicles using OE numbers: 2380955, 2241860, 1905044, 2380956, 2241861, 1939011, 1905042, 2241858, 2380953, 1905043, 2241859, 2380954
const validateContent = () => { const requiredOE = ['2380955','2241860','1905044','2380956','2241861','1939011','1905042','2241858','2380953','1905043','2241859','2380954']; const content = document.body.textContent; if(!requiredOE.every(oe => content.includes(oe))) { console.error('Missing OE numbers detected'); return false; } const descText = document.querySelector('h2:contains("Integrated Lighting") + p').textContent; const compatText = document.querySelector('h2:contains("Multi-Function")').nextElementSibling.textContent; const techText = Array.from(document.querySelectorAll('h3')).map(h3 => h3.nextElementSibling.textContent).join(' '); if(descText.split(' ').length < 201 || compatText.split(' ').length < 101 || techText.split(' ').length < 101) { console.error('Section word count below requirements'); return false; } return true; } document.addEventListener('DOMContentLoaded', validateContent);