{"id":7125,"date":"2026-07-02T06:04:41","date_gmt":"2026-07-02T06:04:41","guid":{"rendered":"https:\/\/youlumi.szlogic.cn\/?page_id=7125"},"modified":"2026-07-16T02:37:51","modified_gmt":"2026-07-16T02:37:51","slug":"full-body-light-therapy-panels","status":"publish","type":"page","link":"https:\/\/youlumi.szlogic.cn\/ar\/red-light-therapy-devices\/red-light-therapy-panel\/full-body-light-therapy-panels\/","title":{"rendered":"full-body-light-therapy-panels"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"7125\" class=\"elementor elementor-7125\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-71ee1ff3 e-con-full e-flex e-con e-parent\" data-id=\"71ee1ff3\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5d0218d1 elementor-widget__width-initial elementor-widget-tablet__width-inherit elementor-widget-mobile__width-inherit elementor-widget elementor-widget-html\" data-id=\"5d0218d1\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<div class=\"gallery\">\n    <!-- \u4e3b\u56fe\uff08\u552f\u4e00 Swiper\uff09 -->\n    <div class=\"swiper main-swiper\">\n        <div class=\"swiper-wrapper\">\n            <div class=\"swiper-slide\">\n                <img decoding=\"async\" src=\"\/wp-content\/uploads\/2026\/07\/full-body-red-light-therapy-panels-for-recovery-product-1.webp\"\n                    alt=\"full-body-red-light-therapy-panels-for-recovery-product\">\n            <\/div>\n            <div class=\"swiper-slide\">\n                <img decoding=\"async\" src=\"\/wp-content\/uploads\/2026\/07\/full-body-red-light-therapy-panels-for-recovery-product-2.webp\"\n                    alt=\"full-body-red-light-therapy-panels-for-recovery-product\">\n            <\/div>\n            <div class=\"swiper-slide\">\n                <img decoding=\"async\" src=\"\/wp-content\/uploads\/2026\/07\/full-body-red-light-therapy-panels-for-recovery-product-3.webp\"\n                    alt=\"full-body-red-light-therapy-panels-for-recovery-product\">\n            <\/div>\n            <div class=\"swiper-slide\">\n                <img decoding=\"async\" src=\"\/wp-content\/uploads\/2026\/07\/full-body-red-light-therapy-panels-for-recovery-product-4.webp\"\n                    alt=\"full-body-red-light-therapy-panels-for-recovery-product\">\n            <\/div>\n        <\/div>\n        <div class=\"swiper-pagination\"><\/div>\n    <\/div>\n\n    <!-- \u7f29\u7565\u56fe + \u7bad\u5934\uff08\u7f29\u7565\u56fe\u7531 JS \u81ea\u52a8\u751f\u6210\uff09 -->\n    <div class=\"thumb-wrapper\">\n        <div class=\"thumb-arrow thumb-prev\">\u2039<\/div>\n        <div class=\"thumb-list\" id=\"thumbList\"><\/div>\n        <div class=\"thumb-arrow thumb-next\">\u203a<\/div>\n    <\/div>\n<\/div>\n\n<script>\njQuery(document).ready(function ($) {\n    var $thumbList = $('#thumbList');\n    var $prevArrow = $('.thumb-prev');\n    var $nextArrow = $('.thumb-next');\n\n    $('.main-swiper .swiper-wrapper > .swiper-slide img').each(function(i, img) {\n        var $item = $('<div class=\"thumb-item ' + (i === 0 ? 'active' : '') + '\"><\/div>').data('index', i);\n        var $thumbImg = $('<img>').attr({\n            src: $(img).attr('src'),\n            alt: $(img).attr('alt') || ''\n        });\n        $item.append($thumbImg);\n\n        \/\/ \u70b9\u51fb\u7f29\u7565\u56fe\u5207\u6362\u4e3b\u56fe\n        $item.on('click', function() {\n            swiper.slideToLoop($(this).data('index'));\n        });\n\n        $thumbList.append($item);\n    });\n\n    \/\/ \u521d\u59cb\u5316\u4e3b\u8f6e\u64ad\n    var swiper = new Swiper('.main-swiper', {\n        loop: false,\n        autoplay: true,\n        grabCursor: true,\n        pagination: {\n            el: '.swiper-pagination',\n            clickable: true,\n        },\n        on: {\n            init: function() {\n                setArrowDisabled(this);\n            },\n            slideChange: function () {\n                updateActiveThumb(this.realIndex);\n                setArrowDisabled(this);\n            },\n        },\n    });\n\n    \/\/ \u7ed9\u7bad\u5934\u6dfb\u52a0\/\u79fb\u9664 disabled \u7c7b\n    function setArrowDisabled(swiperIns) {\n        const total = swiperIns.slides.length;\n        const current = swiperIns.realIndex;\n        $prevArrow.toggleClass('disabled', current === 0);\n        $nextArrow.toggleClass('disabled', current === total - 1);\n    }\n    \n    \/\/ \u66f4\u65b0\u7f29\u7565\u56fe\u6fc0\u6d3b\u6837\u5f0f\u5e76\u81ea\u52a8\u6eda\u52a8\u5c45\u4e2d\n    function updateActiveThumb(index) {\n        $('.thumb-item')\n            .removeClass('active')\n            .eq(index)\n            .addClass('active');\n\n        const $list = $('#thumbList');\n        const $active = $('.thumb-item.active');\n        if (!$active.length) return;\n\n        \/\/ \u8ba1\u7b97\u5bb9\u5668\u5185\u6a2a\u5411\u504f\u79fb\uff0c\u53ea\u6eda\u52a8\u7f29\u7565\u56fe\u5bb9\u5668\n        const listLeft = $list.scrollLeft();\n        const itemLeft = $active.position().left + listLeft;\n        const listWidth = $list.outerWidth();\n        const itemWidth = $active.outerWidth();\n\n        $list.animate({\n            scrollLeft: itemLeft - listWidth \/ 2 + itemWidth \/ 2\n        }, 300);\n    }\n\n    \/\/ \u7f29\u7565\u56fe\u5de6\u53f3\u7bad\u5934\u63a7\u5236\u4e3b\u8f6e\u64ad\u5207\u6362\n    $('.thumb-prev').on('click', function() {\n        swiper.slidePrev();\n    });\n    $('.thumb-next').on('click', function() {\n        swiper.slideNext();\n    });\n});\n<\/script>\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-607265c8 e-con-full e-flex e-con e-child\" data-id=\"607265c8\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-1eff5c32 e-con-full e-flex e-con e-child\" data-id=\"1eff5c32\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-61f63338 elementor-widget elementor-widget-heading\" data-id=\"61f63338\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">Full-Body Red Light Therapy Panels for Recovery<\/h1>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-429036cb product-desc elementor-widget elementor-widget-text-editor\" data-id=\"429036cb\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<ul><li>Full-body recovery coverage<\/li><li>Large muscle group support<\/li><li>Standing or reclined use<\/li><li>Red and NIR wavelength mix\u2028<\/li><li>Wellness-room friendly<\/li><\/ul>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-441c5d9f elementor-widget elementor-widget-template\" data-id=\"441c5d9f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"template.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-template\">\n\t\t\t\t\t<div data-elementor-type=\"container\" data-elementor-id=\"6380\" class=\"elementor elementor-6380\" data-elementor-post-type=\"elementor_library\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4585468 e-con-full e-flex e-con e-child\" data-id=\"4585468\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-290021bb detail-btn elementor-widget elementor-widget-button\" data-id=\"290021bb\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/wa.me\/8613923410020\" target=\"_blank\" rel=\"nofollow\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">LIVE CHAT<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-70ce3aeb detail-btn elementor-widget elementor-widget-button\" data-id=\"70ce3aeb\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"#elementor-action%3Aaction%3Dpopup%3Aopen%26settings%3DeyJpZCI6IjY0MTkiLCJ0b2dnbGUiOmZhbHNlfQ%3D%3D\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">DOWNLOAD<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t<a class=\"elementor-element elementor-element-6644c84f e-con-full detail-btn-see-more-btn e-flex e-con e-child\" data-id=\"6644c84f\" data-element_type=\"container\" data-e-type=\"container\" href=\"#elementor-action%3Aaction%3Dpopup%3Aopen%26settings%3DeyJpZCI6IjIwNDYiLCJ0b2dnbGUiOmZhbHNlfQ%3D%3D\">\n\t\t\t\t<div class=\"elementor-element elementor-element-666ef267 see-more-text elementor-widget elementor-widget-heading\" data-id=\"666ef267\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">Get a Quote<\/p>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-fdef9ed see-more-icon elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"fdef9ed\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"37\" height=\"37\" viewBox=\"0 0 37 37\" fill=\"none\"><defs><linearGradient id=\"hoverGradient\" x1=\"0\" y1=\"18.5\" x2=\"37\" y2=\"18.5\" gradientUnits=\"userSpaceOnUse\"><stop offset=\"0%\" stop-color=\"#E95A23\"><\/stop><stop offset=\"50%\" stop-color=\"#FF8A65\"><\/stop><stop offset=\"100%\" stop-color=\"#FF3B3B\"><\/stop><\/linearGradient><\/defs><rect class=\"icon-circle\" width=\"37\" height=\"37\" rx=\"18.5\" fill=\"#FF8A65\"><\/rect><path d=\"M21.4303 16.6047L15.1224 22.9127L14.0859 21.8762L20.3939 15.5683H14.8341V14.1024H22.8962V22.1645H21.4303V16.6047Z\" fill=\"white\"><\/path><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-1c93951c e-con-full e-flex e-con e-parent\" data-id=\"1c93951c\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-6b21e198 e-con-full e-flex e-con e-child\" data-id=\"6b21e198\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-4ab917d0 e-con-full e-flex e-con e-child\" data-id=\"4ab917d0\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-44583790 gradient-color elementor-widget elementor-widget-heading\" data-id=\"44583790\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Full-Body Red Light Therapy Panels for Recovery Specifications<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-73a47b6a elementor-widget elementor-widget-text-editor\" data-id=\"73a47b6a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Review the table for large-area recovery, including wavelength mix, coverage, power class, size, controls, material, accessories, and packaging needs.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-30bf3f00 elementor-widget__width-initial elementor-widget-tablet__width-inherit elementor-widget elementor-widget-image\" data-id=\"30bf3f00\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img fetchpriority=\"high\" decoding=\"async\" width=\"600\" height=\"400\" src=\"https:\/\/youlumi.szlogic.cn\/wp-content\/uploads\/2026\/07\/full-body-red-light-therapy-panels-for-recovery-specifications.webp\" class=\"attachment-full size-full wp-image-7167\" alt=\"full-body-red-light-therapy-panels-for-recovery-specifications\" srcset=\"https:\/\/youlumi.szlogic.cn\/wp-content\/uploads\/2026\/07\/full-body-red-light-therapy-panels-for-recovery-specifications.webp 600w, https:\/\/youlumi.szlogic.cn\/wp-content\/uploads\/2026\/07\/full-body-red-light-therapy-panels-for-recovery-specifications-300x200.webp 300w, https:\/\/youlumi.szlogic.cn\/wp-content\/uploads\/2026\/07\/full-body-red-light-therapy-panels-for-recovery-specifications-18x12.webp 18w\" sizes=\"(max-width: 600px) 100vw, 600px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-7376c183 e-grid e-con-full grid-container e-con e-child\" data-id=\"7376c183\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-5a892e30 e-con-full e-flex e-con e-child\" data-id=\"5a892e30\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-736749eb elementor-widget elementor-widget-heading\" data-id=\"736749eb\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">Parameter<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-5fe358d5 e-con-full e-flex e-con e-child\" data-id=\"5fe358d5\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b89a479 elementor-widget elementor-widget-heading\" data-id=\"b89a479\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">Specification<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-e1e1f08 e-con-full e-flex e-con e-child\" data-id=\"e1e1f08\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-1169f8a6 elementor-widget elementor-widget-heading\" data-id=\"1169f8a6\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">Model No.<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-710d3be8 e-con-full e-flex e-con e-child\" data-id=\"710d3be8\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-1a04ad15 elementor-widget elementor-widget-heading\" data-id=\"1a04ad15\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">YL-IRP-004<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-32b470c1 e-con-full e-flex e-con e-child\" data-id=\"32b470c1\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-426da885 elementor-widget elementor-widget-heading\" data-id=\"426da885\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">Product Type<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-46dc445a e-con-full e-flex e-con e-child\" data-id=\"46dc445a\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7ce3c272 elementor-widget elementor-widget-heading\" data-id=\"7ce3c272\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">Full-body red light therapy panel<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-2e050887 e-con-full e-flex e-con e-child\" data-id=\"2e050887\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-55b04934 elementor-widget elementor-widget-heading\" data-id=\"55b04934\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">Actual Power<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-7ddef441 e-con-full e-flex e-con e-child\" data-id=\"7ddef441\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-35dc2771 elementor-widget elementor-widget-heading\" data-id=\"35dc2771\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">600W +\/-5%<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-490daa85 e-con-full e-flex e-con e-child\" data-id=\"490daa85\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-23a2f418 elementor-widget elementor-widget-heading\" data-id=\"23a2f418\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">Wavelengths<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-4bd6c81d e-con-full e-flex e-con e-child\" data-id=\"4bd6c81d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6fa7a840 elementor-widget elementor-widget-heading\" data-id=\"6fa7a840\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">660nm:850nm = 1:1<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-77b68ba4 e-con-full e-flex e-con e-child\" data-id=\"77b68ba4\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-590ca336 elementor-widget elementor-widget-heading\" data-id=\"590ca336\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">Input Voltage<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-18984cc3 e-con-full e-flex e-con e-child\" data-id=\"18984cc3\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6937d9a9 elementor-widget elementor-widget-heading\" data-id=\"6937d9a9\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">AC100-240V, 50\/60Hz<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-59740cd8 e-con-full e-flex e-con e-child\" data-id=\"59740cd8\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-703e9d62 elementor-widget elementor-widget-heading\" data-id=\"703e9d62\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">Irradiance<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-133acb20 e-con-full e-flex e-con e-child\" data-id=\"133acb20\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5644fccf elementor-widget elementor-widget-heading\" data-id=\"5644fccf\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">&gt;135 mW\/cm2 at 6 in<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-18d7ffcf e-con-full e-flex e-con e-child\" data-id=\"18d7ffcf\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3bdf535c elementor-widget elementor-widget-heading\" data-id=\"3bdf535c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">Dimensions<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-38accb77 e-con-full e-flex e-con e-child\" data-id=\"38accb77\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7e692419 elementor-widget elementor-widget-heading\" data-id=\"7e692419\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">920 x 220 x 70 mm<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-209aa8f7 e-con-full e-flex e-con e-child\" data-id=\"209aa8f7\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-16e88a77 elementor-widget elementor-widget-heading\" data-id=\"16e88a77\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">Beam Angle<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-4b72a7a4 e-con-full e-flex e-con e-child\" data-id=\"4b72a7a4\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6aa2c80c elementor-widget elementor-widget-heading\" data-id=\"6aa2c80c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">30 degrees<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-12212e13 e-con-full e-flex e-con e-child\" data-id=\"12212e13\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-27b439ff elementor-widget elementor-widget-heading\" data-id=\"27b439ff\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">Net Weight<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-5d81c9ca e-con-full e-flex e-con e-child\" data-id=\"5d81c9ca\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-21454c6c elementor-widget elementor-widget-heading\" data-id=\"21454c6c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">Approx. 8.90 kg<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-4f6e06a4 e-con-full e-flex e-con e-child\" data-id=\"4f6e06a4\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-35cea09c elementor-widget elementor-widget-heading\" data-id=\"35cea09c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">Operating Temperature<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-1576cbac e-con-full e-flex e-con e-child\" data-id=\"1576cbac\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-74fa6fa9 elementor-widget elementor-widget-heading\" data-id=\"74fa6fa9\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">-20 C to +40 C<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-3c023223 e-con-full e-flex e-con e-child\" data-id=\"3c023223\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-52752de0 elementor-widget elementor-widget-heading\" data-id=\"52752de0\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">Rated Lifespan<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-1e7f3236 e-con-full e-flex e-con e-child\" data-id=\"1e7f3236\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c2b314 elementor-widget elementor-widget-heading\" data-id=\"c2b314\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">&gt;50,000 hours<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-7f79202c e-con-full e-flex e-con e-child\" data-id=\"7f79202c\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-1f9e937f elementor-widget elementor-widget-heading\" data-id=\"1f9e937f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">Warranty<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-1affac6a e-con-full e-flex e-con e-child\" data-id=\"1affac6a\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-17cb7aa7 elementor-widget elementor-widget-heading\" data-id=\"17cb7aa7\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">1 year<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-77ea5af5 e-con-full e-flex e-con e-child\" data-id=\"77ea5af5\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-7ff686ac e-con-full e-flex e-con e-child\" data-id=\"7ff686ac\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3d61948 gradient-color elementor-widget elementor-widget-heading\" data-id=\"3d61948\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Full-Body Red Light Therapy Panels for Recovery Features<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4f52c92e elementor-widget elementor-widget-text-editor\" data-id=\"4f52c92e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Built for large-area recovery, this full-body panel system combines red and near-infrared light with a tall panel body for gyms and therapy rooms.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-413657b6 elementor-widget elementor-widget-image\" data-id=\"413657b6\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"1200\" height=\"339\" src=\"https:\/\/youlumi.szlogic.cn\/wp-content\/uploads\/2026\/06\/fda-cleared-red-light-therapy-mask-for-skincare-features.webp\" class=\"attachment-full size-full wp-image-5284\" alt=\"fda-cleared-red-light-therapy-mask-for-skincare-features\" srcset=\"https:\/\/youlumi.szlogic.cn\/wp-content\/uploads\/2026\/06\/fda-cleared-red-light-therapy-mask-for-skincare-features.webp 1200w, https:\/\/youlumi.szlogic.cn\/wp-content\/uploads\/2026\/06\/fda-cleared-red-light-therapy-mask-for-skincare-features-300x85.webp 300w, https:\/\/youlumi.szlogic.cn\/wp-content\/uploads\/2026\/06\/fda-cleared-red-light-therapy-mask-for-skincare-features-1024x289.webp 1024w, https:\/\/youlumi.szlogic.cn\/wp-content\/uploads\/2026\/06\/fda-cleared-red-light-therapy-mask-for-skincare-features-768x217.webp 768w, https:\/\/youlumi.szlogic.cn\/wp-content\/uploads\/2026\/06\/fda-cleared-red-light-therapy-mask-for-skincare-features-18x5.webp 18w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-70c4ba1e e-con-full e-flex e-con e-child\" data-id=\"70c4ba1e\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-67457b39 elementor-widget__width-initial elementor-widget-mobile__width-inherit elementor-view-default elementor-position-block-start elementor-mobile-position-block-start elementor-widget elementor-widget-icon-box\" data-id=\"67457b39\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"elementor-icon-box-icon\">\n\t\t\t\t<span  class=\"elementor-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\" fill=\"none\"><rect width=\"60\" height=\"60\" rx=\"8\" fill=\"#FA7D5F\"><\/rect><path d=\"M20.8128 33.3062H19.6873C19.1697 33.3062 18.7498 33.7263 18.7498 34.244C18.7498 34.7618 19.1697 35.1819 19.6873 35.1819H20.8128C21.3303 35.1819 21.7503 34.7618 21.7503 34.244C21.7503 33.7263 21.3303 33.3062 20.8128 33.3062ZM25.6872 33.3062H24.5617C24.0441 33.3062 23.6242 33.7263 23.6242 34.244C23.6242 34.7618 24.0441 35.1819 24.5617 35.1819H25.6872C26.2047 35.1819 26.6247 34.7618 26.6247 34.244C26.6247 33.7263 26.2047 33.3062 25.6872 33.3062ZM30.5628 33.3062H29.4373C28.9197 33.3062 28.4998 33.7263 28.4998 34.244C28.4998 34.7618 28.9197 35.1819 29.4373 35.1819H30.5628C31.0803 35.1819 31.5003 34.7618 31.5003 34.244C31.5003 33.7263 31.0803 33.3062 30.5628 33.3062ZM35.4372 33.3062H34.3117C33.7941 33.3062 33.3742 33.7263 33.3742 34.244C33.3742 34.7618 33.7941 35.1819 34.3117 35.1819H35.4372C35.9547 35.1819 36.3747 34.7618 36.3747 34.244C36.3747 33.7263 35.956 33.3062 35.4372 33.3062ZM40.3128 33.3062H39.1873C38.6697 33.3062 38.2498 33.7263 38.2498 34.244C38.2498 34.7618 38.6697 35.1819 39.1873 35.1819H40.3128C40.8303 35.1819 41.2503 34.7618 41.2503 34.244C41.2503 33.7263 40.8303 33.3062 40.3128 33.3062ZM44.0628 29.5547C43.3914 29.5596 42.7701 29.2006 42.438 28.6169L40.2798 24.8739C39.2447 23.08 36.9511 22.4658 35.1564 23.5013C34.5863 23.831 34.1127 24.3036 33.7843 24.8739L31.6249 28.6169C31.1073 29.5145 29.9599 29.821 29.0639 29.3032C28.7795 29.1383 28.5426 28.9014 28.3778 28.6169L26.2172 24.8739C25.182 23.08 22.8884 22.4658 21.0938 23.5013C20.5237 23.831 20.0501 24.3036 19.7217 24.8739L17.5622 28.6169C17.2302 29.2006 16.6089 29.5596 15.9375 29.5547C15.4199 29.5547 15 29.9748 15 30.4926V44.0621C15 44.5799 15.4199 45 15.9375 45H44.0625C44.5801 45 45 44.5799 45 44.0621V30.4926C45 29.9748 44.5803 29.5547 44.0628 29.5547ZM43.1253 39.3729H16.8753V31.3157C17.8531 31.0678 18.6868 30.4316 19.1848 29.556L21.3443 25.813C21.8618 24.9155 23.0093 24.609 23.9053 25.1268C24.1897 25.2916 24.4266 25.5285 24.5913 25.813L26.7508 29.556C27.7859 31.3499 30.0795 31.9642 31.8742 30.9286C32.4443 30.5989 32.9179 30.1263 33.2463 29.556L35.4069 25.813C35.9245 24.9155 37.072 24.609 37.968 25.1268C38.2524 25.2916 38.4892 25.5285 38.654 25.813L40.8134 29.556C41.3127 30.4328 42.1477 31.0678 43.1242 31.3157L43.1253 39.3729ZM24.65 21.2788C25.0223 21.639 25.6155 21.628 25.9757 21.2556C26.326 20.8917 26.326 20.3153 25.9757 19.9526L25.2323 19.2089H34.7685L34.0251 19.9526C33.665 20.325 33.676 20.9185 34.0483 21.2788C34.4121 21.6293 34.9882 21.6293 35.3508 21.2788L37.6945 18.9341C38.0608 18.5678 38.0608 17.9743 37.6945 17.6079L35.3508 15.2633C34.9785 14.9031 34.3852 14.914 34.0251 15.2865C33.6748 15.6504 33.6748 16.2268 34.0251 16.5895L34.7685 17.3332H25.2323L25.9757 16.5895C26.3358 16.2171 26.3248 15.6236 25.9525 15.2633C25.5887 14.9128 25.0125 14.9128 24.65 15.2633L22.3062 17.608C21.94 17.9743 21.94 18.5678 22.3062 18.9341L24.65 21.2788Z\" fill=\"white\"><\/path><\/svg>\t\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<h3 class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<span  >\n\t\t\t\t\t\t\tMulti-Wavelength\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/h3>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<p class=\"elementor-icon-box-description\">\n\t\t\t\t\t\tRed and near-infrared light supports surface care and deeper recovery-style positioning across back, legs, and larger muscles.\t\t\t\t\t<\/p>\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-11db0ab0 elementor-widget__width-initial elementor-widget-mobile__width-inherit elementor-view-default elementor-position-block-start elementor-mobile-position-block-start elementor-widget elementor-widget-icon-box\" data-id=\"11db0ab0\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"elementor-icon-box-icon\">\n\t\t\t\t<span  class=\"elementor-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\" fill=\"none\"><rect width=\"60\" height=\"60\" rx=\"8\" fill=\"#FA7D5F\"><\/rect><path d=\"M30.001 41.4629C30.6892 41.4631 31.2469 42.0208 31.2471 42.709V43.7529C31.2471 44.4413 30.6893 44.9998 30.001 45C29.3125 45 28.7539 44.4414 28.7539 43.7529V42.709C28.7541 42.0207 29.3126 41.4629 30.001 41.4629ZM22.5664 40.3828C22.9109 39.7861 23.6744 39.5828 24.2695 39.9268C24.8658 40.2711 25.07 41.0336 24.7256 41.6299L24.2041 42.5342C23.9731 42.9342 23.5537 43.1582 23.123 43.1582C22.9113 43.1582 22.6971 43.1036 22.501 42.9902C21.9047 42.6458 21.6996 41.8834 22.0439 41.2871L22.5664 40.3828ZM35.7314 39.9268C36.3273 39.5829 37.0902 39.7864 37.4346 40.3828L37.9561 41.2871C38.3004 41.8833 38.0962 42.6458 37.5 42.9902C37.3039 43.1036 37.0893 43.1572 36.8779 43.1572C36.4473 43.1572 36.0279 42.9341 35.7969 42.5342L35.2744 41.6299C34.9301 41.0337 35.1352 40.2711 35.7314 39.9268ZM26.9189 38.1953C27.041 37.7393 27.5105 37.4707 27.9658 37.5898C28.4218 37.7119 28.6929 38.1807 28.5713 38.6367L28.3857 39.3281C28.2835 39.7101 27.938 39.9629 27.5605 39.9629C27.4872 39.9629 27.4129 39.9531 27.3389 39.9336C26.883 39.8114 26.6127 39.3427 26.7344 38.8867L26.9189 38.1953ZM32.0342 37.5898C32.4899 37.4709 32.959 37.7393 33.0811 38.1953L33.2666 38.8867C33.3882 39.3427 33.1171 39.8115 32.6611 39.9336C32.5871 39.953 32.5128 39.9629 32.4395 39.9629C32.0621 39.9628 31.7165 39.71 31.6143 39.3281L31.4297 38.6367C31.308 38.1808 31.5783 37.712 32.0342 37.5898ZM18.3691 35.2754C18.966 34.931 19.7278 35.135 20.0723 35.7314C20.4167 36.328 20.2125 37.0905 19.6162 37.4346L18.7119 37.9561C18.5154 38.0694 18.3013 38.124 18.0898 38.124C17.6588 38.124 17.2398 37.9 17.0088 37.5C16.6645 36.9034 16.8696 36.1409 17.4658 35.7969L18.3691 35.2754ZM39.9268 35.7314C40.2711 35.1349 41.0333 34.931 41.6299 35.2754L42.5342 35.7969C43.1304 36.1409 43.3346 36.9034 42.9902 37.5C42.7593 37.8998 42.3406 38.1239 41.9102 38.124C41.6987 38.124 41.4837 38.0695 41.2871 37.9561L40.3838 37.4346C39.7876 37.0906 39.5825 36.328 39.9268 35.7314ZM23.2344 35.5566C23.5683 35.2227 24.1094 35.2234 24.4434 35.5566C24.7772 35.8903 24.7769 36.4317 24.4434 36.7656L23.9375 37.2715C23.7706 37.4383 23.5517 37.5215 23.333 37.5215C23.1143 37.5214 22.8964 37.438 22.7295 37.2715C22.3955 36.9379 22.3949 36.3965 22.7285 36.0625L23.2344 35.5566ZM35.5576 35.5566C35.8915 35.2236 36.4317 35.223 36.7656 35.5566L37.2715 36.0625C37.605 36.3964 37.6053 36.9379 37.2715 37.2715C37.1045 37.4381 36.8858 37.5215 36.667 37.5215C36.4482 37.5214 36.2294 37.4384 36.0625 37.2715L35.5566 36.7656C35.223 36.4317 35.2237 35.8902 35.5576 35.5566ZM30 35.1348C30.3085 35.1348 30.5585 35.3849 30.5586 35.6934V36.1611C30.5586 36.4697 30.3085 36.7197 30 36.7197C29.6915 36.7197 29.4414 36.4696 29.4414 36.1611V35.6934C29.4415 35.3849 29.6915 35.1348 30 35.1348ZM26.6699 34.6514C26.8243 34.384 27.1658 34.2937 27.4326 34.4473C27.6997 34.6013 27.7919 34.9428 27.6377 35.21L27.4033 35.6152C27.3 35.7941 27.1124 35.8944 26.9199 35.8945C26.825 35.8945 26.7286 35.8701 26.6406 35.8193C26.3735 35.6653 26.2823 35.3238 26.4365 35.0566L26.6699 34.6514ZM32.5684 34.4473C32.8352 34.2935 33.1769 34.3839 33.3311 34.6514L33.5654 35.0566C33.7195 35.3237 33.6274 35.6653 33.3604 35.8193C33.2725 35.8699 33.1768 35.8945 33.082 35.8945C32.8893 35.8945 32.701 35.7943 32.5977 35.6152L32.3643 35.21C32.2098 34.9428 32.3012 34.6014 32.5684 34.4473ZM24.79 32.3633C25.0565 32.2093 25.3987 32.2999 25.5527 32.5674C25.707 32.8344 25.6155 33.1759 25.3486 33.3301L24.9434 33.5635C24.8553 33.6143 24.759 33.6387 24.6641 33.6387C24.4715 33.6385 24.2839 33.5384 24.1807 33.3594C24.0264 33.0922 24.1177 32.7507 24.3848 32.5967L24.79 32.3633ZM34.4463 32.5674C34.6007 32.2999 34.9425 32.2092 35.209 32.3633L35.6143 32.5967C35.8812 32.7508 35.9725 33.0923 35.8184 33.3594C35.715 33.5385 35.5267 33.6387 35.334 33.6387C35.2391 33.6386 35.1436 33.6142 35.0557 33.5635L34.6504 33.3301C34.3833 33.176 34.2919 32.8345 34.4463 32.5674ZM21.3623 31.4297C21.8176 31.3104 22.287 31.5782 22.4092 32.0342C22.5309 32.4902 22.2607 32.9589 21.8047 33.0811L21.1133 33.2656C21.0393 33.2851 20.9649 33.2949 20.8916 33.2949C20.5142 33.2949 20.1687 33.0431 20.0664 32.6611C19.9447 32.2052 20.215 31.7365 20.6709 31.6143L21.3623 31.4297ZM37.5898 32.0342C37.712 31.5783 38.1818 31.31 38.6367 31.4297L39.3281 31.6143C39.7841 31.7364 40.0543 32.2051 39.9326 32.6611C39.8303 33.0431 39.4849 33.2949 39.1074 33.2949C39.0341 33.2949 38.9597 33.286 38.8857 33.2666L38.1943 33.0811C37.7385 32.9588 37.4681 32.4901 37.5898 32.0342ZM17.291 28.7529C17.9793 28.7531 18.5371 29.3117 18.5371 30C18.5371 30.6883 17.9793 31.2469 17.291 31.2471H16.2471C15.5586 31.2471 15 30.6884 15 30C15 29.3116 15.5587 28.7529 16.2471 28.7529H17.291ZM43.7539 28.7529C44.4422 28.7531 45 29.3117 45 30C45 30.6883 44.4422 31.2469 43.7539 31.2471H42.71C42.0215 31.2471 41.4629 30.6884 41.4629 30C41.4629 29.3116 42.0215 28.7529 42.71 28.7529H43.7539ZM24.3076 29.4414C24.6162 29.4414 24.8662 29.6914 24.8662 30C24.8662 30.3085 24.6162 30.5586 24.3076 30.5586H23.8398C23.5313 30.5586 23.2813 30.3085 23.2812 30C23.2812 29.6915 23.5313 29.4414 23.8398 29.4414H24.3076ZM36.1611 29.4414C36.4697 29.4414 36.7197 29.6914 36.7197 30C36.7197 30.3085 36.4697 30.5586 36.1611 30.5586H35.6934C35.3849 30.5586 35.1348 30.3085 35.1348 30C35.1348 29.6915 35.3848 29.4414 35.6934 29.4414H36.1611ZM20.0664 27.3389C20.1885 26.8825 20.659 26.6123 21.1133 26.7344L21.8047 26.9199C22.2607 27.042 22.5316 27.5111 22.4092 27.9668C22.3068 28.3485 21.9609 28.6006 21.584 28.6006C21.5107 28.6006 21.4363 28.5901 21.3623 28.5703L20.6709 28.3848C20.215 28.2627 19.9443 27.7944 20.0664 27.3389ZM38.8857 26.7344C39.3401 26.6123 39.8105 26.8825 39.9326 27.3389C40.0548 27.7944 39.784 28.2627 39.3281 28.3848L38.6367 28.5703C38.5627 28.5901 38.4884 28.6006 38.415 28.6006C38.0381 28.6006 37.6923 28.3485 37.5898 27.9668C37.4674 27.5111 37.7383 27.042 38.1943 26.9199L38.8857 26.7344ZM24.1807 26.6406C24.3351 26.3731 24.6765 26.2828 24.9434 26.4365L25.3486 26.6699C25.6156 26.824 25.707 27.1656 25.5527 27.4326C25.4494 27.6118 25.2611 27.7119 25.0684 27.7119C24.9735 27.7119 24.8779 27.6874 24.79 27.6367L24.3848 27.4033C24.1177 27.2492 24.0263 26.9078 24.1807 26.6406ZM35.0557 26.4365C35.3225 26.2829 35.6643 26.3732 35.8184 26.6406C35.9726 26.9077 35.8812 27.2492 35.6143 27.4033L35.209 27.6367C35.121 27.6875 35.0247 27.7119 34.9297 27.7119C34.7371 27.7118 34.5495 27.6117 34.4463 27.4326C34.2919 27.1655 34.3833 26.824 34.6504 26.6699L35.0557 26.4365ZM26.6406 24.1807C26.907 24.0267 27.2492 24.1175 27.4033 24.3848L27.6377 24.79C27.7919 25.0572 27.6997 25.3987 27.4326 25.5527C27.3448 25.6034 27.2491 25.6279 27.1543 25.6279C26.9616 25.6279 26.7732 25.5278 26.6699 25.3486L26.4365 24.9434C26.2822 24.6762 26.3735 24.3347 26.6406 24.1807ZM32.5977 24.3848C32.7517 24.1175 33.094 24.0269 33.3604 24.1807C33.6274 24.3347 33.7195 24.6763 33.5654 24.9434L33.3311 25.3486C33.2278 25.5276 33.0402 25.6278 32.8477 25.6279C32.7527 25.6279 32.6564 25.6035 32.5684 25.5527C32.3012 25.3986 32.2098 25.0572 32.3643 24.79L32.5977 24.3848ZM17.0088 22.5C17.3535 21.9031 18.1171 21.7003 18.7119 22.0439L19.6162 22.5654C20.2124 22.9098 20.4166 23.6723 20.0723 24.2686C19.8413 24.6685 19.4227 24.8925 18.9922 24.8926C18.7803 24.8926 18.5653 24.839 18.3691 24.7256L17.4658 24.2031C16.8696 23.8588 16.6645 23.0962 17.0088 22.5ZM41.2871 22.0439C41.8829 21.6996 42.6458 21.9035 42.9902 22.5C43.3346 23.0962 43.1304 23.8587 42.5342 24.2031L41.6299 24.7256C41.4338 24.8388 41.2192 24.8926 41.0078 24.8926C40.5772 24.8926 40.1577 24.6686 39.9268 24.2686C39.5826 23.6724 39.7877 22.9098 40.3838 22.5654L41.2871 22.0439ZM30 23.2803C30.3085 23.2803 30.5586 23.5303 30.5586 23.8389V24.3066C30.5586 24.6152 30.3086 24.8652 30 24.8652C29.6915 24.8652 29.4414 24.6152 29.4414 24.3066V23.8389C29.4414 23.5304 29.6915 23.2803 30 23.2803ZM22.7285 22.7285C23.0617 22.3946 23.6042 22.3947 23.9375 22.7285L24.4434 23.2344C24.7773 23.568 24.7773 24.1098 24.4434 24.4434C24.2767 24.6103 24.0576 24.6934 23.8389 24.6934C23.6201 24.6933 23.401 24.6103 23.2344 24.4434L22.7285 23.9375C22.3947 23.6039 22.3947 23.0621 22.7285 22.7285ZM36.0625 22.7285C36.3957 22.3946 36.9382 22.3947 37.2715 22.7285C37.6054 23.0621 37.6054 23.6039 37.2715 23.9375L36.7656 24.4434C36.599 24.6103 36.3799 24.6934 36.1611 24.6934C35.9424 24.6933 35.7232 24.6103 35.5566 24.4434C35.2228 24.1098 35.2228 23.5679 35.5566 23.2344L36.0625 22.7285ZM27.3389 20.0674C27.7918 19.946 28.2636 20.2158 28.3857 20.6719L28.5703 21.3633C28.6924 21.8189 28.4218 22.287 27.9658 22.4092C27.8921 22.429 27.8175 22.4395 27.7441 22.4395C27.3667 22.4394 27.0222 22.1866 26.9199 21.8047L26.7344 21.1143C26.6123 20.6586 26.8829 20.1895 27.3389 20.0674ZM31.6152 20.6719C31.7374 20.2156 32.2079 19.9457 32.6611 20.0674C33.1172 20.1895 33.3877 20.6586 33.2656 21.1143L33.0811 21.8047C32.9788 22.1866 32.6333 22.4395 32.2559 22.4395C32.1825 22.4395 32.1079 22.429 32.0342 22.4092C31.5783 22.287 31.3076 21.8189 31.4297 21.3633L31.6152 20.6719ZM22.501 17.0098C23.0965 16.6659 23.8598 16.8693 24.2041 17.4658L24.7256 18.3701C25.07 18.9664 24.8658 19.7289 24.2695 20.0732C24.0734 20.1866 23.8589 20.2402 23.6475 20.2402C23.2169 20.2402 22.7974 20.0171 22.5664 19.6172L22.0439 18.7129C21.6996 18.1166 21.9047 17.3542 22.501 17.0098ZM35.7969 17.4658C36.1413 16.869 36.9049 16.6661 37.5 17.0098C38.0962 17.3542 38.3004 18.1167 37.9561 18.7129L37.4346 19.6172C37.2036 20.0172 36.7841 20.2402 36.3535 20.2402C36.1418 20.2402 35.9276 20.1865 35.7314 20.0732C35.1352 19.7289 34.9301 18.9663 35.2744 18.3701L35.7969 17.4658ZM30.001 15C30.6893 15.0002 31.2471 15.5587 31.2471 16.2471V17.291C31.2469 17.9792 30.6892 18.5369 30.001 18.5371C29.3127 18.5371 28.7541 17.9793 28.7539 17.291V16.2471C28.7539 15.5586 29.3125 15 30.001 15Z\" fill=\"white\"><\/path><\/svg>\t\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<h3 class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<span  >\n\t\t\t\t\t\t\tUniform Light Distribution\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/h3>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<p class=\"elementor-icon-box-description\">\n\t\t\t\t\t\tThe layout helps spread light across back, legs, and larger muscles, keeping coverage steadier while the user maintains one position.\t\t\t\t\t<\/p>\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-1acd44c7 e-con-full e-flex e-con e-child\" data-id=\"1acd44c7\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-7ca3af62 e-con-full e-flex e-con e-child\" data-id=\"7ca3af62\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-1807d602 gradient-color elementor-widget elementor-widget-heading\" data-id=\"1807d602\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Full-Body Red Light Therapy Panels for Recovery Advantages<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6e5ae1c6 elementor-widget elementor-widget-text-editor\" data-id=\"6e5ae1c6\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Its value is practical: broad recovery coverage, simple controls, clear routine guidance, and a page story matched to gyms and therapy rooms.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-4d1e3ed e-con-full e-flex e-con e-child\" data-id=\"4d1e3ed\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-1a7e3845 e-con-full e-flex e-con e-child\" data-id=\"1a7e3845\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4a02d850 elementor-widget-mobile__width-inherit commercial-item elementor-view-default elementor-position-block-start elementor-mobile-position-block-start elementor-widget elementor-widget-icon-box\" data-id=\"4a02d850\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"elementor-icon-box-icon\">\n\t\t\t\t<span  class=\"elementor-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\" fill=\"none\"><rect width=\"60\" height=\"60\" rx=\"8\" fill=\"#FEEDEB\"><\/rect><path d=\"M45 23.75V41.875C45 42.2188 44.7188 42.5 44.375 42.5H15.625C15.28 42.5 15 42.2188 15 41.875V23.75H45ZM36.1374 33.8312C35.8049 33.725 35.4563 33.9038 35.3488 34.2325C34.3954 37.1824 31.2191 38.8062 28.2639 37.85C27.9376 37.7438 27.5837 37.9235 27.4774 38.2513C27.3712 38.5813 27.5513 38.9325 27.8799 39.0375C28.5812 39.2662 29.2914 39.375 29.9939 39.375C32.8951 39.3749 35.5974 37.5212 36.5399 34.6188C36.6449 34.2926 36.4671 33.9374 36.1374 33.8312ZM33.6575 31.4636C33.3126 31.5027 33.0674 31.8112 33.1046 32.1527C33.1961 32.9827 32.9624 33.7991 32.4411 34.4504C31.9211 35.1028 31.176 35.513 30.3461 35.6027C30.0024 35.643 29.756 35.9527 29.7934 36.2943C29.8296 36.6139 30.101 36.8491 30.4147 36.8491C30.4375 36.8491 30.4612 36.8479 30.4846 36.8454C31.6471 36.7154 32.6886 36.1417 33.4186 35.2304C34.1473 34.3192 34.4787 33.1791 34.3488 32.0166C34.3088 31.6726 33.9975 31.4311 33.6575 31.4636ZM30 30.625C28.9663 30.625 28.125 31.4659 28.125 32.5C28.125 33.5341 28.9663 34.375 30 34.375C31.0341 34.375 31.875 33.5341 31.875 32.5C31.875 31.4659 31.0341 30.625 30 30.625ZM29.5151 28.1537C28.3526 28.2849 27.3099 28.8586 26.5811 29.7699C25.8524 30.6811 25.5213 31.8237 25.6512 32.9837C25.6875 33.305 25.9588 33.54 26.2726 33.54C26.2963 33.54 26.3175 33.5389 26.3425 33.5364C26.6862 33.4986 26.9323 33.1888 26.8936 32.8488C26.8011 32.0188 27.0361 31.2024 27.5574 30.5499C28.0786 29.8975 28.8224 29.4889 29.6524 29.3964C29.9962 29.3564 30.2423 29.0474 30.2051 28.7036C30.1663 28.3625 29.8588 28.1212 29.5151 28.1537ZM30 31.875C30.3453 31.875 30.625 32.1547 30.625 32.5C30.625 32.8453 30.3453 33.125 30 33.125C29.6547 33.125 29.375 32.8453 29.375 32.5C29.375 32.1547 29.6547 31.875 30 31.875ZM32.1185 25.9601C30.371 25.3938 28.5088 25.5426 26.8726 26.3776C25.2376 27.2125 24.0263 28.6362 23.4601 30.3812C23.3538 30.7109 23.5339 31.0625 23.8626 31.17C23.925 31.1891 23.9912 31.1987 24.0549 31.1987C24.3186 31.1987 24.5638 31.03 24.6472 30.7663C25.111 29.3363 26.1021 28.1712 27.4396 27.4899C28.7783 26.8074 30.3022 26.685 31.7322 27.1487C32.0622 27.2562 32.4151 27.0774 32.5201 26.7487C32.6263 26.4187 32.4487 26.0676 32.1185 25.9601ZM44.375 17.5C44.7188 17.5 45 17.7812 45 18.125V22.5H15V18.125C15 17.7812 15.28 17.5 15.625 17.5H44.375ZM18.125 20C17.78 20 17.5 20.2812 17.5 20.625C17.5 20.9688 17.78 21.25 18.125 21.25C18.47 21.25 18.75 20.9688 18.75 20.625C18.75 20.2812 18.47 20 18.125 20ZM20.625 20C20.28 20 20 20.2812 20 20.625C20 20.9688 20.28 21.25 20.625 21.25C20.97 21.25 21.25 20.9688 21.25 20.625C21.25 20.2812 20.97 20 20.625 20ZM23.125 20C22.78 20 22.5 20.2812 22.5 20.625C22.5 20.9688 22.78 21.25 23.125 21.25C23.47 21.25 23.75 20.9688 23.75 20.625C23.75 20.2812 23.47 20 23.125 20Z\" fill=\"#E95A23\"><\/path><\/svg>\t\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<h3 class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<span  >\n\t\t\t\t\t\t\tConvenient Operation\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/h3>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<p class=\"elementor-icon-box-description\">\n\t\t\t\t\t\tUsers can set panel height, align the body zone, run the timer, and keep the user relaxed. The flow is easy to describe in manuals, retail pages, and staff training materials.\t\t\t\t\t<\/p>\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ffb6139 elementor-widget-mobile__width-inherit commercial-item elementor-view-default elementor-position-block-start elementor-mobile-position-block-start elementor-widget elementor-widget-icon-box\" data-id=\"ffb6139\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"elementor-icon-box-icon\">\n\t\t\t\t<span  class=\"elementor-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\" fill=\"none\"><rect width=\"60\" height=\"60\" rx=\"8\" fill=\"#FEEDEB\"><\/rect><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M35.258 41.5007C33.8221 41.8396 31.9064 42.0082 29.9992 42.0082C28.092 42.0082 26.1763 41.8379 24.7404 41.5007C24.041 41.3357 23.4447 41.121 23.0004 40.8565V42.1573C23.541 42.4305 23.9634 42.7553 24.308 43.1492C24.6576 43.5467 24.9229 44.0081 25.1475 44.5528C25.7844 44.6912 26.499 44.7977 27.2508 44.8722C28.1191 44.9574 29.055 45 30.001 45C31.7444 45 33.481 44.8509 34.8546 44.5511C35.0793 44.0063 35.3445 43.5449 35.6925 43.1474C36.0371 42.7535 36.4594 42.4288 37 42.1555V40.8565C36.554 41.1209 35.9574 41.3357 35.258 41.5007ZM35.258 20.6518C35.9574 20.4868 36.5537 20.2721 36.998 20.0076V39.6941C36.873 40.0525 36.1364 40.3648 35.0688 40.6168C33.7021 40.9397 31.8557 41.0994 29.999 41.0994C28.1441 41.0994 26.296 40.938 24.9292 40.6168C23.8615 40.3648 23.1233 40.0507 23 39.6941V20.0058C23.446 20.272 24.0406 20.4849 24.74 20.65C26.1759 20.9889 28.0916 21.1575 29.9988 21.1575C31.9077 21.1593 33.8221 20.9907 35.258 20.6518ZM30.6631 29.283L31.6868 25.2673H28.3555L26.6999 31.4727L29.6596 31.4106L28.5092 37.437L33.3018 29.285L30.6631 29.283ZM34.8661 17.9848C33.6143 18.3113 31.8929 18.5136 30.0026 18.5136C28.1123 18.5136 26.3908 18.3113 25.1391 17.9848C24.6188 17.8499 24.1711 17.6849 23.813 17.495C23.7977 17.6157 23.7741 17.7363 23.742 17.8535C23.6288 18.274 23.4143 18.6573 23.0967 19.0033C23.3535 19.2961 24.0224 19.5552 24.9313 19.7681C26.2962 20.0911 28.1444 20.2508 30.0011 20.2508C31.856 20.2508 33.7041 20.0893 35.0709 19.7681C35.9781 19.5534 36.6487 19.2961 36.9055 19.0033C36.5879 18.6573 36.3734 18.274 36.2602 17.8535C36.2298 17.7363 36.2061 17.6192 36.1892 17.4986C35.8294 17.6867 35.3847 17.8499 34.8661 17.9848ZM25.3449 15.5004C26.5291 15.1917 28.1762 15 30.0026 15C31.8289 15 33.4758 15.1916 34.6603 15.5004C35.6029 15.7471 36.2127 16.0133 36.2938 16.2493C36.2769 16.3114 36.2617 16.3735 36.2465 16.4356C36.0708 16.6503 35.4981 16.8863 34.6602 17.1046C33.4743 17.4134 31.8289 17.605 30.0026 17.605C28.1762 17.605 26.5293 17.4134 25.3449 17.1046C24.4934 16.8828 23.914 16.6432 23.7502 16.4249C23.7383 16.3699 23.7231 16.3149 23.7096 16.2599C23.7738 16.0221 24.3871 15.7506 25.3449 15.5004Z\" fill=\"#E95A23\"><\/path><\/svg>\t\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<h3 class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<span  >\n\t\t\t\t\t\t\tHigh Efficiency Therapy\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/h3>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<p class=\"elementor-icon-box-description\">\n\t\t\t\t\t\tBy matching coverage to back, legs, and larger muscles, the device supports broad sessions with fewer body-area changes. Users complete sessions with fewer placement changes.\t\t\t\t\t<\/p>\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-58338fa5 e-con-full e-flex e-con e-child\" data-id=\"58338fa5\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-241c3316 elementor-widget elementor-widget-image\" data-id=\"241c3316\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"398\" height=\"398\" src=\"https:\/\/youlumi.szlogic.cn\/wp-content\/uploads\/2026\/07\/full-body-red-light-therapy-panels-for-recovery-advantages.webp\" class=\"attachment-full size-full wp-image-7186\" alt=\"full-body-red-light-therapy-panels-for-recovery-advantages\" srcset=\"https:\/\/youlumi.szlogic.cn\/wp-content\/uploads\/2026\/07\/full-body-red-light-therapy-panels-for-recovery-advantages.webp 398w, https:\/\/youlumi.szlogic.cn\/wp-content\/uploads\/2026\/07\/full-body-red-light-therapy-panels-for-recovery-advantages-300x300.webp 300w, https:\/\/youlumi.szlogic.cn\/wp-content\/uploads\/2026\/07\/full-body-red-light-therapy-panels-for-recovery-advantages-150x150.webp 150w, https:\/\/youlumi.szlogic.cn\/wp-content\/uploads\/2026\/07\/full-body-red-light-therapy-panels-for-recovery-advantages-12x12.webp 12w\" sizes=\"(max-width: 398px) 100vw, 398px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-5b9730fc e-con-full e-flex e-con e-child\" data-id=\"5b9730fc\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-d5077a5 e-con-full e-flex e-con e-child\" data-id=\"d5077a5\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2c196741 gradient-color elementor-widget elementor-widget-heading\" data-id=\"2c196741\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Full-Body Red Light Therapy Panels for Recovery Structure<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-277453a3 elementor-widget elementor-widget-text-editor\" data-id=\"277453a3\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>The structure supports stable routines, easier handling, and clear buyer presentation for large-area recovery.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-2f636adb e-con-full structure-container e-flex e-con e-child\" data-id=\"2f636adb\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-53543337 e-con-full source e-flex e-con e-child\" data-id=\"53543337\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-65fbee1 e-con-full e-flex e-con e-child\" data-id=\"65fbee1\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6cb51df1 elementor-widget elementor-widget-heading\" data-id=\"6cb51df1\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">LED Light Source<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-81b6fda elementor-widget elementor-widget-text-editor\" data-id=\"81b6fda\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>The light source is arranged for back, legs, and larger muscles, using red and near-infrared light in a layout matched to target distance, comfort, and buyer-facing performance copy.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-32a4bb57 elementor-widget elementor-widget-template\" data-id=\"32a4bb57\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"template.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-template\">\n\t\t\t\t\t<div data-elementor-type=\"container\" data-elementor-id=\"6721\" class=\"elementor elementor-6721\" data-elementor-post-type=\"elementor_library\">\n\t\t\t\t<div class=\"elementor-element elementor-element-454a627b e-con-full e-flex e-con e-child\" data-id=\"454a627b\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;gradient&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4541c4de elementor-widget elementor-widget-heading\" data-id=\"4541c4de\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">LED Matrix Layout<\/p>\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-20895337 e-grid e-con-full led-layouy-grid e-con e-child\" data-id=\"20895337\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-25436a36 e-con-full led-layout e-flex e-con e-child\" data-id=\"25436a36\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-5bbf841e e-con-full led-layout e-flex e-con e-child\" data-id=\"5bbf841e\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-51e7e76a e-con-full led-layout e-flex e-con e-child\" data-id=\"51e7e76a\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-7c0c416f e-con-full led-layout e-flex e-con e-child\" data-id=\"7c0c416f\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-341a4be6 e-con-full led-layout e-flex e-con e-child\" data-id=\"341a4be6\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-a8b5ae8 e-con-full led-layout e-flex e-con e-child\" data-id=\"a8b5ae8\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-6fa4f954 e-con-full led-layout e-flex e-con e-child\" data-id=\"6fa4f954\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-3af05bec e-con-full led-layout e-flex e-con e-child\" data-id=\"3af05bec\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-4f83b197 e-con-full led-layout e-flex e-con e-child\" data-id=\"4f83b197\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-25d95887 e-con-full led-layout e-flex e-con e-child\" data-id=\"25d95887\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-73536f86 e-con-full led-layout e-flex e-con e-child\" data-id=\"73536f86\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-7632b0cd e-con-full led-layout e-flex e-con e-child\" data-id=\"7632b0cd\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-d14d789 e-con-full led-layout e-flex e-con e-child\" data-id=\"d14d789\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-5013af12 e-con-full led-layout e-flex e-con e-child\" data-id=\"5013af12\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-6286fc3c e-con-full led-layout e-flex e-con e-child\" data-id=\"6286fc3c\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-16f312b2 e-con-full led-layout e-flex e-con e-child\" data-id=\"16f312b2\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-4c028423 e-con-full led-layout e-flex e-con e-child\" data-id=\"4c028423\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-6994e606 e-con-full led-layout e-flex e-con e-child\" data-id=\"6994e606\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-59251355 e-con-full led-layout e-flex e-con e-child\" data-id=\"59251355\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-3f806d1c e-con-full led-layout e-flex e-con e-child\" data-id=\"3f806d1c\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-56a2509 e-con-full led-layout e-flex e-con e-child\" data-id=\"56a2509\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-614db215 e-con-full led-layout e-flex e-con e-child\" data-id=\"614db215\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-1e30d891 e-con-full led-layout e-flex e-con e-child\" data-id=\"1e30d891\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-54bf9237 e-con-full led-layout e-flex e-con e-child\" data-id=\"54bf9237\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-6267e082 e-con-full led-layout e-flex e-con e-child\" data-id=\"6267e082\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-16ad650 e-con-full led-layout e-flex e-con e-child\" data-id=\"16ad650\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-503e0866 e-con-full led-layout e-flex e-con e-child\" data-id=\"503e0866\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-5cdffe54 e-con-full led-layout e-flex e-con e-child\" data-id=\"5cdffe54\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-7891518a e-con-full source e-flex e-con e-child\" data-id=\"7891518a\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-5a913654 e-con-full e-flex e-con e-child\" data-id=\"5a913654\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-77011496 elementor-widget elementor-widget-heading\" data-id=\"77011496\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Efficient Cooling System<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7cf125df elementor-widget elementor-widget-text-editor\" data-id=\"7cf125df\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Heat management depends on rear ventilation and solid frame spacing. Keep vents or fabric edges clear, avoid covering the product, and let it cool before storage.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-5147954 elementor-widget elementor-widget-template\" data-id=\"5147954\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"template.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-template\">\n\t\t\t\t\t<div data-elementor-type=\"container\" data-elementor-id=\"6717\" class=\"elementor elementor-6717\" data-elementor-post-type=\"elementor_library\">\n\t\t\t\t<div class=\"elementor-element elementor-element-28e2d728 e-con-full e-flex e-con e-child\" data-id=\"28e2d728\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2b98cda7 elementor-widget elementor-widget-heading\" data-id=\"2b98cda7\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">Heat Sink Structure<\/p>\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-549e563f e-con-full skin e-flex e-con e-child\" data-id=\"549e563f\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-52c0ec62 e-con-full skin-item e-flex e-con e-child\" data-id=\"52c0ec62\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;gradient&quot;}\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-507aded6 e-con-full skin-item e-flex e-con e-child\" data-id=\"507aded6\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;gradient&quot;}\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-dbb33be e-con-full skin-item e-flex e-con e-child\" data-id=\"dbb33be\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;gradient&quot;}\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-278905bf e-con-full skin-item e-flex e-con e-child\" data-id=\"278905bf\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;gradient&quot;}\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-72511671 e-con-full skin-item e-flex e-con e-child\" data-id=\"72511671\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;gradient&quot;}\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-74e4cac8 e-con-full skin-item e-flex e-con e-child\" data-id=\"74e4cac8\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;gradient&quot;}\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-325afe28 e-con-full skin-item e-flex e-con e-child\" data-id=\"325afe28\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;gradient&quot;}\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-4af797d0 e-con-full skin-item e-flex e-con e-child\" data-id=\"4af797d0\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;gradient&quot;}\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-69f83686 e-con-full skin-item e-flex e-con e-child\" data-id=\"69f83686\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;gradient&quot;}\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-44bb95bf e-con-full skin-item e-flex e-con e-child\" data-id=\"44bb95bf\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;gradient&quot;}\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-1ac250e2 e-con-full skin-item e-flex e-con e-child\" data-id=\"1ac250e2\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;gradient&quot;}\">\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-54cd74da e-con-full e-flex e-con e-child\" data-id=\"54cd74da\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-20894fdd e-con-full e-flex e-con e-child\" data-id=\"20894fdd\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-203a55a3 gradient-color elementor-widget elementor-widget-heading\" data-id=\"203a55a3\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Full-Body Red Light Therapy Panels for Recovery Instructions<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-355c25e7 elementor-widget elementor-widget-text-editor\" data-id=\"355c25e7\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Arrange the full-body panel with enough standing or reclining space, confirm stable mounting, select the routine, and monitor comfort throughout use.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-2021c51 e-con-full e-flex e-con e-child\" data-id=\"2021c51\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-664b51a e-con-full usage-container e-flex e-con e-child\" data-id=\"664b51a\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;gradient&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-7d700b15 e-con-full e-flex e-con e-child\" data-id=\"7d700b15\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4bf15117 elementor-widget elementor-widget-heading\" data-id=\"4bf15117\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Usage Guidelines<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3f4648a4 elementor-widget elementor-widget-text-editor\" data-id=\"3f4648a4\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Keep the body centered in the light field, leave clearance for airflow, follow timer guidance, and avoid moving the stand during operation.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-404194f0 e-con-full e-grid e-con e-child\" data-id=\"404194f0\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4e2bf7bd icon-item elementor-view-default elementor-position-block-start elementor-mobile-position-block-start elementor-widget elementor-widget-icon-box\" data-id=\"4e2bf7bd\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"elementor-icon-box-icon\">\n\t\t\t\t<span  class=\"elementor-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"38\" height=\"38\" viewBox=\"0 0 38 38\" fill=\"none\"><mask id=\"path-1-outside-1_3596_9189\" maskUnits=\"userSpaceOnUse\" x=\"-0.400391\" y=\"-0.400391\" width=\"38\" height=\"38\" fill=\"black\"><rect fill=\"white\" x=\"-0.400391\" y=\"-0.400391\" width=\"38\" height=\"38\"><\/rect><path d=\"M36.0134 22.6593H31.2114L35.4036 18.4673C35.7346 18.1364 35.9146 17.7009 35.9146 17.2364C35.9146 16.7719 35.7346 16.3365 35.4036 16.0055L33.7604 14.3624C33.4294 14.0314 32.9939 13.8514 32.5294 13.8514C32.0649 13.8514 31.6294 14.0314 31.2984 14.3624L27.6461 18.0144H5.81959V9.22405C6.81831 8.96277 7.56154 8.06282 7.56154 6.9829C7.56154 6.58808 7.45122 6.21649 7.27702 5.89135L9.94802 3.42375C10.0409 3.8418 10.2442 4.23661 10.5635 4.55596C10.7028 4.6953 10.8596 4.81723 11.0338 4.91594C10.5635 6.53006 10.9932 8.26606 12.2067 9.47946C12.3228 9.59558 12.468 9.64784 12.619 9.64784C12.77 9.64784 12.9151 9.58978 13.0312 9.47946L18.7798 3.7313C19.0062 3.50486 19.0062 3.13906 18.7798 2.91265C17.903 2.03591 16.7359 1.55403 15.4933 1.55403C15.052 1.55403 14.6223 1.6179 14.2101 1.73983C14.1113 1.57145 13.9894 1.41469 13.8501 1.27534C12.9559 0.381214 11.5042 0.37538 10.5984 1.25211C10.5984 1.25211 10.5868 1.25211 10.5868 1.26373L6.49901 5.03762C6.139 4.80537 5.70932 4.66602 5.2448 4.66602C3.96157 4.66602 2.9222 5.70533 2.9222 6.98847C2.9222 8.0684 3.66543 8.96835 4.66415 9.22962V18.0665C3.88606 18.2406 3.30544 18.9316 3.30544 19.7618V22.0843C3.30544 22.2875 3.34609 22.4849 3.40996 22.6649H1.18026C0.860901 22.6649 0.599609 22.9262 0.599609 23.2455V27.8904C0.599609 28.2098 0.860901 28.471 1.18026 28.471H4.66417V31.3799C3.93836 31.9199 3.50287 32.7792 3.50287 33.6965C3.50287 35.299 4.80352 36.5996 6.40612 36.5996C8.00872 36.5996 9.30938 35.299 9.30938 33.6965C9.30938 32.7792 8.87388 31.9199 8.14807 31.3799V28.471H13.3737V30.7935C13.3737 31.1128 13.635 31.3741 13.9544 31.3741H23.2448C23.5642 31.3741 23.8255 31.1128 23.8255 30.7935V28.471H29.0511V31.3799C28.3253 31.9199 27.8898 32.7792 27.8898 33.6965C27.8898 35.299 29.1905 36.5996 30.7931 36.5996C32.3957 36.5996 33.6964 35.299 33.6964 33.6965C33.6964 32.7792 33.2609 31.9199 32.5351 31.3799V28.471H36.019C36.3383 28.471 36.5996 28.2098 36.5996 27.8904V23.2455C36.5996 22.9262 36.3383 22.6649 36.019 22.6649L36.0134 22.6593ZM16.8521 22.6593V19.1756H22.6587V22.6593H16.8521ZM9.88433 22.6593V19.1756H15.6908V22.6593H9.88433ZM23.82 19.1756H27.5245L29.2665 22.6593H23.8201L23.82 19.1756ZM32.1174 15.181C32.2277 15.0706 32.3729 15.0126 32.5297 15.0126C32.6865 15.0126 32.8316 15.0707 32.942 15.181L34.5852 16.8241C34.6955 16.9344 34.7536 17.0796 34.7536 17.2364C34.7536 17.3931 34.6955 17.5383 34.5852 17.6486L30.2362 21.9973L28.5929 18.7111L32.1233 15.1809L32.1174 15.181ZM17.514 3.36545L12.654 8.22513C11.9514 7.24391 11.8063 5.96656 12.294 4.83435C12.4682 4.42791 12.7179 4.05632 13.0314 3.7428C13.345 3.42929 13.7108 3.17962 14.123 2.99962C14.5469 2.81382 15.0114 2.72092 15.4934 2.72092C16.225 2.72092 16.9275 2.9474 17.514 3.36545ZM12.2069 1.75716C12.5031 1.75716 12.7992 1.86748 13.0256 2.09392C13.0605 2.12876 13.0895 2.16359 13.1244 2.20424C13.0953 2.22166 13.0721 2.23907 13.0431 2.25649C12.9327 2.32616 12.8282 2.39584 12.7295 2.47132C12.6889 2.50035 12.6424 2.53518 12.6018 2.56421C12.4624 2.67453 12.3347 2.78485 12.2069 2.91258C12.0792 3.04032 11.9689 3.16805 11.8585 3.3074C11.8237 3.34804 11.7947 3.38868 11.7656 3.42932C11.6901 3.53383 11.6147 3.63834 11.5508 3.74866C11.5334 3.77769 11.5101 3.80092 11.4985 3.82995C11.4579 3.80092 11.4231 3.76608 11.3882 3.73125C10.9353 3.27835 10.9353 2.541 11.3882 2.0881C11.6147 1.86166 11.9108 1.75135 12.2128 1.75135L12.2069 1.75716ZM4.07782 6.98249C4.07782 6.3438 4.60039 5.82127 5.23912 5.82127C5.87786 5.82127 6.40042 6.3438 6.40042 6.98249C6.40042 7.62118 5.87786 8.14372 5.23912 8.14372C4.60039 8.14372 4.07782 7.62118 4.07782 6.98249ZM4.46103 22.0784V19.756C4.46103 19.4366 4.72232 19.1754 5.04168 19.1754H8.72299V22.659H5.04168C4.72232 22.659 4.46103 22.3978 4.46103 22.0784ZM6.40042 35.4327C5.44236 35.4327 4.65847 34.6489 4.65847 33.6909C4.65847 33.0696 4.98944 32.4948 5.52947 32.1871C6.03464 31.8968 6.63852 31.8851 7.15529 32.1406C7.19594 32.158 7.23658 32.1696 7.27142 32.1871C7.80562 32.4948 8.14242 33.0754 8.14242 33.6909C8.14242 34.6489 7.35849 35.4327 6.40042 35.4327ZM6.98107 30.8458C6.94043 30.84 6.89398 30.84 6.85333 30.8342C6.77204 30.8225 6.68495 30.8167 6.60365 30.8109C6.53397 30.8109 6.4701 30.7877 6.40623 30.7877C6.34236 30.7877 6.27268 30.8051 6.20881 30.8109C6.12171 30.8109 6.04042 30.8225 5.95913 30.8342C5.91848 30.84 5.87203 30.8342 5.83138 30.8458V28.4653H6.99269V30.8458H6.98107ZM22.6588 30.2071H14.5297V28.4652H22.6588V30.2071ZM30.788 35.4324C29.8299 35.4324 29.046 34.6486 29.046 33.6906C29.046 33.0693 29.377 32.4945 29.917 32.1868C30.4222 31.8965 31.0261 31.8848 31.5428 32.1403C31.5835 32.1577 31.6241 32.1693 31.659 32.1868C32.1932 32.4945 32.5299 33.0751 32.5299 33.6906C32.5299 34.6486 31.746 35.4324 30.788 35.4324ZM31.3686 30.8455C31.328 30.8397 31.2815 30.8397 31.2409 30.8339C31.1596 30.8222 31.0725 30.8164 30.9912 30.8106C30.9215 30.8106 30.8576 30.7874 30.7938 30.7874C30.7299 30.7874 30.6602 30.8048 30.5963 30.8106C30.5092 30.8106 30.428 30.8222 30.3467 30.8339C30.306 30.8397 30.2596 30.8339 30.2189 30.8455V28.465H31.3802V30.8455H31.3686ZM35.4334 27.3037H1.75559V23.8201H35.4334V27.3037ZM15.6332 9.71704L16.0455 10.9479C16.1442 11.2499 15.9816 11.5808 15.6797 11.6853C15.6158 11.7085 15.5578 11.7144 15.4939 11.7144C15.25 11.7144 15.0236 11.5576 14.9423 11.3195L14.53 10.0886C14.4313 9.78672 14.5939 9.45578 14.8958 9.35125C15.2035 9.24674 15.5287 9.41512 15.6274 9.71704L15.6332 9.71704ZM19.3724 5.24047L20.6034 5.65271C20.9054 5.75141 21.0737 6.08235 20.9692 6.3901C20.888 6.63396 20.6615 6.78492 20.4176 6.78492C20.3595 6.78492 20.2957 6.7733 20.2318 6.75589L19.0008 6.34364C18.6989 6.24494 18.5305 5.91401 18.635 5.60625C18.7337 5.30434 19.0647 5.13597 19.3667 5.24047L19.3724 5.24047ZM18.7802 8.6661C19.0066 8.89254 19.0066 9.25835 18.7802 9.48476C18.664 9.60088 18.5189 9.65313 18.3679 9.65313C18.2169 9.65313 18.0718 9.59507 17.9556 9.48476L17.1369 8.6661C16.9105 8.43966 16.9105 8.07386 17.1369 7.84745C17.3634 7.62104 17.7292 7.62101 17.9556 7.84745L18.7743 8.6661H18.7802Z\"><\/path><\/mask><path d=\"M36.0134 22.6593H31.2114L35.4036 18.4673C35.7346 18.1364 35.9146 17.7009 35.9146 17.2364C35.9146 16.7719 35.7346 16.3365 35.4036 16.0055L33.7604 14.3624C33.4294 14.0314 32.9939 13.8514 32.5294 13.8514C32.0649 13.8514 31.6294 14.0314 31.2984 14.3624L27.6461 18.0144H5.81959V9.22405C6.81831 8.96277 7.56154 8.06282 7.56154 6.9829C7.56154 6.58808 7.45122 6.21649 7.27702 5.89135L9.94802 3.42375C10.0409 3.8418 10.2442 4.23661 10.5635 4.55596C10.7028 4.6953 10.8596 4.81723 11.0338 4.91594C10.5635 6.53006 10.9932 8.26606 12.2067 9.47946C12.3228 9.59558 12.468 9.64784 12.619 9.64784C12.77 9.64784 12.9151 9.58978 13.0312 9.47946L18.7798 3.7313C19.0062 3.50486 19.0062 3.13906 18.7798 2.91265C17.903 2.03591 16.7359 1.55403 15.4933 1.55403C15.052 1.55403 14.6223 1.6179 14.2101 1.73983C14.1113 1.57145 13.9894 1.41469 13.8501 1.27534C12.9559 0.381214 11.5042 0.37538 10.5984 1.25211C10.5984 1.25211 10.5868 1.25211 10.5868 1.26373L6.49901 5.03762C6.139 4.80537 5.70932 4.66602 5.2448 4.66602C3.96157 4.66602 2.9222 5.70533 2.9222 6.98847C2.9222 8.0684 3.66543 8.96835 4.66415 9.22962V18.0665C3.88606 18.2406 3.30544 18.9316 3.30544 19.7618V22.0843C3.30544 22.2875 3.34609 22.4849 3.40996 22.6649H1.18026C0.860901 22.6649 0.599609 22.9262 0.599609 23.2455V27.8904C0.599609 28.2098 0.860901 28.471 1.18026 28.471H4.66417V31.3799C3.93836 31.9199 3.50287 32.7792 3.50287 33.6965C3.50287 35.299 4.80352 36.5996 6.40612 36.5996C8.00872 36.5996 9.30938 35.299 9.30938 33.6965C9.30938 32.7792 8.87388 31.9199 8.14807 31.3799V28.471H13.3737V30.7935C13.3737 31.1128 13.635 31.3741 13.9544 31.3741H23.2448C23.5642 31.3741 23.8255 31.1128 23.8255 30.7935V28.471H29.0511V31.3799C28.3253 31.9199 27.8898 32.7792 27.8898 33.6965C27.8898 35.299 29.1905 36.5996 30.7931 36.5996C32.3957 36.5996 33.6964 35.299 33.6964 33.6965C33.6964 32.7792 33.2609 31.9199 32.5351 31.3799V28.471H36.019C36.3383 28.471 36.5996 28.2098 36.5996 27.8904V23.2455C36.5996 22.9262 36.3383 22.6649 36.019 22.6649L36.0134 22.6593ZM16.8521 22.6593V19.1756H22.6587V22.6593H16.8521ZM9.88433 22.6593V19.1756H15.6908V22.6593H9.88433ZM23.82 19.1756H27.5245L29.2665 22.6593H23.8201L23.82 19.1756ZM32.1174 15.181C32.2277 15.0706 32.3729 15.0126 32.5297 15.0126C32.6865 15.0126 32.8316 15.0707 32.942 15.181L34.5852 16.8241C34.6955 16.9344 34.7536 17.0796 34.7536 17.2364C34.7536 17.3931 34.6955 17.5383 34.5852 17.6486L30.2362 21.9973L28.5929 18.7111L32.1233 15.1809L32.1174 15.181ZM17.514 3.36545L12.654 8.22513C11.9514 7.24391 11.8063 5.96656 12.294 4.83435C12.4682 4.42791 12.7179 4.05632 13.0314 3.7428C13.345 3.42929 13.7108 3.17962 14.123 2.99962C14.5469 2.81382 15.0114 2.72092 15.4934 2.72092C16.225 2.72092 16.9275 2.9474 17.514 3.36545ZM12.2069 1.75716C12.5031 1.75716 12.7992 1.86748 13.0256 2.09392C13.0605 2.12876 13.0895 2.16359 13.1244 2.20424C13.0953 2.22166 13.0721 2.23907 13.0431 2.25649C12.9327 2.32616 12.8282 2.39584 12.7295 2.47132C12.6889 2.50035 12.6424 2.53518 12.6018 2.56421C12.4624 2.67453 12.3347 2.78485 12.2069 2.91258C12.0792 3.04032 11.9689 3.16805 11.8585 3.3074C11.8237 3.34804 11.7947 3.38868 11.7656 3.42932C11.6901 3.53383 11.6147 3.63834 11.5508 3.74866C11.5334 3.77769 11.5101 3.80092 11.4985 3.82995C11.4579 3.80092 11.4231 3.76608 11.3882 3.73125C10.9353 3.27835 10.9353 2.541 11.3882 2.0881C11.6147 1.86166 11.9108 1.75135 12.2128 1.75135L12.2069 1.75716ZM4.07782 6.98249C4.07782 6.3438 4.60039 5.82127 5.23912 5.82127C5.87786 5.82127 6.40042 6.3438 6.40042 6.98249C6.40042 7.62118 5.87786 8.14372 5.23912 8.14372C4.60039 8.14372 4.07782 7.62118 4.07782 6.98249ZM4.46103 22.0784V19.756C4.46103 19.4366 4.72232 19.1754 5.04168 19.1754H8.72299V22.659H5.04168C4.72232 22.659 4.46103 22.3978 4.46103 22.0784ZM6.40042 35.4327C5.44236 35.4327 4.65847 34.6489 4.65847 33.6909C4.65847 33.0696 4.98944 32.4948 5.52947 32.1871C6.03464 31.8968 6.63852 31.8851 7.15529 32.1406C7.19594 32.158 7.23658 32.1696 7.27142 32.1871C7.80562 32.4948 8.14242 33.0754 8.14242 33.6909C8.14242 34.6489 7.35849 35.4327 6.40042 35.4327ZM6.98107 30.8458C6.94043 30.84 6.89398 30.84 6.85333 30.8342C6.77204 30.8225 6.68495 30.8167 6.60365 30.8109C6.53397 30.8109 6.4701 30.7877 6.40623 30.7877C6.34236 30.7877 6.27268 30.8051 6.20881 30.8109C6.12171 30.8109 6.04042 30.8225 5.95913 30.8342C5.91848 30.84 5.87203 30.8342 5.83138 30.8458V28.4653H6.99269V30.8458H6.98107ZM22.6588 30.2071H14.5297V28.4652H22.6588V30.2071ZM30.788 35.4324C29.8299 35.4324 29.046 34.6486 29.046 33.6906C29.046 33.0693 29.377 32.4945 29.917 32.1868C30.4222 31.8965 31.0261 31.8848 31.5428 32.1403C31.5835 32.1577 31.6241 32.1693 31.659 32.1868C32.1932 32.4945 32.5299 33.0751 32.5299 33.6906C32.5299 34.6486 31.746 35.4324 30.788 35.4324ZM31.3686 30.8455C31.328 30.8397 31.2815 30.8397 31.2409 30.8339C31.1596 30.8222 31.0725 30.8164 30.9912 30.8106C30.9215 30.8106 30.8576 30.7874 30.7938 30.7874C30.7299 30.7874 30.6602 30.8048 30.5963 30.8106C30.5092 30.8106 30.428 30.8222 30.3467 30.8339C30.306 30.8397 30.2596 30.8339 30.2189 30.8455V28.465H31.3802V30.8455H31.3686ZM35.4334 27.3037H1.75559V23.8201H35.4334V27.3037ZM15.6332 9.71704L16.0455 10.9479C16.1442 11.2499 15.9816 11.5808 15.6797 11.6853C15.6158 11.7085 15.5578 11.7144 15.4939 11.7144C15.25 11.7144 15.0236 11.5576 14.9423 11.3195L14.53 10.0886C14.4313 9.78672 14.5939 9.45578 14.8958 9.35125C15.2035 9.24674 15.5287 9.41512 15.6274 9.71704L15.6332 9.71704ZM19.3724 5.24047L20.6034 5.65271C20.9054 5.75141 21.0737 6.08235 20.9692 6.3901C20.888 6.63396 20.6615 6.78492 20.4176 6.78492C20.3595 6.78492 20.2957 6.7733 20.2318 6.75589L19.0008 6.34364C18.6989 6.24494 18.5305 5.91401 18.635 5.60625C18.7337 5.30434 19.0647 5.13597 19.3667 5.24047L19.3724 5.24047ZM18.7802 8.6661C19.0066 8.89254 19.0066 9.25835 18.7802 9.48476C18.664 9.60088 18.5189 9.65313 18.3679 9.65313C18.2169 9.65313 18.0718 9.59507 17.9556 9.48476L17.1369 8.6661C16.9105 8.43966 16.9105 8.07386 17.1369 7.84745C17.3634 7.62104 17.7292 7.62101 17.9556 7.84745L18.7743 8.6661H18.7802Z\" fill=\"#E95A23\"><\/path><path d=\"M36.0134 22.6593H31.2114L35.4036 18.4673C35.7346 18.1364 35.9146 17.7009 35.9146 17.2364C35.9146 16.7719 35.7346 16.3365 35.4036 16.0055L33.7604 14.3624C33.4294 14.0314 32.9939 13.8514 32.5294 13.8514C32.0649 13.8514 31.6294 14.0314 31.2984 14.3624L27.6461 18.0144H5.81959V9.22405C6.81831 8.96277 7.56154 8.06282 7.56154 6.9829C7.56154 6.58808 7.45122 6.21649 7.27702 5.89135L9.94802 3.42375C10.0409 3.8418 10.2442 4.23661 10.5635 4.55596C10.7028 4.6953 10.8596 4.81723 11.0338 4.91594C10.5635 6.53006 10.9932 8.26606 12.2067 9.47946C12.3228 9.59558 12.468 9.64784 12.619 9.64784C12.77 9.64784 12.9151 9.58978 13.0312 9.47946L18.7798 3.7313C19.0062 3.50486 19.0062 3.13906 18.7798 2.91265C17.903 2.03591 16.7359 1.55403 15.4933 1.55403C15.052 1.55403 14.6223 1.6179 14.2101 1.73983C14.1113 1.57145 13.9894 1.41469 13.8501 1.27534C12.9559 0.381214 11.5042 0.37538 10.5984 1.25211C10.5984 1.25211 10.5868 1.25211 10.5868 1.26373L6.49901 5.03762C6.139 4.80537 5.70932 4.66602 5.2448 4.66602C3.96157 4.66602 2.9222 5.70533 2.9222 6.98847C2.9222 8.0684 3.66543 8.96835 4.66415 9.22962V18.0665C3.88606 18.2406 3.30544 18.9316 3.30544 19.7618V22.0843C3.30544 22.2875 3.34609 22.4849 3.40996 22.6649H1.18026C0.860901 22.6649 0.599609 22.9262 0.599609 23.2455V27.8904C0.599609 28.2098 0.860901 28.471 1.18026 28.471H4.66417V31.3799C3.93836 31.9199 3.50287 32.7792 3.50287 33.6965C3.50287 35.299 4.80352 36.5996 6.40612 36.5996C8.00872 36.5996 9.30938 35.299 9.30938 33.6965C9.30938 32.7792 8.87388 31.9199 8.14807 31.3799V28.471H13.3737V30.7935C13.3737 31.1128 13.635 31.3741 13.9544 31.3741H23.2448C23.5642 31.3741 23.8255 31.1128 23.8255 30.7935V28.471H29.0511V31.3799C28.3253 31.9199 27.8898 32.7792 27.8898 33.6965C27.8898 35.299 29.1905 36.5996 30.7931 36.5996C32.3957 36.5996 33.6964 35.299 33.6964 33.6965C33.6964 32.7792 33.2609 31.9199 32.5351 31.3799V28.471H36.019C36.3383 28.471 36.5996 28.2098 36.5996 27.8904V23.2455C36.5996 22.9262 36.3383 22.6649 36.019 22.6649L36.0134 22.6593ZM16.8521 22.6593V19.1756H22.6587V22.6593H16.8521ZM9.88433 22.6593V19.1756H15.6908V22.6593H9.88433ZM23.82 19.1756H27.5245L29.2665 22.6593H23.8201L23.82 19.1756ZM32.1174 15.181C32.2277 15.0706 32.3729 15.0126 32.5297 15.0126C32.6865 15.0126 32.8316 15.0707 32.942 15.181L34.5852 16.8241C34.6955 16.9344 34.7536 17.0796 34.7536 17.2364C34.7536 17.3931 34.6955 17.5383 34.5852 17.6486L30.2362 21.9973L28.5929 18.7111L32.1233 15.1809L32.1174 15.181ZM17.514 3.36545L12.654 8.22513C11.9514 7.24391 11.8063 5.96656 12.294 4.83435C12.4682 4.42791 12.7179 4.05632 13.0314 3.7428C13.345 3.42929 13.7108 3.17962 14.123 2.99962C14.5469 2.81382 15.0114 2.72092 15.4934 2.72092C16.225 2.72092 16.9275 2.9474 17.514 3.36545ZM12.2069 1.75716C12.5031 1.75716 12.7992 1.86748 13.0256 2.09392C13.0605 2.12876 13.0895 2.16359 13.1244 2.20424C13.0953 2.22166 13.0721 2.23907 13.0431 2.25649C12.9327 2.32616 12.8282 2.39584 12.7295 2.47132C12.6889 2.50035 12.6424 2.53518 12.6018 2.56421C12.4624 2.67453 12.3347 2.78485 12.2069 2.91258C12.0792 3.04032 11.9689 3.16805 11.8585 3.3074C11.8237 3.34804 11.7947 3.38868 11.7656 3.42932C11.6901 3.53383 11.6147 3.63834 11.5508 3.74866C11.5334 3.77769 11.5101 3.80092 11.4985 3.82995C11.4579 3.80092 11.4231 3.76608 11.3882 3.73125C10.9353 3.27835 10.9353 2.541 11.3882 2.0881C11.6147 1.86166 11.9108 1.75135 12.2128 1.75135L12.2069 1.75716ZM4.07782 6.98249C4.07782 6.3438 4.60039 5.82127 5.23912 5.82127C5.87786 5.82127 6.40042 6.3438 6.40042 6.98249C6.40042 7.62118 5.87786 8.14372 5.23912 8.14372C4.60039 8.14372 4.07782 7.62118 4.07782 6.98249ZM4.46103 22.0784V19.756C4.46103 19.4366 4.72232 19.1754 5.04168 19.1754H8.72299V22.659H5.04168C4.72232 22.659 4.46103 22.3978 4.46103 22.0784ZM6.40042 35.4327C5.44236 35.4327 4.65847 34.6489 4.65847 33.6909C4.65847 33.0696 4.98944 32.4948 5.52947 32.1871C6.03464 31.8968 6.63852 31.8851 7.15529 32.1406C7.19594 32.158 7.23658 32.1696 7.27142 32.1871C7.80562 32.4948 8.14242 33.0754 8.14242 33.6909C8.14242 34.6489 7.35849 35.4327 6.40042 35.4327ZM6.98107 30.8458C6.94043 30.84 6.89398 30.84 6.85333 30.8342C6.77204 30.8225 6.68495 30.8167 6.60365 30.8109C6.53397 30.8109 6.4701 30.7877 6.40623 30.7877C6.34236 30.7877 6.27268 30.8051 6.20881 30.8109C6.12171 30.8109 6.04042 30.8225 5.95913 30.8342C5.91848 30.84 5.87203 30.8342 5.83138 30.8458V28.4653H6.99269V30.8458H6.98107ZM22.6588 30.2071H14.5297V28.4652H22.6588V30.2071ZM30.788 35.4324C29.8299 35.4324 29.046 34.6486 29.046 33.6906C29.046 33.0693 29.377 32.4945 29.917 32.1868C30.4222 31.8965 31.0261 31.8848 31.5428 32.1403C31.5835 32.1577 31.6241 32.1693 31.659 32.1868C32.1932 32.4945 32.5299 33.0751 32.5299 33.6906C32.5299 34.6486 31.746 35.4324 30.788 35.4324ZM31.3686 30.8455C31.328 30.8397 31.2815 30.8397 31.2409 30.8339C31.1596 30.8222 31.0725 30.8164 30.9912 30.8106C30.9215 30.8106 30.8576 30.7874 30.7938 30.7874C30.7299 30.7874 30.6602 30.8048 30.5963 30.8106C30.5092 30.8106 30.428 30.8222 30.3467 30.8339C30.306 30.8397 30.2596 30.8339 30.2189 30.8455V28.465H31.3802V30.8455H31.3686ZM35.4334 27.3037H1.75559V23.8201H35.4334V27.3037ZM15.6332 9.71704L16.0455 10.9479C16.1442 11.2499 15.9816 11.5808 15.6797 11.6853C15.6158 11.7085 15.5578 11.7144 15.4939 11.7144C15.25 11.7144 15.0236 11.5576 14.9423 11.3195L14.53 10.0886C14.4313 9.78672 14.5939 9.45578 14.8958 9.35125C15.2035 9.24674 15.5287 9.41512 15.6274 9.71704L15.6332 9.71704ZM19.3724 5.24047L20.6034 5.65271C20.9054 5.75141 21.0737 6.08235 20.9692 6.3901C20.888 6.63396 20.6615 6.78492 20.4176 6.78492C20.3595 6.78492 20.2957 6.7733 20.2318 6.75589L19.0008 6.34364C18.6989 6.24494 18.5305 5.91401 18.635 5.60625C18.7337 5.30434 19.0647 5.13597 19.3667 5.24047L19.3724 5.24047ZM18.7802 8.6661C19.0066 8.89254 19.0066 9.25835 18.7802 9.48476C18.664 9.60088 18.5189 9.65313 18.3679 9.65313C18.2169 9.65313 18.0718 9.59507 17.9556 9.48476L17.1369 8.6661C16.9105 8.43966 16.9105 8.07386 17.1369 7.84745C17.3634 7.62104 17.7292 7.62101 17.9556 7.84745L18.7743 8.6661H18.7802Z\" stroke=\"#E95A23\" stroke-width=\"1.2\" mask=\"url(#path-1-outside-1_3596_9189)\"><\/path><\/svg>\t\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<h4 class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<span  >\n\t\t\t\t\t\t\tMount Check\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/h4>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<p class=\"elementor-icon-box-description\">\n\t\t\t\t\t\tConfirm the stand, wall mount, or support is locked before a full-body recovery routine, especially in shared treatment rooms.\t\t\t\t\t<\/p>\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-5aba027f icon-item elementor-view-default elementor-position-block-start elementor-mobile-position-block-start elementor-widget elementor-widget-icon-box\" data-id=\"5aba027f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"elementor-icon-box-icon\">\n\t\t\t\t<span  class=\"elementor-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"26\" height=\"36\" viewBox=\"0 0 26 36\" fill=\"none\"><path d=\"M11.375 26.0805C4.96225 25.2753 0 19.7666 0 13.0909C0 5.861 5.82029 0 13 0C20.1797 0 26 5.861 26 13.0909C26 19.7666 21.0377 25.2753 14.625 26.0805V31.0909H11.375V26.0805ZM13 22.9091C18.3848 22.9091 22.75 18.5133 22.75 13.0909C22.75 7.66847 18.3848 3.27273 13 3.27273C7.61522 3.27273 3.25 7.66847 3.25 13.0909C3.25 18.5133 7.61522 22.9091 13 22.9091ZM1.625 32.7273H24.375V36H1.625V32.7273Z\" fill=\"#E95A23\"><\/path><\/svg>\t\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<h4 class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<span  >\n\t\t\t\t\t\t\tBody Alignment\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/h4>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<p class=\"elementor-icon-box-description\">\n\t\t\t\t\t\tCenter the torso, legs, or back in front of the light field so exposure stays even and the user can breathe and move comfortably.\t\t\t\t\t<\/p>\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4638c9d2 icon-item elementor-view-default elementor-position-block-start elementor-mobile-position-block-start elementor-widget elementor-widget-icon-box\" data-id=\"4638c9d2\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"elementor-icon-box-icon\">\n\t\t\t\t<span  class=\"elementor-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"36\" height=\"36\" viewBox=\"0 0 36 36\" fill=\"none\"><path d=\"M18 36C8.05887 36 0 27.941 0 18C0 8.05887 8.05887 0 18 0C27.941 0 36 8.05887 36 18C36 27.941 27.941 36 18 36ZM18 32.4C25.9529 32.4 32.4 25.9529 32.4 18C32.4 10.0471 25.9529 3.6 18 3.6C10.0471 3.6 3.6 10.0471 3.6 18C3.6 25.9529 10.0471 32.4 18 32.4ZM19.8 18H27V21.6H16.2V9H19.8V18Z\" fill=\"#E95A23\"><\/path><\/svg>\t\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<h4 class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<span  >\n\t\t\t\t\t\t\tSession Control\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/h4>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<p class=\"elementor-icon-box-description\">\n\t\t\t\t\t\tSelect a preset or manual timer that matches the planned recovery service, then supervise comfort without changing position often.\t\t\t\t\t<\/p>\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1edbe4ac icon-item elementor-view-default elementor-position-block-start elementor-mobile-position-block-start elementor-widget elementor-widget-icon-box\" data-id=\"1edbe4ac\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"elementor-icon-box-icon\">\n\t\t\t\t<span  class=\"elementor-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"36\" height=\"36\" viewBox=\"0 0 36 36\" fill=\"none\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.9766 0C19.0812 0 19.9766 0.895429 19.9766 2V17.1729L28.4874 25.6836C29.4342 23.9392 29.9757 21.9345 29.9757 19.7998C29.9756 16.5139 28.6932 13.44 26.4512 11.166C26.262 10.9801 26.1116 10.7583 26.0089 10.5137C25.9062 10.2691 25.8529 10.0065 25.8526 9.74121C25.8524 9.47589 25.9056 9.21258 26.0079 8.96777C26.1102 8.72315 26.2605 8.50159 26.4493 8.31543C26.6382 8.12918 26.8623 7.98162 27.1085 7.88281C27.3545 7.78413 27.6178 7.73531 27.8829 7.73926C28.1482 7.74324 28.4103 7.80009 28.6534 7.90625C28.8965 8.01242 29.1157 8.16654 29.2989 8.3584C32.303 11.4081 33.9839 15.519 33.9757 19.7998C33.9757 23.0448 33.0315 26.068 31.4073 28.6035L35.3897 32.5859C35.754 32.9631 35.9558 33.4688 35.9512 33.9932C35.9466 34.5175 35.7361 35.0189 35.3653 35.3896C34.9946 35.7604 34.4931 35.971 33.9688 35.9756C33.4444 35.9801 32.9388 35.7784 32.5616 35.4141L28.8389 31.6914C25.9868 34.3642 22.1719 35.9999 17.9757 36C9.1336 36 1.97566 28.7399 1.97566 19.7998C1.97571 15.7315 3.46422 11.8957 6.09578 8.94824L0.561599 3.41406C0.19728 3.03686 -0.00448133 2.53123 7.55432e-05 2.00684C0.00468726 1.48252 0.215244 0.98112 0.586013 0.610352C0.956782 0.239583 1.45818 0.0290257 1.9825 0.0244141C2.50689 0.0198572 3.01252 0.221619 3.38972 0.585938L15.9766 13.1729V2C15.9766 0.89547 16.8721 6.60975e-05 17.9766 0ZM8.93269 11.7852C7.02375 14.0096 5.96749 16.852 5.97566 19.8018C5.97566 26.5438 11.3556 32 17.9757 32C21.0634 31.9999 23.8808 30.8124 26.0089 28.8613L18.1397 20.9922C18.0859 20.9965 18.0315 21 17.9766 21C16.8721 20.9999 15.9766 20.1045 15.9766 19V18.8291L8.93269 11.7852Z\" fill=\"#E95A23\"><\/path><\/svg>\t\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<h4 class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<span  >\n\t\t\t\t\t\t\tRoom Turnover\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/h4>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<p class=\"elementor-icon-box-description\">\n\t\t\t\t\t\tAfter use, power down the system, clean common touch points, move the panel carefully, and prepare the space for the next session.\t\t\t\t\t<\/p>\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-73255c45 e-con-full steps-gird e-flex e-con e-child\" data-id=\"73255c45\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-57bb1746 e-con-full e-flex e-con e-child\" data-id=\"57bb1746\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-111fe478 elementor-widget elementor-widget-heading\" data-id=\"111fe478\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Usage Steps<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-517b82b7 elementor-widget elementor-widget-text-editor\" data-id=\"517b82b7\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Full-body sessions should follow a room-based flow: check mounting, align the user, set timing, run the light cycle, supervise, clean, and reset.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-605d2584 e-con-full steps-container e-flex e-con e-child\" data-id=\"605d2584\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-2fa7604d e-con-full bar1-container e-flex e-con e-child\" data-id=\"2fa7604d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-4598eb73 e-con-full e-grid gird1 e-con e-child\" data-id=\"4598eb73\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-46f1caf6 e-con-full step step1 e-flex e-con e-child\" data-id=\"46f1caf6\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-352d06c2 elementor-widget elementor-widget-image\" data-id=\"352d06c2\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"100\" height=\"103\" src=\"https:\/\/youlumi.szlogic.cn\/wp-content\/uploads\/2026\/06\/1.webp\" class=\"attachment-full size-full wp-image-5705\" alt=\"steps\" srcset=\"https:\/\/youlumi.szlogic.cn\/wp-content\/uploads\/2026\/06\/1.webp 100w, https:\/\/youlumi.szlogic.cn\/wp-content\/uploads\/2026\/06\/1-12x12.webp 12w\" sizes=\"(max-width: 100px) 100vw, 100px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-9427128 steps-text elementor-widget elementor-widget-heading\" data-id=\"9427128\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">Lock support<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-615b5f1 e-con-full step step2 e-flex e-con e-child\" data-id=\"615b5f1\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-15c67abb elementor-widget elementor-widget-image\" data-id=\"15c67abb\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"100\" height=\"103\" src=\"https:\/\/youlumi.szlogic.cn\/wp-content\/uploads\/2026\/06\/2.webp\" class=\"attachment-full size-full wp-image-5725\" alt=\"steps\" srcset=\"https:\/\/youlumi.szlogic.cn\/wp-content\/uploads\/2026\/06\/2.webp 100w, https:\/\/youlumi.szlogic.cn\/wp-content\/uploads\/2026\/06\/2-12x12.webp 12w\" sizes=\"(max-width: 100px) 100vw, 100px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-18b92ffd steps-text elementor-widget elementor-widget-heading\" data-id=\"18b92ffd\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">Clear space<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-3397e68d e-con-full step step3 e-flex e-con e-child\" data-id=\"3397e68d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7f2f7dc2 elementor-widget elementor-widget-image\" data-id=\"7f2f7dc2\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"100\" height=\"103\" src=\"https:\/\/youlumi.szlogic.cn\/wp-content\/uploads\/2026\/06\/3.webp\" class=\"attachment-full size-full wp-image-5726\" alt=\"steps\" srcset=\"https:\/\/youlumi.szlogic.cn\/wp-content\/uploads\/2026\/06\/3.webp 100w, https:\/\/youlumi.szlogic.cn\/wp-content\/uploads\/2026\/06\/3-12x12.webp 12w\" sizes=\"(max-width: 100px) 100vw, 100px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2912ba78 steps-text elementor-widget elementor-widget-heading\" data-id=\"2912ba78\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">Align body<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-6890b51a e-con-full bar2-container e-flex e-con e-child\" data-id=\"6890b51a\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-5df51b8a e-con-full e-grid gird2 e-con e-child\" data-id=\"5df51b8a\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-3f31a6aa e-con-full step step6 e-flex e-con e-child\" data-id=\"3f31a6aa\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a41c6e6 elementor-widget elementor-widget-image\" data-id=\"a41c6e6\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"100\" height=\"103\" src=\"https:\/\/youlumi.szlogic.cn\/wp-content\/uploads\/2026\/06\/6.webp\" class=\"attachment-full size-full wp-image-5729\" alt=\"steps\" srcset=\"https:\/\/youlumi.szlogic.cn\/wp-content\/uploads\/2026\/06\/6.webp 100w, https:\/\/youlumi.szlogic.cn\/wp-content\/uploads\/2026\/06\/6-12x12.webp 12w\" sizes=\"(max-width: 100px) 100vw, 100px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-708d9bf2 steps-text elementor-widget elementor-widget-heading\" data-id=\"708d9bf2\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">Observe user<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-4200c06a e-con-full step step5 e-flex e-con e-child\" data-id=\"4200c06a\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6d87342a elementor-widget elementor-widget-image\" data-id=\"6d87342a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"100\" height=\"103\" src=\"https:\/\/youlumi.szlogic.cn\/wp-content\/uploads\/2026\/06\/5.webp\" class=\"attachment-full size-full wp-image-5728\" alt=\"steps\" srcset=\"https:\/\/youlumi.szlogic.cn\/wp-content\/uploads\/2026\/06\/5.webp 100w, https:\/\/youlumi.szlogic.cn\/wp-content\/uploads\/2026\/06\/5-12x12.webp 12w\" sizes=\"(max-width: 100px) 100vw, 100px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-37dc2c0 steps-text elementor-widget elementor-widget-heading\" data-id=\"37dc2c0\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">Begin exposure<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-3f0c616 e-con-full step step4 e-flex e-con e-child\" data-id=\"3f0c616\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-21f3b644 elementor-widget elementor-widget-image\" data-id=\"21f3b644\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"100\" height=\"103\" src=\"https:\/\/youlumi.szlogic.cn\/wp-content\/uploads\/2026\/06\/4.webp\" class=\"attachment-full size-full wp-image-5727\" alt=\"steps\" srcset=\"https:\/\/youlumi.szlogic.cn\/wp-content\/uploads\/2026\/06\/4.webp 100w, https:\/\/youlumi.szlogic.cn\/wp-content\/uploads\/2026\/06\/4-12x12.webp 12w\" sizes=\"(max-width: 100px) 100vw, 100px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1754d03 steps-text elementor-widget elementor-widget-heading\" data-id=\"1754d03\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">Choose routine<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-4b6d2441 e-con-full e-grid gird3 e-con e-child\" data-id=\"4b6d2441\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-7e21461 e-con-full step step7 e-flex e-con e-child\" data-id=\"7e21461\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-61dbd126 elementor-widget elementor-widget-image\" data-id=\"61dbd126\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"100\" height=\"103\" src=\"https:\/\/youlumi.szlogic.cn\/wp-content\/uploads\/2026\/06\/7.webp\" class=\"attachment-full size-full wp-image-5730\" alt=\"steps\" srcset=\"https:\/\/youlumi.szlogic.cn\/wp-content\/uploads\/2026\/06\/7.webp 100w, https:\/\/youlumi.szlogic.cn\/wp-content\/uploads\/2026\/06\/7-12x12.webp 12w\" sizes=\"(max-width: 100px) 100vw, 100px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-578f0286 steps-text elementor-widget elementor-widget-heading\" data-id=\"578f0286\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">End routine<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-715c2baf e-con-full step step8 e-flex e-con e-child\" data-id=\"715c2baf\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5ae04c4c elementor-widget elementor-widget-image\" data-id=\"5ae04c4c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"100\" height=\"103\" src=\"https:\/\/youlumi.szlogic.cn\/wp-content\/uploads\/2026\/06\/8.webp\" class=\"attachment-full size-full wp-image-5723\" alt=\"steps\" srcset=\"https:\/\/youlumi.szlogic.cn\/wp-content\/uploads\/2026\/06\/8.webp 100w, https:\/\/youlumi.szlogic.cn\/wp-content\/uploads\/2026\/06\/8-12x12.webp 12w\" sizes=\"(max-width: 100px) 100vw, 100px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-5ef553d3 steps-text elementor-widget elementor-widget-heading\" data-id=\"5ef553d3\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">Sanitize points<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-631a8d96 e-con-full step step9 e-flex e-con e-child\" data-id=\"631a8d96\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3d7be9c6 elementor-widget elementor-widget-image\" data-id=\"3d7be9c6\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"100\" height=\"103\" src=\"https:\/\/youlumi.szlogic.cn\/wp-content\/uploads\/2026\/06\/9.webp\" class=\"attachment-full size-full wp-image-5724\" alt=\"steps\" srcset=\"https:\/\/youlumi.szlogic.cn\/wp-content\/uploads\/2026\/06\/9.webp 100w, https:\/\/youlumi.szlogic.cn\/wp-content\/uploads\/2026\/06\/9-12x12.webp 12w\" sizes=\"(max-width: 100px) 100vw, 100px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6dcedbd5 steps-text elementor-widget elementor-widget-heading\" data-id=\"6dcedbd5\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">Reset room<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-54c8ad5d e-con-full applications-wrap e-flex e-con e-parent\" data-id=\"54c8ad5d\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-2a8d26c8 e-con-full e-flex e-con e-child\" data-id=\"2a8d26c8\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-124c1de3 gradient-color elementor-widget elementor-widget-heading\" data-id=\"124c1de3\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Full-Body Red Light Therapy Panels for Recovery Applications<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-618696fc elementor-widget elementor-widget-text-editor\" data-id=\"618696fc\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Use it in gyms and therapy rooms when buyers need large-area recovery for back, legs, and larger muscles with a clear, user-friendly routine.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-701e77b8 e-con-full applications-item applications-item1 applications-item-active e-flex elementor-invisible e-con e-child\" data-id=\"701e77b8\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeIn&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-16d8dd5e elementor-widget__width-initial elementor-widget-tablet__width-inherit item-img elementor-widget elementor-widget-image\" data-id=\"16d8dd5e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"1490\" height=\"941\" src=\"https:\/\/youlumi.szlogic.cn\/wp-content\/uploads\/2026\/07\/wellness-centers-2.webp\" class=\"attachment-full size-full wp-image-7210\" alt=\"wellness-centers\" srcset=\"https:\/\/youlumi.szlogic.cn\/wp-content\/uploads\/2026\/07\/wellness-centers-2.webp 1490w, https:\/\/youlumi.szlogic.cn\/wp-content\/uploads\/2026\/07\/wellness-centers-2-300x189.webp 300w, https:\/\/youlumi.szlogic.cn\/wp-content\/uploads\/2026\/07\/wellness-centers-2-1024x647.webp 1024w, https:\/\/youlumi.szlogic.cn\/wp-content\/uploads\/2026\/07\/wellness-centers-2-768x485.webp 768w, https:\/\/youlumi.szlogic.cn\/wp-content\/uploads\/2026\/07\/wellness-centers-2-18x12.webp 18w\" sizes=\"(max-width: 1490px) 100vw, 1490px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-62f6b721 e-con-full applications-item-text rtl-applications-item-text-1 e-flex e-con e-child\" data-id=\"62f6b721\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;position&quot;:&quot;absolute&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-1708c1e elementor-widget elementor-widget-heading\" data-id=\"1708c1e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Wellness Centers<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2c118837 elementor-widget elementor-widget-text-editor\" data-id=\"2c118837\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Wellness centers can apply it in recovery lounges and gym memberships. Staff can explain setup quickly, keep sessions calm, and repeat the same user flow across rooms.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-415fc9ea e-con-full applications-item applications-item2 e-flex elementor-invisible e-con e-child\" data-id=\"415fc9ea\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeIn&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3602e9ef elementor-widget__width-initial elementor-widget-tablet__width-inherit elementor-widget elementor-widget-image\" data-id=\"3602e9ef\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"1458\" height=\"821\" src=\"https:\/\/youlumi.szlogic.cn\/wp-content\/uploads\/2026\/07\/physiotherapy-clinics-3.webp\" class=\"attachment-full size-full wp-image-7209\" alt=\"physiotherapy-clinics\" srcset=\"https:\/\/youlumi.szlogic.cn\/wp-content\/uploads\/2026\/07\/physiotherapy-clinics-3.webp 1458w, https:\/\/youlumi.szlogic.cn\/wp-content\/uploads\/2026\/07\/physiotherapy-clinics-3-300x169.webp 300w, https:\/\/youlumi.szlogic.cn\/wp-content\/uploads\/2026\/07\/physiotherapy-clinics-3-1024x577.webp 1024w, https:\/\/youlumi.szlogic.cn\/wp-content\/uploads\/2026\/07\/physiotherapy-clinics-3-768x432.webp 768w, https:\/\/youlumi.szlogic.cn\/wp-content\/uploads\/2026\/07\/physiotherapy-clinics-3-18x10.webp 18w\" sizes=\"(max-width: 1458px) 100vw, 1458px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-3e19d565 e-con-full applications-item-text rtl-applications-item-text-2 e-flex e-con e-child\" data-id=\"3e19d565\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;position&quot;:&quot;absolute&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-1de10685 elementor-widget elementor-widget-heading\" data-id=\"1de10685\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Physiotherapy Clinics<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2059803c elementor-widget elementor-widget-text-editor\" data-id=\"2059803c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Physiotherapy clinics can use it for back, thigh, and shoulder programs. Placement, cleaning, and timing notes help staff standardize service routines.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-72254936 e-con-full change-btn elementor-hidden-tablet elementor-hidden-mobile e-flex e-con e-child\" data-id=\"72254936\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;position&quot;:&quot;absolute&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-8df7c15 change-prev btn disable-btn elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"8df7c15\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"37\" height=\"37\" viewBox=\"0 0 37 37\" fill=\"none\"><rect width=\"37\" height=\"37\" rx=\"18.5\" fill=\"#E95A23\"><\/rect><path d=\"M15.0839 19.2349L24.0047 19.2349L24.0047 17.7691L15.0839 17.7691L19.0153 13.8378L17.9788 12.8013L12.278 18.502L17.9788 24.2027L19.0153 23.1662L15.0839 19.2349Z\" fill=\"white\"><\/path><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-424e47cd change-next btn elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"424e47cd\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"37\" height=\"37\" viewBox=\"0 0 37 37\" fill=\"none\"><rect width=\"37\" height=\"37\" rx=\"18.5\" fill=\"#E95A23\"><\/rect><path d=\"M21.9161 19.2348L12.9953 19.2349L12.9953 17.769L21.9161 17.769L17.9847 13.8377L19.0212 12.8012L24.722 18.5019L19.0212 24.2027L17.9847 23.1662L21.9161 19.2348Z\" fill=\"white\"><\/path><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-6a6513c0 e-con-full e-flex e-con e-parent\" data-id=\"6a6513c0\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-2115f81c e-con-full e-flex e-con e-child\" data-id=\"2115f81c\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-25ce8a6e gradient-color elementor-widget elementor-widget-heading\" data-id=\"25ce8a6e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Full-Body Red Light Therapy Panels for Recovery Certifications<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-32dee8fe elementor-widget elementor-widget-text-editor\" data-id=\"32dee8fe\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Certification resources include FDA, CE and RoHS support, complemented by customized labels, instructions and packaging content for smoother product launches.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-25b8f42 elementor-widget elementor-widget-template\" data-id=\"25b8f42\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"template.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-template\">\n\t\t\t\t\t<div data-elementor-type=\"container\" data-elementor-id=\"7230\" class=\"elementor elementor-7230\" data-elementor-post-type=\"elementor_library\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7a8f0c8d e-con-full issue-content e-grid e-con e-child\" data-id=\"7a8f0c8d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-2ec53041 e-con-full issue-item e-flex e-con e-child\" data-id=\"2ec53041\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6f1b106c issur-img elementor-widget elementor-widget-image\" data-id=\"6f1b106c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"980\" height=\"1387\" src=\"https:\/\/youlumi.szlogic.cn\/wp-content\/uploads\/2026\/06\/fiscal-year-2025-medical-device-registration-and-listing-1.webp\" class=\"attachment-full size-full wp-image-6364\" alt=\"fiscal-year-2025-medical-device-registration-and-listing\" srcset=\"https:\/\/youlumi.szlogic.cn\/wp-content\/uploads\/2026\/06\/fiscal-year-2025-medical-device-registration-and-listing-1.webp 980w, https:\/\/youlumi.szlogic.cn\/wp-content\/uploads\/2026\/06\/fiscal-year-2025-medical-device-registration-and-listing-1-212x300.webp 212w, https:\/\/youlumi.szlogic.cn\/wp-content\/uploads\/2026\/06\/fiscal-year-2025-medical-device-registration-and-listing-1-724x1024.webp 724w, https:\/\/youlumi.szlogic.cn\/wp-content\/uploads\/2026\/06\/fiscal-year-2025-medical-device-registration-and-listing-1-768x1087.webp 768w, https:\/\/youlumi.szlogic.cn\/wp-content\/uploads\/2026\/06\/fiscal-year-2025-medical-device-registration-and-listing-1-8x12.webp 8w\" sizes=\"(max-width: 980px) 100vw, 980px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-64783ff2 elementor-widget-tablet__width-initial issue-name elementor-widget elementor-widget-heading\" data-id=\"64783ff2\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">FISCAL YEAR 2025\nMedical Device Registration and Listing<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-3adcbf9c e-con-full issue-item e-flex e-con e-child\" data-id=\"3adcbf9c\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-14e0011a issur-img elementor-widget elementor-widget-image\" data-id=\"14e0011a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"980\" height=\"1384\" src=\"https:\/\/youlumi.szlogic.cn\/wp-content\/uploads\/2026\/06\/fiscal-year-2025-medical-device-registration-and-listing-2.webp\" class=\"attachment-full size-full wp-image-6341\" alt=\"fiscal-year-2025-medical-device-registration-and-listing\" srcset=\"https:\/\/youlumi.szlogic.cn\/wp-content\/uploads\/2026\/06\/fiscal-year-2025-medical-device-registration-and-listing-2.webp 980w, https:\/\/youlumi.szlogic.cn\/wp-content\/uploads\/2026\/06\/fiscal-year-2025-medical-device-registration-and-listing-2-212x300.webp 212w, https:\/\/youlumi.szlogic.cn\/wp-content\/uploads\/2026\/06\/fiscal-year-2025-medical-device-registration-and-listing-2-725x1024.webp 725w, https:\/\/youlumi.szlogic.cn\/wp-content\/uploads\/2026\/06\/fiscal-year-2025-medical-device-registration-and-listing-2-768x1085.webp 768w, https:\/\/youlumi.szlogic.cn\/wp-content\/uploads\/2026\/06\/fiscal-year-2025-medical-device-registration-and-listing-2-8x12.webp 8w\" sizes=\"(max-width: 980px) 100vw, 980px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3c4d49f8 issue-name elementor-widget elementor-widget-heading\" data-id=\"3c4d49f8\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">FISCAL YEAR 2025\nMedical Device Registration and Listing<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-6ccebdc7 e-con-full issue-item e-flex e-con e-child\" data-id=\"6ccebdc7\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-328db50f issur-img elementor-widget elementor-widget-image\" data-id=\"328db50f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"980\" height=\"1384\" src=\"https:\/\/youlumi.szlogic.cn\/wp-content\/uploads\/2026\/06\/stc.webp\" class=\"attachment-full size-full wp-image-6339\" alt=\"stc\" srcset=\"https:\/\/youlumi.szlogic.cn\/wp-content\/uploads\/2026\/06\/stc.webp 980w, https:\/\/youlumi.szlogic.cn\/wp-content\/uploads\/2026\/06\/stc-212x300.webp 212w, https:\/\/youlumi.szlogic.cn\/wp-content\/uploads\/2026\/06\/stc-725x1024.webp 725w, https:\/\/youlumi.szlogic.cn\/wp-content\/uploads\/2026\/06\/stc-768x1085.webp 768w, https:\/\/youlumi.szlogic.cn\/wp-content\/uploads\/2026\/06\/stc-8x12.webp 8w\" sizes=\"(max-width: 980px) 100vw, 980px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4c9ab649 issue-name elementor-widget elementor-widget-heading\" data-id=\"4c9ab649\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">STC<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0adae0e elementor-widget elementor-widget-template\" data-id=\"0adae0e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"template.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-template\">\n\t\t\t\t\t<div data-elementor-type=\"container\" data-elementor-id=\"6296\" class=\"elementor elementor-6296\" data-elementor-post-type=\"elementor_library\">\n\t\t\t\t<div class=\"elementor-element elementor-element-11b87237 e-con-full e-flex e-con e-parent\" data-id=\"11b87237\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2a701ee8 elementor-widget elementor-widget-html\" data-id=\"2a701ee8\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<div class=\"lightbox\" id=\"lightbox\">\r\n        <img decoding=\"async\" class=\"lightbox-close\" src=\"\/wp-content\/uploads\/2026\/06\/closr-btn.svg\" alt=\"\">\r\n        <div class=\"lightbox-inner\">\r\n            <img decoding=\"async\" class=\"lightbox-close-mobile\" src=\"\/wp-content\/uploads\/2026\/06\/closr-btn.svg\" alt=\"\">\r\n            <img decoding=\"async\" id=\"lbImg\"\r\n                src=\"\"\r\n                alt=\"\">\r\n            <p class=\"lb-title\" id=\"lbTitle\"><\/p>\r\n        <\/div>\r\n<\/div>\r\n\r\n<script>\r\n        jQuery(document).ready(function ($) {\r\n            const $items = $('.issue-item');\r\n            const certData = [];\r\n            const $lightbox = $('#lightbox');\r\n            const $lbImg = $('#lbImg');\r\n            const $lbTit = $('#lbTitle');\r\n\r\n            \/\/ \u6536\u96c6\u6570\u636e + \u7ed1\u5b9a\u70b9\u51fb\r\n            $items.each(function (index) {\r\n                const $img = $(this).find('img');\r\n                const $name = $(this).find('.issue-name');\r\n\r\n                certData.push({\r\n                    src: $img.attr('src'),\r\n                    title: $name.text().trim()\r\n                });\r\n\r\n                $(this).on('click', function () {\r\n                    openLightbox(index);\r\n                });\r\n            });\r\n\r\n            \/\/ \u6253\u5f00\u5f39\u7a97\r\n            function openLightbox(index) {\r\n                $lbImg.attr('src', certData[index].src);\r\n                $lbTit.text(certData[index].title);\r\n                $lightbox.addClass('open');\r\n                \/\/ \u7981\u6b62\u6eda\u52a8\r\n                 $('html, body').css('overflow', 'hidden');\r\n            }\r\n\r\n            \/\/ \u5173\u95ed\u5f39\u7a97\r\n            function closeLightbox() {\r\n                $lightbox.removeClass('open');\r\n                \/\/ \u6062\u590d\u6eda\u52a8\r\n                $('html, body').css('overflow', 'auto');\r\n            }\r\n\r\n            \/\/ \u7ed1\u5b9a\u5173\u95ed\u6309\u94ae\u70b9\u51fb\r\n            $lightbox.find('.lightbox-close').on('click', function (e) {\r\n                e.stopPropagation(); \/\/ \u9632\u6b62\u5192\u6ce1\u5230lightbox\u89e6\u53d1\u80cc\u666f\u5173\u95ed\r\n                closeLightbox();\r\n            });\r\n            $lightbox.find('.lightbox-close-mobile').on('click', function (e) {\r\n                e.stopPropagation(); \/\/ \u9632\u6b62\u5192\u6ce1\u5230lightbox\u89e6\u53d1\u80cc\u666f\u5173\u95ed\r\n                closeLightbox();\r\n            });\r\n            \/\/ \u7ed1\u5b9a\u80cc\u666f\u70b9\u51fb\u5173\u95ed\r\n            $lightbox.on('click', function (e) {\r\n                if (e.target === this) {\r\n                    closeLightbox();\r\n                }\r\n            });\r\n        }); \r\n    <\/script>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-19a1924f e-con-full e-flex e-con e-child\" data-id=\"19a1924f\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-7dcbbd76 e-con-full e-flex e-con e-child\" data-id=\"7dcbbd76\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-250de452 gradient-color elementor-widget elementor-widget-heading\" data-id=\"250de452\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Full-Body Red Light Therapy Panels for Recovery FAQ<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-cc2aa7a elementor-widget elementor-widget-text-editor\" data-id=\"cc2aa7a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>FAQ copy for the full-body panel system covers setup, comfort, cleaning, OEM options, and how users apply it to back, legs, and larger muscles.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-5e206ebb faq-container elementor-widget elementor-widget-n-accordion\" data-id=\"5e206ebb\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;default_state&quot;:&quot;all_collapsed&quot;,&quot;max_items_expended&quot;:&quot;one&quot;,&quot;n_accordion_animation_duration&quot;:{&quot;unit&quot;:&quot;ms&quot;,&quot;size&quot;:400,&quot;sizes&quot;:[]}}\" data-widget_type=\"nested-accordion.default\">\n\t\t\t\t\t\t\t<div class=\"e-n-accordion\" aria-label=\"Accordion. Open links with Enter or Space, close with Escape, and navigate with Arrow Keys\">\n\t\t\t\t\t\t<details id=\"e-n-accordion-item-1570\" class=\"e-n-accordion-item\" >\n\t\t\t\t<summary class=\"e-n-accordion-item-title\" data-accordion-index=\"1\" tabindex=\"0\" aria-expanded=\"false\" aria-controls=\"e-n-accordion-item-1570\" >\n\t\t\t\t\t<span class='e-n-accordion-item-title-header'><div class=\"e-n-accordion-item-title-text\"> Q1: How should users position this full-body panel system? <\/div><\/span>\n\t\t\t\t\t\t\t<span class='e-n-accordion-item-title-icon'>\n\t\t\t<span class='e-opened' ><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\"><rect width=\"20\" height=\"20\" rx=\"10\" fill=\"#E95A23\"><\/rect><line x1=\"6\" y1=\"10\" x2=\"14\" y2=\"10\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\"><\/line><\/svg><\/span>\n\t\t\t<span class='e-closed'><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\"><rect width=\"20\" height=\"20\" rx=\"10\" fill=\"#C2BEBB\"><\/rect><line x1=\"6\" y1=\"10\" x2=\"14\" y2=\"10\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\"><\/line><line x1=\"10\" y1=\"6\" x2=\"10\" y2=\"14\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\"><\/line><\/svg><\/span>\n\t\t<\/span>\n\n\t\t\t\t\t\t<\/summary>\n\t\t\t\t<div role=\"region\" aria-labelledby=\"e-n-accordion-item-1570\" class=\"elementor-element elementor-element-5849f945 e-con-full e-flex e-con e-child\" data-id=\"5849f945\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7833b6a8 elementor-widget elementor-widget-text-editor\" data-id=\"7833b6a8\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Place it at a comfortable distance, align it with back, legs, and larger muscles, and keep the body position stable during the timer.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/details>\n\t\t\t\t\t\t<details id=\"e-n-accordion-item-1571\" class=\"e-n-accordion-item\" >\n\t\t\t\t<summary class=\"e-n-accordion-item-title\" data-accordion-index=\"2\" tabindex=\"-1\" aria-expanded=\"false\" aria-controls=\"e-n-accordion-item-1571\" >\n\t\t\t\t\t<span class='e-n-accordion-item-title-header'><div class=\"e-n-accordion-item-title-text\"> Q2: Which setting fits this full-body panel system best? <\/div><\/span>\n\t\t\t\t\t\t\t<span class='e-n-accordion-item-title-icon'>\n\t\t\t<span class='e-opened' ><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\"><rect width=\"20\" height=\"20\" rx=\"10\" fill=\"#E95A23\"><\/rect><line x1=\"6\" y1=\"10\" x2=\"14\" y2=\"10\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\"><\/line><\/svg><\/span>\n\t\t\t<span class='e-closed'><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\"><rect width=\"20\" height=\"20\" rx=\"10\" fill=\"#C2BEBB\"><\/rect><line x1=\"6\" y1=\"10\" x2=\"14\" y2=\"10\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\"><\/line><line x1=\"10\" y1=\"6\" x2=\"10\" y2=\"14\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\"><\/line><\/svg><\/span>\n\t\t<\/span>\n\n\t\t\t\t\t\t<\/summary>\n\t\t\t\t<div role=\"region\" aria-labelledby=\"e-n-accordion-item-1571\" class=\"elementor-element elementor-element-ed007cf e-con-full e-flex e-con e-child\" data-id=\"ed007cf\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2e855f5e elementor-widget elementor-widget-text-editor\" data-id=\"2e855f5e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>It fits gyms and therapy rooms that need large-area recovery with simple controls and repeatable placement.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/details>\n\t\t\t\t\t\t<details id=\"e-n-accordion-item-1572\" class=\"e-n-accordion-item\" >\n\t\t\t\t<summary class=\"e-n-accordion-item-title\" data-accordion-index=\"3\" tabindex=\"-1\" aria-expanded=\"false\" aria-controls=\"e-n-accordion-item-1572\" >\n\t\t\t\t\t<span class='e-n-accordion-item-title-header'><div class=\"e-n-accordion-item-title-text\"> Q3: What OEM details matter for this full-body panel system? <\/div><\/span>\n\t\t\t\t\t\t\t<span class='e-n-accordion-item-title-icon'>\n\t\t\t<span class='e-opened' ><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\"><rect width=\"20\" height=\"20\" rx=\"10\" fill=\"#E95A23\"><\/rect><line x1=\"6\" y1=\"10\" x2=\"14\" y2=\"10\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\"><\/line><\/svg><\/span>\n\t\t\t<span class='e-closed'><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\"><rect width=\"20\" height=\"20\" rx=\"10\" fill=\"#C2BEBB\"><\/rect><line x1=\"6\" y1=\"10\" x2=\"14\" y2=\"10\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\"><\/line><line x1=\"10\" y1=\"6\" x2=\"10\" y2=\"14\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\"><\/line><\/svg><\/span>\n\t\t<\/span>\n\n\t\t\t\t\t\t<\/summary>\n\t\t\t\t<div role=\"region\" aria-labelledby=\"e-n-accordion-item-1572\" class=\"elementor-element elementor-element-2fd4467f e-con-full e-flex e-con e-child\" data-id=\"2fd4467f\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-260cbbfe elementor-widget elementor-widget-text-editor\" data-id=\"260cbbfe\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Youlumi can review logo, housing color, manual language, carton artwork, accessories, and brand manuals, labels, cartons, and export document packs after project details are confirmed.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/details>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-1306970c e-con-full e-flex e-con e-parent\" data-id=\"1306970c\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-35ede219 elementor-widget elementor-widget-template\" data-id=\"35ede219\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"template.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-template\">\n\t\t\t\t\t<div data-elementor-type=\"container\" data-elementor-id=\"2077\" class=\"elementor elementor-2077\" data-elementor-post-type=\"elementor_library\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7184c4f4 e-con-full e-flex e-con e-parent\" data-id=\"7184c4f4\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-5297eb4c e-con-full e-flex e-con e-child\" data-id=\"5297eb4c\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-2c799200 e-con-full e-flex e-con e-child\" data-id=\"2c799200\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-7f3a85ed e-con-full e-flex e-con e-child\" data-id=\"7f3a85ed\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-58ef142 gradient-color elementor-widget elementor-widget-heading\" data-id=\"58ef142\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Get Youlumi Red Light Therapy Solution<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4c8b9dba elementor-widget elementor-widget-text-editor\" data-id=\"4c8b9dba\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Tell us your product idea, target market, and usage scenario. Youlumi will provide device suggestions, customization plans, samples, and production support.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3f40f26c elementor-widget elementor-widget-template\" data-id=\"3f40f26c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"template.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-template\">\n\t\t\t\t\t<div data-elementor-type=\"container\" data-elementor-id=\"2071\" class=\"elementor elementor-2071\" data-elementor-post-type=\"elementor_library\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2244b2da e-con-full e-flex e-con e-child\" data-id=\"2244b2da\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4dec3513 elementor-position-inline-start elementor-mobile-position-inline-start contact-msg elementor-view-default elementor-widget elementor-widget-icon-box\" data-id=\"4dec3513\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"elementor-icon-box-icon\">\n\t\t\t\t<a href=\"mailto:sales@youlumi.com\" target=\"_blank\" rel=\"nofollow\" class=\"elementor-icon\" tabindex=\"-1\" aria-label=\"Email\uff1a&lt;br&gt;&lt;span class=&quot;msg&quot;&gt;sales@youlumi.com&lt;\/span&gt;\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"30\" height=\"30\" viewBox=\"0 0 30 30\" fill=\"none\"><g clip-path=\"url(#clip0_3128_7838)\"><path d=\"M26.8182 5C27.4709 5 28 5.52234 28 6.16667V24.841C28 25.4811 27.4619 26 26.8279 26H5.53576C4.88842 26 4.36364 25.4809 4.36364 24.841V23.6667H25.6364V10.0167L16.1818 18.4167L4.36364 7.91667V6.16667C4.36364 5.52234 4.89276 5 5.54545 5H26.8182ZM11.4545 19V21.3333H2V19H11.4545ZM7.90909 13.1667V15.5H2V13.1667H7.90909ZM25.1233 7.33333H7.24035L16.1818 15.2775L25.1233 7.33333Z\" fill=\"#E95A23\"><\/path><\/g><defs><clipPath id=\"clip0_3128_7838\"><rect width=\"30\" height=\"30\" fill=\"white\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t\t<\/a>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<p class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<a href=\"mailto:sales@youlumi.com\" target=\"_blank\" rel=\"nofollow\" >\n\t\t\t\t\t\t\tEmail\uff1a<br><span class=\"msg\">sales@youlumi.com<\/span>\t\t\t\t\t\t<\/a>\n\t\t\t\t\t<\/p>\n\t\t\t\t\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-133addf5 elementor-position-inline-start elementor-mobile-position-inline-start contact-msg elementor-view-default elementor-widget elementor-widget-icon-box\" data-id=\"133addf5\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"elementor-icon-box-icon\">\n\t\t\t\t<a href=\"tel:+8613923410020\" target=\"_blank\" rel=\"nofollow\" class=\"elementor-icon\" tabindex=\"-1\" aria-label=\"Tel\uff1a&lt;br&gt;&lt;span class=&quot;msg&quot;&gt;+86-139 2341 0020&lt;\/span&gt;\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"30\" height=\"30\" viewBox=\"0 0 30 30\" fill=\"none\"><g clip-path=\"url(#clip0_3128_7849)\"><path d=\"M11.1947 13.0964C12.5473 15.4749 14.5251 17.4527 16.9036 18.8052L18.1812 17.0166C18.6061 16.4221 19.4079 16.2383 20.0492 16.5886C22.0812 17.6987 24.3269 18.3732 26.6695 18.5587C27.4208 18.6182 28 19.2451 28 19.9986V26.4449C28 27.1855 27.4398 27.806 26.7032 27.8817C25.9378 27.9604 25.1656 28 24.3889 28C12.0239 28 2 17.9761 2 5.61111C2 4.83439 2.03961 4.06225 2.11829 3.29676C2.19399 2.56008 2.81458 2 3.55516 2H10.0014C10.7549 2 11.3819 2.57928 11.4413 3.33046C11.6267 5.67305 12.3013 7.91881 13.4114 9.95086C13.7617 10.5921 13.5779 11.394 12.9834 11.8187L11.1947 13.0964ZM7.55281 12.1475L10.2972 10.1872C9.51901 8.50742 8.98574 6.72598 8.71272 4.88889H4.90199C4.89327 5.12913 4.88889 5.36989 4.88889 5.61111C4.88889 16.3806 13.6194 25.1111 24.3889 25.1111C24.6301 25.1111 24.8709 25.1068 25.1111 25.098V21.2872C23.2741 21.0142 21.4926 20.4809 19.8127 19.7028L17.8525 22.4473C17.0595 22.1392 16.2936 21.7766 15.5596 21.3644L15.4757 21.3166C12.6451 19.707 10.293 17.3549 8.68344 14.5243L8.63569 14.4404C8.22337 13.7064 7.86089 12.9405 7.55281 12.1475Z\" fill=\"#E95A23\"><\/path><\/g><defs><clipPath id=\"clip0_3128_7849\"><rect width=\"30\" height=\"30\" fill=\"white\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t\t<\/a>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<p class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<a href=\"tel:+8613923410020\" target=\"_blank\" rel=\"nofollow\" >\n\t\t\t\t\t\t\tTel\uff1a<br><span class=\"msg\">+86-139 2341 0020<\/span>\t\t\t\t\t\t<\/a>\n\t\t\t\t\t<\/p>\n\t\t\t\t\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-53d66be7 elementor-position-inline-start elementor-mobile-position-inline-start contact-msg elementor-view-default elementor-widget elementor-widget-icon-box\" data-id=\"53d66be7\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"elementor-icon-box-icon\">\n\t\t\t\t<a href=\"https:\/\/wa.me\/8613923410020\" target=\"_blank\" rel=\"nofollow\" class=\"elementor-icon\" tabindex=\"-1\" aria-label=\"WhatsApp\uff1a&lt;br&gt;&lt;span class=&quot;msg&quot;&gt;+86-139 2341 0020&lt;\/span&gt;\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"30\" height=\"30\" viewBox=\"0 0 30 30\" fill=\"none\"><g clip-path=\"url(#clip0_3128_7860)\"><path d=\"M8.82841 23.4427L9.77056 23.9921C11.3445 24.9099 13.1333 25.4 15 25.4C20.7438 25.4 25.4 20.7438 25.4 15C25.4 9.25624 20.7438 4.6 15 4.6C9.25623 4.6 4.6 9.25624 4.6 15C4.6 16.8672 5.0904 18.6566 6.00878 20.2309L6.55787 21.1721L5.70834 24.2942L8.82841 23.4427ZM2.00543 28L3.76298 21.541C2.64215 19.6197 2 17.3848 2 15C2 7.82029 7.82029 2 15 2C22.1796 2 28 7.82029 28 15C28 22.1796 22.1796 28 15 28C12.6159 28 10.3818 27.3583 8.46084 26.2381L2.00543 28ZM10.3087 8.90083C10.4828 8.8886 10.6574 8.88672 10.8317 8.89523C10.9021 8.89985 10.9722 8.90799 11.0423 8.91609C11.2493 8.94 11.477 9.06608 11.5535 9.23962C11.9414 10.119 12.3176 11.0033 12.6824 11.8925C12.7628 12.0888 12.7144 12.3432 12.5612 12.5894C12.4835 12.7156 12.3614 12.8927 12.2199 13.0738C12.0729 13.2619 11.7565 13.6078 11.7565 13.6078C11.7565 13.6078 11.6283 13.7615 11.6766 13.9527C11.6955 14.025 11.7555 14.1303 11.8099 14.2188C11.8401 14.2678 11.8681 14.3117 11.8862 14.3419C12.2189 14.8974 12.6661 15.4606 13.2124 15.9901C13.3689 16.1418 13.5207 16.2966 13.684 16.4404C14.2928 16.9772 14.9816 17.4158 15.7254 17.7407L15.732 17.7437C15.8419 17.791 15.8983 17.8168 16.0591 17.8851C16.1402 17.9194 16.2232 17.949 16.3083 17.9715C16.3391 17.9796 16.3707 17.9841 16.4025 17.9864C16.6127 17.999 16.7342 17.8642 16.7861 17.8022C17.7266 16.6627 17.8127 16.5883 17.8192 16.5889V16.5909C17.9428 16.4607 18.1372 16.4154 18.3106 16.4261C18.3898 16.4309 18.4685 16.4461 18.5406 16.479C19.2319 16.7944 20.3622 17.2863 20.3622 17.2863L21.1182 17.6261C21.2448 17.6872 21.3604 17.8311 21.366 17.971C21.3694 18.058 21.3787 18.1984 21.3476 18.4553C21.307 18.7916 21.2046 19.1965 21.103 19.4087C21.0315 19.5575 20.9389 19.6896 20.8313 19.8014C20.6853 19.953 20.5769 20.045 20.4014 20.1758C20.2945 20.2554 20.2391 20.2928 20.2391 20.2928C20.0586 20.4067 19.9568 20.4636 19.7416 20.5782C19.407 20.7564 19.0373 20.8588 18.6586 20.8783C18.4172 20.8907 18.1764 20.9081 17.9353 20.8951C17.9246 20.8945 17.1966 20.7827 17.1966 20.7827C15.3482 20.2965 13.6387 19.3857 12.2042 18.1226C11.9109 17.8644 11.6389 17.5851 11.3612 17.3087C10.2055 16.158 9.33049 14.9173 8.79992 13.7437C8.53828 13.1649 8.37261 12.5451 8.36999 11.9073C8.3652 11.1183 8.62351 10.3502 9.10412 9.72442C9.19886 9.60106 9.28878 9.47311 9.44394 9.32662C9.60824 9.17146 9.71281 9.08817 9.82546 9.03054C9.97561 8.95373 10.1405 8.91265 10.3087 8.90083Z\" fill=\"#E95A23\"><\/path><\/g><defs><clipPath id=\"clip0_3128_7860\"><rect width=\"30\" height=\"30\" fill=\"white\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t\t<\/a>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<p class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<a href=\"https:\/\/wa.me\/8613923410020\" target=\"_blank\" rel=\"nofollow\" >\n\t\t\t\t\t\t\tWhatsApp\uff1a<br><span class=\"msg\">+86-139 2341 0020<\/span>\t\t\t\t\t\t<\/a>\n\t\t\t\t\t<\/p>\n\t\t\t\t\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-473e707e elementor-position-inline-start elementor-mobile-position-inline-start contact-msg elementor-view-default elementor-widget elementor-widget-icon-box\" data-id=\"473e707e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"elementor-icon-box-icon\">\n\t\t\t\t<a href=\"https:\/\/www.google.com\/maps\/place\/Floor%204,%20A%20Building%20No.%2037%20Kengwei%20Road%20Shiyan%20Town,%20Bao\u2019an,%20Shenzhen,%20China.%20518000\" target=\"_blank\" rel=\"nofollow\" class=\"elementor-icon\" tabindex=\"-1\" aria-label=\"ADD\uff1a&lt;br&gt;&lt;span class=&quot;msg&quot;&gt;Floor 4, A Building No. 37 Kengwei Road Shiyan Town, Bao\u2019an, Shenzhen, China. 518000&lt;\/span&gt;\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"30\" height=\"30\" viewBox=\"0 0 30 30\" fill=\"none\"><g clip-path=\"url(#clip0_3128_7871)\"><path d=\"M14.5 24.6155L20.2746 18.6925C23.4639 15.4214 23.4639 10.1178 20.2746 6.8466C17.0854 3.57544 11.9146 3.57544 8.72529 6.8466C5.53601 10.1178 5.53601 15.4214 8.72529 18.6925L14.5 24.6155ZM14.5 28L7.07538 20.3848C2.97487 16.179 2.97487 9.36011 7.07538 5.15433C11.1759 0.948556 17.824 0.948556 21.9246 5.15433C26.0251 9.36011 26.0251 16.179 21.9246 20.3848L14.5 28ZM14.5 15.1628C15.7887 15.1628 16.8333 14.0913 16.8333 12.7696C16.8333 11.4478 15.7887 10.3763 14.5 10.3763C13.2113 10.3763 12.1667 11.4478 12.1667 12.7696C12.1667 14.0913 13.2113 15.1628 14.5 15.1628ZM14.5 17.556C11.9227 17.556 9.83333 15.413 9.83333 12.7696C9.83333 10.1261 11.9227 7.98309 14.5 7.98309C17.0773 7.98309 19.1666 10.1261 19.1666 12.7696C19.1666 15.413 17.0773 17.556 14.5 17.556Z\" fill=\"#E95A23\"><\/path><\/g><defs><clipPath id=\"clip0_3128_7871\"><rect width=\"30\" height=\"30\" fill=\"white\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t\t<\/a>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<p class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<a href=\"https:\/\/www.google.com\/maps\/place\/Floor%204,%20A%20Building%20No.%2037%20Kengwei%20Road%20Shiyan%20Town,%20Bao\u2019an,%20Shenzhen,%20China.%20518000\" target=\"_blank\" rel=\"nofollow\" >\n\t\t\t\t\t\t\tADD\uff1a<br><span class=\"msg\">Floor 4, A Building No. 37 Kengwei Road Shiyan Town, Bao\u2019an, Shenzhen, China. 518000<\/span>\t\t\t\t\t\t<\/a>\n\t\t\t\t\t<\/p>\n\t\t\t\t\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-10629255 elementor-widget__width-initial elementor-widget-tablet__width-inherit elementor-widget elementor-widget-template\" data-id=\"10629255\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"template.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-template\">\n\t\t\t\t\t<div data-elementor-type=\"container\" data-elementor-id=\"2059\" class=\"elementor elementor-2059\" data-elementor-post-type=\"elementor_library\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5d4dc752 e-con-full e-flex e-con e-child\" data-id=\"5d4dc752\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2d636b20 contact-form elementor-button-align-stretch elementor-widget elementor-widget-form\" data-id=\"2d636b20\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;step_next_label&quot;:&quot;Next&quot;,&quot;step_previous_label&quot;:&quot;Previous&quot;,&quot;button_width&quot;:&quot;25&quot;,&quot;step_type&quot;:&quot;number_text&quot;,&quot;step_icon_shape&quot;:&quot;circle&quot;}\" data-widget_type=\"form.default\">\n\t\t\t\t\t\t\t<form class=\"elementor-form\" method=\"post\" name=\"Contact Us Form\" aria-label=\"Contact Us Form\">\n\t\t\t<input type=\"hidden\" name=\"post_id\" value=\"2059\"\/>\n\t\t\t<input type=\"hidden\" name=\"form_id\" value=\"2d636b20\"\/>\n\t\t\t<input type=\"hidden\" name=\"referer_title\" value=\"\" \/>\n\n\t\t\t\n\t\t\t<div class=\"elementor-form-fields-wrapper elementor-labels-above\">\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-text elementor-field-group elementor-column elementor-field-group-name elementor-col-50 elementor-sm-50 elementor-field-required\">\n\t\t\t\t\t\t\t\t\t\t\t\t<label for=\"form-field-name\" class=\"elementor-field-label\">\n\t\t\t\t\t\t\t\tYour Name*\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<input size=\"1\" type=\"text\" name=\"form_fields[name]\" id=\"form-field-name\" class=\"elementor-field elementor-size-sm  elementor-field-textual\" placeholder=\"Enter Your Name\" required=\"required\">\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-email elementor-field-group elementor-column elementor-field-group-eMail elementor-col-50 elementor-sm-50 elementor-field-required\">\n\t\t\t\t\t\t\t\t\t\t\t\t<label for=\"form-field-eMail\" class=\"elementor-field-label\">\n\t\t\t\t\t\t\t\tYour E-mail*\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<input size=\"1\" type=\"email\" name=\"form_fields[eMail]\" id=\"form-field-eMail\" class=\"elementor-field elementor-size-sm  elementor-field-textual\" placeholder=\"Enter Your Email\" required=\"required\">\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-text elementor-field-group elementor-column elementor-field-group-whatsApp elementor-col-50 elementor-sm-50\">\n\t\t\t\t\t\t\t\t\t\t\t\t<label for=\"form-field-whatsApp\" class=\"elementor-field-label\">\n\t\t\t\t\t\t\t\tWhatsApp*\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<input size=\"1\" type=\"text\" name=\"form_fields[whatsApp]\" id=\"form-field-whatsApp\" class=\"elementor-field elementor-size-sm  elementor-field-textual\" placeholder=\"Enter Your WhatsApp\">\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-tel elementor-field-group elementor-column elementor-field-group-phone elementor-col-50 elementor-sm-50\">\n\t\t\t\t\t\t\t\t\t\t\t\t<label for=\"form-field-phone\" class=\"elementor-field-label\">\n\t\t\t\t\t\t\t\tYour Phone*\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t<input size=\"1\" type=\"tel\" name=\"form_fields[phone]\" id=\"form-field-phone\" class=\"elementor-field elementor-size-sm  elementor-field-textual\" placeholder=\"Enter Your Phone\" pattern=\"[0-9()#&amp;+*-=.]+\" title=\"Only numbers and phone characters (#, -, *, etc) are accepted.\">\n\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-text elementor-field-group elementor-column elementor-field-group-companyName elementor-col-50 elementor-sm-50\">\n\t\t\t\t\t\t\t\t\t\t\t\t<label for=\"form-field-companyName\" class=\"elementor-field-label\">\n\t\t\t\t\t\t\t\tCompany Name\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<input size=\"1\" type=\"text\" name=\"form_fields[companyName]\" id=\"form-field-companyName\" class=\"elementor-field elementor-size-sm  elementor-field-textual\" placeholder=\"Enter Your Company Name\">\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-text elementor-field-group elementor-column elementor-field-group-focusProducts elementor-col-50 elementor-sm-50\">\n\t\t\t\t\t\t\t\t\t\t\t\t<label for=\"form-field-focusProducts\" class=\"elementor-field-label\">\n\t\t\t\t\t\t\t\tFocus Products\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<input size=\"1\" type=\"text\" name=\"form_fields[focusProducts]\" id=\"form-field-focusProducts\" class=\"elementor-field elementor-size-sm  elementor-field-textual\" placeholder=\"Enter Focus Products\">\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-textarea elementor-field-group elementor-column elementor-field-group-message elementor-col-100\">\n\t\t\t\t\t\t\t\t\t\t\t\t<label for=\"form-field-message\" class=\"elementor-field-label\">\n\t\t\t\t\t\t\t\tYour Message\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t<textarea class=\"elementor-field-textual elementor-field  elementor-size-sm\" name=\"form_fields[message]\" id=\"form-field-message\" rows=\"4\" placeholder=\"Write a few words about your business\"><\/textarea>\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-text elementor-field-group elementor-column elementor-field-group-user_ip elementor-col-100\">\n\t\t\t\t\t\t\t\t\t\t\t\t<label for=\"form-field-user_ip\" class=\"elementor-field-label\">\n\t\t\t\t\t\t\t\tIP_Address\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<input size=\"1\" type=\"text\" name=\"form_fields[user_ip]\" id=\"form-field-user_ip\" class=\"elementor-field elementor-size-sm  elementor-field-textual\" value=\"216.73.217.43\">\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-group elementor-column elementor-field-type-submit elementor-col-25 e-form__buttons\">\n\t\t\t\t\t<button class=\"elementor-button elementor-size-xs\" type=\"submit\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Submit<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/button>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/form>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7c87bfce elementor-widget-mobile__width-auto form-tips elementor-widget elementor-widget-text-editor\" data-id=\"7c87bfce\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>*We respect your confidentiality and all information is protected.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>\u2039 \u203a Full-Body Red Light Therapy Panels for Recovery Full-body recovery coverage Large muscle group support Standing or reclined use Red and NIR wavelength mix\u2028 Wellness-room friendly Full-Body Red Light Therapy Panels for Recovery Specifications Review the table for large-area recovery, including wavelength mix, coverage, power class, size, controls, material, accessories, and packaging needs. Parameter [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":0,"parent":4587,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"footnotes":""},"class_list":["post-7125","page","type-page","status-publish","hentry"],"blocksy_meta":{"has_hero_section":"disabled","styles_descriptor":{"styles":{"desktop":"","tablet":"","mobile":""},"google_fonts":[],"version":6}},"acf":[],"browser_title":"Full-Body Red Light Therapy Panels for Recovery","page_description":"Discover full-body red light therapy panels for gym and therapy room recovery, featuring broad coverage, easy controls, and FDA\/CE certifications.","_links":{"self":[{"href":"https:\/\/youlumi.szlogic.cn\/ar\/wp-json\/wp\/v2\/pages\/7125","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/youlumi.szlogic.cn\/ar\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/youlumi.szlogic.cn\/ar\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/youlumi.szlogic.cn\/ar\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/youlumi.szlogic.cn\/ar\/wp-json\/wp\/v2\/comments?post=7125"}],"version-history":[{"count":146,"href":"https:\/\/youlumi.szlogic.cn\/ar\/wp-json\/wp\/v2\/pages\/7125\/revisions"}],"predecessor-version":[{"id":12255,"href":"https:\/\/youlumi.szlogic.cn\/ar\/wp-json\/wp\/v2\/pages\/7125\/revisions\/12255"}],"up":[{"embeddable":true,"href":"https:\/\/youlumi.szlogic.cn\/ar\/wp-json\/wp\/v2\/pages\/4587"}],"wp:attachment":[{"href":"https:\/\/youlumi.szlogic.cn\/ar\/wp-json\/wp\/v2\/media?parent=7125"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}