{"product_id":"zumimall-aov-wireless-solar-security-camera-a60","title":"ZUMIMALL AOV Solar Security Camera  Auto Tracking--A60","description":"\u003cbody\u003e\n\u003cstyle\u003e\n  \/* 全局样式 - 使用品牌色调 *\/\n  :root {\n    --primary-dark-blue: #476C94;\n    --primary-teal: #2D9EA1;\n    --primary-light-blue: #97C5EC;\n    --text-color: #333;\n    --light-bg: #f9f9f9;\n    --border-radius: 8px;\n    --box-shadow: 0 4px 12px rgba(71, 108, 148, 0.1);\n  }\n  \n  \/* 基础样式 *\/\n  body {\n    font-family: 'Arial', sans-serif;\n    color: var(--text-color);\n    line-height: 1.6;\n    margin: 0;\n    padding: 0;\n  }\n  \n  .product-section {\n    max-width: 90%;\n    margin: 40px auto;\n    padding: 0 5%;\n  }\n  \n  \/* 折叠面板样式 - 更新版 *\/\n  .collapsible {\n    background-color: white;\n    color: var(--primary-dark-blue);\n    cursor: pointer;\n    padding: 20px;\n    width: 100%;\n    border: 1px solid #e0e0e0;\n    text-align: left;\n    outline: none;\n    font-size: 18px;\n    font-weight: bold;\n    border-radius: var(--border-radius);\n    margin-bottom: 10px;\n    position: relative;\n    transition: all 0.3s ease;\n    box-shadow: var(--box-shadow);\n    display: flex;\n    justify-content: space-between;\n    align-items: center;\n  }\n  \n  .collapsible:hover {\n    background-color: var(--light-bg);\n    border-color: var(--primary-light-blue);\n  }\n  \n  .active, .collapsible.active:hover {\n    background-color: var(--light-bg);\n    border-bottom-left-radius: 0;\n    border-bottom-right-radius: 0;\n    border-color: var(--primary-light-blue);\n  }\n  \n  .collapsible .toggle-icon {\n    transition: transform 0.3s ease;\n    color: var(--primary-teal);\n    font-weight: bold;\n    margin-left: 10px;\n  }\n  \n  .active .toggle-icon {\n    transform: rotate(90deg);\n  }\n  \n  .content {\n    padding: 0;\n    max-height: 0;\n    overflow: hidden;\n    transition: max-height 0.3s ease-out;\n    background-color: white;\n    border: 1px solid #e0e0e0;\n    border-top: none;\n    border-bottom-left-radius: var(--border-radius);\n    border-bottom-right-radius: var(--border-radius);\n    box-shadow: var(--box-shadow);\n  }\n  \n  .content-inner {\n    padding: 20px;\n  }\n  \n  \/* What's in the Box 特殊样式 *\/\n  .whats-in-box {\n    display: flex;\n    flex-wrap: wrap;\n  }\n  \n  .whats-in-box-img {\n    flex: 0 0 70%;\n    max-width: 70%;\n    padding-right: 20px;\n  }\n  \n  .whats-in-box-text {\n    flex: 0 0 30%;\n    max-width: 30%;\n    padding-left: 10px;\n  }\n  \n  .whats-in-box-img img {\n    width: 100%;\n    height: auto;\n    border-radius: var(--border-radius);\n  }\n  \n  \/* 响应式图片容器 *\/\n  .responsive-image {\n    width: 100%;\n    height: auto;\n    border-radius: var(--border-radius);\n    box-shadow: var(--box-shadow);\n    margin-bottom: 2px;\n  }\n  \n  .desktop-img {\n    display: block;\n  }\n  \n  .mobile-img {\n    display: none;\n  }\n  \n  \/* 视频部分样式 *\/\n  .video-section {\n    text-align: center;\n  }\n  \n  .video-container {\n    position: relative;\n    padding-bottom: 56.25%; \/* 16:9 比例 *\/\n    height: 0;\n    overflow: hidden;\n    max-width: 1800px;\n    margin: 0 auto;\n    border-radius: var(--border-radius);\n    box-shadow: var(--box-shadow);\n  }\n  \n  .video-container video {\n    position: absolute;\n    top: 0;\n    left: 0;\n    width: 100%;\n    height: 100%;\n    object-fit: cover;\n  }\n  \n  \/* 图片部分样式 *\/\n  .image-section {\n    text-align: center;\n  }\n  \n  .image-section img {\n    max-width: 100%;\n    height: auto;\n    border-radius: var(--border-radius);\n    box-shadow: var(--box-shadow);\n  }\n  \n  .section-title {\n    font-size: 28px;\n    font-weight: bold;\n    margin-bottom: 20px;\n    color: var(--primary-dark-blue);\n    text-align: center;\n    font-family: 'Arial Rounded MT Bold', 'Arial', sans-serif;\n    position: relative;\n    padding-bottom: 10px;\n  }\n  \n  .section-title:after {\n    content: '';\n    position: absolute;\n    bottom: 0;\n    left: 50%;\n    transform: translateX(-50%);\n    width: 80px;\n    height: 3px;\n    background: var(--primary-teal);\n  }\n  \n  .section-subtitle {\n    font-size: 18px;\n    margin-bottom: 30px;\n    text-align: center;\n    color: var(--text-color);\n  }\n  \n  \/* 折叠内容带图片的样式 *\/\n  .feature-item {\n    margin-bottom: 30px;\n  }\n  \n  .feature-text {\n    margin-bottom: 20px;\n    color: var(--text-color);\n  }\n  \n  \/* 轮播图样式 *\/\n  .carousel {\n    position: relative;\n    max-width: 100%;\n    margin: 50px auto;\n    overflow: hidden;\n    border-radius: var(--border-radius);\n  }\n  \n  .carousel-inner {\n    display: flex;\n    transition: transform 0.5s ease;\n  }\n  \n  .carousel-item {\n    min-width: 100%;\n    box-sizing: border-box;\n    padding: 0 10px;\n  }\n  \n  .carousel-desktop .carousel-item {\n    min-width: 50%;\n  }\n  \n  .carousel img {\n    width: 100%;\n    height: auto;\n    border-radius: var(--border-radius);\n    box-shadow: var(--box-shadow);\n  }\n  \n  .carousel-caption {\n    padding: 20px 15px;\n    text-align: center;\n  }\n  \n  .carousel-caption h3 {\n    font-weight: bold;\n    margin-bottom: 10px;\n    color: var(--primary-dark-blue);\n    font-size: 18px;\n  }\n  \n  .carousel-caption p {\n    color: var(--text-color);\n  }\n  \n  .carousel-control {\n    position: absolute;\n    top: 50%;\n    transform: translateY(-50%);\n    background-color: var(--primary-teal);\n    color: white;\n    border: none;\n    padding: 12px;\n    cursor: pointer;\n    border-radius: 50%;\n    z-index: 10;\n    width: 44px;\n    height: 44px;\n    display: flex;\n    align-items: center;\n    justify-content: center;\n    opacity: 0.9;\n    transition: all 0.3s;\n  }\n  \n  .carousel-control:hover {\n    opacity: 1;\n    background-color: var(--primary-dark-blue);\n  }\n  \n  .carousel-control.prev {\n    left: 15px;\n  }\n  \n  .carousel-control.next {\n    right: 15px;\n  }\n  \n  \/* 多图片带标题部分 *\/\n  .multi-image-section {\n    display: flex;\n    flex-wrap: wrap;\n    justify-content: space-between;\n    margin: 50px 0;\n  }\n  \n  .multi-image-item {\n    width: 100%;\n    margin-bottom: 40px;\n    text-align: center;\n  }\n  \n  .multi-image-item img {\n    max-width: 100%;\n    height: auto;\n    border-radius: var(--border-radius);\n    box-shadow: var(--box-shadow);\n    transition: transform 0.3s;\n  }\n  \n  .multi-image-item img:hover {\n    transform: translateY(-5px);\n  }\n  \n  .multi-image-title {\n    font-size: 20px;\n    font-weight: bold;\n    margin-bottom: 15px;\n    color: var(--primary-dark-blue);\n    position: relative;\n    padding-bottom: 10px;\n  }\n  \n  .multi-image-title:after {\n    content: '';\n    position: absolute;\n    bottom: 0;\n    left: 50%;\n    transform: translateX(-50%);\n    width: 50px;\n    height: 2px;\n    background: var(--primary-teal);\n  }\n  \n  \/* 按钮样式 *\/\n  .cta-button {\n    display: block;\n    width: 100%;\n    max-width: 400px;\n    margin: 50px auto;\n    padding: 16px;\n    background-color: var(--primary-teal);\n    color: white;\n    text-align: center;\n    font-size: 18px;\n    font-weight: bold;\n    border: none;\n    border-radius: var(--border-radius);\n    cursor: pointer;\n    text-decoration: none;\n    transition: all 0.3s;\n    box-shadow: 0 4px 8px rgba(45, 158, 161, 0.3);\n  }\n  \n  .cta-button:hover {\n    background-color: var(--primary-dark-blue);\n    transform: translateY(-2px);\n    box-shadow: 0 6px 12px rgba(45, 158, 161, 0.4);\n  }\n  \n  \/* 响应式调整 - 修改手机端样式 *\/\n  @media (max-width: 767px) {\n    body {\n      padding: 0;\n    }\n    \n    .product-section {\n      max-width: 100%;\n      padding: 0 2px;\n      margin: 5px auto;\n    }\n    \n    .section-title {\n      font-size: 22px;\n      margin-bottom: 10px;\n    }\n    \n    .section-subtitle {\n      font-size: 16px;\n      margin-bottom: 15px;\n    }\n    \n    .carousel-desktop .carousel-item {\n      min-width: 100%;\n    }\n    \n    .collapsible {\n      padding: 12px 8px;\n      font-size: 16px;\n      margin-bottom: 5px;\n    }\n    \n    .content-inner {\n      padding: 10px 8px;\n    }\n    \n    .feature-item {\n      margin-bottom: 15px;\n    }\n    \n    .carousel {\n      margin: 15px auto;\n    }\n    \n    .carousel-caption {\n      padding: 10px 5px;\n    }\n    \n    .carousel-caption h3 {\n      font-size: 16px;\n      margin-bottom: 5px;\n    }\n    \n    .carousel-caption p {\n      font-size: 14px;\n    }\n    \n    .multi-image-section {\n      margin: 15px 0;\n      gap: 15px;\n    }\n    \n    .multi-image-item {\n      margin-bottom: 15px;\n    }\n    \n    .whats-in-box-img, \n    .whats-in-box-text {\n      flex: 0 0 100%;\n      max-width: 100%;\n      padding: 0;\n    }\n    \n    .whats-in-box-text {\n      margin-top: 10px;\n    }\n    \n    .cta-button {\n      margin: 15px auto;\n      padding: 12px;\n      font-size: 16px;\n    }\n    \n    \/* 切换图片显示 *\/\n    .desktop-img {\n      display: none;\n    }\n    \n    .mobile-img {\n      display: block;\n    }\n  }\n  \n  @media (min-width: 768px) {\n    .multi-image-item {\n      width: 32%;\n    }\n    \n    \/* 确保桌面端显示正确的图片 *\/\n    .desktop-img {\n      display: block;\n    }\n    \n    .mobile-img {\n      display: none;\n    }\n  }\n\u003c\/style\u003e\n\u003c!-- 第一部分：About this item 折叠栏 --\u003e\n\u003cdiv class=\"product-section\"\u003e\n\u003cbutton class=\"collapsible\" type=\"button\"\u003e \u003cspan style=\"font-size: 22px;\"\u003eAbout this item\u003c\/span\u003e \u003cspan class=\"toggle-icon\"\u003e❯\u003c\/span\u003e \u003c\/button\u003e\n\u003cdiv class=\"content\"\u003e\n\u003cdiv class=\"content-inner\"\u003e\n\u003cp\u003e\u003cstrong\u003eAlways on Video, 24\/7 Recording Camera\u003c\/strong\u003e - Different from standard solar security cameras wireless outdoor, the ZUMIMALL AOV camera overcomes the traditional limitation of solar powered security cameras that only record when detects moving objects. Powered by AI, ZUMIMALL AOV camera Automatically shifts to full frame rate upon motion detection and reduces it during inactivity for efficient 24\/7 surveillance.\u003c\/p\u003e\n\u003cp\u003e\u003cstrong\u003eSolar-Powered \u0026amp; Wireless\u003c\/strong\u003e – 8W solar panel + 2×4000mAh battery enable 24\/7 recording with just 2 hours of daily charging. Fully wireless for easy installation anywhere.\u003c\/p\u003e\n\u003cp\u003e\u003cstrong\u003eAuto-Tracking 360° PTZ\u003c\/strong\u003e - The wireless outdoor camera automatically follows and records moving objects with 355° pan and 90° tilt, ensuring full coverage with no blind spots—no manual control needed.\u003c\/p\u003e\n\u003cp\u003e\u003cstrong\u003eEnhanced Night Vision \u0026amp; AI Detection\u003c\/strong\u003e – 6 IR + 14 white LEDs for color night vision; AI identifies people, pets, vehicles, and packages with high accuracy.\u003c\/p\u003e\n\u003cp\u003e\u003cstrong\u003eActive Security Deterrents\u003c\/strong\u003e – Audio siren, blinding spotlights, instant app alerts, and 2-way talk to scare off intruders.\u003c\/p\u003e\n\u003cp\u003e\u003cstrong\u003eDual Storage Options\u003c\/strong\u003e – Supports local storage (up to 512GB, not included) or free 6-sec cloud storage (7-day retention). Shareable with family.\u003c\/p\u003e\n\u003cp\u003e\u003cstrong\u003eExtreme Weather Resistance\u003c\/strong\u003e – Operates in -4°F to 122°F (-20°C to 50°C); rain, sun, and freeze-proof with stable 2.4GHz WiFi (no 5G).\u003c\/p\u003e\n\u003cp\u003e\u003cstrong\u003eH.265 \u0026amp; Bluetooth Setup\u003c\/strong\u003e – Smoother streaming\/storage with H.265; quick Bluetooth pairing for hassle-free installation.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- 第二部分：视频部分 --\u003e\n\u003cdiv class=\"product-section video-section\"\u003e\n\u003cdiv class=\"video-container\"\u003e\u003cvideo poster=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0262\/6227\/4147\/files\/A60_0deb91fc-6516-4a2f-81ed-967427c88388.jpg?v=1749805031\" controls=\"controls\"\u003e\n      \u003csource type=\"video\/mp4\" src=\"https:\/\/cdn.shopify.com\/videos\/c\/o\/v\/a7cf12d3d8944218a114f25c85506381.mp4\"\u003e\n      Your browser does not support the video tag.\n    \u003c\/source\u003e\u003c\/video\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- 第三部分：图片带标题 --\u003e\n\u003cdiv class=\"product-section image-section\"\u003e\n\u003ch2 class=\"section-title\"\u003eUpgraded ! ZUMIMALL AOV Camera\u003c\/h2\u003e\n\u003cp class=\"section-subtitle\"\u003e24H Continuous Recording Security Cameras Wireless Outdoor\u003c\/p\u003e\n\u003cimg class=\"responsive-image\" alt=\"ZUMIMALL AOV wireless security Camera\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0262\/6227\/4147\/files\/A60_1200x742_207ba109-388b-4552-b937-d720505f1768.png?v=1753178617\"\u003e\n  \u003cimg class=\"responsive-image\" alt=\"ZUMIMALL AOV Outdoor Solar Powered security Camera\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0262\/6227\/4147\/files\/AOV_2-1.jpg?v=1749782592\"\u003e\n\u003c\/div\u003e\n\u003c!-- 第四部分：5个折叠栏带图片 --\u003e\n\u003cdiv class=\"product-section\"\u003e\n\u003c!-- 第一个折叠项 --\u003e\n\u003cdiv class=\"feature-item\"\u003e\n\u003cbutton class=\"collapsible active\" type=\"button\"\u003e \u003cspan style=\"font-family: 'Arial Rounded MT Bold', 'Arial', sans-serif; font-size: 14px;\"\u003e8W High-Efficiency Solar Panel Charges\u003c\/span\u003e \u003cspan class=\"toggle-icon\"\u003e❯\u003c\/span\u003e \u003c\/button\u003e\n\u003cdiv style=\"max-height: 1000px;\" class=\"content\"\u003e\n\u003cdiv class=\"content-inner\"\u003e\n\u003cp class=\"feature-text\"\u003e24\/7 solar-powered camera with 8W panel \u0026amp; 2×4000mAh battery—just 2 hours of daily charging. 100% wireless, easy to install anywhere.\u003c\/p\u003e\n\u003cpicture\u003e \u003csource srcset=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0262\/6227\/4147\/files\/AOV_2-2.jpg?v=1749782591\" media=\"(min-width: 768px)\"\u003e \u003csource srcset=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0262\/6227\/4147\/files\/2-2_032559b3-83c6-44ec-a087-2c327930f6fc.jpg?v=1750150370\" media=\"(max-width: 767px)\"\u003e \u003cimg class=\"responsive-image\" alt=\"8W High-Efficiency Solar Panel\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0262\/6227\/4147\/files\/AOV_2-2.jpg?v=1749782591\"\u003e\u003c\/source\u003e\u003c\/picture\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- 第二个折叠项 --\u003e\n\u003cdiv class=\"feature-item\"\u003e\n\u003cbutton class=\"collapsible active\" type=\"button\"\u003e \u003cspan style=\"font-family: 'Arial Rounded MT Bold', 'Arial', sans-serif;\"\u003eInstall Once,Protect Forever\u003c\/span\u003e \u003cspan class=\"toggle-icon\"\u003e❯\u003c\/span\u003e \u003c\/button\u003e\n\u003cdiv style=\"max-height: 1000px;\" class=\"content\"\u003e\n\u003cdiv class=\"content-inner\"\u003e\n\u003cp class=\"feature-text\"\u003eMinimizes climbing needs Delivers True Wireless\u003c\/p\u003e\n\u003cpicture\u003e \u003csource srcset=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0262\/6227\/4147\/files\/AOV_2-3.jpg?v=1749782591\" media=\"(min-width: 768px)\"\u003e \u003csource srcset=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0262\/6227\/4147\/files\/2-3_a9bdf13d-9bd4-4985-9994-e5e90b8a93cb.jpg?v=1750150370\" media=\"(max-width: 767px)\"\u003e \u003cimg class=\"responsive-image\" alt=\"Install Once, Protect Forever\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0262\/6227\/4147\/files\/AOV_2-3.jpg?v=1749782591\"\u003e\u003c\/source\u003e\u003c\/picture\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- 第三个折叠项 --\u003e\n\u003cdiv class=\"feature-item\"\u003e\n\u003cbutton class=\"collapsible active\" type=\"button\"\u003e \u003cspan style=\"font-family: 'Arial Rounded MT Bold', 'Arial', sans-serif;\"\u003eIP65 Weatherproof\u003c\/span\u003e \u003cspan class=\"toggle-icon\"\u003e❯\u003c\/span\u003e \u003c\/button\u003e\n\u003cdiv style=\"max-height: 1000px;\" class=\"content\"\u003e\n\u003cdiv class=\"content-inner\"\u003e\n\u003cp class=\"feature-text\"\u003eSuitable for outdoor use under all weather conditions\u003c\/p\u003e\n\u003cpicture\u003e \u003csource srcset=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0262\/6227\/4147\/files\/AOV_2-4_ip65.jpg?v=1749782593\" media=\"(min-width: 768px)\"\u003e \u003csource srcset=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0262\/6227\/4147\/files\/2-4_ip65_35dd16d0-763e-4053-a355-60dcddb96901.jpg?v=1750150370\" media=\"(max-width: 767px)\"\u003e \u003cimg class=\"responsive-image\" alt=\"IP65 Weatherproof\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0262\/6227\/4147\/files\/AOV_2-4_ip65.jpg?v=1749782593\"\u003e\u003c\/source\u003e\u003c\/picture\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- 第四个折叠项 --\u003e\n\u003cdiv class=\"feature-item\"\u003e\n\u003cbutton class=\"collapsible active\" type=\"button\"\u003e \u003cspan style=\"font-family: 'Arial Rounded MT Bold', 'Arial', sans-serif;\"\u003eCloud\/Local Storage\u003c\/span\u003e \u003cspan class=\"toggle-icon\"\u003e❯\u003c\/span\u003e \u003c\/button\u003e\n\u003cdiv style=\"max-height: 1000px;\" class=\"content\"\u003e\n\u003cdiv class=\"content-inner\"\u003e\n\u003cp class=\"feature-text\"\u003e24\/7 continuous SD card recording and cloud storage(not mandatory)to record important moments for you.\u003c\/p\u003e\n\u003cpicture\u003e \u003csource srcset=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0262\/6227\/4147\/files\/AOV_2-5_-2.jpg?v=1749782594\" media=\"(min-width: 768px)\"\u003e \u003csource srcset=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0262\/6227\/4147\/files\/2-5_bfe6587d-5bca-41ac-9b4a-fef18cfae04e.jpg?v=1750150370\" media=\"(max-width: 767px)\"\u003e \u003cimg class=\"responsive-image\" alt=\"Cloud\/Local Storage\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0262\/6227\/4147\/files\/AOV_2-5_-2.jpg?v=1749782594\"\u003e\u003c\/source\u003e\u003c\/picture\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- 第五个折叠项 --\u003e\n\u003cdiv class=\"feature-item\"\u003e\n\u003cbutton class=\"collapsible active\" type=\"button\"\u003e \u003cspan style=\"font-family: 'Arial Rounded MT Bold', 'Arial', sans-serif;\"\u003eTwo-Way Audio \u0026amp; Al Voice Privacy\u003c\/span\u003e \u003cspan class=\"toggle-icon\"\u003e❯\u003c\/span\u003e \u003c\/button\u003e\n\u003cdiv style=\"max-height: 1000px;\" class=\"content\"\u003e\n\u003cdiv class=\"content-inner\"\u003e\n\u003cp class=\"feature-text\"\u003eNo matter how far away you can easily talk through the camera and select the intercom sound to protecting your privacy\u003c\/p\u003e\n\u003cpicture\u003e \u003csource srcset=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0262\/6227\/4147\/files\/AOV_4-1.jpg?v=1749782590\" media=\"(min-width: 768px)\"\u003e \u003csource srcset=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0262\/6227\/4147\/files\/4-1_5c988ef1-4238-4267-9213-438a9410ab8d.jpg?v=1750150303\" media=\"(max-width: 767px)\"\u003e \u003cimg class=\"responsive-image\" alt=\"Two-Way Audio\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0262\/6227\/4147\/files\/AOV_4-1.jpg?v=1749782590\"\u003e\u003c\/source\u003e\u003c\/picture\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- 第五部分：4张图片轮播（电脑端一行2个，手机端全宽） --\u003e\n\u003cdiv class=\"product-section\"\u003e\n\u003ch2 class=\"section-title\"\u003eKey Features\u003c\/h2\u003e\n\u003cdiv id=\"carousel1\" class=\"carousel carousel-desktop\"\u003e\n\u003cdiv class=\"carousel-inner\"\u003e\n\u003c!-- 轮播项1 --\u003e\n\u003cdiv class=\"carousel-item\"\u003e\n\u003cpicture\u003e \u003csource srcset=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0262\/6227\/4147\/files\/AOV_3-1_360.jpg?v=1749782583\" media=\"(min-width: 768px)\"\u003e \u003csource srcset=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0262\/6227\/4147\/files\/AOV_3-1_360.jpg?v=1749782583\" media=\"(max-width: 767px)\"\u003e \u003cimg class=\"responsive-image\" alt=\"360° Coverage\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0262\/6227\/4147\/files\/AOV_3-1_360.jpg?v=1749782583\"\u003e\u003c\/source\u003e\u003c\/picture\u003e\n\u003cdiv class=\"carousel-caption\"\u003e\n\u003ch3\u003e360° Coverage \u0026amp; Smart Human Tracking\u003c\/h3\u003e\n\u003cp\u003eSolar camera outdoor wireless eliminates blind spots to monitor your porch, yard, and driveway\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- 轮播项2 --\u003e\n\u003cdiv class=\"carousel-item\"\u003e\n\u003cpicture\u003e \u003csource srcset=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0262\/6227\/4147\/files\/AOV_3-1_PIR.jpg?v=1749782583\" media=\"(min-width: 768px)\"\u003e \u003csource srcset=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0262\/6227\/4147\/files\/AOV_3-1_PIR.jpg?v=1749782583\" media=\"(max-width: 767px)\"\u003e \u003cimg class=\"responsive-image\" alt=\"Free AI \u0026amp; PIR Detection\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0262\/6227\/4147\/files\/AOV_3-1_PIR.jpg?v=1749782583\"\u003e\u003c\/source\u003e\u003c\/picture\u003e\n\u003cdiv class=\"carousel-caption\"\u003e\n\u003ch3\u003eFree Al \u0026amp; PlR Detection\u003c\/h3\u003e\n\u003cp\u003eEnjoy free enhanced person and vehicle detection-just enable it in settings\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- 轮播项3 --\u003e\n\u003cdiv class=\"carousel-item\"\u003e\n\u003cpicture\u003e \u003csource srcset=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0262\/6227\/4147\/files\/AOV_3-3_2K.jpg?v=1749782586\" media=\"(min-width: 768px)\"\u003e \u003csource srcset=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0262\/6227\/4147\/files\/AOV_3-3_2K.jpg?v=1749782586\" media=\"(max-width: 767px)\"\u003e \u003cimg class=\"responsive-image\" alt=\"True 3MP Resolution\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0262\/6227\/4147\/files\/AOV_3-3_2K.jpg?v=1749782586\"\u003e\u003c\/source\u003e\u003c\/picture\u003e\n\u003cdiv class=\"carousel-caption\"\u003e\n\u003ch3\u003eTure 3MP Resolution\u003c\/h3\u003e\n\u003cp\u003eTrue 3MP delivers authentic high-resolution imaging while Pseudo 3MP merely upscales lower-quality footage\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- 轮播项4 --\u003e\n\u003cdiv class=\"carousel-item\"\u003e\n\u003cpicture\u003e \u003csource srcset=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0262\/6227\/4147\/files\/AOV_3-3.jpg?v=1749782584\" media=\"(min-width: 768px)\"\u003e \u003csource srcset=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0262\/6227\/4147\/files\/AOV_3-3.jpg?v=1749782584\" media=\"(max-width: 767px)\"\u003e \u003cimg class=\"responsive-image\" alt=\"2K Color Night Vision\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0262\/6227\/4147\/files\/AOV_3-3.jpg?v=1749782584\"\u003e\u003c\/source\u003e\u003c\/picture\u003e\n\u003cdiv class=\"carousel-caption\"\u003e\n\u003ch3\u003e2K Color Night Vision\u003c\/h3\u003e\n\u003cp\u003e2K color night vision captures vivid details in darkness,while black and white night vision only shows grayscale images.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cbutton class=\"carousel-control prev\"\u003e❮\u003c\/button\u003e \u003cbutton class=\"carousel-control next\"\u003e❯\u003c\/button\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- 第六部分：7张图片轮播（电脑端一行1个，手机端全宽） --\u003e\n\u003cdiv class=\"product-section\"\u003e\n\u003ch2 class=\"section-title\"\u003eAdvanced Features\u003c\/h2\u003e\n\u003cdiv id=\"carousel2\" class=\"carousel\"\u003e\n\u003cdiv class=\"carousel-inner\"\u003e\n\u003c!-- 轮播项1 --\u003e\n\u003cdiv class=\"carousel-item\"\u003e\n\u003cpicture\u003e \u003csource srcset=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0262\/6227\/4147\/files\/AOV_4-2.jpg?v=1749782589\" media=\"(min-width: 768px)\"\u003e \u003csource srcset=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0262\/6227\/4147\/files\/4-2_3a92d076-fe4d-4269-8364-9fc44744a00f.jpg?v=1750150303\" media=\"(max-width: 767px)\"\u003e \u003cimg class=\"responsive-image\" alt=\"Multiple Alarm Modes\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0262\/6227\/4147\/files\/AOV_4-2.jpg?v=1749782589\"\u003e\u003c\/source\u003e\u003c\/picture\u003e\n\u003cdiv class=\"carousel-caption\"\u003e\n\u003ch3\u003eMultiple Alarm Modes\u003c\/h3\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- 轮播项2 --\u003e\n\u003cdiv class=\"carousel-item\"\u003e\n\u003cpicture\u003e \u003csource srcset=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0262\/6227\/4147\/files\/AOV_4-3.jpg?v=1749782591\" media=\"(min-width: 768px)\"\u003e \u003csource srcset=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0262\/6227\/4147\/files\/4-3_36b0c3b7-fe4c-4fc0-9349-fecb2f972c4d.jpg?v=1750150303\" media=\"(max-width: 767px)\"\u003e \u003cimg class=\"responsive-image\" alt=\"Customized Detection Area\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0262\/6227\/4147\/files\/AOV_4-3.jpg?v=1749782591\"\u003e\u003c\/source\u003e\u003c\/picture\u003e\n\u003cdiv class=\"carousel-caption\"\u003e\n\u003ch3\u003eCustomized Detection Area\u003c\/h3\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- 轮播项3 --\u003e\n\u003cdiv class=\"carousel-item\"\u003e\n\u003cpicture\u003e \u003csource srcset=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0262\/6227\/4147\/files\/AOV_4-4_alexa.jpg?v=1749782592\" media=\"(min-width: 768px)\"\u003e \u003csource srcset=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0262\/6227\/4147\/files\/4-4_Alexa_78da51da-9bb3-4dd1-99b8-c3bcf7ac360a.jpg?v=1750150304\" media=\"(max-width: 767px)\"\u003e \u003cimg class=\"responsive-image\" alt=\"Works with Alexa\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0262\/6227\/4147\/files\/AOV_4-4_alexa.jpg?v=1749782592\"\u003e\u003c\/source\u003e\u003c\/picture\u003e\n\u003cdiv class=\"carousel-caption\"\u003e\n\u003ch3\u003eWorks with Alexa\u003c\/h3\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- 轮播项4 --\u003e\n\u003cdiv class=\"carousel-item\"\u003e\n\u003cpicture\u003e \u003csource srcset=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0262\/6227\/4147\/files\/AOV_4-5_H.265.jpg?v=1749782590\" media=\"(min-width: 768px)\"\u003e \u003csource srcset=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0262\/6227\/4147\/files\/4-5_H265_86595de8-8f4c-4e34-9479-6e72d72c45d6.jpg?v=1750150303\" media=\"(max-width: 767px)\"\u003e \u003cimg class=\"responsive-image\" alt=\"Advanced H.265+ Compression\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0262\/6227\/4147\/files\/AOV_4-5_H.265.jpg?v=1749782590\"\u003e\u003c\/source\u003e\u003c\/picture\u003e\n\u003cdiv class=\"carousel-caption\"\u003e\n\u003ch3\u003eAdvanced H.265+ Compression\u003c\/h3\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- 轮播项5 --\u003e\n\u003cdiv class=\"carousel-item\"\u003e\n\u003cpicture\u003e \u003csource srcset=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0262\/6227\/4147\/files\/AOV_6-3.jpg?v=1749782591\" media=\"(min-width: 768px)\"\u003e \u003csource srcset=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0262\/6227\/4147\/files\/6-3_da85aee8-7708-4aa6-afff-80c6051ab0fe.jpg?v=1750150303\" media=\"(max-width: 767px)\"\u003e \u003cimg class=\"responsive-image\" alt=\"Multi-User Sharing\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0262\/6227\/4147\/files\/AOV_6-3.jpg?v=1749782591\"\u003e\u003c\/source\u003e\u003c\/picture\u003e\n\u003cdiv class=\"carousel-caption\"\u003e\n\u003ch3\u003eMulti-User Sharing\u003c\/h3\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- 轮播项6 --\u003e\n\u003cdiv class=\"carousel-item\"\u003e\n\u003cpicture\u003e \u003csource srcset=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0262\/6227\/4147\/files\/AOV_6-4.jpg?v=1749782593\" media=\"(min-width: 768px)\"\u003e \u003csource srcset=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0262\/6227\/4147\/files\/6-4_dbd46008-c370-4fca-b5b6-bafc399f0918.jpg?v=1750150304\" media=\"(max-width: 767px)\"\u003e \u003cimg class=\"responsive-image\" alt=\"Multi-Camera Management\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0262\/6227\/4147\/files\/AOV_6-4.jpg?v=1749782593\"\u003e\u003c\/source\u003e\u003c\/picture\u003e\n\u003cdiv class=\"carousel-caption\"\u003e\n\u003ch3\u003eMulti-Camera Management\u003c\/h3\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- 轮播项7 --\u003e\n\u003cdiv class=\"carousel-item\"\u003e\n\u003cpicture\u003e \u003csource srcset=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0262\/6227\/4147\/files\/AOV_6-5.jpg?v=1749782586\" media=\"(min-width: 768px)\"\u003e \u003csource srcset=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0262\/6227\/4147\/files\/6-5_7bcd5de1-21bd-44ac-a4f4-a1390f6234ab.jpg?v=1750150303\" media=\"(max-width: 767px)\"\u003e \u003cimg class=\"responsive-image\" alt=\"Multi-Mode Selection\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0262\/6227\/4147\/files\/AOV_6-5.jpg?v=1749782586\"\u003e\u003c\/source\u003e\u003c\/picture\u003e\n\u003cdiv class=\"carousel-caption\"\u003e\n\u003ch3\u003eMulti-Mode Selection\u003c\/h3\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cbutton class=\"carousel-control prev\"\u003e❮\u003c\/button\u003e \u003cbutton class=\"carousel-control next\"\u003e❯\u003c\/button\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- 第七部分：3张图片带标题（竖向排列，无轮播，上方文字下方图片） --\u003e\n\u003cdiv class=\"product-section\"\u003e\n\u003cdiv style=\"display: flex; flex-direction: column; gap: 15px;\" class=\"multi-image-section\"\u003e\n\u003c!-- 图片1 --\u003e\n\u003cdiv style=\"width: 100%; text-align: center;\" class=\"multi-image-item\"\u003e\n\u003ch3 class=\"multi-image-title\"\u003eInstallation Tips\u003c\/h3\u003e\n\u003cpicture\u003e \u003csource srcset=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0262\/6227\/4147\/files\/AOV_6-1.jpg?v=1749782594\" media=\"(min-width: 768px)\"\u003e \u003csource srcset=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0262\/6227\/4147\/files\/6-1_64dee1dc-4bf7-4dbc-87ce-a1713bbaba71.jpg?v=1750147296\" media=\"(max-width: 767px)\"\u003e \u003cimg class=\"responsive-image\" style=\"max-width: 100%; height: auto; border-radius: 8px;\" alt=\"Installation Tips\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0262\/6227\/4147\/files\/AOV_6-1.jpg?v=1749782594\"\u003e\u003c\/source\u003e\u003c\/picture\u003e\n\u003c\/div\u003e\n\u003c!-- 图片2 --\u003e\n\u003cdiv style=\"width: 100%; text-align: center;\" class=\"multi-image-item\"\u003e\n\u003ch3 class=\"multi-image-title\"\u003eConnection Steps\u003c\/h3\u003e\n\u003cpicture\u003e \u003csource srcset=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0262\/6227\/4147\/files\/AOV_6-2_app.jpg?v=1749782588\" media=\"(min-width: 768px)\"\u003e \u003csource srcset=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0262\/6227\/4147\/files\/6-2_APP.jpg?v=1750147295\" media=\"(max-width: 767px)\"\u003e \u003cimg class=\"responsive-image\" style=\"max-width: 100%; height: auto; border-radius: 8px;\" alt=\"Connection Steps\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0262\/6227\/4147\/files\/AOV_6-2_app.jpg?v=1749782588\"\u003e\u003c\/source\u003e\u003c\/picture\u003e\n\u003c\/div\u003e\n\u003c!-- 图片3 --\u003e\n\u003cdiv style=\"width: 100%; text-align: center;\" class=\"multi-image-item\"\u003e\n\u003ch3 class=\"multi-image-title\"\u003eMultiple Scenarios\u003c\/h3\u003e\n\u003cpicture\u003e \u003csource srcset=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0262\/6227\/4147\/files\/AOV_5-1.jpg?v=1749782595\" media=\"(min-width: 768px)\"\u003e \u003csource srcset=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0262\/6227\/4147\/files\/5-1_5c39eaac-e278-4d24-9173-7afc9ee97935.jpg?v=1750147296\" media=\"(max-width: 767px)\"\u003e \u003cimg class=\"responsive-image\" style=\"max-width: 100%; height: auto; border-radius: 8px;\" alt=\"Multiple Scenarios\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0262\/6227\/4147\/files\/AOV_5-1.jpg?v=1749782595\"\u003e\u003c\/source\u003e\u003c\/picture\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- 第八部分：What's in the Box 折叠栏 --\u003e\n\u003cdiv class=\"product-section\"\u003e\n\u003cbutton style=\"background-color: #f1f9f9;\" class=\"collapsible active\" type=\"button\"\u003e \u003cspan style=\"font-size: 22px;\"\u003eWhat's in the Box?\u003c\/span\u003e \u003cspan class=\"toggle-icon\"\u003e❯\u003c\/span\u003e \u003c\/button\u003e\n\u003cdiv style=\"max-height: 1000px; background-color: #f1f9f9;\" class=\"content\"\u003e\n\u003cdiv class=\"content-inner whats-in-box\"\u003e\n\u003cdiv class=\"whats-in-box-img\"\u003e\u003cimg alt=\"What's in the Box\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0262\/6227\/4147\/files\/6-_-_A0V.jpg?v=1749793924\"\u003e\u003c\/div\u003e\n\u003cdiv class=\"whats-in-box-text\"\u003e\n\u003cp style=\"font-weight: bold; color: var(--primary-dark-blue);\"\u003eA60 Camera*1\u003cbr\u003e8W Solar Panel*1\u003cbr\u003eCharging Cable*1\u003cbr\u003eUser Manual*1\u003cbr\u003eScrews Set*2\u003cbr\u003eWarning Card*1\u003cbr\u003ePositioning Sticker*1\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\n\u003c!-- Product Specifications Section --\u003e\n  \u003ch2 class=\"section-title\"\u003eProduct Specifications\u003c\/h2\u003e\n  \n  \u003cdiv class=\"stacked-foldable-container\"\u003e\n    \u003c!-- Camera Specifications --\u003e\n    \u003cdetails class=\"stacked-foldable\"\u003e\n      \u003csummary class=\"stacked-summary\"\u003e\n        \u003cspan class=\"stacked-title\"\u003eCamera\u003c\/span\u003e \n        \u003cspan class=\"stacked-icon\"\u003e❯\u003c\/span\u003e\n      \u003c\/summary\u003e\n      \u003cdiv class=\"stacked-content\"\u003e\n        \u003cdiv class=\"spec-row\"\u003e\n          \u003cdiv class=\"spec-name\"\u003eImage sensor\u003c\/div\u003e\n          \u003cdiv class=\"spec-value\"\u003e300W Color Sensor 1\/2.7CMOS\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"spec-row\"\u003e\n          \u003cdiv class=\"spec-name\"\u003eAudio Input\/output\u003c\/div\u003e\n          \u003cdiv class=\"spec-value\"\u003eBuilt-in microphone and speaker\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"spec-row\"\u003e\n          \u003cdiv class=\"spec-name\"\u003eFocal Length\u003c\/div\u003e\n          \u003cdiv class=\"spec-value\"\u003e4mm\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"spec-row\"\u003e\n          \u003cdiv class=\"spec-name\"\u003eLED\u003c\/div\u003e\n          \u003cdiv class=\"spec-value\"\u003e6pcs Array IR LEDs, 14pcs Floodlight LEDs\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"spec-row\"\u003e\n          \u003cdiv class=\"spec-name\"\u003eViewing Angle\u003c\/div\u003e\n          \u003cdiv class=\"spec-value\"\u003e110°\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"spec-row\"\u003e\n          \u003cdiv class=\"spec-name\"\u003eLens Type\u003c\/div\u003e\n          \u003cdiv class=\"spec-value\"\u003eWaterproof Glass Lens\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"spec-row\"\u003e\n          \u003cdiv class=\"spec-name\"\u003eIR Distance\u003c\/div\u003e\n          \u003cdiv class=\"spec-value\"\u003e10 meters (32ft.) (Max 12m)\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"spec-row\"\u003e\n          \u003cdiv class=\"spec-name\"\u003eDay \u0026amp; night\u003c\/div\u003e\n          \u003cdiv class=\"spec-value\"\u003eAuto change with IR-CUT removable\u003c\/div\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n    \u003c\/details\u003e\n  \n    \n    \u003c!-- Network Specifications --\u003e\n    \u003cdetails class=\"stacked-foldable\"\u003e\n      \u003csummary class=\"stacked-summary\"\u003e\n        \u003cspan class=\"stacked-title\"\u003eNetwork\u003c\/span\u003e \n        \u003cspan class=\"stacked-icon\"\u003e❯\u003c\/span\u003e\n      \u003c\/summary\u003e\n      \u003cdiv class=\"stacked-content\"\u003e\n         \u003cdiv class=\"spec-row\"\u003e\n          \u003cdiv class=\"spec-name\"\u003eResolution\u003c\/div\u003e\n          \u003cdiv class=\"spec-value\"\u003e3MP 2560*1440\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"spec-row\"\u003e\n          \u003cdiv class=\"spec-name\"\u003eVideo compression\u003c\/div\u003e\n          \u003cdiv class=\"spec-value\"\u003eH.265\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"spec-row\"\u003e\n          \u003cdiv class=\"spec-name\"\u003eBit rate\u003c\/div\u003e\n          \u003cdiv class=\"spec-value\"\u003e16Kbps~2Mbps\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"spec-row\"\u003e\n          \u003cdiv class=\"spec-name\"\u003eDual stream\u003c\/div\u003e\n          \u003cdiv class=\"spec-value\"\u003eYes\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"spec-row\"\u003e\n          \u003cdiv class=\"spec-name\"\u003eImage resolution\u003c\/div\u003e\n          \u003cdiv class=\"spec-value\"\u003e2K\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"spec-row\"\u003e\n          \u003cdiv class=\"spec-name\"\u003eFrame rate\u003c\/div\u003e\n          \u003cdiv class=\"spec-value\"\u003e25fps\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"spec-row\"\u003e\n          \u003cdiv class=\"spec-name\"\u003eAlarm trigger\u003c\/div\u003e\n          \u003cdiv class=\"spec-value\"\u003eIntelligent motion detection, support PIR\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"spec-row\"\u003e\n          \u003cdiv class=\"spec-name\"\u003eWireless Security\u003c\/div\u003e\n          \u003cdiv class=\"spec-value\"\u003eWEP, WPA, WPA2\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"spec-row\"\u003e\n          \u003cdiv class=\"spec-name\"\u003eRemote Access\u003c\/div\u003e\n          \u003cdiv class=\"spec-value\"\u003eP2P\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"spec-row\"\u003e\n          \u003cdiv class=\"spec-name\"\u003eRemote wakeup\u003c\/div\u003e\n          \u003cdiv class=\"spec-value\"\u003eSupport\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"spec-row\"\u003e\n          \u003cdiv class=\"spec-name\"\u003eWireless\u003c\/div\u003e\n          \u003cdiv class=\"spec-value\"\u003e2.4G WIFI(IEEE802.11b\/g\/n)\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"spec-row\"\u003e\n          \u003cdiv class=\"spec-name\"\u003eSupported mobile phone OS\u003c\/div\u003e\n          \u003cdiv class=\"spec-value\"\u003eiOS 9 up, Android 4.0 up\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"spec-row\"\u003e\n          \u003cdiv class=\"spec-name\"\u003eSecurity\u003c\/div\u003e\n          \u003cdiv class=\"spec-value\"\u003eUser authentication, software encryption\u003c\/div\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n    \u003c\/details\u003e\n    \n    \u003c!-- Battery Specifications --\u003e\n    \u003cdetails class=\"stacked-foldable\"\u003e\n      \u003csummary class=\"stacked-summary\"\u003e\n        \u003cspan class=\"stacked-title\"\u003eBattery\u003c\/span\u003e \n        \u003cspan class=\"stacked-icon\"\u003e❯\u003c\/span\u003e\n      \u003c\/summary\u003e\n      \u003cdiv class=\"stacked-content\"\u003e\n        \u003cdiv class=\"spec-row\"\u003e\n          \u003cdiv class=\"spec-name\"\u003eBattery\u003c\/div\u003e\n          \u003cdiv class=\"spec-value\"\u003e3.7V\/8000mAh 2pcs 21700\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"spec-row\"\u003e\n          \u003cdiv class=\"spec-name\"\u003eStandby consumption\u003c\/div\u003e\n          \u003cdiv class=\"spec-value\"\u003e500µA\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"spec-row\"\u003e\n          \u003cdiv class=\"spec-name\"\u003eWork consumption\u003c\/div\u003e\n          \u003cdiv class=\"spec-value\"\u003e220mA\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"spec-row\"\u003e\n          \u003cdiv class=\"spec-name\"\u003eStandby time\u003c\/div\u003e\n          \u003cdiv class=\"spec-value\"\u003e8 months\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"spec-row\"\u003e\n          \u003cdiv class=\"spec-name\"\u003eWorking time\u003c\/div\u003e\n          \u003cdiv class=\"spec-value\"\u003e3 months (15 times wake up per day)\u003c\/div\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n    \u003c\/details\u003e\n    \n    \u003c!-- General Specifications --\u003e\n    \u003cdetails class=\"stacked-foldable\"\u003e\n      \u003csummary class=\"stacked-summary\"\u003e\n        \u003cspan class=\"stacked-title\"\u003eGeneral\u003c\/span\u003e \n        \u003cspan class=\"stacked-icon\"\u003e❯\u003c\/span\u003e\n      \u003c\/summary\u003e\n      \u003cdiv class=\"stacked-content\"\u003e\n        \u003cdiv class=\"spec-row\"\u003e\n          \u003cdiv class=\"spec-name\"\u003eOperating temperature\u003c\/div\u003e\n          \u003cdiv class=\"spec-value\"\u003e−20 °C to 50 °C\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"spec-row\"\u003e\n          \u003cdiv class=\"spec-name\"\u003ePower supply\u003c\/div\u003e\n          \u003cdiv class=\"spec-value\"\u003eSupport, optional, DC 5V\/2A\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"spec-row\"\u003e\n          \u003cdiv class=\"spec-name\"\u003eIR distance\u003c\/div\u003e\n          \u003cdiv class=\"spec-value\"\u003eNight visibility up to 10m\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"spec-row\"\u003e\n          \u003cdiv class=\"spec-name\"\u003eCertificate\u003c\/div\u003e\n          \u003cdiv class=\"spec-value\"\u003eCE, FCC, RoHS\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"spec-row\"\u003e\n          \u003cdiv class=\"spec-name\"\u003eStorage\u003c\/div\u003e\n          \u003cdiv class=\"spec-value\"\u003eSupport SD Card max 512GB, Cloud Storage\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"spec-row\"\u003e\n          \u003cdiv class=\"spec-name\"\u003eIndicator Light\u003c\/div\u003e\n          \u003cdiv class=\"spec-value\"\u003eBlue, Red\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"spec-row\"\u003e\n          \u003cdiv class=\"spec-name\"\u003eBrand\u003c\/div\u003e\n          \u003cdiv class=\"spec-value\"\u003eZUMIMALL\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"spec-row\"\u003e\n          \u003cdiv class=\"spec-name\"\u003eAPP\u003c\/div\u003e\n          \u003cdiv class=\"spec-value\"\u003eZUMIMALL\u003c\/div\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n    \u003c\/details\u003e\n\n\n\n\u003cstyle\u003e\n  \/* 规格部分样式 *\/\n  .specs-container {\n    max-width: 90%;\n    margin: 30px auto;\n    font-family: Arial, sans-serif;\n  }\n  \n  .section-title {\n    font-size: 22px;\n    font-weight: bold;\n    margin-bottom: 20px;\n    color: #476C94;\n    text-align: center;\n  }\n  \n  \/* 折叠规格表样式 *\/\n  .stacked-foldable-container {\n    width: 100%;\n    max-width: 1200px;\n    margin: 0 auto;\n  }\n  \n  .stacked-foldable {\n    border: 1px solid #e0e0e0;\n    border-radius: 6px;\n    margin-bottom: 8px;\n    overflow: hidden;\n    background-color: white;\n  }\n  \n  .stacked-summary {\n    display: flex;\n    justify-content: space-between;\n    align-items: center;\n    padding: 12px 15px;\n    cursor: pointer;\n    list-style: none;\n    font-weight: bold;\n    color: #476C94;\n    background-color: white;\n    transition: all 0.2s;\n  }\n  \n  .stacked-summary:hover {\n    background-color: #f5f5f5;\n  }\n  \n  .stacked-title {\n    font-size: 16px;\n  }\n  \n  .stacked-icon {\n    transition: transform 0.2s;\n    color: #2D9EA1;\n    font-weight: bold;\n    font-size: 18px;\n  }\n  \n  .stacked-foldable[open] .stacked-icon {\n    transform: rotate(90deg);\n  }\n  \n  .stacked-content {\n    padding: 0 15px;\n  }\n  \n  .spec-row {\n    display: flex;\n    padding: 10px 0;\n    border-top: 1px solid #f0f0f0;\n    font-size: 14px;\n  }\n  \n  .spec-name {\n    flex: 0 0 40%;\n    font-weight: 500;\n    color: #666;\n  }\n  \n  .spec-value {\n    flex: 1;\n    color: #333;\n  }\n  \n  \/* 隐藏默认标记 *\/\n  .stacked-summary::-webkit-details-marker {\n    display: none;\n  }\n  \n  \/* 响应式调整 *\/\n  @media (max-width: 768px) {\n    .specs-container {\n      max-width: 100%;\n      padding: 0 10px;\n    }\n    \n    .stacked-foldable {\n      margin-bottom: 5px;\n      border-radius: 0;\n      border-left: none;\n      border-right: none;\n    }\n    \n    .stacked-summary {\n      padding: 10px;\n    }\n    \n    .stacked-title {\n      font-size: 15px;\n    }\n    \n    .stacked-content {\n      padding: 0 10px;\n    }\n    \n    .spec-row {\n      flex-direction: column;\n      padding: 8px 0;\n    }\n    \n    .spec-name {\n      flex: 1;\n      margin-bottom: 2px;\n    }\n  }\n\u003c\/style\u003e\n\n\u003cscript\u003e\n  \/\/ 确保折叠功能在所有浏览器正常工作\n  document.addEventListener('DOMContentLoaded', function() {\n    const details = document.querySelectorAll('.stacked-foldable');\n    \n    details.forEach(detail =\u003e {\n      const summary = detail.querySelector('summary');\n      summary.addEventListener('click', function() {\n        const icon = detail.querySelector('.stacked-icon');\n        if(detail.open) {\n          icon.style.transform = 'rotate(90deg)';\n        } else {\n          icon.style.transform = 'rotate(0deg)';\n        }\n      });\n    });\n  });\n\u003c\/script\u003e\n \u003cdiv class=\"resources-container\"\u003e\n  \u003c!-- Added Title Section --\u003e\n   \u003ch2 class=\"section-title\"\u003eCloud Storage \u0026amp; AI Services\u003c\/h2\u003e\n  \n  \u003c!-- Cloud and AI Services --\u003e\n  \u003cdiv class=\"accordion-container\"\u003e\n    \u003cbutton class=\"accordion\"\u003e\n      \u003cspan class=\"accordion-title\"\u003eZUMIMALL Cloud Storage\u003c\/span\u003e\n      \u003cspan class=\"accordion-icon\"\u003e❯\u003c\/span\u003e\n    \u003c\/button\u003e\n    \u003cdiv class=\"accordion-content\"\u003e\n      \u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0262\/6227\/4147\/files\/ZUMIMALL_Cloud_Storage_f5c790cc-fa5c-4aa5-b00d-101bd25c3a89.jpg?v=1752747534\" class=\"responsive-image\" alt=\"Cloud Storage\"\u003e\n    \u003c\/div\u003e\n    \n    \u003cbutton class=\"accordion\"\u003e\n      \u003cspan class=\"accordion-title\"\u003eZUMIMALL AI Services\u003c\/span\u003e\n      \u003cspan class=\"accordion-icon\"\u003e❯\u003c\/span\u003e\n    \u003c\/button\u003e\n    \u003cdiv class=\"accordion-content\"\u003e\n      \u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0262\/6227\/4147\/files\/ZUMIMALL_AI_d13f3958-2bdd-4338-a539-43aac8f90ece.jpg?v=1752747554\" class=\"responsive-image\" alt=\"AI Services\"\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n  \n  \u003c!-- Downloads Section --\u003e\n  \u003cdiv class=\"downloads-container\"\u003e\n    \u003cdiv class=\"download-row\"\u003e\n      \u003cdiv class=\"download-column\"\u003e\n        \u003cdiv class=\"download-content\"\u003e\n          \u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0262\/6227\/4147\/files\/file-arrow-down-solid.svg?v=1742554573\" class=\"download-icon\" alt=\"Manual Download\"\u003e\n          \u003cdiv class=\"download-text\"\u003e\n            \u003ch5\u003eProduct Manual\u003c\/h5\u003e\n          \u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003ca href=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0262\/6227\/4147\/files\/ZUMIMALL_A60_EN_09f0532b-2de8-4215-bca7-a6db552f729a.pdf?v=1745550909\" class=\"download-button\"\u003eDownload\u003c\/a\u003e\n      \u003c\/div\u003e\n      \n      \u003cdiv class=\"download-column\"\u003e\n        \u003cdiv class=\"download-content\"\u003e\n          \u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0262\/6227\/4147\/files\/cloud-arrow-down-solid.svg?v=1742554572\" class=\"download-icon\" alt=\"App Download\"\u003e\n          \u003cdiv class=\"download-text\"\u003e\n            \u003ch5\u003eApp Download\u003c\/h5\u003e\n          \u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"download-button-group\"\u003e\n          \u003ca href=\"https:\/\/play.google.com\/store\/search?q=zumimall\u0026amp;c=apps\" class=\"download-button\"\u003eAPK\u003c\/a\u003e\n          \u003ca href=\"https:\/\/apps.apple.com\/us\/app\/zumimall\/id1515849509\" class=\"download-button\"\u003eiOS\u003c\/a\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\u003c\/div\u003e\n\n\u003cstyle\u003e\n  \/* Title Styling to match Product Specifications *\/\n  .resources-container .section-title {\n    font-size: 22px;\n    font-weight: bold;\n    margin-bottom: 20px;\n    color: #476C94;\n    text-align: center;\n  }\n  \n  \/* Accordion Styling *\/\n  .accordion-container {\n    margin-bottom: 30px;\n  }\n  \n  .accordion {\n    width: 100%;\n    background: white;\n    border: 1px solid #e0e0e0;\n    border-radius: 6px;\n    padding: 12px 15px;\n    margin-bottom: 8px;\n    display: flex;\n    justify-content: space-between;\n    align-items: center;\n    cursor: pointer;\n  }\n  \n  .accordion-title {\n    font-weight: bold;\n    color: #476C94;\n    font-size: 16px;\n  }\n  \n  .accordion-icon {\n    transition: transform 0.3s;\n    color: #2D9EA1;\n    font-weight: bold;\n    font-size: 18px;\n  }\n  \n  .accordion.active .accordion-icon {\n    transform: rotate(90deg);\n  }\n  \n  .accordion-content {\n    max-height: 0;\n    overflow: hidden;\n    transition: max-height 0.3s;\n  }\n  \n  .responsive-image {\n    width: 100%;\n    border-radius: 6px;\n    margin-top: 8px;\n  }\n  \n  \/* Downloads Section Styling *\/\n  .downloads-container {\n    margin-top: 20px;\n  }\n  \n  .download-row {\n    display: flex;\n    gap: 15px;\n  }\n  \n  .download-column {\n    flex: 1;\n    background: white;\n    border: 1px solid #e0e0e0;\n    border-radius: 6px;\n    padding: 15px;\n    display: flex;\n    justify-content: space-between;\n    align-items: center;\n  }\n  \n  .download-content {\n    display: flex;\n    align-items: center;\n    gap: 10px;\n  }\n  \n  .download-icon {\n    width: 20px;\n    height: 20px;\n    color: #476C94;\n  }\n  \n  .download-text h5 {\n    margin: 0;\n    color: #476C94;\n    font-size: 15px;\n  }\n  \n  .download-button {\n    padding: 8px 15px;\n    background: #2D9EA1;\n    color: white;\n    border-radius: 5px;\n    font-weight: bold;\n    text-decoration: none;\n    font-size: 14px;\n    transition: background 0.2s;\n  }\n  \n  .download-button:hover {\n    background: #23898C;\n  }\n  \n  .download-button-group {\n    display: flex;\n    gap: 8px;\n  }\n  \n  \/* Responsive Adjustments *\/\n  @media (max-width: 768px) {\n    .download-row {\n      flex-direction: column;\n      gap: 10px;\n    }\n    \n    .download-column {\n      width: 100%;\n    }\n    \n    .accordion {\n      padding: 10px;\n    }\n    \n    .accordion-title {\n      font-size: 15px;\n    }\n  }\n\u003c\/style\u003e\n\n\u003cscript\u003e\n  \/\/ Accordion functionality - modified to keep all sections closed by default\n  document.addEventListener('DOMContentLoaded', function() {\n    document.querySelectorAll('.accordion').forEach(btn =\u003e {\n      btn.addEventListener('click', function() {\n        this.classList.toggle('active');\n        const content = this.nextElementSibling;\n        content.style.maxHeight = content.style.maxHeight ? null : content.scrollHeight + 'px';\n      });\n    });\n  });\n\u003c\/script\u003e\n\n\u003c!-- 第九部分：按钮 --\u003e\n\u003cdiv class=\"product-section\"\u003e\u003ca class=\"cta-button\" href=\"https:\/\/www.zumimall.com\/pages\/videos-for-zumimall-aov-camera-a60\"\u003eVideos for ZUMIMALL AOV Camera-A60\u003c\/a\u003e\u003c\/div\u003e\n\u003cscript\u003e\n  \/\/ 折叠面板功能修正\n  document.addEventListener('DOMContentLoaded', function() {\n    var coll = document.getElementsByClassName(\"collapsible\");\n    for (var i = 0; i \u003c coll.length; i++) {\n      var button = coll[i];\n      var content = button.nextElementSibling;\n      \/\/ 默认展开\n      if (button.classList.contains(\"active\")) {\n        content.style.maxHeight = content.scrollHeight + \"px\";\n      } else {\n        content.style.maxHeight = null;\n      }\n      button.addEventListener(\"click\", function() {\n        var content = this.nextElementSibling;\n        this.classList.toggle(\"active\");\n        \/\/ 收起或展开\n        if (this.classList.contains(\"active\")) {\n          content.style.maxHeight = content.scrollHeight + \"px\";\n        } else {\n          content.style.maxHeight = null;\n        }\n      });\n    }\n\n    \/\/ 初始化轮播\n    initCarousel('carousel1');\n    initCarousel('carousel2');\n    \/\/ 响应式重绘\n    window.addEventListener('resize', function() {\n      redrawCarousel('carousel1');\n      redrawCarousel('carousel2');\n    });\n\n    \/\/ 轮播按钮事件绑定\n    document.querySelectorAll('.carousel').forEach(function(carousel) {\n      const prevBtn = carousel.querySelector('.carousel-control.prev');\n      const nextBtn = carousel.querySelector('.carousel-control.next');\n      const id = carousel.id;\n      if (prevBtn) prevBtn.onclick = function() { moveCarousel(id, -1); };\n      if (nextBtn) nextBtn.onclick = function() { moveCarousel(id, 1); };\n\n      \/\/ 绑定滑动和拖动事件\n      addCarouselSwipeListeners(carousel, id);\n    });\n  });\n\n  \/\/ 轮播核心变量\n  const carouselStates = {};\n\n  \/\/ 轮播初始化\n  function initCarousel(carouselId) {\n    const carousel = document.getElementById(carouselId);\n    if (!carousel) return;\n    const inner = carousel.querySelector('.carousel-inner');\n    const items = carousel.querySelectorAll('.carousel-item');\n    let visibleCount = carousel.classList.contains('carousel-desktop') \u0026\u0026 window.innerWidth \u003e= 768 ? 2 : 1;\n    carouselStates[carouselId] = {\n      current: 0,\n      visible: visibleCount,\n      total: items.length\n    };\n    updateCarousel(carouselId, 0);\n  }\n\n  \/\/ 轮播移动（修正分页与循环）\n  function moveCarousel(carouselId, direction) {\n    const state = carouselStates[carouselId];\n    if (!state) return;\n    let {visible, total, current} = state;\n    const totalPages = Math.ceil(total \/ visible);\n    let curPage = Math.floor(current \/ visible);\n    curPage = (curPage + direction + totalPages) % totalPages;\n    let newIndex = curPage * visible;\n    if(newIndex \u003e= total) newIndex = 0;\n    updateCarousel(carouselId, newIndex);\n  }\n\n  \/\/ 轮播更新\n  function updateCarousel(carouselId, newIndex) {\n    const carousel = document.getElementById(carouselId);\n    const inner = carousel.querySelector('.carousel-inner');\n    const state = carouselStates[carouselId];\n    if (!carousel || !inner || !state) return;\n    state.current = newIndex;\n    state.visible = carousel.classList.contains('carousel-desktop') \u0026\u0026 window.innerWidth \u003e= 768 ? 2 : 1;\n    let items = inner.querySelectorAll('.carousel-item');\n    for (let item of items) {\n      item.style.minWidth = (100 \/ state.visible) + '%';\n    }\n    const totalPages = Math.ceil(state.total \/ state.visible);\n    let curPage = Math.floor(newIndex \/ state.visible);\n    const percent = -(100 * curPage);\n    inner.style.transform = `translateX(${percent}%)`;\n    inner.dataset.currentIndex = newIndex;\n  }\n\n  \/\/ 响应式重绘轮播\n  function redrawCarousel(carouselId) {\n    const carousel = document.getElementById(carouselId);\n    const state = carouselStates[carouselId];\n    if (!carousel || !state) return;\n    let oldVisible = state.visible;\n    state.visible = carousel.classList.contains('carousel-desktop') \u0026\u0026 window.innerWidth \u003e= 768 ? 2 : 1;\n    let curPage = Math.floor(state.current \/ oldVisible);\n    let newIndex = curPage * state.visible;\n    if (newIndex \u003e= state.total) newIndex = 0;\n    updateCarousel(carouselId, newIndex);\n  }\n\n  \/\/ 轮播滑动与拖动支持\n  function addCarouselSwipeListeners(carousel, carouselId) {\n    const inner = carousel.querySelector('.carousel-inner');\n    if (!inner) return;\n\n    \/\/ Touch events\n    let startX = 0, startY = 0, moved = false;\n\n    inner.addEventListener('touchstart', function(e) {\n      if (e.touches.length !== 1) return;\n      startX = e.touches[0].clientX;\n      startY = e.touches[0].clientY;\n      moved = false;\n    }, {passive: true});\n\n    inner.addEventListener('touchmove', function(e) {\n      if (e.touches.length !== 1) return;\n      const dx = e.touches[0].clientX - startX;\n      const dy = e.touches[0].clientY - startY;\n      moved = Math.abs(dx) \u003e 30 \u0026\u0026 Math.abs(dx) \u003e Math.abs(dy);\n      \/\/ 可选：阻止页面滚动\n      if (moved) e.preventDefault();\n    }, {passive: false});\n\n    inner.addEventListener('touchend', function(e) {\n      if (!moved) return;\n      const dx = e.changedTouches[0].clientX - startX;\n      if (dx \u003e 30) moveCarousel(carouselId, -1);\n      else if (dx \u003c -30) moveCarousel(carouselId, 1);\n      moved = false;\n    });\n\n    \/\/ Mouse drag events\n    let isDragging = false, dragStartX = 0, dragStartY = 0;\n    inner.addEventListener('mousedown', function(e) {\n      isDragging = true;\n      dragStartX = e.clientX;\n      dragStartY = e.clientY;\n      inner.style.cursor = 'grabbing';\n    });\n    inner.addEventListener('mousemove', function(e) {\n      if (!isDragging) return;\n      const dx = e.clientX - dragStartX;\n      const dy = e.clientY - dragStartY;\n      if (Math.abs(dx) \u003e 30 \u0026\u0026 Math.abs(dx) \u003e Math.abs(dy)) {\n        if (dx \u003e 0) moveCarousel(carouselId, -1);\n        else moveCarousel(carouselId, 1);\n        isDragging = false;\n        inner.style.cursor = '';\n      }\n    });\n    inner.addEventListener('mouseup', function() {\n      isDragging = false;\n      inner.style.cursor = '';\n    });\n    inner.addEventListener('mouseleave', function() {\n      isDragging = false;\n      inner.style.cursor = '';\n    });\n  }\n\n  \/\/ 暴露给HTML按钮\n  window.moveCarousel = moveCarousel;\n\u003c\/script\u003e\n\u003c\/div\u003e\n\n\n    \n\n\n    \u003cmeta charset=\"UTF-8\"\u003e\n    \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\n    \u003ctitle\u003eZUMIMALL Security Camera Comparison\u003c\/title\u003e\n    \u003cstyle\u003e\n        .product-comparison-section {\n            width: 100%;\n            margin: 40px auto;\n            padding: 0 5px;\n            position: relative;\n            font-family: 'Segoe UI', Arial, sans-serif;\n        }\n        \n        .product-comparison-section h2 {\n            text-align: center;\n            margin-bottom: 20px;\n            font-size: 24px;\n            color: #2c3e50;\n            padding: 0 10px;\n            font-weight: 600;\n        }\n        \n        .comparison-table-container {\n            overflow-x: auto;\n            -webkit-overflow-scrolling: touch;\n            margin: 0 -5px;\n            width: calc(100% + 10px);\n            position: relative;\n            border: 1px solid #e0e0e0;\n            border-radius: 8px;\n            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);\n        }\n        \n        .product-comparison-table {\n            width: 100%;\n            border-collapse: separate;\n            border-spacing: 0;\n            background: white;\n            min-width: 600px;\n            position: relative;\n        }\n        \n        .product-comparison-table th,\n        .product-comparison-table td {\n            padding: 12px 10px;\n            text-align: center;\n            border: 1px solid #e0e0e0;\n            font-size: 13px;\n            line-height: 1.4;\n            position: relative;\n        }\n        \n        \/* 固定第一列样式 *\/\n        .product-comparison-table thead tr th:first-child,\n        .product-comparison-table tbody tr td:first-child {\n            position: sticky;\n            left: 0;\n            z-index: 2;\n            background-color: #f5f7fa;\n            min-width: 120px;\n            max-width: 120px;\n            text-align: left;\n            padding-left: 15px;\n            font-weight: 600;\n            color: #2c3e50;\n            box-shadow: 2px 0 5px rgba(0, 0, 0, 0.05);\n        }\n        \n        .product-comparison-table thead tr th:first-child {\n            z-index: 3; \/* 确保表头在内容之上 *\/\n            background-color: #e8ebf0;\n        }\n        \n        .product-comparison-table th {\n            background-color: #f8f9fa;\n            font-weight: 600;\n            color: #34495e;\n            padding: 15px 10px;\n        }\n        \n        .feature-header {\n            background-color: #e8ebf0 !important;\n            text-align: left !important;\n            min-width: 120px;\n            max-width: 120px;\n            font-size: 13px;\n            padding-left: 15px;\n        }\n        \n        .product-image {\n            max-width: 90px;\n            height: auto;\n            display: block;\n            margin: 0 auto 8px;\n            border-radius: 4px;\n            transition: transform 0.2s;\n        }\n        \n        .product-image:hover {\n            transform: scale(1.03);\n        }\n        \n        .product-link {\n            color: #3498db;\n            text-decoration: none;\n            font-weight: 600;\n            font-size: 13px;\n            transition: color 0.2s;\n        }\n        \n        .product-link:hover {\n            color: #2980b9;\n            text-decoration: underline;\n        }\n        \n        .view-more-link {\n            display: inline-block;\n            margin-top: 8px;\n            font-size: 12px;\n            color: #e74c3c;\n            text-decoration: none;\n            font-weight: 600;\n            padding: 4px 10px;\n            border: 1px solid #e74c3c;\n            border-radius: 4px;\n            transition: all 0.2s;\n        }\n        \n        .view-more-link:hover {\n            background-color: #e74c3c;\n            color: white;\n            text-decoration: none;\n        }\n        \n        .checkmark {\n            color: #27ae60;\n            font-weight: bold;\n            font-size: 16px;\n        }\n        \n        .crossmark {\n            color: #c0392b;\n            font-weight: bold;\n            font-size: 16px;\n        }\n        \n        .scroll-indicator {\n            text-align: center;\n            margin-top: 15px;\n            color: #7f8c8d;\n            font-size: 13px;\n            display: none;\n            font-style: italic;\n        }\n        \n        .price-tag {\n            font-weight: 600;\n            color: #e74c3c;\n            font-size: 14px;\n        }\n        \n        \/* 移动端样式 *\/\n        @media (max-width: 768px) {\n            .product-comparison-section {\n                padding: 0 3px;\n            }\n            \n            .product-comparison-section h2 {\n                font-size: 20px;\n            }\n            \n            .comparison-table-container {\n                margin: 0 -3px;\n                width: calc(100% + 6px);\n            }\n            \n            .product-comparison-table th,\n            .product-comparison-table td {\n                padding: 10px 6px;\n                font-size: 12px;\n            }\n            \n            .product-comparison-table thead tr th:first-child,\n            .product-comparison-table tbody tr td:first-child {\n                min-width: 100px;\n                max-width: 100px;\n                font-size: 12px;\n                padding-left: 10px;\n            }\n            \n            .feature-header {\n                min-width: 100px;\n                max-width: 100px;\n                font-size: 12px;\n                padding-left: 10px;\n            }\n            \n            .product-image {\n                max-width: 70px;\n            }\n            \n            .scroll-indicator {\n                display: block;\n            }\n        }\n        \n        \/* 小屏手机样式 *\/\n        @media (max-width: 480px) {\n            .product-comparison-table th,\n            .product-comparison-table td {\n                padding: 8px 4px;\n                font-size: 11px;\n            }\n            \n            .product-comparison-table thead tr th:first-child,\n            .product-comparison-table tbody tr td:first-child {\n                min-width: 90px;\n                max-width: 90px;\n                font-size: 11px;\n                padding-left: 8px;\n            }\n            \n            .feature-header {\n                min-width: 90px;\n                max-width: 90px;\n                font-size: 11px;\n                padding-left: 8px;\n            }\n            \n            .product-image {\n                max-width: 60px;\n            }\n            \n            .view-more-link {\n                font-size: 11px;\n                padding: 3px 6px;\n            }\n            \n            .price-tag {\n                font-size: 12px;\n            }\n        }\n        \n        \/* 超小屏手机样式 *\/\n        @media (max-width: 360px) {\n            .product-comparison-table th,\n            .product-comparison-table td {\n                padding: 6px 3px;\n                font-size: 10px;\n            }\n            \n            .product-comparison-table thead tr th:first-child,\n            .product-comparison-table tbody tr td:first-child {\n                min-width: 80px;\n                max-width: 80px;\n                font-size: 10px;\n                padding-left: 6px;\n            }\n            \n            .feature-header {\n                min-width: 80px;\n                max-width: 80px;\n                font-size: 10px;\n                padding-left: 6px;\n            }\n            \n            .product-image {\n                max-width: 50px;\n            }\n            \n            .view-more-link {\n                font-size: 10px;\n                padding: 2px 4px;\n            }\n        }\n    \u003c\/style\u003e\n\n\n    \u003cdiv class=\"product-comparison-section\"\u003e\n        \u003ch2\u003eExplore more security cameras from ZUMIMALL\u003c\/h2\u003e\n        \n        \u003cdiv class=\"comparison-table-container\"\u003e\n            \u003ctable class=\"product-comparison-table\"\u003e\n                \u003cthead\u003e\n                    \u003ctr\u003e\n                        \u003cth class=\"feature-header\"\u003eFeatures\u003c\/th\u003e\n                        \u003c!-- 产品列将由JavaScript动态生成 --\u003e\n                    \u003c\/tr\u003e\n                \u003c\/thead\u003e\n                \u003ctbody\u003e\n                    \u003c!-- 各行数据将由JavaScript动态生成 --\u003e\n                \u003c\/tbody\u003e\n            \u003c\/table\u003e\n        \u003c\/div\u003e\n        \n        \u003cdiv class=\"scroll-indicator\"\u003e\n            \u003cspan\u003e← Scroll to see more →\u003c\/span\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\n    \u003cscript\u003e\n        document.addEventListener('DOMContentLoaded', function() {\n            \/\/ 产品数据 - 移除了Battery Camera F5\n            const products = [\n                {\n                    picture: \"https:\/\/www.zumimall.com\/cdn\/shop\/files\/BK06_8ce27130-38a9-4597-a3fa-f82961709b78.jpg?v=1754618281\u0026width=493\",\n                    link: \"https:\/\/www.zumimall.com\/products\/2k-360-ptz-dual-band-5g-2-4g-wired-security-camera-bk06-baby-cam\",\n                    price: \"From $37.49\",\n                    model: \"Baby monitor BK06\",\n                    powerSource: \"Plug-in\",\n                    resolution: \"3MP\",\n                    wifi: \"5GHz\/2.4GHz\",\n                    nightVision: \"Color\/Infrared\",\n                    recording: \"✔\",\n                    sirenAlarm: \"✔\",\n                    rotatable: \"✔\",\n                    zoom: \"4X digital zoom\",\n                    interface: \"Type C Port\",\n                    detectionDistance: \"\u003e32FT\",\n                    app: \"ZUMIMALL\"\n                },\n                {\n                    picture: \"https:\/\/cdn.shopify.com\/s\/files\/1\/0262\/6227\/4147\/files\/X2K_Wireless_security_outdoor_camera_13_0b64744c-e06b-4fff-be21-f92445319240.jpg?v=1754992364\",\n                    link: \"https:\/\/www.zumimall.com\/products\/2k-ptz-solar-wireless-security-camera-gx2k\",\n                    price: \"From $42.99\",\n                    model: \"Battery Camera X2\",\n                    powerSource: \"Solar\/Battery\",\n                    resolution: \"3MP\",\n                    wifi: \"2.4GHz only\",\n                    nightVision: \"Color\/Infrared\",\n                    recording: \"✘\",\n                    sirenAlarm: \"✔\",\n                    rotatable: \"✔\",\n                    zoom: \"4X digital zoom\",\n                    interface: \"Type C Port\",\n                    detectionDistance: \"\u003e32FT\",\n                    app: \"ZUMIMALL\"\n                },\n                {\n                    picture: \"https:\/\/www.zumimall.com\/cdn\/shop\/files\/BK05-3MP_3ab62d04-ac44-4267-88d4-9658fd677a9e.jpg?v=1751448418\u0026width=493\",\n                    link: \"https:\/\/www.zumimall.com\/products\/zumimall-3mp-5g-2-4g-wifi-wired-security-camera-plug-in-power-bk05-1\",\n                    price: \"From $29.99\",\n                    model: \"Wired Camera BK05\",\n                    powerSource: \"Plug-in\",\n                    resolution: \"3MP\",\n                    wifi: \"5GHz\/2.4GHz\",\n                    nightVision: \"Color\/Infrared\",\n                    recording: \"✔\",\n                    sirenAlarm: \"✔\",\n                    rotatable: \"✔\",\n                    zoom: \"4X digital zoom\",\n                    interface: \"Type C Port\",\n                    detectionDistance: \"\u003e32FT\",\n                    app: \"ZUMIMALL\"\n                },\n                {\n                    picture: \"https:\/\/cdn.shopify.com\/s\/files\/1\/0262\/6227\/4147\/files\/P10_0caf45c4-fa5a-4b40-9702-18bf40901eb8.jpg?v=1750930402\",\n                    link: \"https:\/\/www.zumimall.com\/products\/zumimall-dual-lens-video-doorbell-camera-with-chime-p10-worldwide-sales\",\n                    price: \"From $64.98\",\n                    model: \"Doorbell Camera P10\",\n                    powerSource: \"Battery\",\n                    resolution: \"3MP\",\n                    wifi: \"2.4GHz only\",\n                    nightVision: \"Color\/Infrared\",\n                    recording: \"✘\",\n                    sirenAlarm: \"✔\",\n                    rotatable: \"✘\",\n                    zoom: \"4X digital zoom\",\n                    interface: \"Type C Port\",\n                    detectionDistance: \"\u003e32FT\",\n                    app: \"ZUMIMALL\"\n                }\n            ];\n\n            \/\/ 创建表格列（产品）\n            const theadRow = document.querySelector('.product-comparison-table thead tr');\n            const tbody = document.querySelector('.product-comparison-table tbody');\n            \n            \/\/ 添加产品列标题\n            products.forEach(product =\u003e {\n                const th = document.createElement('th');\n                th.innerHTML = `\n                    \u003ca href=\"${product.link}\" target=\"_blank\"\u003e\n                        \u003cimg src=\"${product.picture}\" alt=\"${product.model}\" class=\"product-image\"\u003e\n                    \u003c\/a\u003e\n                  \n                    \u003ca href=\"${product.link}\" target=\"_blank\" class=\"view-more-link\"\u003eView Details\u003c\/a\u003e\n                `;\n                theadRow.appendChild(th);\n            });\n            \n            \/\/ 创建价格行\n            const priceRow = document.createElement('tr');\n            const priceHeader = document.createElement('td');\n            priceHeader.textContent = 'Price';\n            priceHeader.className = 'feature-header';\n            priceRow.appendChild(priceHeader);\n            \n            \/\/ 添加价格单元格\n            products.forEach(product =\u003e {\n                const priceCell = document.createElement('td');\n                priceCell.innerHTML = `\u003cspan class=\"price-tag\"\u003e${product.price}\u003c\/span\u003e`;\n                priceRow.appendChild(priceCell);\n            });\n            \n            tbody.appendChild(priceRow);\n            \n            \/\/ 创建型号行\n            const modelRow = document.createElement('tr');\n            const modelHeader = document.createElement('td');\n            modelHeader.textContent = 'Model';\n            modelHeader.className = 'feature-header';\n            modelRow.appendChild(modelHeader);\n            \n            products.forEach(product =\u003e {\n                const modelCell = document.createElement('td');\n                modelCell.innerHTML = `\u003ca href=\"${product.link}\" target=\"_blank\" class=\"product-link\"\u003e${product.model}\u003c\/a\u003e`;\n                modelRow.appendChild(modelCell);\n            });\n            \n            tbody.appendChild(modelRow);\n            \n            \/\/ 添加其他特性行\n            const features = [\n                { key: 'powerSource', label: 'Power Source' },\n                { key: 'resolution', label: 'Resolution' },\n                { key: 'wifi', label: 'Wi-Fi' },\n                { key: 'nightVision', label: 'Night Vision' },\n                { key: 'recording', label: '24\/7 Recording' },\n                { key: 'sirenAlarm', label: 'Siren Alarm' },\n                { key: 'rotatable', label: 'Rotatable' },\n                { key: 'zoom', label: 'Zoom' },\n                { key: 'interface', label: 'Interface' },\n                { key: 'detectionDistance', label: 'Detection Distance' },\n                { key: 'app', label: 'APP' }\n            ];\n            \n            features.forEach(feature =\u003e {\n                const row = document.createElement('tr');\n                const header = document.createElement('td');\n                header.textContent = feature.label;\n                header.className = 'feature-header';\n                row.appendChild(header);\n                \n                products.forEach(product =\u003e {\n                    const cell = document.createElement('td');\n                    let value = product[feature.key];\n                    \n                    \/\/ 特殊处理勾选和叉号标记\n                    if (value === '✔') {\n                        cell.innerHTML = '\u003cspan class=\"checkmark\"\u003e✔\u003c\/span\u003e';\n                    } else if (value === '✘') {\n                        cell.innerHTML = '\u003cspan class=\"crossmark\"\u003e✘\u003c\/span\u003e';\n                    } else {\n                        cell.textContent = value;\n                    }\n                    \n                    row.appendChild(cell);\n                });\n                \n                tbody.appendChild(row);\n            });\n            \n            \/\/ 检测是否需要显示滚动提示\n            function checkScrollIndicator() {\n                const container = document.querySelector('.comparison-table-container');\n                if (container.scrollWidth \u003e container.clientWidth) {\n                    document.querySelector('.scroll-indicator').style.display = 'block';\n                } else {\n                    document.querySelector('.scroll-indicator').style.display = 'none';\n                }\n            }\n            \n            \/\/ 初始检查和窗口调整时检查\n            checkScrollIndicator();\n            window.addEventListener('resize', checkScrollIndicator);\n        });\n    \u003c\/script\u003e\n\n\u003c\/body\u003e","brand":"ZUMIMALL","offers":[{"title":"1 Cam + Panel | No SD Card","offer_id":49888335724848,"sku":"A60-ZM","price":79.99,"currency_code":"USD","in_stock":true},{"title":"1 Cam + Panel | 128G SD Card","offer_id":49888335757616,"sku":"A60+128G","price":109.98,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0262\/6227\/4147\/files\/zumimall-24h-recording-wireless-security-camera-a60_2.webp?v=1775728050","url":"https:\/\/www.zumimall.com\/it-it\/products\/zumimall-aov-wireless-solar-security-camera-a60","provider":"ZUMIMALL","version":"1.0","type":"link"}