
Solar Street Light Split Pole 13FT/16FT/20FT
25 discount codes
:root { --primary: #3498db; /* Vibrant blue for headers */ --primary-light: #7fa1c7; /* Muted blue */ --secondary: #3a516d; /* Dark slate blue */ --accent: #c77b2d; /* Subdued terracotta */ --text: #4a4a4a; /* Soft black */ --light-text: #6d6d6d; /* Medium gray */ --bg: #f5f7fa; /* Light gray background */ --card-bg: #ffffff; /* Pure white cards */ --warning-bg: #f9f4e8; /* Pale cream warning */ --divider: #e1e5eb; /* Light gray divider */ } * { box-sizing: border-box; margin: 0; padding: 0; } body { background-color: var(--bg); font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; line-height: 1.6; color: var(--text); } .light-post-container { max-width: 1200px; margin: 0 auto; padding: 20px; } /* Header Styles */ .product-header { text-align: center; margin-bottom: 40px; } .product-header h1 { color: var(--secondary); font-size: 2.2rem; margin-bottom: 10px; font-weight: 600; } .divider { height: 3px; width: 80px; background: linear-gradient(to right, var(--primary), var(--primary-light)); margin: 15px auto; border-radius: 3px; } .subtitle { color: var(--light-text); font-size: 1.1rem; font-weight: 300; } /* Description Card */ .description-card { background: var(--card-bg); border-radius: 10px; padding: 25px; margin-bottom: 30px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); display: flex; align-items: flex-start; border-left: 4px solid var(--primary); } .description-card .icon { font-size: 2rem; margin-right: 20px; color: var(--primary); } /* Section Headers */ h2 { text-align: center; margin: 40px 0 30px; color: var(--secondary); font-size: 1.8rem; position: relative; } h2 span { background: var(--bg); padding: 0 20px; position: relative; z-index: 1; } h2:after { content: ""; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: var(--divider); z-index: 0; } /* Specification Cards - 修改重点在这里 */ .spec-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; margin: 30px 0; } .spec-card { background: var(--card-bg); border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease, box-shadow 0.3s ease; } .spec-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); } .spec-card.featured { border: 2px solid var(--primary); } /* 确保表头样式不会被覆盖 */ .spec-card .card-header { background: var(--primary) !important; color: white !important; padding: 20px; position: relative; } .spec-card .card-header h3 { font-size: 1.3rem; margin-bottom: 5px; color: white !important; } .spec-card .card-badge { position: absolute; top: 15px; right: 15px; background: rgba(255,255,255,0.2); padding: 5px 10px; border-radius: 20px; font-weight: bold; font-size: 0.9rem; color: white !important; } .spec-list { padding: 20px; list-style: none; } .spec-list li { padding: 10px 0; border-bottom: 1px dashed var(--divider); } .spec-list li:last-child { border-bottom: none; } .spec-list strong { color: var(--secondary); } /* Download Button */ .download-btn-container { text-align: center; margin: 20px 0 30px; } .download-btn { background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: white; border: none; padding: 12px 30px; border-radius: 30px; font-size: 1rem; font-weight: bold; cursor: pointer; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(0,0,0,0.1); text-decoration: none; display: inline-flex; align-items: center; gap: 10px; } .download-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); color: white; } /* Installation Guidelines */ .guidelines-card { background: var(--warning-bg); border-radius: 10px; padding: 20px; margin: 30px 0; display: flex; align-items: flex-start; border-left: 4px solid var(--accent); } .warning-icon { font-size: 1.8rem; margin-right: 20px; color: var(--accent); } .warning-content h4 { color: var(--accent); margin-bottom: 10px; font-size: 1.2rem; } .warning-content ul { padding-left: 20px; } .warning-content li { margin-bottom: 8px; } /* FAQ Section */ .faq-list { margin: 30px 0; } .faq-item { background: var(--card-bg); border-radius: 8px; padding: 20px; margin-bottom: 15px; box-shadow: 0 3px 10px rgba(0,0,0,0.05); } .faq-item h4 { color: var(--secondary); margin-bottom: 10px; font-size: 1.1rem; } .faq-item p { color: var(--light-text); } /* CTA Section */ .cta-section { text-align: center; margin: 50px 0 30px; padding: 30px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); border-radius: 10px; color: white; } .cta-section p { font-size: 1.2rem; margin-bottom: 20px; } .cta-button { background: white; color: var(--primary); border: none; padding: 12px 30px; border-radius: 30px; font-size: 1rem; font-weight: bold; cursor: pointer; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(0,0,0,0.1); } .cta-button:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); } /* Responsive Design */ @media (max-width: 768px) { .product-header h1 { font-size: 1.8rem; } .spec-cards { grid-template-columns: 1fr; } .description-card, .guidelines-card { flex-direction: column; align-items: center; text-align: center; } .description-card .icon, .warning-icon { margin-right: 0; margin-bottom: 15px; } h2 { font-size: 1.5rem; margin: 30px 0; } .download-btn { padding: 10px 25px; font-size: 0.95rem; } } @media (max-width: 480px) { .light-post-container { padding: 15px; } .product-header h1 { font-size: 1.5rem; } .subtitle { font-size: 1rem; } .faq-item, .spec-card { padding: 15px; } .download-btn { padding: 8px 20px; font-size: 0.9rem; } } Versatile Solar Light Post Premium outdoor lighting solutions for any space 💡 The lamp post is designed to accommodate garden lights, street lights, cameras, and more, primarily for solar street lights. It is suitable for various locations, including courtyards, basketball courts, walkways, and streets. Product Specifications 📥 Download Full Specification PDF SP-13 Model 13 FT Pole Diameter: 3" (top) / 4.3" (bottom) Weight: 39.6 lb Thickness: 1.5 mm Hanging Load: Max 22 lb Sections: 4 pcs Box Size: 46.5" × 9" × 10.5" Material: Iron-zinc plated SP-16 Model 16 FT Pole Diameter: 3" (top) / 4.3" (bottom) Weight: 44 lb Thickness: 1.5 mm Hanging Load: Max 26 lb (32 lb with ground cage) Sections: 5 pcs Box Size: 54.5" × 9.5" × 10" Material: Iron-zinc plated SP-20 Model 20 FT Pole Diameter: 3" (top) / 4.3" (bottom) Weight: 56 lb Thickness: 1.8 mm Hanging Load: Max 26 lb (32 lb with ground cage) Sections: 5 pcs Box Size: 55" × 10" × 11" Material: Iron-zinc plated Installation Guidelines ⚠️ Important Safety Information Avoid installation in high wind zones, coastal areas, mountain tops, etc. If the total weight of the luminaire exceeds 26 lbs, use ground cage installation. Do not exceed the interface limit. When installing or repairing, place the pole upside down and avoid climbing on the pole with a ladder. Frequently Asked Questions Q: The pole has minor deformation. Does this affect installation? A: Minor pole deformation does not affect installation and use. Q: The interface is a small oval and doesn't fit properly. A: Rotating the orientation will allow for proper fitting. Q: There's slight looseness in the interface. A: Wrapping it with packaging tape can secure the connection. Q: The pole has a slight tilt. Is this normal? A: It is normal for the pole to have a slight tilt of less than 3 degrees.
Save on Solar Street Light Split Pole 13FT/16FT/20FT with a Langy Solar Lights discount code
Checkmate is a savings app with over one million users that have saved $$$ on brands like Langy Solar Lights.
The Checkmate extension automatically applies Langy Solar Lights discount codes, Langy Solar Lights coupons and more to give you discounts on products like Solar Street Light Split Pole 13FT/16FT/20FT.
Top Langy Solar Lights discount codes
Community-sourced code
Last used 22 days ago
5% Off Storewide at LANGY
Last used over 1 year ago
5% Off Storewide at LANGY
Last used almost 2 years ago
See all codes
Similar items




















