$(function () { if ($('.e-module-202209021400').length > 0) { function module202209021400Fun($target) { var module202209021400Obj = { init: function () { this.win = $(window); this.bannerObj = $target; this.headerObj = $('.e-module-202209210900'); this.blackNavObj = $('.e-module-202208180950'); this.cookieObj = $('.e-module-202208270930'); this.bannerWrapObj = this.bannerObj.find('.banner-wrap'); this.bannerSlideObj = this.bannerObj.find(".swiper-slide"); this.opacityValue = 0; this.currentLastPostion = 0; this.resizeInit(); this.setBannerHeight(); if (this.bannerSlideObj.length > 1) { if (this.bannerObj.data("swiper-init")) { return; } this.bannerObj.data("swiper-init", true); this.initSwiper(); } else { this.addVideoLink(this.bannerObj.find('.e-bg')); this.bannerSlideObj.addClass('animate'); } this.setVideoCenterShow(); this.scrollEvent(); this.clickEvent(); this.resizeEvent(); }, resizeInit: function () { this.winh = this.win.height(); this.winw = this.win.width(); this.unitLength = this.winh / 100; this.headerObjH = this.headerObj.height(); }, setBannerHeight: function () { if (this.cookieObj.css('display') == 'block') { var h = parseInt(this.winh - this.headerObjH - 52 - this.blackNavObj.height()); this.bannerObj.height(h); this.bannerWrapObj.css({ 'height': h, 'position': 'static', 'top': 0 }); } else { this.bannerObj.height(parseInt(this.winh - this.headerObjH - this.blackNavObj.height())); this.bannerWrapObj.css({ 'height': parseInt(this.winh - this.headerObjH - this.blackNavObj.height()), 'position': 'static', 'top': this.headerObjH }); this.bannerWrapObj.removeClass("fixed"); } }, setVideoCenterShow: function () { var videoObj = this.bannerObj.find('.video'); if ((this.bannerObj.height() / this.winw) > (1080 / 1920)) { videoObj.css({ width: 'auto', height: '100%' }) } else { videoObj.css({ width: '100%', height: 'auto' }) } }, addVideoLink: function (bgObj) { if (bgObj.data('src') != undefined && bgObj.data('src') != '' && this.winw > 1200) { if (bgObj.find('.video').length == 0) { bgObj.append(""); } var videoObj = bgObj.find('.video'); if (videoObj.attr("src") != bgObj.data('src')) { videoObj.attr("src", bgObj.data('src')); } } else { bgObj.find('.video').remove(); } }, clickEvent: function () { var _this = this; _this.cookieObj.find('.close').on('click', function () { _this.bannerObj.height(parseInt(_this.winh - _this.headerObjH)); _this.bannerWrapObj.css({ 'height': parseInt(_this.winh - _this.headerObjH), 'position': 'fixed', 'top': _this.headerObjH }); }); }, scrollEvent: function () { var _this = this; this.win.on('scroll.202209021400', function () { var t = _this.win.scrollTop(); if (_this.cookieObj.css('display') == 'block') { var headerTop = _this.headerObj.offset().top; if (t > headerTop) { _this.bannerWrapObj.addClass("fixed"); } else { _this.bannerWrapObj.removeClass("fixed"); }; } if (_this.currentLastPostion > 0 && _this.currentLastPostion < _this.winh) { _this.opacityValue += (t - _this.currentLastPostion) / _this.unitLength / 100; _this.opacityValue = _this.opacityValue > 0.8 ? 0.8 : _this.opacityValue; _this.opacityValue = _this.opacityValue < 0 ? 0 : _this.opacityValue; _this.bannerObj.find(".banner-cover").css("opacity", _this.opacityValue); } _this.currentLastPostion = t; }) }, initSwiper: function () { var _this = this; var $target = this.bannerObj; var slideLength = $target.find(".swiper-slide").length; var mySwiper = new Swiper($target.find(".swiper-container"), { effect: 'fade', fadeEffect: { crossFade: true, }, pagination: { el: $target.find('.swiper-pagination'), clickable: true }, grabCursor: slideLength > 1 ? true : false, autoplay: $target.data("auto-time") ? { delay: $target.data("auto-time"), stopOnLastSlide: false, disableOnInteraction: true } : false, loop: slideLength > 1 ? true : false, noSwiping: slideLength > 1 ? false : true, runCallbacksOnInit: true, on: { init: function () { if (slideLength > 1) { $target.find(".swiper-pagination").show(); } $target.find(".swiper-slide").addClass('animate'); }, transitionStart: function () { var $currentSilde = $target.find(".swiper-slide-active"); var $prevSilde = $target.find(".swiper-slide-prev"); var $nextSilde = $target.find(".swiper-slide-next"); $currentSilde.add($prevSilde).add($nextSilde).find("img").each(function () { var $this = $(this); var src = $this.attr("data-original"); if ($this.parents(".e-bg").css("backgroundImage") != "url(" + src + ")") { $this.parents(".e-bg").css("backgroundImage", "url('" + src + "')"); $this.parents(".e-lazy").css("display", "none"); } _this.addVideoLink($this.parents(".e-bg")); }); }, slideChangeTransitionEnd: function () { setTimeout(function () { if (_this.winw > 1200) { $target.find(".swiper-slide").eq(mySwiper.activeIndex).addClass('animate').siblings().removeClass('animate'); } else { $target.find(".swiper-slide").addClass('animate'); } var $currentSilde = $target.find(".swiper-slide-active"); var $pr = $currentSilde.parent(); if ($currentSilde.hasClass('isBlackFont')) { $pr.next('.swiper-pagination').addClass('gray'); } else { $pr.next('.swiper-pagination').removeClass('gray'); } }, 0) }, resize: function () { var _this = this; setTimeout(function () { _this.update(); _this.emit('transitionStart'); _this.emit('slideChangeTransitionEnd'); }, 250) }, } }); }, resizeEvent: function () { var _this = this; var resizeWinw = 0; var resizeTimer = ''; this.win.on('resize', function () { var winw = _this.win.width(); if (winw != resizeWinw) { currentWinw = winw; if (resizeTimer) { clearTimeout(resizeTimer); } resizeTimer = setTimeout(function () { _this.resizeInit(); _this.setBannerHeight(); if (_this.bannerSlideObj.length == 1) { _this.addVideoLink(_this.bannerObj.find('.e-bg')); _this.bannerSlideObj.addClass('animate'); } _this.setVideoCenterShow(); _this.scrollEvent(); _this.clickEvent(); }, 200) } }) } }; module202209021400Obj.init(); } $('.e-module-202209021400').each(function () { var _this = $(this); if (_this.data('init')) { return; } _this.data('init', true); module202209021400Fun($(this)); }) }; if ($('.e-module-202208091539').length > 0) { function module202208091539Fun($target) { var module202208091539Obj = { init: function () { this.win = $(window); this.moduleObj = $target; this.fixedBoxObj = this.moduleObj.find('.fixed-box'); this.liObj = this.moduleObj.find("li"); this.headObj = $('.e-module-202209210900 .header-new'); this.anchorPointObj = $('.anchorpoint'); this.perScrollTop = 0; this.scrollLock = false; this.resizeInit(); this.highlightNav(); this.clickEvent(); this.scrollEvent(); this.mouseEvent(); this.anchor(); this.resizeEvent(); this.anchorList(); }, resizeInit: function () { this.winw = this.win.width(); this.winh = this.win.height(); this.scrollTop = this.win.scrollTop(); this.moduleTop = this.moduleObj.offset().top; this.docH = $(document).height(); if (this.winw > 1200) { this.moduleObj.find('.anchor').show(); } else { this.moduleObj.find('.anchor').hide(); }; }, anchor: function () { var queryStr = getQueryString("section"); if (!queryStr || queryStr == undefined) return; if ('scrollRestoration' in history) { history.scrollRestoration = 'manual'; }; this.liObj.each(function () { var _this = $(this); if (_this.data('key') == queryStr) { setTimeout(function () { _this.trigger('click'); }, 500); }; }); function getQueryString(name) { var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i"); var r = window.location.search.substr(1).match(reg); if (r != null) return unescape(r[2]); }; }, highlightNav: function () { var _this = this; var perLightHighIndex = -2; var anchorpointArr = []; _this.anchorPointObj.each(function () { anchorpointArr.push($(this).offset().top + $(this).height()); }); var anchorLen = anchorpointArr.length; for (var i = 0; i < anchorLen; i++) { if (_this.scrollTop <= anchorpointArr[i]) { if (perLightHighIndex != i) { _this.liObj.eq(i).addClass('active').siblings().removeClass('active'); perLightHighIndex = i; _this.moduleObj.find('.wap-title').text(this.liObj.eq(i).text()); }; break; }; }; if (_this.winw < 1200) { var $titleObj = _this.moduleObj.find('.wap-title'); if (_this.liObj.eq(perLightHighIndex).text() != '') { $titleObj.text(_this.liObj.eq(perLightHighIndex).text()); }; }; }, mouseEvent: function () { $(".e-module-202208091539 .anchor").on("mousedown.202208091539", function (e) { var _this = $(".e-module-202208091539 .anchor"); var off = true; var curNum = 0; var scrollX = 0; $("body").on("mousemove.202208091539", function (e1) { var moveX = e1.clientX; if (off) { off = false; curNum = moveX; scrollX = _this.find('.sl').scrollLeft(); }; var x = moveX - curNum; _this.find('.sl').scrollLeft(scrollX - x); }); $("body").on("mouseup", function (e) { $("body").off("mousemove.202208091539"); }); }); }, clickEvent: function () { var _this = this; var clickiTime = 0; _this.liObj.on('click', function (e) { e.stopPropagation(); var scrollLock = true; var li_index = $(this).index(); var head_h = _this.headObj.height(); var anchor_point_t = []; _this.anchorPointObj.each(function () { anchor_point_t.push($(this).offset().top - 70); }); var willScrollTop = anchor_point_t[li_index]; $("body,html").stop(true, true).animate({ "scrollTop": willScrollTop }); _this.headObj.clearQueue().animate({ 'top': -head_h }, 300, function () { _this.liObj.eq(li_index).addClass('active').siblings().removeClass('active'); var $titleObj = _this.moduleObj.find('.wap-title'); $titleObj.text(_this.liObj.eq(li_index).text()); clearTimeout(clickiTime); clickiTime = setTimeout(function () { _this.perScrollTop = _this.win.scrollTop(); scrollLock = false; }, 150); }); _this.fixedBoxObj.css({ 'position': 'fixed', }).clearQueue().animate({ 'top': 0 }, 300).parents('.e-module-202208091539').addClass('fixed'); if (_this.winw < 1200) { if (!_this.moduleObj.find('.anchor').is(':hidden')) { _this.moduleObj.find('.anchor').slideToggle(); }; }; if (_this.winw < 1200) { _this.moduleObj.find('.wap-line').toggleClass("wap-another"); }; }); $('.e-module-202208091539 .wap-controller').on('click', function (e) { if (_this.winw < 1200) { e.stopPropagation(); $(this).nextAll('.anchor').slideToggle(); $(this).children('.wap-line').toggleClass("wap-another"); }; }); $('body').on('click', function () { if (_this.winw < 1200) { if (!_this.moduleObj.find('.anchor').is(':hidden')) { _this.moduleObj.find('.anchor').slideToggle(); }; }; }); }, scrollEvent: function () { var _this = this; var timer = 0; _this.win.on('scroll.202208091539', function () { if (_this.scrollLock) { return }; clearTimeout(timer); timer = setTimeout(function () { _this.scrollTop = _this.win.scrollTop(); var head_h = _this.headObj.height() + 1; var moduleTop = _this.moduleObj.offset().top - _this.moduleObj.height(); _this.docH = $(document).height(); var winh = _this.winh * 1.5; if (_this.scrollTop - _this.perScrollTop >= 3) { if (_this.scrollTop + head_h > moduleTop && _this.scrollTop < (_this.docH - winh)) { _this.headObj.clearQueue().animate({ 'top': -head_h }, 300); _this.fixedBoxObj.css({ 'position': 'fixed' }).clearQueue().animate({ 'top': 0 }, 300).parents('.e-module-202208091539').addClass('fixed'); } else if ((_this.docH - _this.scrollTop) <= winh) { _this.headObj.clearQueue().animate({ 'top': 0 }, 300); _this.fixedBoxObj.css({ 'position': 'fixed', }).clearQueue().animate({ 'top': head_h }, 300).parents('.e-module-202208091539').addClass('fixed'); }; } else if (_this.scrollTop - _this.perScrollTop <= -3) { if (_this.scrollTop - head_h - _this.moduleObj.height() < moduleTop) { _this.headObj.clearQueue().animate({ 'top': 0 }, 300); var h = -_this.fixedBoxObj.height() / 2; _this.fixedBoxObj.stop(true).css({ 'position': 'absolute', 'top': h }).parents('.e-module-202208091539').removeClass('fixed'); } else if ((_this.docH - _this.scrollTop) >= winh) { _this.headObj.clearQueue().animate({ 'top': 0 }, 300); _this.fixedBoxObj.css({ 'position': 'fixed', }).clearQueue().animate({ 'top': head_h }, 300).parents('.e-module-202208091539').addClass('fixed'); }; }; _this.highlightNav(); _this.perScrollTop = _this.scrollTop; }, 0); }); }, resizeEvent: function () { var _this = this; var resizeWinw = 0; var resizeTimer = ''; this.win.on('resize.202208091539', function () { var winw = _this.win.width(); if (winw != resizeWinw) { currentWinw = winw; if (resizeTimer) { clearTimeout(resizeTimer); }; resizeTimer = setTimeout(function () { _this.resizeInit(); }, 100); }; }); }, anchorList: function () { const liElements = document.querySelectorAll('.anchor .sl .ul .li'); let contentValue = ''; liElements.forEach(li => { let text = li.textContent.trim(); let dataKey = li.getAttribute('data-key'); if (text === null || text.length < 1 || dataKey === null || dataKey.length < 1) { contentValue += ''; } else { contentValue += `${text}#${dataKey},`; }; }); contentValue = contentValue.slice(0, -1); const metaTag = document.createElement('meta'); metaTag.setAttribute('name', 'Anchor_List'); metaTag.setAttribute('content', contentValue); const metaTags = document.head.querySelectorAll("meta[name]"); if (metaTags.length > 2) { const lastMeta = metaTags[metaTags.length - 2]; lastMeta.after(metaTag); } else { document.head.appendChild(metaTag); }; } }; module202208091539Obj.init(); } $('.e-module-202208091539').each(function () { var _this = $(this); if (_this.data('init')) { return; }; _this.data('init', true); module202208091539Fun($(this)); }); };; if ($('.e-module-202503241407').length > 0) { $('.e-module-202503241407').each(function () { var $target = $('.e-module-202503241407'); if ($target.length > 0) { var tab = $target.find('.partner-tab'); var tabCon = $target.find('.tab-item'); var winw = $(window).width(); var perview = 12; var timer = ''; var swiper = {}; tab.on('click', function () { var $this = $(this); var _index = $this.index(); $this.addClass('active').siblings().removeClass('active'); tabCon.eq(_index).addClass('active').siblings().removeClass('active'); if (winw < 992) { initSwiper(tabCon.eq(_index), _index); } }); tab.eq(0).trigger('click'); if (winw < 992) { for (var i = 0; i < tabCon.length; i++) { var SwiperWeb = tabCon.eq(i).find('.links-pc'); var html = ''; for (var j = 0; j < SwiperWeb.find(".item-links").length; j++) { html = html + SwiperWeb.find(".item-links").eq(j).html(); }; tabCon.eq(i).find('.links-mob .swiper .swiper-wrapper').html(html); var items = tabCon.eq(i).find('.links-mob .swiper .swiper-wrapper').find('.item-link'); items.each(function () { var This = $(this); This.find('img').attr('src', This.find('img').data('original')); }); itemLength = items.length; // 计算speaker数量怎么排版 function countLi(global) { var num = 0; var viewLen = Math.ceil(items.length / global); for (var k = 0; k < viewLen; k++) { tabCon.eq(i).find(".links-mob .swiper-wrapper").prepend( '
'); } items.each(function (k, e) { if (k % global === 0 && k !== 0) { num++; } $(e).appendTo(tabCon.eq(i).find(".swiper-slide")[num]); }); }; function changeWindow(winw) { winw = $(window)[0].innerWidth; tabCon.eq(i).find('.swiper-slide').remove(); if (winw > 1024) { countLi(perview); items.css('width', 100 / (perview / 2) + '%'); } else if (winw <= 1200 && winw > 992) { countLi(6); } else if (winw <= 992) { countLi(12); }; }; $(window).resize(function () { var w = $(window).width(); timer ? clearTimeout(timer) : ''; timer = setTimeout(function () { if (w != winw) { changeWindow(winw); winw = w; } }, 100); }) changeWindow(winw); }; }; // 初始化 swiper组件 function initSwiper($this, index) { var _this = this; if ($this.data('init')) { return; }; $this.data('init', true); var slideLength = $this.find(".swiper-slide").length; var mySwiper = new Swiper($this.find(".swiper"), { slidesPerView: 1, spaceBetween: 20, resistanceRatiao: 1, watchOverflow: true, observer: true, observeParents: true, pagination: { el: $this.find('.swiper-pagination'), clickable: true, }, onSlideChangeEnd: function (swiper) { swiper.update(); }, breakpoints: { 1024: { spaceBetween: 20, }, 750: { spaceBetween: 20, resistanceRatiao: 1, }, }, on: { init: function () {}, resize: function () { var _swiper = this; setTimeout(function () { _swiper.update(); }, 250); }, }, }); swiper[index] = mySwiper; }; } }) }; if ($('.e-module-202503241422').length > 0) { function module202503241422Fun($target) { var module202503241422Obj = { init: function () { this.win = $(window); this.moduleObj = $target; this.tab = $target.find('.tablist li'); this.tabCon = $target.find('.tab-con'); // 数组存储swiper对象 this.swiper = {}; this.resizeInit(); this.clickEvent(); // tab点击事件 this.resizeEvent(); }, resizeInit: function () { this.winw = this.win.width(); }, clickEvent: function () { var _this = this; _this.tab.on('click', function () { var $this = $(this); var _index = $this.index(); $this.addClass('active').siblings().removeClass('active'); _this.tabCon.eq(_index).addClass('active').siblings().removeClass('active'); }); _this.tab.eq(0).trigger('click'); }, resizeEvent: function () { // 页面resize事件 var _this = this; var resizeWinw = 0; var resizeTimer = ''; this.win.on('resize.202208150943', function () { var winw = _this.win.width(); if (winw != resizeWinw) { currentWinw = winw; // 删除之前的定时器 if (resizeTimer) { clearTimeout(resizeTimer); } // 添加新的定时器 resizeTimer = setTimeout(function () { _this.resizeInit(); }, 200) } }) } }; module202503241422Obj.init(); }; $('.e-module-202503241422').each(function () { // 防止js文件被执行2次。 var _this = $(this); if (_this.data('init')) { return; } _this.data('init', true); module202503241422Fun($(this)); }); }; if ($('.e-module-202503241542').length > 0) { function module202503241542Fun($target) { var module202503241542Obj = { init: function () { this.win = $(window); this.moduleObj = $target; this.resizeInit(); this.lazyPicLink(); this.initSwiper(); this.resizeEvent(); }, resizeInit: function () { this.winw = this.win.width(); }, lazyPicLink: function () { // 加载图片 if (this.scrollTop + this.winh * 1.5 > this.moduleTop) { // 当滚动条滚动到当前位置时,加载视频 this.moduleSlideObj = this.moduleObj.find(".swiper-slide"); this.moduleSlideObj.each(function () { var $this = $(this); var imgObj = $this.find('img'); var src = imgObj.attr("data-original"); if (imgObj.attr("src") != src) { imgObj.attr("src", src) } }) } }, judgmentSwiper: function () { if (this.moduleSlideObj.length > 1) { if (this.moduleObj.data("swiper-init")) { return; } this.moduleObj.data("swiper-init", true); this.initSwiper(); } }, initSwiper: function () { var _this = this; var slideLength = $target.find(".swiper-slide").length; var mySwiper = new Swiper($target.find(".swiper"), { slidesPerView: 1, spaceBetween: 20, resistanceRatiao: 1, //触底不反弹 slidesPerGroup: 1, watchOverflow: true, //一屏显示左右按钮和pag pagination: { el: $target.find('.swiper-pagination'), clickable: true, }, navigation: { nextEl: $target.find(".swiper-button-next"), prevEl: $target.find(".swiper-button-prev"), }, //大于分辨率 breakpoints: { 1280: { slidesPerView: 3, spaceBetween: 30, slidesPerGroup: 3, }, 1024: { slidesPerView: 3, spaceBetween: 20, slidesPerGroup: 3, }, 768: { slidesPerView: 2, spaceBetween: 20, slidesPerGroup: 2, } }, }); }, resizeEvent: function () { // 页面resize事件 var _this = this; var resizeWinw = 0; var resizeTimer = ''; this.win.on('resize.202208150943', function () { var winw = _this.win.width(); if (winw != resizeWinw) { currentWinw = winw; // 删除之前的定时器 if (resizeTimer) { clearTimeout(resizeTimer); } // 添加新的定时器 resizeTimer = setTimeout(function () { _this.resizeInit(); }, 200) } }) } }; module202503241542Obj.init(); }; $('.e-module-202503241542').each(function () { // 防止js文件被执行2次。 var _this = $(this); if (_this.data('init')) { return; } _this.data('init', true); module202503241542Fun($(this)); }); }; var joinTop = $('.e-module-202503241436').offset().top; $('.e-module-202209021400').find('.toJoin').click(function () { $("html,body").animate({ scrollTop: joinTop }, 500) }); if ($('.e-module-202504301048').length > 0) { function module202504301048Fun($target) { var module202504301048Obj = { init: function () { this.win = $(window); this.moduleObj = $target; this.resizeInit(); this.lazyPicLink(); this.initSwiper(); this.clickEvent(); this.resizeEvent(); }, resizeInit: function () { this.winw = this.win.width(); }, lazyPicLink: function () { // 加载图片 if (this.scrollTop + this.winh * 1.5 > this.moduleTop) { // 当滚动条滚动到当前位置时,加载视频 this.moduleSlideObj = this.moduleObj.find(".swiper-slide"); this.moduleSlideObj.each(function () { var $this = $(this); var imgObj = $this.find('img'); var src = imgObj.attr("data-original"); if (imgObj.attr("src") != src) { imgObj.attr("src", src) } }) } }, judgmentSwiper: function () { if (this.moduleSlideObj.length > 1) { if (this.moduleObj.data("swiper-init")) { return; } this.moduleObj.data("swiper-init", true); this.initSwiper(); } }, clickEvent: function () { var _this = this; // 获取对象 var point = this.moduleObj.find('.solution-con .swiper-event'); point.on('click', function () { $('body').append($(this).parent().find('.ronghai-solution-pop').clone()).find('>.ronghai-solution-pop').show(); $('body').css('overflow', 'hidden'); }) $('body').on('click', ".ronghai-solution-pop-cons", function () { $('body').find('>.ronghai-solution-pop').remove(); $('body').css('overflow', 'auto'); }) $('body').on('click', '.ronghai-solution-close-btn', function () { $('body').find('>.ronghai-solution-pop').remove(); $('body').css('overflow', 'auto'); }) $('body').on('click', '.ronghai-solution-pop-con', function (e) { e.stopPropagation(); }) }, initSwiper: function () { var _this = this; var slideLength = $target.find(".swiper-slide").length; var mySwiper = new Swiper($target.find(".swiper"), { slidesPerView: 1, spaceBetween: 20, resistanceRatiao: 1, //触底不反弹 slidesPerGroup: 1, watchOverflow: true, //一屏显示左右按钮和pag pagination: { el: $target.find('.swiper-pagination'), clickable: true, }, navigation: { nextEl: $target.find(".swiper-button-next"), prevEl: $target.find(".swiper-button-prev"), }, //大于分辨率 breakpoints: { 1280: { slidesPerView: 3, spaceBetween: 30, slidesPerGroup: 3, }, 1024: { slidesPerView: 3, spaceBetween: 20, slidesPerGroup: 3, }, 768: { slidesPerView: 2, spaceBetween: 20, slidesPerGroup: 2, } }, }); }, resizeEvent: function () { // 页面resize事件 var _this = this; var resizeWinw = 0; var resizeTimer = ''; this.win.on('resize.202208150943', function () { var winw = _this.win.width(); if (winw != resizeWinw) { currentWinw = winw; // 删除之前的定时器 if (resizeTimer) { clearTimeout(resizeTimer); } // 添加新的定时器 resizeTimer = setTimeout(function () { _this.resizeInit(); }, 200) } }) } }; module202504301048Obj.init(); }; $('.e-module-202504301048').each(function () { // 防止js文件被执行2次。 var _this = $(this); if (_this.data('init')) { return; } _this.data('init', true); module202504301048Fun($(this)); }); }; });