{"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","url":"https:\/\/langyenergflash.com\/products\/solar-street-light-split-pole-13-3-16-3-tall","provider":"Langy Energy","version":"1.0","type":"link"}