{"title":"200w bought together","description":"","products":[{"product_id":"solar-street-light-split-pole-13-3-16-3-tall","title":"Solar Street Light Split Pole 13FT\/16FT\/20FT","description":"\u003cp\u003e\u003cmeta charset=\"UTF-8\"\u003e \u003cmeta content=\"width=device-width, initial-scale=1.0\" name=\"viewport\"\u003e\u003c\/p\u003e\n\u003cstyle\u003e\n        :root {\n            --primary: #3498db;       \/* Vibrant blue for headers *\/\n            --primary-light: #7fa1c7; \/* Muted blue *\/\n            --secondary: #3a516d;     \/* Dark slate blue *\/\n            --accent: #c77b2d;        \/* Subdued terracotta *\/\n            --text: #4a4a4a;          \/* Soft black *\/\n            --light-text: #6d6d6d;     \/* Medium gray *\/\n            --bg: #f5f7fa;            \/* Light gray background *\/\n            --card-bg: #ffffff;        \/* Pure white cards *\/\n            --warning-bg: #f9f4e8;     \/* Pale cream warning *\/\n            --divider: #e1e5eb;       \/* Light gray divider *\/\n        }\n        * {\n            box-sizing: border-box;\n            margin: 0;\n            padding: 0;\n        }\n        body {\n            background-color: var(--bg);\n            font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;\n            line-height: 1.6;\n            color: var(--text);\n        }\n        .light-post-container {\n            max-width: 1200px;\n            margin: 0 auto;\n            padding: 20px;\n        }\n        \/* Header Styles *\/\n        .product-header {\n            text-align: center;\n            margin-bottom: 40px;\n        }\n        .product-header h1 {\n            color: var(--secondary);\n            font-size: 2.2rem;\n            margin-bottom: 10px;\n            font-weight: 600;\n        }\n        .divider {\n            height: 3px;\n            width: 80px;\n            background: linear-gradient(to right, var(--primary), var(--primary-light));\n            margin: 15px auto;\n            border-radius: 3px;\n        }\n        .subtitle {\n            color: var(--light-text);\n            font-size: 1.1rem;\n            font-weight: 300;\n        }\n        \/* Description Card *\/\n        .description-card {\n            background: var(--card-bg);\n            border-radius: 10px;\n            padding: 25px;\n            margin-bottom: 30px;\n            box-shadow: 0 5px 15px rgba(0,0,0,0.05);\n            display: flex;\n            align-items: flex-start;\n            border-left: 4px solid var(--primary);\n        }\n        .description-card .icon {\n            font-size: 2rem;\n            margin-right: 20px;\n            color: var(--primary);\n        }\n        \/* Section Headers *\/\n        h2 {\n            text-align: center;\n            margin: 40px 0 30px;\n            color: var(--secondary);\n            font-size: 1.8rem;\n            position: relative;\n        }\n        h2 span {\n            background: var(--bg);\n            padding: 0 20px;\n            position: relative;\n            z-index: 1;\n        }\n        h2:after {\n            content: \"\";\n            position: absolute;\n            top: 50%;\n            left: 0;\n            right: 0;\n            height: 1px;\n            background: var(--divider);\n            z-index: 0;\n        }\n        \/* Specification Cards - 修改重点在这里 *\/\n        .spec-cards {\n            display: grid;\n            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n            gap: 25px;\n            margin: 30px 0;\n        }\n        .spec-card {\n            background: var(--card-bg);\n            border-radius: 10px;\n            overflow: hidden;\n            box-shadow: 0 5px 15px rgba(0,0,0,0.05);\n            transition: transform 0.3s ease, box-shadow 0.3s ease;\n        }\n        .spec-card:hover {\n            transform: translateY(-5px);\n            box-shadow: 0 10px 25px rgba(0,0,0,0.1);\n        }\n        .spec-card.featured {\n            border: 2px solid var(--primary);\n        }\n        \/* 确保表头样式不会被覆盖 *\/\n        .spec-card .card-header {\n            background: var(--primary) !important;\n            color: white !important;\n            padding: 20px;\n            position: relative;\n        }\n        .spec-card .card-header h3 {\n            font-size: 1.3rem;\n            margin-bottom: 5px;\n            color: white !important;\n        }\n        .spec-card .card-badge {\n            position: absolute;\n            top: 15px;\n            right: 15px;\n            background: rgba(255,255,255,0.2);\n            padding: 5px 10px;\n            border-radius: 20px;\n            font-weight: bold;\n            font-size: 0.9rem;\n            color: white !important;\n        }\n        .spec-list {\n            padding: 20px;\n            list-style: none;\n        }\n        .spec-list li {\n            padding: 10px 0;\n            border-bottom: 1px dashed var(--divider);\n        }\n        .spec-list li:last-child {\n            border-bottom: none;\n        }\n        .spec-list strong {\n            color: var(--secondary);\n        }\n        \/* Download Button *\/\n        .download-btn-container {\n            text-align: center;\n            margin: 20px 0 30px;\n        }\n        .download-btn {\n            background: linear-gradient(135deg, var(--primary), var(--primary-light));\n            color: white;\n            border: none;\n            padding: 12px 30px;\n            border-radius: 30px;\n            font-size: 1rem;\n            font-weight: bold;\n            cursor: pointer;\n            transition: all 0.3s ease;\n            box-shadow: 0 4px 15px rgba(0,0,0,0.1);\n            text-decoration: none;\n            display: inline-flex;\n            align-items: center;\n            gap: 10px;\n        }\n        .download-btn:hover {\n            transform: translateY(-2px);\n            box-shadow: 0 6px 20px rgba(0,0,0,0.15);\n            color: white;\n        }\n        \/* Installation Guidelines *\/\n        .guidelines-card {\n            background: var(--warning-bg);\n            border-radius: 10px;\n            padding: 20px;\n            margin: 30px 0;\n            display: flex;\n            align-items: flex-start;\n            border-left: 4px solid var(--accent);\n        }\n        .warning-icon {\n            font-size: 1.8rem;\n            margin-right: 20px;\n            color: var(--accent);\n        }\n        .warning-content h4 {\n            color: var(--accent);\n            margin-bottom: 10px;\n            font-size: 1.2rem;\n        }\n        .warning-content ul {\n            padding-left: 20px;\n        }\n        .warning-content li {\n            margin-bottom: 8px;\n        }\n        \/* FAQ Section *\/\n        .faq-list {\n            margin: 30px 0;\n        }\n        .faq-item {\n            background: var(--card-bg);\n            border-radius: 8px;\n            padding: 20px;\n            margin-bottom: 15px;\n            box-shadow: 0 3px 10px rgba(0,0,0,0.05);\n        }\n        .faq-item h4 {\n            color: var(--secondary);\n            margin-bottom: 10px;\n            font-size: 1.1rem;\n        }\n        .faq-item p {\n            color: var(--light-text);\n        }\n        \/* CTA Section *\/\n        .cta-section {\n            text-align: center;\n            margin: 50px 0 30px;\n            padding: 30px;\n            background: linear-gradient(135deg, var(--primary), var(--primary-light));\n            border-radius: 10px;\n            color: white;\n        }\n        .cta-section p {\n            font-size: 1.2rem;\n            margin-bottom: 20px;\n        }\n        .cta-button {\n            background: white;\n            color: var(--primary);\n            border: none;\n            padding: 12px 30px;\n            border-radius: 30px;\n            font-size: 1rem;\n            font-weight: bold;\n            cursor: pointer;\n            transition: all 0.3s ease;\n            box-shadow: 0 4px 15px rgba(0,0,0,0.1);\n        }\n        .cta-button:hover {\n            transform: translateY(-2px);\n            box-shadow: 0 6px 20px rgba(0,0,0,0.15);\n        }\n        \/* Responsive Design *\/\n        @media (max-width: 768px) {\n            .product-header h1 {\n                font-size: 1.8rem;\n            }\n           \n            .spec-cards {\n                grid-template-columns: 1fr;\n            }\n           \n            .description-card, .guidelines-card {\n                flex-direction: column;\n                align-items: center;\n                text-align: center;\n            }\n           \n            .description-card .icon, .warning-icon {\n                margin-right: 0;\n                margin-bottom: 15px;\n            }\n           \n            h2 {\n                font-size: 1.5rem;\n                margin: 30px 0;\n            }\n           \n            .download-btn {\n                padding: 10px 25px;\n                font-size: 0.95rem;\n            }\n        }\n        @media (max-width: 480px) {\n            .light-post-container {\n                padding: 15px;\n            }\n           \n            .product-header h1 {\n                font-size: 1.5rem;\n            }\n           \n            .subtitle {\n                font-size: 1rem;\n            }\n           \n            .faq-item, .spec-card {\n                padding: 15px;\n            }\n           \n            .download-btn {\n                padding: 8px 20px;\n                font-size: 0.9rem;\n            }\n        }\n    \u003c\/style\u003e\n\u003cdiv class=\"light-post-container\"\u003e\n\u003cdiv class=\"product-header\"\u003e\n\u003ch1\u003eVersatile Solar Light Post\u003c\/h1\u003e\n\u003cdiv class=\"divider\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003cp class=\"subtitle\"\u003ePremium outdoor lighting solutions for any space\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"product-description\"\u003e\n\u003cdiv class=\"description-card\"\u003e\n\u003cdiv class=\"icon\"\u003e💡\u003c\/div\u003e\n\u003cp\u003eThe 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.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"specifications\"\u003e\n\u003ch2\u003e\u003cspan\u003eProduct Specifications\u003c\/span\u003e\u003c\/h2\u003e\n\u003c!-- 新增的下载按钮容器 --\u003e\n\u003cdiv class=\"download-btn-container\"\u003e\u003ca class=\"download-btn\" href=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0363\/8070\/4903\/files\/Split_pole_specification_550731a4-9491-4aa6-ac93-7db43e9db72c.pdf?v=1729586498\" target=\"_blank\"\u003e 📥 Download Full Specification PDF \u003c\/a\u003e\u003c\/div\u003e\n\u003cdiv class=\"spec-cards\"\u003e\n\u003c!-- SP-13 Card --\u003e\n\u003cdiv class=\"spec-card\"\u003e\n\u003cdiv class=\"card-header\"\u003e\n\u003ch3\u003eSP-13 Model\u003c\/h3\u003e\n\u003cdiv class=\"card-badge\"\u003e13 FT\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cul class=\"spec-list\"\u003e\n\u003cli\u003e\n\u003cstrong\u003ePole Diameter:\u003c\/strong\u003e 3\" (top) \/ 4.3\" (bottom)\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003eWeight:\u003c\/strong\u003e 39.6 lb\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003eThickness:\u003c\/strong\u003e 1.5 mm\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003eHanging Load:\u003c\/strong\u003e Max 22 lb\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003eSections:\u003c\/strong\u003e 4 pcs\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003eBox Size:\u003c\/strong\u003e 46.5\" × 9\" × 10.5\"\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003eMaterial:\u003c\/strong\u003e Iron-zinc plated\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003c\/div\u003e\n\u003c!-- SP-16 Card --\u003e\n\u003cdiv class=\"spec-card featured\"\u003e\n\u003cdiv class=\"card-header\"\u003e\n\u003ch3\u003eSP-16 Model\u003c\/h3\u003e\n\u003cdiv class=\"card-badge\"\u003e16 FT\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cul class=\"spec-list\"\u003e\n\u003cli\u003e\n\u003cstrong\u003ePole Diameter:\u003c\/strong\u003e 3\" (top) \/ 4.3\" (bottom)\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003eWeight:\u003c\/strong\u003e 44 lb\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003eThickness:\u003c\/strong\u003e 1.5 mm\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003eHanging Load:\u003c\/strong\u003e Max 26 lb (32 lb with ground cage)\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003eSections:\u003c\/strong\u003e 5 pcs\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003eBox Size:\u003c\/strong\u003e 54.5\" × 9.5\" × 10\"\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003eMaterial:\u003c\/strong\u003e Iron-zinc plated\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003c\/div\u003e\n\u003c!-- SP-20 Card --\u003e\n\u003cdiv class=\"spec-card\"\u003e\n\u003cdiv class=\"card-header\"\u003e\n\u003ch3\u003eSP-20 Model\u003c\/h3\u003e\n\u003cdiv class=\"card-badge\"\u003e20 FT\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cul class=\"spec-list\"\u003e\n\u003cli\u003e\n\u003cstrong\u003ePole Diameter:\u003c\/strong\u003e 3\" (top) \/ 4.3\" (bottom)\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003eWeight:\u003c\/strong\u003e 56 lb\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003eThickness:\u003c\/strong\u003e 1.8 mm\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003eHanging Load:\u003c\/strong\u003e Max 26 lb (32 lb with ground cage)\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003eSections:\u003c\/strong\u003e 5 pcs\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003eBox Size:\u003c\/strong\u003e 55\" × 10\" × 11\"\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003eMaterial:\u003c\/strong\u003e Iron-zinc plated\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"installation-guidelines\"\u003e\n\u003ch2\u003e\u003cspan\u003eInstallation Guidelines\u003c\/span\u003e\u003c\/h2\u003e\n\u003cdiv class=\"guidelines-card\"\u003e\n\u003cdiv class=\"warning-icon\"\u003e⚠️\u003c\/div\u003e\n\u003cdiv class=\"warning-content\"\u003e\n\u003ch4\u003eImportant Safety Information\u003c\/h4\u003e\n\u003cul\u003e\n\u003cli\u003eAvoid installation in high wind zones, coastal areas, mountain tops, etc.\u003c\/li\u003e\n\u003cli\u003eIf the total weight of the luminaire exceeds 26 lbs, use ground cage installation.\u003c\/li\u003e\n\u003cli\u003eDo not exceed the interface limit.\u003c\/li\u003e\n\u003cli\u003eWhen installing or repairing, place the pole upside down and avoid climbing on the pole with a ladder.\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"faq-section\"\u003e\n\u003ch2\u003e\u003cspan\u003eFrequently Asked Questions\u003c\/span\u003e\u003c\/h2\u003e\n\u003cdiv class=\"faq-list\"\u003e\n\u003cdiv class=\"faq-item\"\u003e\n\u003ch4\u003eQ: The pole has minor deformation. Does this affect installation?\u003c\/h4\u003e\n\u003cp\u003eA: Minor pole deformation does not affect installation and use.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"faq-item\"\u003e\n\u003ch4\u003eQ: The interface is a small oval and doesn't fit properly.\u003c\/h4\u003e\n\u003cp\u003eA: Rotating the orientation will allow for proper fitting.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"faq-item\"\u003e\n\u003ch4\u003eQ: There's slight looseness in the interface.\u003c\/h4\u003e\n\u003cp\u003eA: Wrapping it with packaging tape can secure the connection.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"faq-item\"\u003e\n\u003ch4\u003eQ: The pole has a slight tilt. Is this normal?\u003c\/h4\u003e\n\u003cp\u003eA: It is normal for the pole to have a slight tilt of less than 3 degrees.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e","brand":"Langy Solar Lights","offers":[{"title":"16FT","offer_id":41192755265671,"sku":"SP-16-G","price":219.69,"currency_code":"USD","in_stock":true},{"title":"20FT","offer_id":41192755331207,"sku":"SP-20-G","price":259.69,"currency_code":"USD","in_stock":true},{"title":"Screw covers Set (4pcs)","offer_id":41866267263111,"sku":"COVER-04","price":19.69,"currency_code":"USD","in_stock":true},{"title":"13.3FT","offer_id":41192755200135,"sku":"SP-13-G","price":179.69,"currency_code":"USD","in_stock":false}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0363\/8070\/4903\/files\/20ft_58be721e-b214-42e3-b826-f95621a06cd3.jpg?v=1758702441"},{"product_id":"2-pack-576-leds-solar-wall-light-with-motion-sensor-white","title":"30W Solar wall light-5000 lumens (1 PC)","description":"\u003cp\u003e\u003cmeta charset=\"UTF-8\"\u003e \u003cmeta content=\"width=device-width, initial-scale=1.0\" name=\"viewport\"\u003e\u003clink href=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/font-awesome\/6.4.0\/css\/all.min.css\" rel=\"stylesheet\"\u003e\u003c\/p\u003e\n\u003cstyle\u003e\n        * {\n            margin: 0;\n            padding: 0;\n            box-sizing: border-box;\n            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;\n        }\n        \n        body {\n            background-color: #f8f9fa;\n            color: #333;\n            line-height: 1.5;\n        }\n        \n        .container {\n            max-width: 1200px;\n            margin: 0 auto;\n            padding: 20px;\n        }\n        \n        .product-description {\n            background-color: white;\n            border-radius: 12px;\n            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);\n            overflow: hidden;\n        }\n        \n        .product-header {\n            background: linear-gradient(135deg, #1a3a5f 0%, #2c5c8a 100%);\n            color: white;\n            padding: 25px 30px;\n            text-align: center;\n        }\n        \n        .product-header h1 {\n            font-size: 1.8rem;\n            margin-bottom: 10px;\n            font-weight: 700;\n        }\n        \n        .product-header p {\n            font-size: 1rem;\n            opacity: 0.9;\n            max-width: 700px;\n            margin: 0 auto;\n        }\n        \n        \/* 精简规格卡片 - 4个一行 *\/\n        .specs-grid {\n            display: grid;\n            grid-template-columns: repeat(4, 1fr);\n            gap: 20px;\n            padding: 30px;\n        }\n        \n        .spec-card {\n            background-color: white;\n            border-radius: 10px;\n            padding: 25px 20px;\n            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);\n            text-align: center;\n            border: 1px solid #eaeaea;\n            transition: transform 0.3s ease, box-shadow 0.3s ease;\n            display: flex;\n            flex-direction: column;\n            align-items: center;\n            justify-content: center;\n        }\n        \n        .spec-card:hover {\n            transform: translateY(-5px);\n            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);\n        }\n        \n        .spec-icon {\n            font-size: 2.2rem;\n            color: #1a73e8;\n            margin-bottom: 15px;\n            height: 60px;\n            width: 60px;\n            display: flex;\n            align-items: center;\n            justify-content: center;\n            background-color: #e3f2fd;\n            border-radius: 50%;\n        }\n        \n        .spec-title {\n            font-weight: 700;\n            color: #1a3a5f;\n            margin-bottom: 8px;\n            font-size: 1.1rem;\n        }\n        \n        .spec-value {\n            font-size: 1.4rem;\n            color: #2d3748;\n            font-weight: 700;\n            margin-bottom: 8px;\n        }\n        \n        .spec-desc {\n            color: #718096;\n            font-size: 0.9rem;\n            line-height: 1.4;\n        }\n        \n        \/* 精简特性部分 *\/\n        .features-container {\n            padding: 0 30px 30px;\n        }\n        \n        .feature-section {\n            margin-bottom: 25px;\n            border-radius: 8px;\n            background-color: #f8fafc;\n            border-left: 4px solid #4a9ae9;\n            transition: all 0.3s ease;\n            padding: 20px;\n        }\n        \n        .feature-section:hover {\n            background-color: #f0f7ff;\n        }\n        \n        .feature-title {\n            color: #1a3a5f;\n            margin-bottom: 12px;\n            font-size: 1.3rem;\n            font-weight: 700;\n            display: flex;\n            align-items: center;\n        }\n        \n        .feature-title i {\n            margin-right: 10px;\n            color: #1a73e8;\n        }\n        \n        .feature-content p {\n            color: #4a5568;\n            font-size: 1rem;\n        }\n        \n        .highlight {\n            color: #1a73e8;\n            font-weight: 600;\n        }\n        \n        .footer-note {\n            background-color: #1a3a5f;\n            color: white;\n            padding: 20px 30px;\n            text-align: center;\n            border-top: 1px solid rgba(255, 255, 255, 0.1);\n            font-size: 0.9rem;\n        }\n        \n        .footer-note i {\n            color: #ffd166;\n            margin: 0 5px;\n        }\n        \n        \/* 响应式调整 *\/\n        @media (max-width: 992px) {\n            .specs-grid {\n                grid-template-columns: repeat(2, 1fr);\n            }\n        }\n        \n        @media (max-width: 576px) {\n            .specs-grid {\n                grid-template-columns: 1fr;\n                padding: 20px;\n            }\n            \n            .product-header {\n                padding: 20px;\n            }\n            \n            .product-header h1 {\n                font-size: 1.5rem;\n            }\n            \n            .features-container {\n                padding: 0 20px 20px;\n            }\n            \n            .feature-section {\n                padding: 15px;\n            }\n        }\n    \u003c\/style\u003e\n\u003cdiv class=\"container\"\u003e\n\u003cdiv class=\"product-description\"\u003e\n\u003cdiv class=\"product-header\"\u003e\n\u003ch1\u003e\n\u003ci class=\"fas fa-solar-panel\"\u003e\u003c\/i\u003e Solar-Powered Outdoor Wall Light\u003c\/h1\u003e\n\u003c\/div\u003e\n\u003c!-- 精简规格卡片 - 4个一行 --\u003e\n\u003cdiv class=\"specs-grid\"\u003e\n\u003cdiv class=\"spec-card\"\u003e\n\u003cdiv class=\"spec-icon\"\u003e\n\u003ci class=\"fas fa-battery-full\"\u003e\u003c\/i\u003e\u003cbr\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"spec-title\"\u003eBattery Capacity\u003c\/div\u003e\n\u003cdiv class=\"spec-value\"\u003e5,000mAh\u003c\/div\u003e\n\u003cdiv class=\"spec-desc\"\u003e8-10 hours lighting\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"spec-card\"\u003e\n\u003cdiv class=\"spec-icon\"\u003e\n\u003ci class=\"fas fa-sun\"\u003e\u003c\/i\u003e\u003cbr\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"spec-title\"\u003eSolar Panel\u003c\/div\u003e\n\u003cdiv class=\"spec-value\"\u003e22% Efficiency\u003c\/div\u003e\n\u003cdiv class=\"spec-desc\"\u003e9.5\" x 7\" polycrystalline\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"spec-card\"\u003e\n\u003cdiv class=\"spec-icon\"\u003e\n\u003ci class=\"fas fa-tint\"\u003e\u003c\/i\u003e\u003cbr\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"spec-title\"\u003eWaterproof Rating\u003c\/div\u003e\n\u003cdiv class=\"spec-value\"\u003eIP65\u003c\/div\u003e\n\u003cdiv class=\"spec-desc\"\u003eWeather-resistant outdoor use\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"spec-card\"\u003e\n\u003cdiv class=\"spec-icon\"\u003e\n\u003ci class=\"fas fa-ruler\"\u003e\u003c\/i\u003e\u003cbr\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"spec-title\"\u003eCable Length\u003c\/div\u003e\n\u003cdiv class=\"spec-value\"\u003e6.9 ft\u003c\/div\u003e\n\u003cdiv class=\"spec-desc\"\u003eSeparated panel for optimal placement\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- 精简特性描述 --\u003e\n\u003cdiv class=\"features-container\"\u003e\n\u003cdiv class=\"feature-section\"\u003e\n\u003cdiv class=\"feature-title\"\u003e\n\u003ci class=\"fas fa-solar-panel\"\u003e\u003c\/i\u003e Solar-Powered \u0026amp; Dusk to Dawn\u003c\/div\u003e\n\u003cdiv class=\"feature-content\"\u003e\n\u003cp\u003e22% efficiency solar panel charges in \u003cspan class=\"highlight\"\u003e4-6 hours\u003c\/span\u003e for \u003cspan class=\"highlight\"\u003e8-10 hours\u003c\/span\u003e of automatic dusk-to-dawn lighting.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"feature-section\"\u003e\n\u003cdiv class=\"feature-title\"\u003e\n\u003ci class=\"fas fa-lightbulb\"\u003e\u003c\/i\u003e Super Bright LED Beads\u003c\/div\u003e\n\u003cdiv class=\"feature-content\"\u003e\n\u003cp\u003e\u003cspan class=\"highlight\"\u003e6000K white lighting\u003c\/span\u003e with convex lens for concentrated light distribution and wide coverage.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"feature-section\"\u003e\n\u003cdiv class=\"feature-title\"\u003e\n\u003ci class=\"fas fa-sliders-h\"\u003e\u003c\/i\u003e Flexible Installation\u003c\/div\u003e\n\u003cdiv class=\"feature-content\"\u003e\n\u003cp\u003eSeparated solar panel with \u003cspan class=\"highlight\"\u003e6.9ft cable\u003c\/span\u003e for optimal sun placement. Install on eave, roof, garage, doors.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"feature-section\"\u003e\n\u003cdiv class=\"feature-title\"\u003e\n\u003ci class=\"fas fa-shield-alt\"\u003e\u003c\/i\u003e Weather Resistant\u003c\/div\u003e\n\u003cdiv class=\"feature-content\"\u003e\n\u003cp\u003e\u003cspan class=\"highlight\"\u003eIP65 waterproof\u003c\/span\u003e with ABS\/PC construction for all weather conditions.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"footer-note\"\u003e\n\u003cp\u003e\u003ci class=\"fas fa-shipping-fast\"\u003e\u003c\/i\u003e Free shipping | \u003ci class=\"fas fa-calendar-alt\"\u003e\u003c\/i\u003e 1-year warranty | \u003ci class=\"fas fa-headset\"\u003e\u003c\/i\u003e 24\/7 support\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cp\u003e \u003c\/p\u003e","brand":"Langy Solar Lighting","offers":[{"title":"Default Title","offer_id":40783219720327,"sku":"TN106-30W-1PACK","price":59.69,"currency_code":"USD","in_stock":false}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0363\/8070\/4903\/files\/8_92d5ece8-b827-4875-8017-c0324502c4b0.jpg?v=1765539290"},{"product_id":"200w-solar-street-light-kit","title":"200W Solar Street Light with pole 16FT\/20FT","description":"\u003cp\u003e\u003cmeta charset=\"UTF-8\"\u003e \u003cmeta content=\"width=device-width, initial-scale=1.0\" name=\"viewport\"\u003e\u003clink href=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/font-awesome\/6.4.0\/css\/all.min.css\" rel=\"stylesheet\"\u003e\u003c\/p\u003e\n\u003cstyle\u003e\n        * {\n            margin: 0;\n            padding: 0;\n            box-sizing: border-box;\n            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;\n        }\n        \n        body {\n            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);\n            color: #333;\n            line-height: 1.6;\n            padding: 20px;\n            min-height: 100vh;\n        }\n        \n        .container {\n            max-width: 1200px;\n            margin: 0 auto;\n        }\n        \n        header {\n            text-align: center;\n            margin-bottom: 30px;\n            padding: 20px 0;\n            position: relative;\n        }\n        \n        .logo {\n            font-size: 2.8rem;\n            color: #ff8000;\n            margin-bottom: 15px;\n        }\n        \n        h1 {\n            color: #2c3e50;\n            font-size: 2.2rem;\n            margin-bottom: 10px;\n        }\n        \n        .subtitle {\n            color: #6c757d;\n            font-size: 1.1rem;\n            max-width: 700px;\n            margin: 0 auto 20px;\n            font-weight: 400;\n        }\n        \n        .download-section {\n            text-align: center;\n            margin: 25px 0;\n        }\n        \n        .download-buttons {\n            display: flex;\n            justify-content: center;\n            gap: 20px;\n            flex-wrap: wrap;\n            margin-top: 15px;\n        }\n        \n        .download-btn {\n            display: inline-flex;\n            align-items: center;\n            padding: 12px 25px;\n            background: #ff8000;\n            color: white;\n            text-decoration: none;\n            border-radius: 8px;\n            font-weight: 600;\n            transition: all 0.3s ease;\n            box-shadow: 0 4px 8px rgba(255, 128, 0, 0.25);\n            border: 2px solid transparent;\n        }\n        \n        .download-btn:hover {\n            background: #e67300;\n            transform: translateY(-2px);\n            box-shadow: 0 6px 12px rgba(255, 128, 0, 0.35);\n            border-color: rgba(255, 255, 255, 0.3);\n        }\n        \n        .download-btn i {\n            margin-right: 10px;\n            font-size: 1.2rem;\n        }\n        \n        .spec-card {\n            background: white;\n            border-radius: 12px;\n            overflow: hidden;\n            box-shadow: 0 8px 25px rgba(0,0,0,0.08);\n            margin: 30px 0;\n        }\n        \n        .spec-title {\n            background: linear-gradient(135deg, #2c3e50, #4a6491);\n            color: white;\n            padding: 16px;\n            text-align: center;\n            font-size: 1.4rem;\n            font-weight: 600;\n            letter-spacing: 0.5px;\n        }\n        \n        .spec-table-container {\n            overflow-x: auto;\n            -webkit-overflow-scrolling: touch;\n            padding: 15px;\n        }\n        \n        .spec-table {\n            width: 100%;\n            border-collapse: collapse;\n            min-width: 600px;\n            font-size: 0.95rem;\n        }\n        \n        .spec-table tr {\n            border-bottom: 1px solid #edf2f7;\n        }\n        \n        .spec-table tr:last-child {\n            border-bottom: none;\n        }\n        \n        .spec-table tr:nth-child(even) {\n            background-color: #f9fafb;\n        }\n        \n        .spec-table tr:hover {\n            background-color: #f0f7ff;\n        }\n        \n        .spec-table td {\n            padding: 12px 15px;\n            line-height: 1.4;\n        }\n        \n        .spec-table td:first-child {\n            font-weight: 600;\n            color: #2c3e50;\n            width: 40%;\n            text-align: left;\n            padding-left: 20px;\n        }\n        \n        .spec-table td:last-child {\n            text-align: left;\n            color: #34495e;\n            font-weight: 500;\n            padding-right: 20px;\n        }\n        \n        .highlight {\n            font-weight: 700;\n            color: #e74c3c;\n        }\n        \n        .key-specs {\n            display: grid;\n            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));\n            gap: 15px;\n            margin: 25px 0;\n        }\n        \n        .spec-item {\n            background: white;\n            border-radius: 10px;\n            padding: 15px;\n            text-align: center;\n            box-shadow: 0 4px 12px rgba(0,0,0,0.05);\n            border-left: 4px solid #3498db;\n        }\n        \n        .spec-item:nth-child(2) {\n            border-left-color: #2ecc71;\n        }\n        \n        .spec-item:nth-child(3) {\n            border-left-color: #e74c3c;\n        }\n        \n        .spec-item:nth-child(4) {\n            border-left-color: #f39c12;\n        }\n        \n        .spec-value {\n            font-size: 1.5rem;\n            font-weight: 700;\n            color: #2c3e50;\n            margin: 5px 0;\n        }\n        \n        .spec-label {\n            font-size: 0.9rem;\n            color: #6c757d;\n            font-weight: 500;\n        }\n        \n        .features-section {\n            margin: 40px 0;\n        }\n        \n        .section-title {\n            text-align: center;\n            color: #2c3e50;\n            margin-bottom: 30px;\n            font-size: 1.7rem;\n            position: relative;\n        }\n        \n        .section-title::after {\n            content: '';\n            display: block;\n            width: 80px;\n            height: 4px;\n            background: linear-gradient(to right, #3498db, #2c3e50);\n            margin: 12px auto;\n            border-radius: 2px;\n        }\n        \n        .features-grid {\n            display: grid;\n            grid-template-columns: repeat(2, 1fr);\n            gap: 20px;\n        }\n        \n        .feature-card {\n            background: white;\n            border-radius: 10px;\n            padding: 22px;\n            box-shadow: 0 5px 15px rgba(0,0,0,0.06);\n            transition: all 0.3s ease;\n            display: flex;\n            flex-direction: column;\n        }\n        \n        .feature-card:hover {\n            transform: translateY(-5px);\n            box-shadow: 0 8px 25px rgba(0,0,0,0.1);\n        }\n        \n        .feature-card h3 {\n            font-size: 1.2rem;\n            color: #2c3e50;\n            margin-bottom: 15px;\n            display: flex;\n            align-items: center;\n        }\n        \n        .feature-card h3 i {\n            margin-right: 12px;\n            color: #ff8000;\n            font-size: 1.3rem;\n            min-width: 24px; \/* Ensure consistent icon width *\/\n        }\n        \n        .feature-card p {\n            color: #555;\n            font-size: 0.95rem;\n            line-height: 1.7;\n            flex-grow: 1;\n        }\n        \n        .divider {\n            height: 1px;\n            background: linear-gradient(to right, transparent, #dee2e6, transparent);\n            margin: 30px auto;\n            width: 80%;\n        }\n        \n        .hero-image {\n            width: 100%;\n            max-width: 800px;\n            margin: 20px auto;\n            border-radius: 12px;\n            overflow: hidden;\n            box-shadow: 0 10px 30px rgba(0,0,0,0.15);\n            display: flex;\n            justify-content: center;\n            background: linear-gradient(to right, #f5f5f5, #e0e0e0);\n            padding: 20px;\n        }\n        \n        .hero-image img {\n            max-width: 100%;\n            height: auto;\n            display: block;\n            transition: transform 0.5s ease;\n        }\n        \n        .hero-image:hover img {\n            transform: scale(1.03);\n        }\n        \n        .icon-fallback {\n            display: inline-block;\n            width: 24px;\n            height: 24px;\n            margin-right: 12px;\n            background-color: #ff8000;\n            border-radius: 50%;\n            position: relative;\n            color: white;\n            font-size: 12px;\n            text-align: center;\n            line-height: 24px;\n        }\n        \n        @media (max-width: 768px) {\n            h1 {\n                font-size: 1.8rem;\n            }\n            \n            .subtitle {\n                font-size: 1rem;\n            }\n            \n            .spec-table td {\n                padding: 10px 12px;\n                font-size: 0.9rem;\n            }\n            \n            .spec-table td:first-child {\n                padding-left: 15px;\n                width: 45%;\n            }\n            \n            .spec-table td:last-child {\n                padding-right: 15px;\n            }\n            \n            .download-buttons {\n                flex-direction: column;\n                align-items: center;\n            }\n            \n            .download-btn {\n                width: 100%;\n                max-width: 300px;\n                justify-content: center;\n            }\n            \n            .features-grid {\n                grid-template-columns: 1fr;\n            }\n        }\n        \n        @media (max-width: 480px) {\n            .spec-table {\n                min-width: 100%;\n            }\n            \n            .spec-table td {\n                padding: 8px 10px;\n                font-size: 0.85rem;\n            }\n            \n            .spec-table td:first-child {\n                width: 50%;\n                padding-left: 12px;\n            }\n            \n            .feature-card {\n                padding: 18px;\n            }\n            \n            .spec-value {\n                font-size: 1.3rem;\n            }\n            \n            .section-title {\n                font-size: 1.5rem;\n            }\n        }\n    \u003c\/style\u003e\n\u003cdiv class=\"container\"\u003e\n\u003cheader\u003e\n\u003cdiv class=\"logo\"\u003e\n\u003ci class=\"fas fa-sun\"\u003e\u003c\/i\u003e\u003cbr\u003e\n\u003c\/div\u003e\n\u003ch1\u003eSolar Street Light with pole\u003c\/h1\u003e\n\u003c\/header\u003e\n\u003cdiv class=\"download-section\"\u003e\n\u003cdiv class=\"download-buttons\"\u003e\n\u003ca href=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0363\/8070\/4903\/files\/Popular_solar_street_light_200W.pdf?v=1699106377\" class=\"download-btn\" target=\"_blank\"\u003e \u003ci class=\"fas fa-file-pdf\"\u003e\u003c\/i\u003e PDF Spec Sheet \u003c\/a\u003e \u003ca href=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0363\/8070\/4903\/files\/Solar_street_light_manual.pdf?v=1668077332\" class=\"download-btn\" target=\"_blank\"\u003e \u003ci class=\"fas fa-book\"\u003e\u003c\/i\u003e Technical Manual \u003c\/a\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"key-specs\"\u003e\n\u003cdiv class=\"spec-item\"\u003e\n\u003cdiv class=\"spec-value\"\u003e\n\u003ci class=\"fas fa-bolt\"\u003e\u003c\/i\u003e 25,000 LM\u003c\/div\u003e\n\u003cdiv class=\"spec-label\"\u003eBrightness\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"spec-item\"\u003e\n\u003cdiv class=\"spec-value\"\u003e\n\u003ci class=\"fas fa-battery-full\"\u003e\u003c\/i\u003e 20,000 mAh\u003c\/div\u003e\n\u003cdiv class=\"spec-label\"\u003eBattery\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"spec-item\"\u003e\n\u003cdiv class=\"spec-value\"\u003e\n\u003ci class=\"fas fa-umbrella\"\u003e\u003c\/i\u003e IP65\u003c\/div\u003e\n\u003cdiv class=\"spec-label\"\u003eWaterproof\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"spec-item\"\u003e\n\u003cdiv class=\"spec-value\"\u003e\n\u003ci class=\"fas fa-clock\"\u003e\u003c\/i\u003e 5+ years\u003c\/div\u003e\n\u003cdiv class=\"spec-label\"\u003eLifespan\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"spec-card\"\u003e\n\u003cdiv class=\"spec-title\"\u003e\n\u003ci class=\"fas fa-tools\"\u003e\u003c\/i\u003e Technical Specifications\u003c\/div\u003e\n\u003cdiv class=\"spec-table-container\"\u003e\n\u003ctable class=\"spec-table\"\u003e\n\u003ctbody\u003e\n\u003ctr\u003e\n\u003ctd\u003eModel\u003c\/td\u003e\n\u003ctd\u003eES03-200W-16FTG \/ ES03-200W-20FTG\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003eWattage\u003c\/td\u003e\n\u003ctd\u003e200W\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003ePole Height\u003c\/td\u003e\n\u003ctd\u003e16FT \/ 20FT\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003eLumens Output\u003c\/td\u003e\n\u003ctd\u003e25,000 LM\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003eLED Quantity\u003c\/td\u003e\n\u003ctd\u003e360pcs\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003eSolar Panel\u003c\/td\u003e\n\u003ctd\u003e6V \/ 15W\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003eCoverage Area\u003c\/td\u003e\n\u003ctd\u003e1080 sqft (at 22ft height)\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003eBattery Capacity\u003c\/td\u003e\n\u003ctd\u003e20,000 mAh\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003e\n\u003cdiv dir=\"auto\" class=\"richTextContainer text-align-left\"\u003e\u003cspan class=\"text-only\"\u003eOptimal performance\u003c\/span\u003e\u003c\/div\u003e\n\u003cdiv dir=\"auto\" class=\"richTextContainer text-align-left\"\u003e\u003cspan class=\"text-only\"\u003etemperature range\u003c\/span\u003e\u003c\/div\u003e\n\u003c\/td\u003e\n\u003ctd\u003e\u003cspan\u003e-4°F - 131°F\u003c\/span\u003e\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003eLight Weight\u003c\/td\u003e\n\u003ctd\u003e14 lb\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003ePole Weight\u003c\/td\u003e\n\u003ctd\u003e44 lb \/ 56 lb\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003ePole Thickness\u003c\/td\u003e\n\u003ctd\u003e1.5mm \/ 1.8mm\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003eWaterproof Rating\u003c\/td\u003e\n\u003ctd\u003eIP65\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003eColor Temperature\u003c\/td\u003e\n\u003ctd\u003e6700K (White)\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003eDischarging Time\u003c\/td\u003e\n\u003ctd\u003e1-2 days\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003c\/tbody\u003e\n\u003c\/table\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"features-section\"\u003e\n\u003ch2 class=\"section-title\"\u003eProduct Features\u003c\/h2\u003e\n\u003cdiv class=\"features-grid\"\u003e\n\u003cdiv class=\"feature-card\"\u003e\n\u003ch3\u003e\n\u003ci class=\"fas fa-tools\"\u003e\u003c\/i\u003e EASY TO INSTALL\u003c\/h3\u003e\n\u003cp\u003eSolar parking lot lights don't need to worry about electric shock, No need for wires, just a few minutes and enjoy the brightness. Saving your money on the electric bill.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"feature-card\"\u003e\n\u003ch3\u003e\n\u003ci class=\"fas fa-moon\"\u003e\u003c\/i\u003e DUSK TO DAWN\u003c\/h3\u003e\n\u003cp\u003eThe solar power street light will light up from dusk to dawn automatically, a large capacity battery offers a good output. The remote switching is a great plus.\u003ci class=\"fas fa-sun\"\u003e\u003c\/i\u003e\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"feature-card\"\u003e\n\u003ch3\u003e\n\u003ci class=\"fas fa-running\"\u003e\u003c\/i\u003e GREAT MOTION DETECTION\u003c\/h3\u003e\n\u003cp\u003e26 ft radar sensing range makes Solar Led Street Light quick to react to motion and go to full illumination. Energy saving, it turns to 30% brightness if no motion is detected at night.\u003ci class=\"fas fa-shield-alt\"\u003e\u003c\/i\u003e\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"feature-card\"\u003e\n\u003ch3\u003e\n\u003ci class=\"fas fa-cog\"\u003e\u003c\/i\u003e SPECIAL FUNCTION\u003c\/h3\u003e\n\u003cp\u003eThe LED street light is integrated with an upgraded controller, it can keep 30% brightness OR turn off when no motion is detected. Save more energy. Stay on, Timer working mode also can be set by remote.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e","brand":"Langy Solar Lights","offers":[{"title":"16FT Pole +200W Solar street light","offer_id":41144881774727,"sku":"ES03-200W-16FTG","price":288.69,"currency_code":"USD","in_stock":true},{"title":"20FT Pole+200W Solar street light","offer_id":41144881807495,"sku":"ES03-200W-20FTG","price":329.89,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0363\/8070\/4903\/files\/20251222-165637.jpg?v=1766394186"}],"url":"https:\/\/langyenergflash.com\/en-ca\/collections\/200w-bought-together.oembed","provider":"Langy Energy","version":"1.0","type":"link"}