✦ Verified product
💥5W 360° Adjustable Solar Panel with Type C Port
USD 26.99
Version
Z
zumi-mall.myshopify.com
Verified independent store
→
/* Video Section Styles */ .video-section { text-align: center; margin: 5px auto; max-width: 1200px; padding: 0 5px; } .video-title { font-size: 28px; font-weight: bold; margin-bot
tom: 15px; color: #476C94; text-align: center; font-family: 'Arial Rounded MT Bold', 'Arial', sans-serif; position: relative; padding-bottom: 10px; } .video-title:after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 80px; height: 3px; background: #2D9EA1; } .video-subtitle { font-size: 18px; margin-bottom: 30px; text-align: center; color: #333; } .video-container { position: relative; padding-bottom: 56.25%; /* 16:9 aspect ratio */ height: 0; overflow: hidden; border-radius: 8px; box-shadow: 0 4px 12px rgba(71, 108, 148, 0.1); } .video-container video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; } /* Collapsible Panels Section Styles */ .product-section { max-width: 90%; margin: 10px auto; padding: 0 5%; } .feature-item { margin-bottom: 30px; } .collapsible { background-color: white; color: #476C94; cursor: pointer; padding: 20px; width: 100%; border: 1px solid #e0e0e0; text-align: left; outline: none; font-size: 18px; font-weight: bold; border-radius: 8px; margin-bottom: 10px; position: relative; transition: all 0.3s ease; box-shadow: 0 4px 12px rgba(71, 108, 148, 0.1); display: flex; justify-content: space-between; align-items: center; } .collapsible:hover { background-color: #f9f9f9; border-color: #97C5EC; } .active, .collapsible.active:hover { background-color: #f9f9f9; border-bottom-left-radius: 0; border-bottom-right-radius: 0; border-color: #97C5EC; } .collapsible .toggle-icon { transition: transform 0.3s ease; color: #2D9EA1; font-weight: bold; margin-left: 10px; } .active .toggle-icon { transform: rotate(90deg); } .content { padding: 0; max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; background-color: white; border: 1px solid #e0e0e0; border-top: none; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; box-shadow: 0 4px 12px rgba(71, 108, 148, 0.1); } .content-inner { padding: 20px; } .feature-text { margin-bottom: 20px; color: #333; } .responsive-image { width: 100%; height: auto; border-radius: 8px; box-shadow: 0 4px 12px rgba(71, 108, 148, 0.1); } /* Responsive adjustments */ @media (max-width: 767px) { .video-title { font-size: 22px; margin-bottom: 10px; } .video-subtitle { font-size: 16px; margin-bottom: 15px; } .product-section { max-width: 100%; padding: 0 2px; margin: 5px auto; } .collapsible { padding: 12px 8px; font-size: 12px; margin-bottom: 5px; } .content-inner { padding: 10px 8px; } .feature-item { margin-bottom: 15px; } } Zumimall 5W Solar Panel Continuous Solar Power for Your Security Camera Your browser does not support the video tag. High-efficient Continuous Solar Power › For Outdoor Rechargeable Battery Powered Security Camera Works with Zumimall Battery Cameras › The solar panel is compatible with most DC 5V battery cameras with USB-C port. 360°Angle Adjustable for Sufficient Sunlight › 360°adjustable bracket and 10ft charging cable can allow solar panel to receive sunlight at the most suitable position IP66 Weatherproof › With weatherproof material & design it can with stand harsh weather, including rain, snow, intense cold and heat, more durable, long-lasting, and cost-effective Zumimall Efficient Solar Panel-5W › Weatherproof and Durable Warm Tips: Make sure your solar panel is uncovered. It shall affect generating efficiency of solar panel if the panel is even partly covered. Tilt the solar panel a bit to avoid standing water or dust on its surface. Regularly clean the dust or leaves on the panel if there are. Installation Steps › Mount the BracketMount the bracket by inserting the three screw Fix the PanelFix the solar panel on the bracket Adjust the PanelAdjust the direction of the Panel by rotating the handles on the bracket to maximize sunlight exposure Connect Panel to CameraConnect the panel to camera with the 10ft charging cable (included). // Collapsible functionality document.addEventListener('DOMContentLoaded', function() { var coll = document.getElementsByClassName("collapsible"); for (var i = 0; i < coll.length; i++) { var button = coll[i]; var content = button.nextElementSibling; // Set initial state (all expanded) if (button.classList.contains("active")) { content.style.maxHeight = content.scrollHeight + "px"; } else { content.style.maxHeight = null; } button.addEventListener("click", function() { var content = this.nextElementSibling; this.classList.toggle("active"); // Toggle content if (this.classList.contains("active")) { content.style.maxHeight = content.scrollHeight + "px"; } else { content.style.maxHeight = null; } }); } });