Help
RSS
API
Feed
Maltego
Contact
Domain > icplay.com
×
More information on this domain is in
AlienVault OTX
Is this malicious?
Yes
No
DNS Resolutions
Date
IP Address
2024-09-15
163.181.145.235
(
ClassC
)
2024-09-15
163.181.145.239
(
ClassC
)
2026-01-28
163.181.66.189
(
ClassC
)
Port 80
HTTP/1.1 200 OKServer: TengineContent-Type: text/html; charsetutf-8Content-Length: 81311Connection: keep-aliveDate: Mon, 26 Jan 2026 20:28:32 GMTx-oss-request-id: 6977CE70400584383031D933Accept-Ranges: bytesx-oss-object-type: Normalx-oss-storage-class: Standardx-oss-ec: 0048-00000001x-oss-force-download: trueContent-MD5: PsxqX0EF4oRV90ikkRWgTgx-oss-server-time: 13Via: ens-cache5.l2us41729,1728,304-0,M, ens-cache22.l2us41730,0, ens-cache15.us300,32,200-0,H, ens-cache11.us3036,0Vary: Accept-EncodingVary: Accept-EncodingETag: 3ECC6A5F4105E28455F748A49115A04ELast-Modified: Thu, 25 Apr 2024 06:20:36 GMTx-oss-hash-crc64ecma: 8059464058592924265Age: 147871Ali-Swift-Global-Savetime: 1769459312X-Cache: HIT TCP_HIT dirn:1:442624070X-Swift-SaveTime: Mon, 26 Jan 2026 20:28:32 GMTX-Swift-CacheTime: 2592000Content-Encoding: gzipTiming-Allow-Origin: *EagleId: a3b5429f17696071839611895e !DOCTYPE html>html langen> head> script> var util { throttle(fn, wait) { let inThrottle, lastFn, lastTime; return function () { const context this, args arguments; if (!inThrottle) { fn.apply(context, args); lastTime Date.now(); inThrottle true; } else { clearTimeout(lastFn); lastFn setTimeout(function () { if (Date.now() - lastTime > wait) { fn.apply(context, args); lastTime Date.now(); } }, Math.max(wait - (Date.now() - lastTime), 0)); } }; }, isMobile() { return window.navigator.userAgent.match( /(phone|pad|pod|iPhone|iPod|ios|iPad|Android|Mobile|Symbian|Windows Phone)/i ); }, getAllUrlParams(url) { var queryString url ? url.split(?)1 : window.location.search.slice(1); var obj {}; if (!queryString) { return obj; } // stuff after # is not part of query string, so get rid of it queryString queryString.split(#)0; var arr queryString.split(&); for (var i 0; i arr.length; i++) { var a arri.split(); var paramName a0; var paramValue typeof (a1) undefined ? true : a1; paramName paramName.toLowerCase(); if (typeof paramValue string) paramValue paramValue.toLowerCase(); if (paramName.match(/\(\d+)?\$/)) { var key paramName.replace(/\(\d+)?\/, ); if (!objkey) objkey ; if (paramName.match(/\\d+\$/)) { var index /\(\d+)\/.exec(paramName)1; objkeyindex paramValue; } else { objkey.push(paramValue); } } else { if (!objparamName) { objparamName paramValue; } else if (objparamName && typeof objparamName string) { objparamName objparamName; objparamName.push(paramValue); } else { objparamName.push(paramValue); } } } return obj; }, loadJsAsync(src, async, attribute) { return new Promise((resolve, reject) > { const script document.createElement(script); script.src src; script.async async; if (attribute) { for (const key in attribute) { script.setAttribute(key, attributekey); } } const onload () > { console.info(js loaded: , src); script.removeEventListener(load, onload); resolve(); }; script.addEventListener(load, onload); script.addEventListener(error, (err) > { script.removeEventListener(load, onload); console.error(loading js error: , src, err); reject(new Error(`Failed to load ${src}`)); }); ( document.getElementsByTagName(head)0 || document.documentElement ).appendChild(script); }); }, loadImageAsync(url, callbackFunc) { return new Promise(function (resolve, reject) { var img new Image(); img.onload function () { img.onload null; console.info(success to load image); resolve(img); callbackFunc && (callbackFunc instanceof Function) && callbackFunc(img); }; img.error function () { reject(fail to load image); }; img.src url; }) }, setDragScrollEvent(selector) { const gameShowEle document.querySelector(selector); let left 0; let oldLeft 0; const move util.throttle((event) > { let x left + (oldLeft - event.clientX) if (x 0) x 0; gameShowEle.scrollTo(x, 0); }, 100) gameShowEle.addEventListener(mousedown, function (event) { gameShowEle.style.cursor grabbing; gameShowEle.style.userSelect none; oldLeft event.clientX; left gameShowEle.scrollLeft; document.addEventListener(mousemove, move) }); document.addEventListener(mouseup, function () { gameShowEle.style.cursor pointer; gameShowEle.style.removeProperty(user-select); document.removeEventListener(mousemove, move) }) }, setHistoryGame(appId, maxHistoryCount) { const HISTORY_KEY gameHistoryList; const fnUnique function (arr, uKey) { const map new Map(); arr.forEach((item, index) > { if (!map.has(itemuKey)) { map.set(itemuKey, item); } }); return ...map.values(); }; try { let localGameList JSON.parse(localStorage.getItem(HISTORY_KEY)); if (!localGameList) { localGameList ; } const obj { id: appId, }; localGameList.splice(0, 0, obj); localGameList fnUnique(localGameList, id); if (localGameList.length > maxHistoryCount) { localGameList localGameList.slice(0, maxHistoryCount); } localStorage.setItem(gameHistoryList, JSON.stringify(localGameList)); } catch (e) { console.error(add history error:, e); } }, getHistoryGames() { try { const HISTORY_KEY gameHistoryList; const temp (localStorage.getItem(HISTORY_KEY)) && JSON.parse(localStorage.getItem(HISTORY_KEY)); if (temp && temp ! null) { return temp; } } catch (e) { console.error(get history error:, e); } return ; }, getCandidateGameList( allGames, historyGames, config, excludeList ) { if (!allGames) { return; } if (!config) { return; } const fnNotInclude (appId) > { if (!excludeList) { return true; } return !excludeList.includes(appId); }; const dealAppsByConfigToSort (oldApps, configNavApps) > { let newNavApps oldApps; if (configNavApps && oldApps) { const maxIndex newNavApps.length || 0; newNavApps.forEach((m) > { const index configNavApps.findIndex((y) > y m.app_id); if (index > -1) { m.orderIndex index; } else { m.orderIndex maxIndex; } }); newNavApps newNavApps.sort((x, y) > x.orderIndex - y.orderIndex); newNavApps newNavApps.map((m) > { delete m.orderIndex; return m; }); } return newNavApps; } const navApps ; let historyIndex 0; for (let i 0; i config.history; i++) { if (i > historyGames.length) { break; } if (historyIndex > historyGames.length) { break; } const historyAppId historyGameshistoryIndex && historyGameshistoryIndex.id; const historyApp allGames.find( (app) > app.app_id historyAppId && fnNotInclude(app.app_id) ); if (historyApp) { navApps.push({ id: historyApp.app_id, icon: historyApp.game_material.icon, name: historyApp.base.display_name, history: true, }); } else { i--; } historyIndex++; } let moreGames config.count - navApps.length; let fiterHistoryApps allGames.filter((m) > { if (navApps && navApps.length > 0) { const index navApps.findIndex((y) > y.id m.app_id); return index -1; } else { return true; } }); fiterHistoryApps dealAppsByConfigToSort(fiterHistoryApps, config.apps); if (config.count 0) { moreGames fiterHistoryApps.length; } if (moreGames > 0) { const fnInPresetList (appId) > { if ( !config.apps || config.apps null || config.apps.length 0 || config.count 0 ) { return true; } return config.apps.includes(appId); }; for (let i 0; i fiterHistoryApps.length && moreGames > 0; i++) { const app fiterHistoryAppsi; if ( navApps.findIndex((existingApp) > existingApp.id app.id) > -1 ) { continue; } if (fnNotInclude(app.app_id) && fnInPresetList(app.app_id)) { navApps.push({ id: app.app_id, icon: app.game_material.icon, name: app.base.display_name, history: false, }); moreGames--; } } } return navApps; }, getGamemenuCommonSites( menuSite, excludeList ) { if (!(menuSite && menuSite.length)) { return; } const fnNotInclude (appId) > { if (!excludeList) { return true; } return !excludeList.includes(appId); }; let navSites JSON.parse(JSON.stringify(menuSite)); navSites navSites.filter(site > site && site.app_id && fnNotInclude(site.app_id)) return navSites; }, storage: { setItmeToObjectForLocalStorage(key, objectKeyName, objectValueitem) { let res false try { const _localStorageObjectStr localStorage.getItem(key); let _localStorageObject { objectKeyName: objectValueitem }; if (_localStorageObjectStr) { _localStorageObject JSON.parse(_localStorageObjectStr); _localStorageObjectobjectKeyName objectValueitem; } localStorage.setItem(key, JSON.stringify(_localStorageObject)); res true; } catch (error) { console.error(error); } return res }, getItmeFromObjectForLocalStorage(key, objectKeyName) { let res null; try { const _localStorageObjectStr localStorage.getItem(key); if (_localStorageObjectStr) { const _localStorageObject JSON.parse(_localStorageObjectStr); res _localStorageObject && _localStorageObjectobjectKeyName; } } catch (error) { console.error(error); } return res } }, formatUrl(url) { if (url.indexOf(st) -1) { if (url.indexOf(?) -1) { url `${url}?st${new Date().getTime()}`; } else { url `${url}&st${new Date().getTime()}`; } } return url; }, openPageByA(url, target) { const a document.createElement(a); a.href url; a.target target || _blank; document.body.appendChild(a); a.click(); a.remove(); }, logEvent(eventName, category, label, value, nonInteraction,game_id) { if(eventName){ const eventData{eventName}; if (category ! undefined || label ! undefined || value ! undefined || nonInteraction ! undefined|| game_id ! undefined) { (category ! undefined) && (eventData.category category); (label ! undefined) && (eventData.label label); //(value ! undefined) && (eventData.value value); (nonInteraction ! undefined) && (eventData.nonInteraction nonInteraction); (game_id ! undefined) && (eventData.game_id game_id); } if(window.miniBuriedPointObj&&window.miniBuriedPointObj.sendEvent){ window.miniBuriedPointObj.sendEvent(eventData); } } }, logLinkEvent(domStrList,eventName,pageName){ window.addEventListener(DOMContentLoaded,()>{ if(domStrList&&Array.isArray(domStrList)){ domStrList.forEach(domStr>{ const domsdocument.querySelectorAll(domStr); if(doms){ doms.forEach(dom>{ const href dom.getAttribute(href); if(href.includes(/info?)){ dom.addEventListener(click,()>{ console.log(href) window.util&& window.util.logEvent(eventName, pageName,,0,false); }) } }) } }) } }) }, getSubChannelIdFromLocation() { const subChannelIdFromLocation location.pathname.split(/)1 // 从地址中取出动态子渠道名称 const lowerSubChannelIdFromLocationsubChannelIdFromLocation.toLowerCase(); const excludeList , /, home, privacy, terms, gamebox, today, game, v1, main, debug, activity,page const hasSubChannelId !excludeList.includes(lowerSubChannelIdFromLocation) && !(/\./ig.test(lowerSubChannelIdFromLocation)) return { hasSubChannelId, subChannelIdFromLocation } }, /** * 静态页面动态替换子渠道链接 */ replaceSubChannelId() { const links Array.from(document.getElementsByTagName(a)) const sameOriginLinks links.filter(link > link.href.startsWith(location.origin)) const { hasSubChannelId, subChannelIdFromLocation } this.getSubChannelIdFromLocation(); if (hasSubChannelId) { sameOriginLinks.forEach(link > { const originHref link.getAttribute(href); const originHrefPrefix originHref && originHref.split(/) && originHref.split(/)1 || ; if (originHrefPrefix.toLocaleLowerCase() ! subChannelIdFromLocation.toLocaleLowerCase()) { const href originHref.startsWith(/main) ? originHref.replace(main, subChannelIdFromLocation) : `/${subChannelIdFromLocation}${originHref}` link.setAttribute(href, href) } }) } }, getElementVisibleHeight(element) { var heightStr0px; if(element){ var rect element.getBoundingClientRect(); var windowHeight window.innerHeight || document.documentElement.clientHeight; var scrollTop window.pageYOffset || document.documentElement.scrollTop; var elementTop rect.top + scrollTop; var elementBottom rect.bottom + scrollTop; var visibleHeight Math.min(elementBottom, windowHeight) - Math.max(elementTop, scrollTop); if (visibleHeight > 0) { heightStr`${visibleHeight}px`; } } return heightStr; }, }; /script> script> var lazyLoadImgObj { isIn(el) { var bound el.getBoundingClientRect(); var clientHeight window.innerHeight; return el.getAttribute(lazy) loading && bound.top clientHeight; }, checkImg() { let imgs document.querySelectorAll(imglazyloading); Array.from(imgs).forEach((el) > { if (lazyLoadImgObj.isIn(el)) { lazyLoadImgObj.loadImg(el); } }); }, loadImg(el) { if (el.src ! el.dataset.src) { el.src el.dataset.src; el.setAttribute(lazy, loaded); } }, }; const checkImgFunc util.throttle(lazyLoadImgObj.checkImg, 500); /script> meta http-equivContent-Type contenttext/html; charsetUTF-8 /> link relicon typeimage/x-icon href/static/images/favicon.ico /> meta http-equivX-UA-Compatible contentIEedge /> meta nameviewport contentwidthdevice-width, initial-scale1.0 /> title>Every Moment is Playful | icplay.com/title> meta namekeywords contentRelaxing Gameplay, Time Passer, Easy Controls, Family Friendly, Quick Rounds, Addictive Mechanics, Short Breaks, Unwind and Play, Casual Gamers, Stress Relief. /> meta namedescription contentWelcome to icplay.com, your ultimate destination for online casual games! Our mission is to provide a diverse selection of relaxing and enjoyable games that you can play anytime, anywhere. Whether you're looking for quick-witted puzzles or action-packed adventures, our game library caters to your every gaming whim. Visit us now to embark on a journey of fun and entertainment with players from around the globe! /> script srchttps://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?clientca-pub-3962242587190395 async crossoriginanonymous data-ad-clientca-pub-3962242587190395 >/script> script>const _0x1e5c1e_0x52ce;function _0x1180(){const _0x28c853ient\x22,ins\x20class,script,th-respons,\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20,a-full-wid,\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20,ex;justify,\x20\x20\x20\x20style,759988PCscnh,gle\x20,\x20>\x0a\x20\x20\x20\x20\x20\x20\x20,ent,27558410ySsPYE,\x20\x20\x20\x20,data-ad-cl,-content:c,>\x0a\x20\x20\x20\x20\x20\x20\x20\x20,5898067DOlIdK,style\x22dis,innerHTML,3EoVEUm,\x22adsbygoo,GvtxW,.push({});,768294YGUTID,appendChil,5YjBQfs,pMaqP,\x20\x20\x20data-ad,e-block;,createElem,/ins>,\x20/ins>,le\x20\x20windo,enter;alig,nter;,(adsbygoog,6NDodPu,d-client\x22,ot\x22,\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20,1050346HuTPlg,n-items:ce,4017708kNsbwE,play:inlin,concat,11dCcLxo,-format\x22a,\x20\x20\x20\x20data-a,w.adsbygoo,uto\x22\x0a\x20\x20\x20\x20\x20,\x20\x20\x20\x20\x20\x20\x20dat,ive\x22true\x22,display:fl,810656ZNwuqY,data-ad-sl,gle\x20||\x20),adAdsenseO;_0x1180function(){return _0x28c853;};return _0x1180();}function _0x52ce(_0x409161,_0xb1b752){const _0x3df53b_0x1180();return _0x52cefunction(_0x5cc244,_0x36a3e0){_0x5cc244_0x5cc244-(-0x20b0+-0x214f*-0x1+0x16);let _0x322f5e_0x3df53b_0x5cc244;return _0x322f5e;},_0x52ce(_0x409161,_0xb1b752);}(function(_0xfd0a7c,_0x1d9755){const _0x2ffcfe_0x52ce,_0x40e8b5_0xfd0a7c();while(!!){try{const _0x3d3f98-parseInt(_0x2ffcfe(0xe4))/(0x547*-0x1+-0x1e1a+0x2362)+-parseInt(_0x2ffcfe(0xba))/(0xeb7+0x96e+-0x1823)*(parseInt(_0x2ffcfe(0xe0))/(-0x752*0x1+0x1be1+-0x5*0x41c))+parseInt(_0x2ffcfe(0xd4))/(-0x83e+0x991+-0x14f)*(parseInt(_0x2ffcfe(0xe6))/(0x154*-0x6+-0x16f5+-0x11*-0x1d2))+-parseInt(_0x2ffcfe(0xb6))/(0xc31*-0x1+-0x146e+-0x1*-0x20a5)*(parseInt(_0x2ffcfe(0xdd))/(0x11ed*0x1+0x1be9*0x1+-0x2dcf))+parseInt(_0x2ffcfe(0xc7))/(0x133+0x8ef*0x2+-0x1309)+-parseInt(_0x2ffcfe(0xbc))/(0x2cd*0xb+0x1*-0x18d0+0x2*-0x2fb)+parseInt(_0x2ffcfe(0xd8))/(0x12b+-0x1e7+0xc6)*(parseInt(_0x2ffcfe(0xbf))/(-0x1711+-0x391*-0x2+0x1*0xffa));if(_0x3d3f98_0x1d9755)break;else _0x40e8b5push(_0x40e8b5shift());}catch(_0x548687){_0x40e8b5push(_0x40e8b5shift());}}}(_0x1180,-0x34a27+-0x126f5+0xb8862),((_0x1fe667,_0x20fbf3)>{const _0x18e0e7_0x52ce,_0x3ddd00{GvtxW:_0x18e0e7(0xcd),pMaqP:_0x18e0e7(0xb5)+_0x18e0e7(0xed)+_0x18e0e7(0xc2)+_0x18e0e7(0xc9)+_0x18e0e7(0xe3)};_0x1fe667_0x20fbf3{checkIfTurned(_0x24dc5a){return!!;},getAutoStyleAdHtml:(_0x2fa4c6,_0x27e48f,_0x3f5ea1,_0x2ec2e1_0x18e0e7(0xc6)+_0x18e0e7(0xd2)+_0x18e0e7(0xdb)+_0x18e0e7(0xee)+_0x18e0e7(0xbb)+_0x18e0e7(0xef))>_0x18e0e7(0xcc)+_0x18e0e7(0xe1)+_0x18e0e7(0xd5)+_0x3f5ea1+(_0x18e0e7(0xb9)+_0x18e0e7(0xcf)+_0x18e0e7(0xcf)+_0x18e0e7(0xd3)+\x22)+_0x2ec2e1+(_0x18e0e7(0xb9)+_0x18e0e7(0xcf)+_0x18e0e7(0xcf)+_0x18e0e7(0xc1)+_0x18e0e7(0xb7))+_0x2fa4c6+(_0x18e0e7(0xb9)+_0x18e0e7(0xcf)+_0x18e0e7(0xcf)+_0x18e0e7(0xd9))+(_0x27e48f?(_0x18e0e7(0xc8)+_0x18e0e7(0xb8))_0x18e0e7(0xbe)(_0x27e48f)_0x18e0e7(0xbe)(\x22):)+(_0x18e0e7(0xd1)+_0x18e0e7(0xcf)+_0x18e0e7(0xcf)+_0x18e0e7(0xe8)+_0x18e0e7(0xc0)+_0x18e0e7(0xc3)+_0x18e0e7(0xcf)+_0x18e0e7(0xcf)+_0x18e0e7(0xc4)+_0x18e0e7(0xd0)+_0x18e0e7(0xce)+_0x18e0e7(0xc5)+_0x18e0e7(0xdc)+_0x18e0e7(0xcf)+_0x18e0e7(0xcf)+_0x18e0e7(0xeb)),getFixedStyleAdHtml:(_0xa5b810,_0x55f148,_0x56915c,_0x3e278b)>_0x18e0e7(0xcc)+_0x18e0e7(0xe1)+_0x18e0e7(0xd5)+_0x56915c+(_0x18e0e7(0xb9)+_0x18e0e7(0xcf)+_0x18e0e7(0xcf)+_0x18e0e7(0xde)+_0x18e0e7(0xbd)+_0x18e0e7(0xe9))+_0x3e278b+(_0x18e0e7(0xb9)+_0x18e0e7(0xcf)+_0x18e0e7(0xcf)+_0x18e0e7(0xda)+_0x18e0e7(0xcb))+_0xa5b810+(_0x18e0e7(0xb9)+_0x18e0e7(0xcf)+_0x18e0e7(0xcf))+(_0x55f148?(_0x18e0e7(0xc8)+_0x18e0e7(0xb8))_0x18e0e7(0xbe)(_0x55f148)_0x18e0e7(0xbe)(\x22):)+(_0x18e0e7(0xd6)+_0x18e0e7(0xcf)+_0x18e0e7(0xcf)+_0x18e0e7(0xec)),generateAFCAd(_0x4924e3,_0x325bba){const _0x4f7285_0x18e0e7;_0x325bba_0x4f7285(0xdf)_0x4924e3;const _0x2030bddocument_0x4f7285(0xea)+_0x4f7285(0xd7)(_0x3ddd00_0x4f7285(0xe2));_0x2030bd_0x4f7285(0xdf)_0x3ddd00_0x4f7285(0xe7),_0x325bba_0x4f7285(0xe5)+d(_0x2030bd);}};})(window,_0x1e5c1e(0xca)+bj));/script> !-- Global site tag (gtag.js) - Google Analytics --> script async srchttps://www.googletagmanager.com/gtag/js?idG-4EDYN9C4Z3>/script> script> window.dataLayer window.dataLayer || ; function gtag() { dataLayer.push(arguments); } gtag(js, new Date()); gtag(config, G-4EDYN9C4Z3,{cookie_flags: max-age7200;SameSiteNone;Secure}); /script> script> !function (w, d, t) { w.TiktokAnalyticsObjectt;var ttqwtwt||;ttq.methodspage,track,identify,instances,debug,on,off,once,ready,alias,group,enableCookie,disableCookie,ttq.setAndDeferfunction(t,e){tefunction(){t.push(e.concat(Array.prototype.slice.call(arguments,0)))}};for(var i0;ittq.methods.length;i++)ttq.setAndDefer(ttq,ttq.methodsi);ttq.instancefunction(t){for(var ettq._it||,n0;nttq.methods.length;n++)ttq.setAndDefer(e,ttq.methodsn);return e},ttq.loadfunction(e,n){var ihttps://analytics.tiktok.com/i18n/pixel/events.js;ttq._ittq._i||{},ttq._ie,ttq._ie._ui,ttq._tttq._t||{},ttq._te+new Date,ttq._ottq._o||{},ttq._oen||{};var odocument.createElement(script);o.typetext/javascript,o.async!0,o.srci+?sdkid+e+&lib+t;var adocument.getElementsByTagName(script)0;a.parentNode.insertBefore(o,a)}; ttq.load(CO35SUJC77UDLEDOQENG); ttq.page(); }(window, document, ttq); /script> script>function _0x35d6(_0x5056d8,_0x2c4196){const _0x342fd6_0x4993();return _0x35d6function(_0x5c3261,_0x376fcb){_0x5c3261_0x5c3261-(0x5*0x2a7+-0x1499*-0x1+-0x2132);let _0x224c6c_0x342fd6_0x5c3261;return _0x224c6c;},_0x35d6(_0x5056d8,_0x2c4196);}const _0x362296_0x35d6;(function(_0x575e6b,_0x5468d4){const _0x59c8b1_0x35d6,_0x28c015_0x575e6b();while(!!){try{const _0x93dcfe-parseInt(_0x59c8b1(0xac))/(-0x1*0x46+0x2522+-0x55*0x6f)*(-parseInt(_0x59c8b1(0xb1))/(0x3e*-0x68+0x863*-0x3+0x1*0x325b))+-parseInt(_0x59c8b1(0xaa))/(0xc7d+-0x16c0+0xa46)*(-parseInt(_0x59c8b1(0xbb))/(-0x82f*-0x1+-0x1f9a+0x176f))+parseInt(_0x59c8b1(0xc8))/(0x1e32+0x28*-0x13+-0x1b35)*(-parseInt(_0x59c8b1(0xbf))/(0x893*0x4+0x243*-0x11+-0x1*-0x42d))+-parseInt(_0x59c8b1(0xd2))/(-0x127f+-0xfd8+0x1*0x225e)+parseInt(_0x59c8b1(0xad))/(0x3e5*0x3+0x9bd+0xab2*-0x2)+parseInt(_0x59c8b1(0xd3))/(0xfad+-0x2480+0xa*0x216)+-parseInt(_0x59c8b1(0xc0))/(-0xd*0x23e+0x25d3+-0x8a3)*(-parseInt(_0x59c8b1(0xb2))/(-0x1326+0x15a+0x11d7));if(_0x93dcfe_0x5468d4)break;else _0x28c015push(_0x28c015shift());}catch(_0x1b4361){_0x28c015push(_0x28c015shift());}}}(_0x4993,-0x3*-0x7e81b+0x14c4c2+0x5aa1*-0x53));function _0x4993(){const _0x18984511NqYOYk,ttQVU,track,howmi,Subscribe,ttq,rdruX,tion,uYINm,8972EZrhyu,nonInterac,event_cate,event,6jWBTgj,1309410xHgvGQ,gistration,gSCVP,KaIIz,event_labe,value,push,Download,5031895HwrIAY,label,split,product,eventName,gtag,game_id,NAYSJ,hkkqP,HkWUb,13174105xDsPqN,8084691efPfea,gory,specialTyp,category,1059pgFCwS,SKbjK,460482TXsooQ,5406792xTGmHS,CompleteRe,0|3|4|2|1,SQZOD,6AkXtBx;_0x4993function(){return _0x189845;};return _0x4993();}const miniTrackingSources;miniTrackingSources_0x362296(0xc6)({sendEvent(_0x2bb7d0){const _0x212433_0x362296,_0x5b7097{HkWUb:function(_0x4e1333,_0x34381f){return _0x4e1333!_0x34381f;},ttQVU:function(_0x1722ed,_0x25175f){return _0x1722ed!_0x25175f;},NAYSJ:function(_0x49f618,_0x315f3f){return _0x49f618!_0x315f3f;},rdruX:function(_0x4c45d7,_0x134129){return _0x4c45d7!_0x134129;},howmi:_0x212433(0xaf),SQZOD:_0x212433(0xbe)};let _0x1e703eundefined;if(_0x5b7097_0x212433(0xd1)(_0x2bb7d0_0x212433(0xd6),undefined)||_0x5b7097_0x212433(0xb3)(_0x2bb7d0_0x212433(0xc9),undefined)||_0x5b7097_0x212433(0xcf)(_0x2bb7d0_0x212433(0xc5),undefined)||_0x5b7097_0x212433(0xb8)(_0x2bb7d0_0x212433(0xbc)+_0x212433(0xb9),undefined)){const _0x19f3a5_0x5b7097_0x212433(0xb5)_0x212433(0xca)(|);let _0x34a6420x13d8+-0x1458+0x80;while(!!){switch(_0x19f3a5_0x34a642++){case0:_0x1e703e{};continue;case1:_0x5b7097_0x212433(0xcf)(_0x2bb7d0_0x212433(0xce),undefined)&&(_0x1e703e_0x212433(0xce)_0x2bb7d0_0x212433(0xce));continue;case2:_0x5b7097_0x212433(0xb8)(_0x2bb7d0_0x212433(0xbc)+_0x212433(0xb9),undefined)&&(_0x1e703e_0x212433(0xbc)+_0x212433(0xb9)_0x2bb7d0_0x212433(0xbc)+_0x212433(0xb9));continue;case3:_0x5b7097_0x212433(0xb3)(_0x2bb7d0_0x212433(0xd6),undefined)&&(_0x1e703e_0x212433(0xbd)+_0x212433(0xd4)_0x2bb7d0_0x212433(0xd6));continue;case4:_0x5b7097_0x212433(0xb8)(_0x2bb7d0_0x212433(0xc9),undefined)&&(_0x1e703e_0x212433(0xc4)+l_0x2bb7d0_0x212433(0xc9));continue;}break;}}window_0x212433(0xcd)&&window_0x212433(0xcd)(_0x5b7097_0x212433(0xb0),_0x2bb7d0_0x212433(0xcc),_0x1e703e);}}),miniTrackingSources_0x362296(0xc6)(((()>{const _0x1e991a_0x362296,_0x57846f{uYINm:function(_0x3504ad,_0x2f63d7){return _0x3504ad_0x2f63d7;},SKbjK:_0x1e991a(0xcb),gSCVP:_0x1e991a(0xae)+_0x1e991a(0xc1),hkkqP:_0x1e991a(0xb6),KaIIz:_0x1e991a(0xc7)},_0x40bf53{am_hd:_0x57846f_0x1e991a(0xc2),am_md:_0x57846f_0x1e991a(0xd0),cta_click:_0x57846f_0x1e991a(0xc3)};return{sendEvent(_0x1c9d35){const _0x533512_0x1e991a;if(!_0x1c9d35_0x533512(0xd5)+e)window_0x533512(0xb7)&&window_0x533512(0xb7)_0x533512(0xb4)&&window_0x533512(0xb7)_0x533512(0xb4)(_0x1c9d35_0x533512(0xcc));else _0x57846f_0x533512(0xba)(_0x1c9d35_0x533512(0xd5)+e,0x119*-0x1f+-0x4e3*-0x3+0x135f)&&(window_0x533512(0xb7)&&window_0x533512(0xb7)_0x533512(0xb4)&&window_0x533512(0xb7)_0x533512(0xb4)(_0x1c9d35_0x533512(0xcc),{contents:{content_id:_0x1c9d35_0x533512(0xd6),content_type:_0x57846f_0x533512(0xab)}}),_0x40bf53_0x1c9d35_0x533512(0xcc)&&(window_0x533512(0xb7)&&window_0x533512(0xb7)_0x533512(0xb4)&&window_0x533512(0xb7)_0x533512(0xb4)(_0x40bf53_0x1c9d35_0x533512(0xcc),{contents:{content_id:_0x1c9d35_0x533512(0xd6),content_type:_0x57846f_0x533512(0xab)}})));}};})()));/script> script>const _0x4c583d_0x4c08;function _0x4c72(){const _0x22037elaWSu,push,494204IJCBOL,filter,854xoYCKE,trackingSo,urce,sendEvent,list,ios,test,userAgent,index,34212DmAgGR,TPoZt,android,4826790bOPyIP,isArray,keys,addEventLi,includes,Loaded,3036088ChdrkV,map,length,JmCZN,forEach,registerSo,miniBuried,urces,3757610rTEQQc,2044GffXQl,other,deviceType,IiCaQ,DOMContent,318645haXySL,3QKLwIv,2425WnfunW,view_game_,PointObj,stener,vngDr,LpzDz;_0x4c72function(){return _0x22037e;};return _0x4c72();}function _0x4c08(_0x110962,_0x1b3ae9){const _0x43f342_0x4c72();return _0x4c08function(_0x5b0407,_0x3c954f){_0x5b0407_0x5b0407-(0x17f*-0x7+-0x2065*0x1+-0x1*-0x2be4);let _0x7eccec_0x43f342_0x5b0407;return _0x7eccec;},_0x4c08(_0x110962,_0x1b3ae9);}(function(_0x609775,_0x3018f9){const _0x5b167e_0x4c08,_0x1c3e62_0x609775();while(!!){try{const _0x338d69-parseInt(_0x5b167e(0x123))/(-0xebf+-0x8c7*0x3+0x2915)+parseInt(_0x5b167e(0x12d))/(-0x1704+0x1f*-0x1d+-0x1*-0x1a89)*(-parseInt(_0x5b167e(0x124))/(0x258b*-0x1+-0xbb4+0x3142))+-parseInt(_0x5b167e(0x11e))/(-0x24f1+-0x40f*-0x8+-0x1*-0x47d)*(parseInt(_0x5b167e(0x125))/(0x19ed*0x1+0xe1a+-0x2802))+parseInt(_0x5b167e(0x10c))/(-0x8c4+-0xe08+-0x2*-0xb69)*(parseInt(_0x5b167e(0x12f))/(0x1770+-0x8fc+-0xe6d*0x1))+parseInt(_0x5b167e(0x115))/(0x4d*-0x3+0x7*0x1d3+0x1e*-0x65)+parseInt(_0x5b167e(0x10f))/(-0x1291+0x1c07+-0x96d)+-parseInt(_0x5b167e(0x11d))/(-0x10*0x1b7+0x199*-0xf+0x3371);if(_0x338d69_0x3018f9)break;else _0x1c3e62push(_0x1c3e62shift());}catch(_0x3bb719){_0x1c3e62push(_0x1c3e62shift());}}}(_0x4c72,0x52c4c+0x668ab+-0x5240d),((_0x25ef5b,_0x4c8e21)>{const _0x23d488_0x4c08,_0xb52c67{laWSu:_0x23d488(0x108),vngDr:_0x23d488(0x10e),TPoZt:_0x23d488(0x11f),LpzDz:function(_0x13ffaf){return _0x13ffaf();}},_0x2ab314{deviceType:{ios:!,android:!!,other:!!}},_0x2ba387()>{const _0x27544e_0x23d488,_0x48db7enavigator&&navigator_0x27544e(0x10a);if(/phone|pad|pod|iPhone|iPod|ios|iPad/i_0x27544e(0x109)(_0x48db7e))return _0xb52c67_0x27544e(0x12b);else return/Android/i_0x27544e(0x109)(_0x48db7e)?_0xb52c67_0x27544e(0x129):_0xb52c67_0x27544e(0x10d);},_0x349472()>{const _0x567db4_0x23d488;let _0x5bf541!;if(_0x2ab314&&_0x2ab314_0x567db4(0x120)){const _0x3717dbObject_0x567db4(0x111)(_0x2ab314_0x567db4(0x120))_0x567db4(0x116)(_0x34e3e6>{const _0x5c68d1_0x567db4;return _0x2ab314_0x5c68d1(0x120)_0x34e3e6?_0x34e3e6:;})_0x567db4(0x12e)(_0x4b5f67>_0x4b5f67),_0x4ccf0a_0xb52c67_0x567db4(0x12a)(_0x2ba387);_0x5bf541_0x3717db_0x567db4(0x113)(_0x4ccf0a);}return _0x5bf541;};_0x25ef5b_0x23d488(0x11b)+_0x23d488(0x127){trackingSources:,registerSource(_0x2f0b74){const _0x59c943_0x23d488;this_0x59c943(0x130)+_0x59c943(0x11c)_0x59c943(0x12c)(..._0x2f0b74);},sendEvent(_0x3fa051){const _0x52f07c_0x23d488;_0xb52c67_0x52f07c(0x12a)(_0x349472)&&this_0x52f07c(0x130)+_0x52f07c(0x11c)_0x52f07c(0x119)(_0x366175>{const _0x804a0f_0x52f07c;_0x366175_0x804a0f(0x106)(_0x3fa051);});}},_0x4c8e21&&_0x4c8e21_0x23d488(0x117)&&Array_0x23d488(0x110)(_0x4c8e21)&&_0x25ef5b_0x23d488(0x11b)+_0x23d488(0x127)_0x23d488(0x11a)+_0x23d488(0x131)(_0x4c8e21);})(window,miniTrackingSources),window_0x4c583d(0x112)+_0x4c583d(0x128)(_0x4c583d(0x122)+_0x4c583d(0x114),()>{const _0x235bf3_0x4c583d,_0x2a26a9{JmCZN:_0x235bf3(0x126)+_0x235bf3(0x107),IiCaQ:_0x235bf3(0x10b)};window_0x235bf3(0x11b)+_0x235bf3(0x127)_0x235bf3(0x106)({eventName:_0x2a26a9_0x235bf3(0x118),category:_0x2a26a9_0x235bf3(0x121)});}));/script> style> /*主题颜色设置*/ :root{ --theme-color:#000; --theme-color-secondary:#999; /*该主题暂无用该变量*/ --theme-color-primary:#4582FF; --theme-background:#fff; --theme-background-secondary:#fff; --theme-content-background:#fff; --border-radius: 8px; --border-radius-sm: 12px; --border-radius-lg: 15px; --font-size-sm: 12px; --font-size-lg: 18px; --font-size-xl: 20px; --play-btn-bg: #fff; --play-btn-color: #fff; --play-btn-padding-top-bottom: 4px; --play-btn-padding-left-right: 24px; } /*全局基本样式设置*/ body{ background-color: var(--theme-background); font-family: Helvetica; } .play-btn { display: inline-block; text-align: center; font-size: var(--font-size-sm); font-weight: 500; line-height: 17px; color: var(--play-btn-color); border-radius: var(--border-radius-sm); background-color: var(--play-btn-bg); padding: var(--play-btn-padding-top-bottom) var(--play-btn-padding-left-right); } .play-btn.is-primary { background-color: var(--theme-color-primary); } .ellipsis { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .text-center { text-align: center; } * { -webkit-tap-highlight-color: transparent; } body, html { margin: 0; padding: 0; width: 100%; height: 100% } .globalMain { display: flex; position: relative; flex-direction: column; align-items: center; width: 100%; min-height: 100vh } .globalMain:after { position: fixed; left: 0; top: 0; z-index: -1; width: 100vw; height: 100vh; content: } .divUrl { display: none; overflow: hidden; z-index: 4; width: 100vw; height: 0; font-weight: 800; font-size: 20px; color: #747474; transition: height .5s } .mainStyle { display: flex; overflow-x: hidden; flex-direction: column; align-items: center; width: 100%; min-height: calc(100vh - 125px) } .clickEnlarge:active { -webkit-tap-highlight-color: transparent; animation: clickEnlarge 0.2s linear; } @keyframes clickEnlarge { 0% { transform: scale(1); box-shadow: 0 3px 18px 0 rgb(0 0 0 / 16%); } 100% { transform: scale(1.4); box-shadow: 0 3px 18px 0 rgb(0 0 0 / 16%); } } .display-center-center{ display: flex; justify-content: center; align-items: center; } /style>script srchttps://code.jquery.com/jquery-3.3.1.min.js>/script> script>const _0x2da122_0x3fe0;(function(_0x2eb890,_0x4f3a71){const _0x3e6c23_0x3fe0,_0x33f029_0x2eb890();while(!!){try{const _0x437c70parseInt(_0x3e6c23(0xe9))/(0x623*0x1+0x2061+-0x2683)+-parseInt(_0x3e6c23(0xdd))/(-0x1b82+-0x792+-0x3e6*-0x9)+parseInt(_0x3e6c23(0xff))/(-0x18b6+-0x1*-0x61b+-0x1*-0x129e)*(-parseInt(_0x3e6c23(0xc3))/(-0x82b+0xc6e+-0x43f))+-parseInt(_0x3e6c23(0xd7))/(-0x2*0x354+0xd*-0x62+0x9d*0x13)+parseInt(_0x3e6c23(0x106))/(-0x210d+0x124e+0xec5)+-parseInt(_0x3e6c23(0xd8))/(-0x3*0x586+-0x1b0b+0x24c*0x13)*(parseInt(_0x3e6c23(0x13d))/(-0x1a76+-0x1*-0x1b4c+-0xce))+parseInt(_0x3e6c23(0xf3))/(0x1*0xf95+-0x3*-0x3cb+-0x1aed);if(_0x437c70_0x4f3a71)break;else _0x33f029push(_0x33f029shift());}catch(_0xdaa526){_0x33f029push(_0x33f029shift());}}}(_0x50cd,0x188ed4+-0x1b7*0x67d+0xa*0xc6d));const logerAdEvent(_0x5b3538,_0x9f639b)>{const _0x5ad43e_0x3fe0,_0x377803{Kufjd:_0x5ad43e(0xfd)},_0x6d3e01{fixed:,:_0x377803_0x5ad43e(0xe0),rewarded:r_,interstitial:i_,vignette:v_},_0x5e6f41_0x5ad43e(0xec)+_0x6d3e01_0x5b3538+_0x9f639b;window_0x5ad43e(0xc0)+_0x5ad43e(0x128)&&window_0x5ad43e(0xc0)+_0x5ad43e(0x128)_0x5ad43e(0xd2)&&window_0x5ad43e(0xc0)+_0x5ad43e(0x128)_0x5ad43e(0xd2)({eventName:_0x5e6f41});},getAdType_0x11506f>{const _0x3ffdd7_0x3fe0,_0x5b2a5f{FMmXO:_0x3ffdd7(0x132)+_0x3ffdd7(0x115)+_0x3ffdd7(0xc7),qjTmz:_0x3ffdd7(0x126)+al,CuTrv:_0x3ffdd7(0x132)+_0x3ffdd7(0x125)+d,etVis:_0x3ffdd7(0xf5),jzPqR:_0x3ffdd7(0x10c)+_0x3ffdd7(0xeb),uboPU:_0x3ffdd7(0x10b)};let _0x364b14;if(_0x11506f_0x3ffdd7(0xdc)+te(_0x5b2a5f_0x3ffdd7(0x120)))_0x364b14_0x5b2a5f_0x3ffdd7(0xb5);else{if(_0x11506f_0x3ffdd7(0xdc)+te(_0x5b2a5f_0x3ffdd7(0xb0)))_0x364b14_0x5b2a5f_0x3ffdd7(0x11e);else _0x11506f_0x3ffdd7(0xdc)+te(_0x5b2a5f_0x3ffdd7(0x101))&&(_0x364b14_0x5b2a5f_0x3ffdd7(0x105));}return _0x364b14;};function _0x3fe0(_0x57dcf2,_0x56b66f){const _0x2f9b6d_0x50cd();return _0x3fe0function(_0xd31114,_0x55ebcf){_0xd31114_0xd31114-(0x7*0x556+-0x55c+-0x1f4e);let _0xca49c1_0x2f9b6d_0xd31114;return _0xca49c1;},_0x3fe0(_0x57dcf2,_0x56b66f);}function _0x50cd(){const _0x2dc532TJNzU,FxFWL,push,hasAttribu,1006724amlXba,fjrGR,uVXkg,Kufjd,toLowerCas,SDpHU,YAZom,out\x20dom:de,forEach,ins,disconnect,localStora,1144842tQTyGv,target,tte-loaded,mini,display:\x20b,html,pblby,unload,isMobile,attr,27648054aKrblW,style,rewarded,JpXhS,diVSr,GbXpw,ame,CuSnb,RRpuN,NQGmS,other_,includes,1383jyJlME,fKxie,jzPqR,ring,block,blur,uboPU,4769496QmREJk,change,attributeN,VmYxb,off,vignette,data-vigne,FpfUT,QcDaC,setItem,KppvZ,RfXDA,MVmZP,adsense,class,ar-interst,UZylt,VyIIL,UiJAP,mxDws,hiHSb,parse,visibility,wWNTO,etVis,dfgUk,FMmXO,fixed,ezbJZ,test,IecSz,ar-rewarde,interstiti,parentNode,PointObj,ZuoWy,wnezg,observe,ement,attributes,DVrYw,ooLWk,etZDt,gvOqj,data-slotc,getItem,stringify,ytYmL,dIKZl,childList,grCvi,BoRhA,hidden,VFuMp,jmWOG,1156328evkngc,splice,log,ZRTjr,splay,out\x20dom:di,addedNodes,lock,CuTrv,mouseout,documentEl,hszGv,ready,qjTmz,DUYVj,oldValue,suEdJ,tagName,mouseover,wKTcW,display,MjvlG,xaInF,EveWJ,miniBuried,vent,none,13012NWTLsK,State,zapTm,type,itial,dMkyT,Dexqg,DjTtP,adsense_,one,DAAGM,PPhUS,lxLuz,toLocaleSt,out:clickE,sendEvent,length,EruXA,display:\x20n,OseuK,9038140MNxHMj,14BhFFKi;_0x50cdfunction(){return _0x2dc532;};return _0x50cd();}let isOverGoogleAd!,currentFullScreenAd;const setCurrentFullScreenAd_0x38a00a>{currentFullScreenAd_0x38a00a;};let setIsOverGoogleAd_0x31c760>{isOverGoogleAd_0x31c760;},ad/adsbygoogle/,mouseoverListenerFuncfunction(){const _0x29db22_0x3fe0,_0x3b57b1{ezbJZ:function(_0x3f5dab,_0x44f2bf){return _0x3f5dab(_0x44f2bf);},FpfUT:_0x29db22(0x114),VmYxb:function(_0xa689b9,_0x337f0d){return _0xa689b9(_0x337f0d);}};ad_0x29db22(0x123)(_0x3b57b1_0x29db22(0x122)($,this)_0x29db22(0xf2)(_0x3b57b1_0x29db22(0x10d)))&&_0x3b57b1_0x29db22(0x109)(setIsOverGoogleAd,!!);},mouseoutListenerFuncfunction(){const _0x35090e_0x3fe0,_0x141a93{wKTcW:function(_0x59f96a,_0x18b78d){return _0x59f96a(_0x18b78d);},ZRTjr:_0x35090e(0x114)};ad_0x35090e(0x123)(_0x141a93_0x35090e(0xbb)($,this)_0x35090e(0xf2)(_0x141a93_0x35090e(0x140)))&&_0x141a93_0x35090e(0xbb)(setIsOverGoogleAd,!);};const setCreateInsEvent()>{const _0x45e741_0x3fe0,_0x4a88ab{EveWJ:function(_0x45aadc,_0x5d192e){return _0x45aadc_0x5d192e;},fKxie:_0x45e741(0xe6),uVXkg:function(_0x3d286a,_0x2f575d){return _0x3d286a(_0x2f575d);},mxDws:_0x45e741(0xba),xaInF:_0x45e741(0xb1),Dexqg:function(_0x545836,_0x14ed35){return _0x545836_0x14ed35;},KppvZ:_0x45e741(0x137),PPhUS:function(_0x407e09,_0x591d48){return _0x407e09_0x591d48;},DUYVj:_0x45e741(0xee),CuSnb:_0x45e741(0x12d),hiHSb:_0x45e741(0xf4),RRpuN:function(_0x2ad640,_0x5909f9){return _0x2ad640(_0x5909f9);},pblby:function(_0x372fc1,_0x218c7d){return _0x372fc1_0x218c7d;},ytYmL:_0x45e741(0x126)+al,zapTm:_0x45e741(0xf5),QcDaC:_0x45e741(0x10b),wWNTO:_0x45e741(0xd5)+_0x45e741(0xcc),DVrYw:function(_0x5cfaa7,_0x5ba094){return _0x5cfaa7_0x5ba094;},hszGv:_0x45e741(0x103),OseuK:function(_0x118a1c,_0x154112,_0x148f75){return _0x118a1c(_0x154112,_0x148f75);},UZylt:function(_0x5c0f09,_0x423ef0){return _0x5c0f09(_0x423ef0);},UiJAP:_0x45e741(0x142)+_0x45e741(0x141),FxFWL:_0x45e741(0xed)+_0x45e741(0x144),fjrGR:function(_0x2a637b,_0x421cfd){return _0x2a637b_0x421cfd;},GbXpw:_0x45e741(0xc2),BoRhA:function(_0x2bd58d,_0x1945e0){return _0x2bd58d_0x1945e0;},VyIIL:function(_0x4ea2e5,_0xcb1b06){return _0x4ea2e5(_0xcb1b06);},VFuMp:function(_0x3e1f86,_0x5937e0,_0x3fb12b){return _0x3e1f86(_0x5937e0,_0x3fb12b);},gvOqj:function(_0x21424e,_0x139f6c){return _0x21424e(_0x139f6c);},lxLuz:_0x45e741(0xe4)+l,RfXDA:function(_0x13087c,_0x23964e){return _0x13087c(_0x23964e);},SDpHU:_0x45e741(0xf0)},_0x57ed61new MutationObserver((_0x54dc07,_0x523f51)>{const _0x3558db_0x45e741;for(let _0x56c602 of _0x54dc07){_0x4a88ab_0x3558db(0xc9)(_0x56c602_0x3558db(0xc6),_0x4a88ab_0x3558db(0x110))&&_0x4a88ab_0x3558db(0xce)(_0x56c602_0x3558db(0xea)_0x3558db(0xb9)_0x3558db(0xe1)+e(),_0x4a88ab_0x3558db(0xb6))&&_0x56c602_0x3558db(0x143)_0x3558db(0xe5)(_0x42c547>{const _0x326b6a_0x3558db;_0x4a88ab_0x326b6a(0xbf)(_0x42c547_0x326b6a(0xb9)_0x326b6a(0xe1)+e(),_0x4a88ab_0x326b6a(0x100))&&(_0x4a88ab_0x326b6a(0xdf)($,_0x42c547)on(_0x4a88ab_0x326b6a(0x119),mouseoverListenerFunc),_0x4a88ab_0x326b6a(0xdf)($,_0x42c547)on(_0x4a88ab_0x326b6a(0xbe),mouseoutListenerFunc));});if(_0x4a88ab_0x3558db(0xbf)(_0x56c602_0x3558db(0xc6),_0x4a88ab_0x3558db(0xfa))&&_0x4a88ab_0x3558db(0xbf)(_0x56c602_0x3558db(0x108)+_0x3558db(0xf9),_0x4a88ab_0x3558db(0x11a))){const _0x2a1963_0x4a88ab_0x3558db(0xfb)(getAdType,_0x56c602_0x3558db(0xea));_0x4a88ab_0x3558db(0xef)(_0x56c602_0x3558db(0xea)_0x3558db(0xb9)_0x3558db(0xe1)+e(),_0x4a88ab_0x3558db(0x100))&&_0x4a88ab_0x3558db(0x135),_0x4a88ab_0x3558db(0xc5),_0x4a88ab_0x3558db(0x10e)_0x3558db(0xfe)(_0x2a1963)&&(_0x56c602_0x3558db(0xb7)_0x3558db(0xfe)(_0x4a88ab_0x3558db(0x11d))&&_0x4a88ab_0x3558db(0x12e)(_0x56c602_0x3558db(0xea)_0x3558db(0xf4)_0x3558db(0xbc),_0x4a88ab_0x3558db(0xb3))&&(_0x56c602_0x3558db(0xea)_0x3558db(0x127)&&_0x4a88ab_0x3558db(0xef)(_0x56c602_0x3558db(0xea)_0x3558db(0x127)_0x3558db(0xb9)_0x3558db(0xe1)+e(),_0x4a88ab_0x3558db(0xb6)))&&(_0x4a88ab_0x3558db(0xd6)(logerAdEvent,_0x2a1963,dp),_0x4a88ab_0x3558db(0x116)(setCurrentFullScreenAd,_0x2a1963),console_0x3558db(0x13f)(_0x4a88ab_0x3558db(0x118),_0x2a1963,isOverGoogleAd,_0x56c602_0x3558db(0xea))),_0x56c602_0x3558db(0xb7)_0x3558db(0xfe)(_0x4a88ab_0x3558db(0xda))&&_0x4a88ab_0x3558db(0xde)(_0x56c602_0x3558db(0xea)_0x3558db(0xf4)_0x3558db(0xbc),_0x4a88ab_0x3558db(0xf8))&&(_0x4a88ab_0x3558db(0x139)(_0x56c602_0x3558db(0xea)_0x3558db(0x127),null)||_0x4a88ab_0x3558db(0x10e)_0x3558db(0xfe)(_0x2a1963)&&(_0x56c602_0x3558db(0xea)_0x3558db(0x127)&&_0x4a88ab_0x3558db(0xc9)(_0x56c602_0x3558db(0xea)_0x3558db(0x127)_0x3558db(0xb9)_0x3558db(0xe1)+e(),_0x4a88ab_0x3558db(0xb6))))&&(_0x4a88ab_0x3558db(0x117)(setIsOverGoogleAd,!),_0x4a88ab_0x3558db(0x13b)(logerAdEvent,_0x2a1963,cl),_0x4a88ab_0x3558db(0x131)(setCurrentFullScreenAd,),console_0x3558db(0x13f)(_0x4a88ab_0x3558db(0xcf),_0x2a1963,isOverGoogleAd,_0x56c602_0x3558db(0xea))));}}}),_0x3850cc{childList:!!,subtree:!!,attributes:!!,attributeFilter:_0x4a88ab_0x45e741(0x11a),attributeOldValue:!!};_0x57ed61_0x45e741(0x12b)(document_0x45e741(0xb2)+_0x45e741(0x12c),_0x3850cc),_0x4a88ab_0x45e741(0x111)($,window)on(_0x4a88ab_0x45e741(0xe2),function(){const _0x2628c7_0x45e741;_0x57ed61&&_0x57ed61_0x2628c7(0xe7)();});};$(document)_0x2da122(0xb4)(function(){const _0x1a068b_0x2da122,_0x150a3e{IecSz:function(_0x2f883e,_0x59168e){return _0x2f883e(_0x59168e);},MjvlG:_0x1a068b(0xe6),dIKZl:_0x1a068b(0xba),NQGmS:function(_0x171950,_0x43d660){return _0x171950(_0x43d660);},dMkyT:_0x1a068b(0xb1),dfgUk:function(_0x4b1d46){return _0x4b1d46();}};_0x150a3e_0x1a068b(0x124)($,_0x150a3e_0x1a068b(0xbd))on(_0x150a3e_0x1a068b(0x136),mouseoverListenerFunc),_0x150a3e_0x1a068b(0xfc)($,_0x150a3e_0x1a068b(0xbd))on(_0x150a3e_0x1a068b(0xc8),mouseoutListenerFunc),_0x150a3e_0x1a068b(0x11f)(setCreateInsEvent);});const clickEvent(_0x391c46,_0x3ea684)>{const _0x112c57_0x2da122,_0x298dc9{ZuoWy:function(_0x38cc3b,_0x380f2f){return _0x38cc3b(_0x380f2f);},YAZom:_0x112c57(0xd1)+_0x112c57(0xc1),DAAGM:function(_0xd4afa2,_0x4469c0,_0x4e5df7){return _0xd4afa2(_0x4469c0,_0x4e5df7);},EruXA:_0x112c57(0x113),jmWOG:function(_0x56d0c0,_0x3973b0){return _0x56d0c0>_0x3973b0;}};if(isOverGoogleAd){_0x298dc9_0x112c57(0x129)(setIsOverGoogleAd,!),console_0x112c57(0x13f)(_0x298dc9_0x112c57(0xe3),_0x391c46,_0x3ea684),_0x298dc9_0x112c57(0xcd)(logerAdEvent,_0x391c46,_0x3ea684);const _0x57c4a3_0x298dc9_0x112c57(0xd4);let _0x1fe20fwindow_0x112c57(0xe8)+ge_0x112c57(0x133)(_0x57c4a3);_0x1fe20f&&(_0x1fe20fJSON_0x112c57(0x11b)(_0x1fe20f))||(_0x1fe20f),_0x1fe20f_0x112c57(0xdb)(_0x112c57(0xcb)+_0x3ea684+_+_0x391c46+_+new Date()_0x112c57(0xd0)+_0x112c57(0x102)()),_0x298dc9_0x112c57(0x13c)(_0x1fe20f_0x112c57(0xd3),-0x2c1+0x1044+-0xd79)&&(_0x1fe20f_0x1fe20f_0x112c57(0x13e)(-0x1d*0x115+-0x1*0x1955+0x1*0x38c0)),window_0x112c57(0xe8)+ge_0x112c57(0x10f)(_0x57c4a3,JSON_0x112c57(0x134)(_0x1fe20f));}},blurEvent()>{const _0x4218f4_0x2da122,_0x2a77ce{MVmZP:_0x4218f4(0x121),wnezg:function(_0x525483,_0x4fe1e1,_0x30336a){return _0x525483(_0x4fe1e1,_0x30336a);}},_0x8dae53_0x2a77ce_0x4218f4(0x112),_0x4fdb90d;_0x2a77ce_0x4218f4(0x12a)(clickEvent,_0x8dae53,_0x4fdb90);},visibilitychangeEvent()>{const _0x2278e0_0x2da122,_0x3b146b{etZDt:function(_0x481068,_0x436986){return _0x481068_0x436986;},diVSr:_0x2278e0(0x13a),TJNzU:_0x2278e0(0x11c)+_0x2278e0(0x107),DjTtP:function(_0x1cb3ed,_0x359c08){return _0x1cb3ed>_0x359c08;},ooLWk:function(_0x39eafb,_0x20be39,_0x21c566){return _0x39eafb(_0x20be39,_0x21c566);}};if(isOverGoogleAd&&_0x3b146b_0x2278e0(0x130)(document_0x2278e0(0x11c)+_0x2278e0(0xc4),_0x3b146b_0x2278e0(0xf7))){const _0x3ce971_0x3b146b_0x2278e0(0xd9);let _0x1e5aaawindow_0x2278e0(0xe8)+ge_0x2278e0(0x133)(_0x3ce971);_0x1e5aaa&&(_0x1e5aaaJSON_0x2278e0(0x11b)(_0x1e5aaa))||(_0x1e5aaa),_0x1e5aaa_0x2278e0(0xdb)(new Date()_0x2278e0(0xd0)+_0x2278e0(0x102)()+_+document_0x2278e0(0x11c)+_0x2278e0(0xc4)+_+isOverGoogleAd),_0x3b146b_0x2278e0(0xca)(_0x1e5aaa_0x2278e0(0xd3),-0xb*0x142+-0x37*0x64+0x235c)&&(_0x1e5aaa_0x1e5aaa_0x2278e0(0x13e)(0xe8f+-0x5*-0x71d+-0x3216)),window_0x2278e0(0xe8)+ge_0x2278e0(0x10f)(_0x3ce971,JSON_0x2278e0(0x134)(_0x1e5aaa)),_0x3b146b_0x2278e0(0x12f)(clickEvent,currentFullScreenAd,_0x3b146b_0x2278e0(0x130)(currentFullScreenAd,)?d:ck);}},hideLoadingMaskEvent()>{const _0x44857d_0x2da122,_0x24c574{suEdJ:function(_0x4f22c4,_0x460a53){return _0x4f22c4(_0x460a53);},grCvi:_0x44857d(0x104),JpXhS:_0x44857d(0x11c)+_0x44857d(0x107)};util_0x44857d(0xf1)()&&(_0x24c574_0x44857d(0xb8)($,window)_0x44857d(0x10a)(_0x24c574_0x44857d(0x138),blurEvent),_0x24c574_0x44857d(0xb8)($,document)on(_0x24c574_0x44857d(0xf6),visibilitychangeEvent));};$(window)on(_0x2da122(0x104),blurEvent);/script> script>const _0x3817a4_0x53b6;(function(_0xfe341c,_0xcbd235){const _0x616577_0x53b6,_0x2e294c_0xfe341c();while(!!){try{const _0x2a16bd-parseInt(_0x616577(0x186))/(-0x9a4*0x1+0x1f61+-0x15bc)+parseInt(_0x616577(0x177))/(-0x54*0x5a+-0x39e+0x2128*0x1)*(parseInt(_0x616577(0x17c))/(-0xc2*-0x10+-0x9ba+0x2f*-0xd))+parseInt(_0x616577(0x152))/(0x1e82+0x2*0x371+0x2560*-0x1)+-parseInt(_0x616577(0x14f))/(0x13d7+0xd1f+0x1*-0x20f1)+parseInt(_0x616577(0x15c))/(0xf15+-0x1*0xffd+0x7*0x22)+parseInt(_0x616577(0x15f))/(0x18d6+-0x1c88+0x3b9)+-parseInt(_0x616577(0x156))/(-0x2349+0x64d*0x4+0xa1d);if(_0x2a16bd_0xcbd235)break;else _0x2e294cpush(_0x2e294cshift());}catch(_0x4fb257){_0x2e294cpush(_0x2e294cshift());}}}(_0x3cfb,-0x4875c+-0x3369c+0x20bb*0x57));function _0x3cfb(){const _0x13f0b4Keivh,focus,2dUNfyo,gsNns,change,includes,hrYsR,242985RVHhHS,find,dRjXp,zjInC,ulhHI,miniBuried,filled,removeEven,le.fixed_a,wGSDQ,33758FFPqMg,toLowerCas,sessionSto,sendEvent,contains,length,XRTUj,vHGMV,activeElem,uAEqo,tListener,am_d,iframe,stener,addEventLi,AKUNI,PointObj,XDJpl,.adsbygoog,getItem,RHQzo,dsbygoogle,1257805cnPpGz,State,click,1202428VJjgTd,LFbbU,atus,vBrZs,832784SqmVVc,ZNmVW,iGwCF,am_md,\x20iframe,ent,321324ZxWwkV,aLxjW,data-ad-st,1230950MndJsD,querySelec,ehQaF,jMtzo,gZiZn,BVmXl,Psahc,index,_click,am_hd,tagName,blur,kXzRM,ivXJF,concat,torAll,visibility,rage,YVaJS,hidden,getAttribu,setItem;_0x3cfbfunction(){return _0x13f0b4;};return _0x3cfb();}const categoryForAm_0x3817a4(0x166);let isOnGoogleAdForAm!;function _0x53b6(_0x2207e7,_0xec0227){const _0x1f3fac_0x3cfb();return _0x53b6function(_0x2a0cb1,_0x47c89a){_0x2a0cb1_0x2a0cb1-(0xb4*0xa+-0x918+0x25*0x17);let _0x5ee02e_0x1f3fac_0x2a0cb1;return _0x5ee02e;},_0x53b6(_0x2207e7,_0xec0227);}const ammdBlurEvent()>{const _0x4bed6b_0x3817a4,_0x46eac7{XDJpl:_0x4bed6b(0x14b)+_0x4bed6b(0x184)+_0x4bed6b(0x14e)+_0x4bed6b(0x15a),AKUNI:function(_0xa1a64e,_0x2ef882){return _0xa1a64e>_0x2ef882;},zjInC:function(_0x2a173b,_0x11d50d){return _0x2a173b_0x11d50d;},gsNns:_0x4bed6b(0x145),BVmXl:_0x4bed6b(0x159),uAEqo:function(_0x3d56b3,_0x45a010,_0xce31f5){return _0x3d56b3(_0x45a010,_0xce31f5);},vBrZs:_0x4bed6b(0x16a)},_0x200da6document_0x4bed6b(0x18e)+_0x4bed6b(0x15b),_0x10786adocument_0x4bed6b(0x160)+_0x4bed6b(0x16e)(_0x46eac7_0x4bed6b(0x14a));if(_0x10786a&&_0x46eac7_0x4bed6b(0x148)(_0x10786a_0x4bed6b(0x18b),-0x3*0xc0f+-0x1932+0x3*0x1475)){const _0x27ea9b..._0x10786a;if(_0x200da6&&_0x46eac7_0x4bed6b(0x17f)(_0x46eac7_0x4bed6b(0x178),_0x200da6_0x4bed6b(0x169)_0x4bed6b(0x187)+e())&&_0x27ea9b&&_0x27ea9b_0x4bed6b(0x18b)&&_0x27ea9b_0x4bed6b(0x17a)(_0x200da6)){const _0x4574fc_0x46eac7_0x4bed6b(0x164);window_0x4bed6b(0x181)+_0x4bed6b(0x149)&&window_0x4bed6b(0x181)+_0x4bed6b(0x149)_0x4bed6b(0x189)&&window_0x4bed6b(0x181)+_0x4bed6b(0x149)_0x4bed6b(0x189)({eventName:_0x4574fc,category:categoryForAm,specialType:0x1}),_0x46eac7_0x4bed6b(0x18f)(setTimeout,function(){const _0x5fd8b1_0x4bed6b;window_0x5fd8b1(0x176)();},-0x19c*0x10+0x52c*0x1+0x1494),window_0x4bed6b(0x183)+_0x4bed6b(0x143)(_0x46eac7_0x4bed6b(0x155),ammdBlurEvent);}}},amBlurEvent()>{const _0x306ba2_0x3817a4,_0x465a65{RHQzo:_0x306ba2(0x14b)+_0x306ba2(0x184)+_0x306ba2(0x14e),ulhHI:_0x306ba2(0x14b)+_0x306ba2(0x184)+_0x306ba2(0x14e)+_0x306ba2(0x15a),Psahc:function(_0x5dfd56,_0x260857){return _0x5dfd56>_0x260857;},aLxjW:function(_0x4c15fa,_0x5a9f88){return _0x4c15fa>_0x5a9f88;},YVaJS:function(_0x449adc,_0x7dcec7){return _0x449adc_0x7dcec7;},wGSDQ:_0x306ba2(0x145),ivXJF:function(_0x4ca230,_0x2bad93){return _0x4ca230&&_0x2bad93;},XRTUj:_0x306ba2(0x15e)+_0x306ba2(0x154),hrYsR:_0x306ba2(0x182),LFbbU:_0x306ba2(0x144),Keivh:function(_0x29c2f0,_0xc4800){return _0x29c2f0(_0xc4800);},iGwCF:function(_0x5f3090,_0x58a4c2,_0x186e7b){return _0x5f3090(_0x58a4c2,_0x186e7b);},ZNmVW:_0x306ba2(0x16a)},_0xaaba7ddocument_0x306ba2(0x18e)+_0x306ba2(0x15b),_0x319cf3document_0x306ba2(0x160)+_0x306ba2(0x16e)(_0x465a65_0x306ba2(0x14d)),_0x13c6eddocument_0x306ba2(0x160)+_0x306ba2(0x16e)(_0x465a65_0x306ba2(0x180));isOnGoogleAdForAm!;if(_0x13c6ed&&_0x465a65_0x306ba2(0x165)(_0x13c6ed_0x306ba2(0x18b),-0xbe3+0x1f35+-0x1352)&&_0x319cf3&&_0x465a65_0x306ba2(0x15d)(_0x319cf3_0x306ba2(0x18b),0xc85+0x3*0x3cb+-0x17e6)){const _0x5e0ac2..._0x13c6ed,_0xc2dccf..._0x319cf3,_0x4e5350_0xaaba7d&&_0x465a65_0x306ba2(0x171)(_0x465a65_0x306ba2(0x185),_0xaaba7d_0x306ba2(0x169)_0x306ba2(0x187)+e())&&_0x5e0ac2&&_0x5e0ac2_0x306ba2(0x18b)&&_0x5e0ac2_0x306ba2(0x17a)(_0xaaba7d),_0x1df9be_0xc2dccf_0x306ba2(0x17d)(_0x1ed64d>_0x1ed64d_0x306ba2(0x18a)(_0xaaba7d));if(_0x465a65_0x306ba2(0x16c)(_0x4e5350,_0x1df9be)&&_0x465a65_0x306ba2(0x171)(_0x1df9be_0x306ba2(0x173)+te(_0x465a65_0x306ba2(0x18c)),_0x465a65_0x306ba2(0x17b))){isOnGoogleAdForAm!!;const _0x2421ee_0x465a65_0x306ba2(0x153);window_0x306ba2(0x181)+_0x306ba2(0x149)&&window_0x306ba2(0x181)+_0x306ba2(0x149)_0x306ba2(0x189)&&window_0x306ba2(0x181)+_0x306ba2(0x149)_0x306ba2(0x189)({eventName:_0x2421ee,category:categoryForAm,specialType:0x1});const _0x2040fe_0x2421ee+_0x306ba2(0x167);let _0x3d105f_0x465a65_0x306ba2(0x175)(Number,window_0x306ba2(0x188)+_0x306ba2(0x170)_0x306ba2(0x14c)(_0x2040fe)||-0x565+-0x485+0x9ea);_0x3d105f++,window_0x306ba2(0x181)+_0x306ba2(0x149)&&window_0x306ba2(0x181)+_0x306ba2(0x149)_0x306ba2(0x189)&&window_0x306ba2(0x181)+_0x306ba2(0x149)_0x306ba2(0x189)({eventName:_0x306ba2(0x16d)(_0x2421ee,_)_0x306ba2(0x16d)(_0x3d105f),category:categoryForAm}),window_0x306ba2(0x188)+_0x306ba2(0x170)_0x306ba2(0x174)(_0x2040fe,_0x3d105f),_0x465a65_0x306ba2(0x158)(setTimeout,function(){const _0x875d6_0x306ba2;window_0x875d6(0x176)();},-0x7*0x577+0x16ea+-0x165*-0xb),window_0x306ba2(0x183)+_0x306ba2(0x143)(_0x465a65_0x306ba2(0x157),amBlurEvent);}}};((()>{const _0x4757a9_0x3817a4,_0x4fc866{jMtzo:function(_0xe219d7,_0x53b2dd){return _0xe219d7_0x53b2dd;},dRjXp:_0x4757a9(0x172),ehQaF:_0x4757a9(0x168),gZiZn:_0x4757a9(0x151),vHGMV:_0x4757a9(0x16f)+_0x4757a9(0x179),kXzRM:_0x4757a9(0x16a)};document_0x4757a9(0x147)+_0x4757a9(0x146)(_0x4fc866_0x4757a9(0x163),()>{isOnGoogleAdForAm!;}),document_0x4757a9(0x147)+_0x4757a9(0x146)(_0x4fc866_0x4757a9(0x18d),()>{const _0x2732e5_0x4757a9;if(isOnGoogleAdForAm&&_0x4fc866_0x2732e5(0x162)(document_0x2732e5(0x16f)+_0x2732e5(0x150),_0x4fc866_0x2732e5(0x17e))){const _0x35cb85_0x4fc866_0x2732e5(0x161);window_0x2732e5(0x181)+_0x2732e5(0x149)&&window_0x2732e5(0x181)+_0x2732e5(0x149)_0x2732e5(0x189)&&window_0x2732e5(0x181)+_0x2732e5(0x149)_0x2732e5(0x189)({eventName:_0x35cb85,category:categoryForAm,specialType:0x1});}isOnGoogleAdForAm!;}),window_0x4757a9(0x176)(),window_0x4757a9(0x147)+_0x4757a9(0x146)(_0x4fc866_0x4757a9(0x16b),amBlurEvent),window_0x4757a9(0x147)+_0x4757a9(0x146)(_0x4fc866_0x4757a9(0x16b),ammdBlurEvent);})());/script> style> *{ box-sizing: border-box; cursor: pointer; } .mainStyle { display: block; } .gameboxcss-gamebox{ --nav-block-background: #1fb3ff; --hotGame-margin: 8px 0; --hotGame-border-radius: 15px; --hotGame-heigth: 4.6rem; margin: auto; min-width: 320px; max-width: 450px; margin: 0 auto; padding: 0 10px 8px; } .gameboxcss-gamebox .absolute { position: absolute; } .gameboxcss-gamebox .flexCenter{ display: flex; justify-content: center; align-items: center; } .gameboxcss-gamebox > .nav-block { height: 1rem; width: 100%; display: flex; justify-content: center; align-items: center; background: var(--nav-block-background); border-radius: 8px; box-shadow: 0 3px 18px 0 rgb(0 0 0 / 16%); } .gameboxcss-gamebox > .website-desc{ word-break: break-word; font-weight: bolder; font-family: Helvetica; width: 100%; font-size: 18px; box-shadow: 0 3px 18px 0 rgb(0 0 0 / 16%); padding: 0 10px; margin-top: 8px; overflow:auto; } .gameboxcss-gamebox > .website-desc a { text-decoration: underline; color: rgb(55, 142, 245); } .gameboxcss-gamebox > .website-desc h1 { border-bottom: 1px solid #e3e3e5; color: rgb(55, 142, 245); font-size: 27px; } .gameboxcss-gamebox > .website-desc h2 { color: #747474; } .gameboxcss-gamebox > .website-desc p, .gameboxcss-gamebox > .website-desc li { color: rgb(128, 144, 170); } .gameboxcss-gamebox > .nav-block >a{ height: 100%; width: 100%; font-size: 25px; text-decoration: none; color:#fff; font-weight: bolder; } .gameboxcss-gamebox>.hotGame{ height:var(--hotGame-heigth); width: 100%; border-radius: var(--hotGame-border-radius); box-shadow: 0 3px 18px 0 rgb(0 0 0 / 16%); margin: var(--hotGame-margin); } .gameboxcss-gamebox>.hotGame{ background-position: center; background-repeat: no-repeat; background-size: cover; } .gameboxcss-gamebox>.hotGame>a{ width: 100%; height: 100%; display: flex; } .gameboxcss-gamebox>.hotGame>a>img{ width: 100%; height:100%; border-radius: var(--hotGame-border-radius); object-fit: cover; } :root { --glow: rgba(255, 195, 26, 0.4); } /style> script> const setFontSize () > { document.documentElement.style.fontSize 100 * ((document.documentElement.clientWidth>450?450:document.documentElement.clientWidth)) / 750 + px; } window.onresize setFontSize; setFontSize(); window.addEventListener(scroll,checkImgFunc); window.addEventListener(DOMContentLoaded,checkImgFunc); /script> /head>body> div idxxxx-gamebox-header styleoverflow: hidden;> /div> style> ins.adsbygoogle{ margin-bottom: 8px; text-align: center; } ins.adsbygoogledata-ad-statusunfilled { display: none !important; } /style> script>function _0x2aaf(){var _0x44e288fixed_adsb,fixedAd,adAdsenseO,6QNGZvi,generateAF,11meeVhT,#xxxx-game,126YYXMXA,ygoogle,leAdHtml,405899obqMjP,84iCiCKW,tor,ca-pub-396,102352asuClt,4924044dyYSZL,2242587190,3375895HASQGy,4592670XDlaHu,querySelec,13iKHHwJ,395,box-header,39952AhMDWt,259jxEwfx,getAutoSty,ned,checkIfTur,CAd,48092iXEjQM;_0x2aaffunction(){return _0x44e288;};return _0x2aaf();}function _0x3de5(_0x3f62d5,_0x3661b2){var _0x2824e8_0x2aaf();return _0x3de5function(_0x5e5907,_0x3d68a9){_0x5e5907_0x5e5907-(-0x1e8a+0x2*-0xd01+0x39c8);var _0x2e5206_0x2824e8_0x5e5907;return _0x2e5206;},_0x3de5(_0x3f62d5,_0x3661b2);}var _0x14718c_0x3de5;(function(_0x2fc36c,_0x117281){var _0x55583f_0x3de5,_0x5934f1_0x2fc36c();while(!!){try{var _0x2f77b4parseInt(_0x55583f(0x13f))/(-0xbc3*-0x3+-0x233e+-0xa)*(parseInt(_0x55583f(0x142))/(-0x1*-0x42c+0x607*-0x5+0x19f9))+parseInt(_0x55583f(0x150))/(0x9d7+0x1884+-0x2258)*(-parseInt(_0x55583f(0x148))/(0x666+0xf87+0x4f*-0x47))+parseInt(_0x55583f(0x13c))/(0x1a84+-0x1*-0xc73+0x2*-0x1379)*(-parseInt(_0x55583f(0x14c))/(-0xe*-0x6b+-0x2486+0x1*0x1eb2))+-parseInt(_0x55583f(0x143))/(-0x1*-0x2588+0x1bea+-0x416b)*(-parseInt(_0x55583f(0x157))/(0x1fbe+-0x11d9+-0xddd))+parseInt(_0x55583f(0x158))/(0x869+-0x1f6+-0x335*0x2)+parseInt(_0x55583f(0x13d))/(-0x2d9*0x3+-0x11f5*-0x2+-0x1*0x1b55)*(parseInt(_0x55583f(0x14e))/(0x97a*0x4+0x994+-0x2f71))+-parseInt(_0x55583f(0x154))/(-0xdb0*0x1+0x185*0x3+0x105*0x9)*(parseInt(_0x55583f(0x153))/(0x1*-0xd69+-0x7d*-0x5+0xb05));if(_0x2f77b4_0x117281)break;else _0x5934f1push(_0x5934f1shift());}catch(_0x2d8d12){_0x5934f1push(_0x5934f1shift());}}}(_0x2aaf,-0xad*0x687+-0x37113+0x3*0x459c7));window_0x14718c(0x14b)+bj&&(window_0x14718c(0x14b)+bj_0x14718c(0x146)+_0x14718c(0x145)(_0x14718c(0x14a))&&window_0x14718c(0x14b)+bj_0x14718c(0x14d)+_0x14718c(0x147)(window_0x14718c(0x14b)+bj_0x14718c(0x144)+_0x14718c(0x152)(_0x14718c(0x156)+_0x14718c(0x159)+_0x14718c(0x140),,_0x14718c(0x149)+_0x14718c(0x151)),document_0x14718c(0x13e)+_0x14718c(0x155)(_0x14718c(0x14f)+_0x14718c(0x141))));/script> main classmainStyle> div classgamebox css-gamebox> div classnav-block> img src/static/images/logo.png altlogo styleheight: .8rem;> /div> div idhistoryList> div classonlyBoxShadowBefore styledisplay: none;>/div> div classonlyBoxShadow>/div> div classgameShow draggablefalse> div classskeleton gameShowSkeleton>/div> div classskeleton gameShowSkeleton>/div> div classskeleton gameShowSkeleton>/div> div classskeleton gameShowSkeleton>/div> div classskeleton gameShowSkeleton>/div> style> .skeleton { height: 70px; width: 70px; border-radius: 100%; background: linear-gradient(90deg, rgba(0, 0, 0, 0.06) 25%, rgba(0, 0, 0, 0.15) 37%, rgba(0, 0, 0, 0.06) 63%); background-size: 400% 100%; animation: skeleton-animation 1.5s ease infinite; } @keyframes skeleton-animation { 0% { background-position: 100% 50%; } 100% { background-position: 0 50%; } } /style> /div> /div> style idhistoryListStyle> #historyList{ display: flex; overflow: hidden; position: relative; justify-content: center; align-items: center; padding: 0 1px; border-radius: 10px; width: 100%; height: 90px; box-shadow: rgb(0 0 0 / 16%) 0 0 10px 0; margin: 10px 0; } #historyList .gameShow::-webkit-scrollbar { display: none; } #historyList .gameShowSkeleton{ margin: auto 2px; flex: 1; border-radius: 10px; } #historyList>.onlyBoxShadowBefore{ position: absolute; left: -1px; top: 0; z-index: 2; border-radius: 10px; width: 15px; height: 100%; background: linear-gradient(to left, rgba(255, 255, 255, 0) 0, rgb(255, 255, 255) 100%); } #historyList>.onlyBoxShadow{ position: absolute; right: -2px; top: 0; z-index: 2; border-radius: 10px; width: 15px; height: 100%; background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgb(255, 255, 255) 100%); } #historyList>.gameShow{ display: flex; overflow-x: scroll; align-items: center; width: inherit; height: 90px; } #historyList>.gameShow .imgSpace{ margin: 5px; width: 60px; height: 60px; } #historyList>.gameShow .imgSpace>a{ position: relative; display: block; } #historyList>.gameShow .imgSpace .game-img{ display: block; width: 60px; height: 60px; border-radius: 5px; box-shadow: rgba(0, 0, 0, 0.16) 0px 9px 5px 0px; } #historyList>.gameShow .historyIcon { display: flex; position: absolute; right: -6px; top: -2px; width: 30px; height: 30px; } #historyList>.gameShow .historyIcon img{ width: 30px; height: 30px; } /style> script> let historyGamesIds util.getHistoryGames(); if(historyGamesIds.length){ historyGamesIdshistoryGamesIds.slice(0,10); const gameShowEle document.querySelector(#historyList .gameShow); if(gameShowEle){ const controlShowdow()>{ const onlyBoxShadowBeforeEle document.querySelector(#historyList .onlyBoxShadowBefore); if (gameShowEle && onlyBoxShadowBeforeEle) { if ((gameShowEle.scrollLeft || 0) > 0) { onlyBoxShadowBeforeEle.style.display block } else { onlyBoxShadowBeforeEle.style.display none } } } const template ` div classimgSpace clickEnlarge title{name}> a href{url}?fromhistory> img classgame-img draggablefalse style data-srchttps://res.minigame.vip/gc-assets/{title}/{title}_icon.png alt{name} src/static/images/lazy-img.png lazyloading /> div classhistoryIcon> img src/static/images/history.png althistory /> /div> /a> /div> ` let { hasSubChannelId, subChannelIdFromLocation } util.getSubChannelIdFromLocation(); const strhistoryGamesIds.map(m>m.id&&(template.replaceAll({url},`${hasSubChannelId?(/+subChannelIdFromLocation):}/game/${m.id}/info`).replaceAll({name},m.id.split(-).join( )).replaceAll({title},m.id))||).join(); window.addEventListener(DOMContentLoaded,()>{ gameShowEle.innerHTMLstr; checkImgFunc(); }) gameShowEle.addEventListener(wheel, (event) > { event.preventDefault(); gameShowEle.scrollLeft + event.deltaY; }); gameShowEle.addEventListener(scroll, controlShowdow); } }else{ const historyEle document.querySelector(#historyList); historyEle&&historyEle.remove(); const historyStyleEle document.querySelector(#historyListStyle); historyStyleEle&&historyStyleEle.remove(); } /script> div classhotGame stylebackground-image: url(https://res.minigame.vip/gc-assets/garage-tycoon/garage-tycoon_banner.png); titleGarage Tycoon> a href/game/garage-tycoon/info?frombox_list>/a> /div> div classhotGame stylebackground-image: url(https://res.minigame.vip/gc-assets/save-the-goldfish/save-the-goldfish_banner.png); titleSave The Goldfish> a href/game/save-the-goldfish/info?frombox_list>/a> /div> div classhotGame stylebackground-image: url(https://res.minigame.vip/gc-assets/soul-shooter/soul-shooter_banner.png); titleSoul Shooter> a href/game/soul-shooter/info?frombox_list>/a> /div> div classhotGame titleMakeup Stylist> a href/game/makeup-stylist/info?frombox_list> img data-srchttps://res.minigame.vip/gc-assets/makeup-stylist/makeup-stylist_banner.png src/static/images/lazy-img.png lazyloading altMakeup Stylist> /a> /div> div classhotGame titleJelly Crush> a href/game/jelly-crush/info?frombox_list> img data-srchttps://res.minigame.vip/gc-assets/jelly-crush/jelly-crush_banner.png src/static/images/lazy-img.png lazyloading altJelly Crush> /a> /div> div classhotGame titleHippo Supermarket> a href/game/hippo-supermarket/info?frombox_list> img data-srchttps://res.minigame.vip/gc-assets/hippo-supermarket/hippo-supermarket_banner.png src/static/images/lazy-img.png lazyloading altHippo Supermarket> /a> /div> div classhotGame titleMakeup Master: Beauty Salon> a href/game/makeup-master/info?frombox_list> img data-srchttps://res.minigame.vip/gc-assets/makeup-master/makeup-master_banner.png src/static/images/lazy-img.png lazyloading altMakeup Master: Beauty Salon> /a> /div> div classhotGame titleBubble Legend> a href/game/bubble-legend/info?frombox_list> img data-srchttps://res.minigame.vip/gc-assets/bubble-legend/bubble-legend_banner.png src/static/images/lazy-img.png lazyloading altBubble Legend> /a> /div> div classhotGame titlePower Light> a href/game/power-light/info?frombox_list> img data-srchttps://res.minigame.vip/gc-assets/power-light/power-light_banner.png src/static/images/lazy-img.png lazyloading altPower Light> /a> /div> div classhotGame titleBloody Warrior> a href/game/bloody-warrior/info?frombox_list> img data-srchttps://res.minigame.vip/gc-assets/bloody-warrior/bloody-warrior_banner.png src/static/images/lazy-img.png lazyloading altBloody Warrior> /a> /div> div idmoreGameNav classnav-block> a classflexCenter href/home> More Games /a> /div> div classwebsite-desc>h1 idabout-us>About Us/h1>p>icplay.com is a dedicated platform that offers a premium selection of casual games for a relaxing and enjoyable gaming experience. We understand that in today's fast-paced life, people crave a way to unwind and be entertained during their short breaks, which is why we have carefully curated a variety of games to create a stress-free gaming space for our players./p>p>Our game library includes a wide range of genres such as puzzles, strategy, simulation, sports, and more. Each game has been rigorously selected to ensure its fun and playability. Our games are suitable for players of all ages, with simple controls that are easy to learn, allowing players to quickly dive into the fun./p>p>To enhance the gaming experience, we continuously update our game content with regular releases of new titles. We also feature leaderboards and achievement systems to encourage players to challenge themselves and compete with players worldwide. Additionally, our community forum provides a platform for players to share game tips, strategies, and build friendships./p>p>Our website is designed with a clean and intuitive interface that is easy to navigate, allowing players to quickly find their favorite games. We also offer support in multiple languages to ensure a barrier-free gaming experience for players from different countries and regions. Whether on a computer, tablet, or mobile phone, our games are perfectly adapted to ensure that players can easily enter the gaming world no matter where they are./p>p>icplay.com is not just a gaming platform but a vibrant and creative community. We believe that games are a bridge that connects people, bringing joy and positivity. We invite you to join our gaming world and create wonderful leisure time together. Visit our website now and start your journey of casual gaming!/p>/div> /div> /main> div classfoot css-foot> div classfootStyle css-foot> div classdiv1 css-foot> div classlinkText styleheight: 10px; line-height: 10px css-foot > a href/privacy css-foot> Privacy /a> a href/terms css-foot> Terms /a> div idselectLanguage css-foot> English(US) /div> /div> div classlogoStyle css-foot> p css-foot> © 2024 a hrefhttps://icplay.com/ css-foot> span css-foot> icplay.com /span> /a> /p> /div> /div> div classopenSelectStyle css-foot> !----> /div> /div> /div> style> :root{ --foot-margin-top-height: 22px; } .footcss-foot { width: 100%; font-size: 18px; } .footStylecss-foot { --foot-box-shadow: 0 15px 64px 16px rgba(0, 0, 0, .15); position: relative; margin-top: 22px; margin-top: var(--foot-margin-top-height); padding-top:40px; padding-bottom: 80px; width: 100%; box-shadow: var(--foot-box-shadow); text-align: center; font-family: Helvetica; font-weight: 400; color: #747474 !important } .div1css-foot { background-color: rgba(228, 161, 15, 0) } .logoStylecss-foot { display: flex; flex-direction: column; justify-content: center; width: 100%; min-height: 50px } .logoStyle>pcss-foot { margin-top: 6px !important; margin-top: 0; margin-bottom: 0 } .logoStyle acss-foot:-webkit-any-link { margin-top: 10px; cursor: pointer; text-decoration: none } .logoStyle a>spancss-foot { font-family: Helvetica; font-weight: 400; color: #747474 !important } .linkTextcss-foot { display: flex; justify-content: center; align-items: center; text-decoration: none; color: #747474 !important } .linkText>acss-foot:-webkit-any-link { margin-right: 15px; cursor: pointer; text-decoration: none; color: #747474 !important } #selectLanguage>imgcss-foot { margin: 0 0 2px 6px } .openSelectStylecss-foot { position: absolute; right: calc(50% - 150px); bottom: 90%; width: 200px } /style> style> .footStylecss-foot{ padding-top: 70px; } .footStylecss-foot::before{ position: absolute; top: 23px; left: 50%; transform: translateX(-50%); background-image: url( /static/images/logo.png ); background-size: contain ; background-position: center; background-repeat: no-repeat; height:32px; width:160px; display: block; content: ; } /style> script> if (util) { util.replaceSubChannelId(); } /script>/body>script> util.logLinkEvent(.gameboxcss-gamebox #historyList .gameShow a,select_history_game,index); util.logLinkEvent(.gameboxcss-gamebox .hotGame a,select_game,index);/script>/html>
Port 443
HTTP/1.1 200 OKServer: TengineContent-Type: text/html; charsetutf-8Content-Length: 81311Connection: keep-aliveDate: Mon, 26 Jan 2026 20:28:32 GMTx-oss-request-id: 6977CE70400584383031D933Accept-Ranges: bytesx-oss-object-type: Normalx-oss-storage-class: Standardx-oss-ec: 0048-00000001x-oss-force-download: trueContent-MD5: PsxqX0EF4oRV90ikkRWgTgx-oss-server-time: 13Via: ens-cache5.l2us41729,1728,304-0,M, ens-cache22.l2us41730,0, ens-cache15.us300,0,200-0,H, ens-cache15.us304,0Vary: Accept-EncodingVary: Accept-EncodingETag: 3ECC6A5F4105E28455F748A49115A04ELast-Modified: Thu, 25 Apr 2024 06:20:36 GMTx-oss-hash-crc64ecma: 8059464058592924265Age: 147872Ali-Swift-Global-Savetime: 1769459312X-Cache: HIT TCP_MEM_HIT dirn:-2:-2X-Swift-SaveTime: Mon, 26 Jan 2026 20:28:32 GMTX-Swift-CacheTime: 2592000Content-Encoding: gzipTiming-Allow-Origin: *EagleId: a3b542a317696071840567212e !DOCTYPE html>html langen> head> script> var util { throttle(fn, wait) { let inThrottle, lastFn, lastTime; return function () { const context this, args arguments; if (!inThrottle) { fn.apply(context, args); lastTime Date.now(); inThrottle true; } else { clearTimeout(lastFn); lastFn setTimeout(function () { if (Date.now() - lastTime > wait) { fn.apply(context, args); lastTime Date.now(); } }, Math.max(wait - (Date.now() - lastTime), 0)); } }; }, isMobile() { return window.navigator.userAgent.match( /(phone|pad|pod|iPhone|iPod|ios|iPad|Android|Mobile|Symbian|Windows Phone)/i ); }, getAllUrlParams(url) { var queryString url ? url.split(?)1 : window.location.search.slice(1); var obj {}; if (!queryString) { return obj; } // stuff after # is not part of query string, so get rid of it queryString queryString.split(#)0; var arr queryString.split(&); for (var i 0; i arr.length; i++) { var a arri.split(); var paramName a0; var paramValue typeof (a1) undefined ? true : a1; paramName paramName.toLowerCase(); if (typeof paramValue string) paramValue paramValue.toLowerCase(); if (paramName.match(/\(\d+)?\$/)) { var key paramName.replace(/\(\d+)?\/, ); if (!objkey) objkey ; if (paramName.match(/\\d+\$/)) { var index /\(\d+)\/.exec(paramName)1; objkeyindex paramValue; } else { objkey.push(paramValue); } } else { if (!objparamName) { objparamName paramValue; } else if (objparamName && typeof objparamName string) { objparamName objparamName; objparamName.push(paramValue); } else { objparamName.push(paramValue); } } } return obj; }, loadJsAsync(src, async, attribute) { return new Promise((resolve, reject) > { const script document.createElement(script); script.src src; script.async async; if (attribute) { for (const key in attribute) { script.setAttribute(key, attributekey); } } const onload () > { console.info(js loaded: , src); script.removeEventListener(load, onload); resolve(); }; script.addEventListener(load, onload); script.addEventListener(error, (err) > { script.removeEventListener(load, onload); console.error(loading js error: , src, err); reject(new Error(`Failed to load ${src}`)); }); ( document.getElementsByTagName(head)0 || document.documentElement ).appendChild(script); }); }, loadImageAsync(url, callbackFunc) { return new Promise(function (resolve, reject) { var img new Image(); img.onload function () { img.onload null; console.info(success to load image); resolve(img); callbackFunc && (callbackFunc instanceof Function) && callbackFunc(img); }; img.error function () { reject(fail to load image); }; img.src url; }) }, setDragScrollEvent(selector) { const gameShowEle document.querySelector(selector); let left 0; let oldLeft 0; const move util.throttle((event) > { let x left + (oldLeft - event.clientX) if (x 0) x 0; gameShowEle.scrollTo(x, 0); }, 100) gameShowEle.addEventListener(mousedown, function (event) { gameShowEle.style.cursor grabbing; gameShowEle.style.userSelect none; oldLeft event.clientX; left gameShowEle.scrollLeft; document.addEventListener(mousemove, move) }); document.addEventListener(mouseup, function () { gameShowEle.style.cursor pointer; gameShowEle.style.removeProperty(user-select); document.removeEventListener(mousemove, move) }) }, setHistoryGame(appId, maxHistoryCount) { const HISTORY_KEY gameHistoryList; const fnUnique function (arr, uKey) { const map new Map(); arr.forEach((item, index) > { if (!map.has(itemuKey)) { map.set(itemuKey, item); } }); return ...map.values(); }; try { let localGameList JSON.parse(localStorage.getItem(HISTORY_KEY)); if (!localGameList) { localGameList ; } const obj { id: appId, }; localGameList.splice(0, 0, obj); localGameList fnUnique(localGameList, id); if (localGameList.length > maxHistoryCount) { localGameList localGameList.slice(0, maxHistoryCount); } localStorage.setItem(gameHistoryList, JSON.stringify(localGameList)); } catch (e) { console.error(add history error:, e); } }, getHistoryGames() { try { const HISTORY_KEY gameHistoryList; const temp (localStorage.getItem(HISTORY_KEY)) && JSON.parse(localStorage.getItem(HISTORY_KEY)); if (temp && temp ! null) { return temp; } } catch (e) { console.error(get history error:, e); } return ; }, getCandidateGameList( allGames, historyGames, config, excludeList ) { if (!allGames) { return; } if (!config) { return; } const fnNotInclude (appId) > { if (!excludeList) { return true; } return !excludeList.includes(appId); }; const dealAppsByConfigToSort (oldApps, configNavApps) > { let newNavApps oldApps; if (configNavApps && oldApps) { const maxIndex newNavApps.length || 0; newNavApps.forEach((m) > { const index configNavApps.findIndex((y) > y m.app_id); if (index > -1) { m.orderIndex index; } else { m.orderIndex maxIndex; } }); newNavApps newNavApps.sort((x, y) > x.orderIndex - y.orderIndex); newNavApps newNavApps.map((m) > { delete m.orderIndex; return m; }); } return newNavApps; } const navApps ; let historyIndex 0; for (let i 0; i config.history; i++) { if (i > historyGames.length) { break; } if (historyIndex > historyGames.length) { break; } const historyAppId historyGameshistoryIndex && historyGameshistoryIndex.id; const historyApp allGames.find( (app) > app.app_id historyAppId && fnNotInclude(app.app_id) ); if (historyApp) { navApps.push({ id: historyApp.app_id, icon: historyApp.game_material.icon, name: historyApp.base.display_name, history: true, }); } else { i--; } historyIndex++; } let moreGames config.count - navApps.length; let fiterHistoryApps allGames.filter((m) > { if (navApps && navApps.length > 0) { const index navApps.findIndex((y) > y.id m.app_id); return index -1; } else { return true; } }); fiterHistoryApps dealAppsByConfigToSort(fiterHistoryApps, config.apps); if (config.count 0) { moreGames fiterHistoryApps.length; } if (moreGames > 0) { const fnInPresetList (appId) > { if ( !config.apps || config.apps null || config.apps.length 0 || config.count 0 ) { return true; } return config.apps.includes(appId); }; for (let i 0; i fiterHistoryApps.length && moreGames > 0; i++) { const app fiterHistoryAppsi; if ( navApps.findIndex((existingApp) > existingApp.id app.id) > -1 ) { continue; } if (fnNotInclude(app.app_id) && fnInPresetList(app.app_id)) { navApps.push({ id: app.app_id, icon: app.game_material.icon, name: app.base.display_name, history: false, }); moreGames--; } } } return navApps; }, getGamemenuCommonSites( menuSite, excludeList ) { if (!(menuSite && menuSite.length)) { return; } const fnNotInclude (appId) > { if (!excludeList) { return true; } return !excludeList.includes(appId); }; let navSites JSON.parse(JSON.stringify(menuSite)); navSites navSites.filter(site > site && site.app_id && fnNotInclude(site.app_id)) return navSites; }, storage: { setItmeToObjectForLocalStorage(key, objectKeyName, objectValueitem) { let res false try { const _localStorageObjectStr localStorage.getItem(key); let _localStorageObject { objectKeyName: objectValueitem }; if (_localStorageObjectStr) { _localStorageObject JSON.parse(_localStorageObjectStr); _localStorageObjectobjectKeyName objectValueitem; } localStorage.setItem(key, JSON.stringify(_localStorageObject)); res true; } catch (error) { console.error(error); } return res }, getItmeFromObjectForLocalStorage(key, objectKeyName) { let res null; try { const _localStorageObjectStr localStorage.getItem(key); if (_localStorageObjectStr) { const _localStorageObject JSON.parse(_localStorageObjectStr); res _localStorageObject && _localStorageObjectobjectKeyName; } } catch (error) { console.error(error); } return res } }, formatUrl(url) { if (url.indexOf(st) -1) { if (url.indexOf(?) -1) { url `${url}?st${new Date().getTime()}`; } else { url `${url}&st${new Date().getTime()}`; } } return url; }, openPageByA(url, target) { const a document.createElement(a); a.href url; a.target target || _blank; document.body.appendChild(a); a.click(); a.remove(); }, logEvent(eventName, category, label, value, nonInteraction,game_id) { if(eventName){ const eventData{eventName}; if (category ! undefined || label ! undefined || value ! undefined || nonInteraction ! undefined|| game_id ! undefined) { (category ! undefined) && (eventData.category category); (label ! undefined) && (eventData.label label); //(value ! undefined) && (eventData.value value); (nonInteraction ! undefined) && (eventData.nonInteraction nonInteraction); (game_id ! undefined) && (eventData.game_id game_id); } if(window.miniBuriedPointObj&&window.miniBuriedPointObj.sendEvent){ window.miniBuriedPointObj.sendEvent(eventData); } } }, logLinkEvent(domStrList,eventName,pageName){ window.addEventListener(DOMContentLoaded,()>{ if(domStrList&&Array.isArray(domStrList)){ domStrList.forEach(domStr>{ const domsdocument.querySelectorAll(domStr); if(doms){ doms.forEach(dom>{ const href dom.getAttribute(href); if(href.includes(/info?)){ dom.addEventListener(click,()>{ console.log(href) window.util&& window.util.logEvent(eventName, pageName,,0,false); }) } }) } }) } }) }, getSubChannelIdFromLocation() { const subChannelIdFromLocation location.pathname.split(/)1 // 从地址中取出动态子渠道名称 const lowerSubChannelIdFromLocationsubChannelIdFromLocation.toLowerCase(); const excludeList , /, home, privacy, terms, gamebox, today, game, v1, main, debug, activity,page const hasSubChannelId !excludeList.includes(lowerSubChannelIdFromLocation) && !(/\./ig.test(lowerSubChannelIdFromLocation)) return { hasSubChannelId, subChannelIdFromLocation } }, /** * 静态页面动态替换子渠道链接 */ replaceSubChannelId() { const links Array.from(document.getElementsByTagName(a)) const sameOriginLinks links.filter(link > link.href.startsWith(location.origin)) const { hasSubChannelId, subChannelIdFromLocation } this.getSubChannelIdFromLocation(); if (hasSubChannelId) { sameOriginLinks.forEach(link > { const originHref link.getAttribute(href); const originHrefPrefix originHref && originHref.split(/) && originHref.split(/)1 || ; if (originHrefPrefix.toLocaleLowerCase() ! subChannelIdFromLocation.toLocaleLowerCase()) { const href originHref.startsWith(/main) ? originHref.replace(main, subChannelIdFromLocation) : `/${subChannelIdFromLocation}${originHref}` link.setAttribute(href, href) } }) } }, getElementVisibleHeight(element) { var heightStr0px; if(element){ var rect element.getBoundingClientRect(); var windowHeight window.innerHeight || document.documentElement.clientHeight; var scrollTop window.pageYOffset || document.documentElement.scrollTop; var elementTop rect.top + scrollTop; var elementBottom rect.bottom + scrollTop; var visibleHeight Math.min(elementBottom, windowHeight) - Math.max(elementTop, scrollTop); if (visibleHeight > 0) { heightStr`${visibleHeight}px`; } } return heightStr; }, }; /script> script> var lazyLoadImgObj { isIn(el) { var bound el.getBoundingClientRect(); var clientHeight window.innerHeight; return el.getAttribute(lazy) loading && bound.top clientHeight; }, checkImg() { let imgs document.querySelectorAll(imglazyloading); Array.from(imgs).forEach((el) > { if (lazyLoadImgObj.isIn(el)) { lazyLoadImgObj.loadImg(el); } }); }, loadImg(el) { if (el.src ! el.dataset.src) { el.src el.dataset.src; el.setAttribute(lazy, loaded); } }, }; const checkImgFunc util.throttle(lazyLoadImgObj.checkImg, 500); /script> meta http-equivContent-Type contenttext/html; charsetUTF-8 /> link relicon typeimage/x-icon href/static/images/favicon.ico /> meta http-equivX-UA-Compatible contentIEedge /> meta nameviewport contentwidthdevice-width, initial-scale1.0 /> title>Every Moment is Playful | icplay.com/title> meta namekeywords contentRelaxing Gameplay, Time Passer, Easy Controls, Family Friendly, Quick Rounds, Addictive Mechanics, Short Breaks, Unwind and Play, Casual Gamers, Stress Relief. /> meta namedescription contentWelcome to icplay.com, your ultimate destination for online casual games! Our mission is to provide a diverse selection of relaxing and enjoyable games that you can play anytime, anywhere. Whether you're looking for quick-witted puzzles or action-packed adventures, our game library caters to your every gaming whim. Visit us now to embark on a journey of fun and entertainment with players from around the globe! /> script srchttps://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?clientca-pub-3962242587190395 async crossoriginanonymous data-ad-clientca-pub-3962242587190395 >/script> script>const _0x1e5c1e_0x52ce;function _0x1180(){const _0x28c853ient\x22,ins\x20class,script,th-respons,\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20,a-full-wid,\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20,ex;justify,\x20\x20\x20\x20style,759988PCscnh,gle\x20,\x20>\x0a\x20\x20\x20\x20\x20\x20\x20,ent,27558410ySsPYE,\x20\x20\x20\x20,data-ad-cl,-content:c,>\x0a\x20\x20\x20\x20\x20\x20\x20\x20,5898067DOlIdK,style\x22dis,innerHTML,3EoVEUm,\x22adsbygoo,GvtxW,.push({});,768294YGUTID,appendChil,5YjBQfs,pMaqP,\x20\x20\x20data-ad,e-block;,createElem,/ins>,\x20/ins>,le\x20\x20windo,enter;alig,nter;,(adsbygoog,6NDodPu,d-client\x22,ot\x22,\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20,1050346HuTPlg,n-items:ce,4017708kNsbwE,play:inlin,concat,11dCcLxo,-format\x22a,\x20\x20\x20\x20data-a,w.adsbygoo,uto\x22\x0a\x20\x20\x20\x20\x20,\x20\x20\x20\x20\x20\x20\x20dat,ive\x22true\x22,display:fl,810656ZNwuqY,data-ad-sl,gle\x20||\x20),adAdsenseO;_0x1180function(){return _0x28c853;};return _0x1180();}function _0x52ce(_0x409161,_0xb1b752){const _0x3df53b_0x1180();return _0x52cefunction(_0x5cc244,_0x36a3e0){_0x5cc244_0x5cc244-(-0x20b0+-0x214f*-0x1+0x16);let _0x322f5e_0x3df53b_0x5cc244;return _0x322f5e;},_0x52ce(_0x409161,_0xb1b752);}(function(_0xfd0a7c,_0x1d9755){const _0x2ffcfe_0x52ce,_0x40e8b5_0xfd0a7c();while(!!){try{const _0x3d3f98-parseInt(_0x2ffcfe(0xe4))/(0x547*-0x1+-0x1e1a+0x2362)+-parseInt(_0x2ffcfe(0xba))/(0xeb7+0x96e+-0x1823)*(parseInt(_0x2ffcfe(0xe0))/(-0x752*0x1+0x1be1+-0x5*0x41c))+parseInt(_0x2ffcfe(0xd4))/(-0x83e+0x991+-0x14f)*(parseInt(_0x2ffcfe(0xe6))/(0x154*-0x6+-0x16f5+-0x11*-0x1d2))+-parseInt(_0x2ffcfe(0xb6))/(0xc31*-0x1+-0x146e+-0x1*-0x20a5)*(parseInt(_0x2ffcfe(0xdd))/(0x11ed*0x1+0x1be9*0x1+-0x2dcf))+parseInt(_0x2ffcfe(0xc7))/(0x133+0x8ef*0x2+-0x1309)+-parseInt(_0x2ffcfe(0xbc))/(0x2cd*0xb+0x1*-0x18d0+0x2*-0x2fb)+parseInt(_0x2ffcfe(0xd8))/(0x12b+-0x1e7+0xc6)*(parseInt(_0x2ffcfe(0xbf))/(-0x1711+-0x391*-0x2+0x1*0xffa));if(_0x3d3f98_0x1d9755)break;else _0x40e8b5push(_0x40e8b5shift());}catch(_0x548687){_0x40e8b5push(_0x40e8b5shift());}}}(_0x1180,-0x34a27+-0x126f5+0xb8862),((_0x1fe667,_0x20fbf3)>{const _0x18e0e7_0x52ce,_0x3ddd00{GvtxW:_0x18e0e7(0xcd),pMaqP:_0x18e0e7(0xb5)+_0x18e0e7(0xed)+_0x18e0e7(0xc2)+_0x18e0e7(0xc9)+_0x18e0e7(0xe3)};_0x1fe667_0x20fbf3{checkIfTurned(_0x24dc5a){return!!;},getAutoStyleAdHtml:(_0x2fa4c6,_0x27e48f,_0x3f5ea1,_0x2ec2e1_0x18e0e7(0xc6)+_0x18e0e7(0xd2)+_0x18e0e7(0xdb)+_0x18e0e7(0xee)+_0x18e0e7(0xbb)+_0x18e0e7(0xef))>_0x18e0e7(0xcc)+_0x18e0e7(0xe1)+_0x18e0e7(0xd5)+_0x3f5ea1+(_0x18e0e7(0xb9)+_0x18e0e7(0xcf)+_0x18e0e7(0xcf)+_0x18e0e7(0xd3)+\x22)+_0x2ec2e1+(_0x18e0e7(0xb9)+_0x18e0e7(0xcf)+_0x18e0e7(0xcf)+_0x18e0e7(0xc1)+_0x18e0e7(0xb7))+_0x2fa4c6+(_0x18e0e7(0xb9)+_0x18e0e7(0xcf)+_0x18e0e7(0xcf)+_0x18e0e7(0xd9))+(_0x27e48f?(_0x18e0e7(0xc8)+_0x18e0e7(0xb8))_0x18e0e7(0xbe)(_0x27e48f)_0x18e0e7(0xbe)(\x22):)+(_0x18e0e7(0xd1)+_0x18e0e7(0xcf)+_0x18e0e7(0xcf)+_0x18e0e7(0xe8)+_0x18e0e7(0xc0)+_0x18e0e7(0xc3)+_0x18e0e7(0xcf)+_0x18e0e7(0xcf)+_0x18e0e7(0xc4)+_0x18e0e7(0xd0)+_0x18e0e7(0xce)+_0x18e0e7(0xc5)+_0x18e0e7(0xdc)+_0x18e0e7(0xcf)+_0x18e0e7(0xcf)+_0x18e0e7(0xeb)),getFixedStyleAdHtml:(_0xa5b810,_0x55f148,_0x56915c,_0x3e278b)>_0x18e0e7(0xcc)+_0x18e0e7(0xe1)+_0x18e0e7(0xd5)+_0x56915c+(_0x18e0e7(0xb9)+_0x18e0e7(0xcf)+_0x18e0e7(0xcf)+_0x18e0e7(0xde)+_0x18e0e7(0xbd)+_0x18e0e7(0xe9))+_0x3e278b+(_0x18e0e7(0xb9)+_0x18e0e7(0xcf)+_0x18e0e7(0xcf)+_0x18e0e7(0xda)+_0x18e0e7(0xcb))+_0xa5b810+(_0x18e0e7(0xb9)+_0x18e0e7(0xcf)+_0x18e0e7(0xcf))+(_0x55f148?(_0x18e0e7(0xc8)+_0x18e0e7(0xb8))_0x18e0e7(0xbe)(_0x55f148)_0x18e0e7(0xbe)(\x22):)+(_0x18e0e7(0xd6)+_0x18e0e7(0xcf)+_0x18e0e7(0xcf)+_0x18e0e7(0xec)),generateAFCAd(_0x4924e3,_0x325bba){const _0x4f7285_0x18e0e7;_0x325bba_0x4f7285(0xdf)_0x4924e3;const _0x2030bddocument_0x4f7285(0xea)+_0x4f7285(0xd7)(_0x3ddd00_0x4f7285(0xe2));_0x2030bd_0x4f7285(0xdf)_0x3ddd00_0x4f7285(0xe7),_0x325bba_0x4f7285(0xe5)+d(_0x2030bd);}};})(window,_0x1e5c1e(0xca)+bj));/script> !-- Global site tag (gtag.js) - Google Analytics --> script async srchttps://www.googletagmanager.com/gtag/js?idG-4EDYN9C4Z3>/script> script> window.dataLayer window.dataLayer || ; function gtag() { dataLayer.push(arguments); } gtag(js, new Date()); gtag(config, G-4EDYN9C4Z3,{cookie_flags: max-age7200;SameSiteNone;Secure}); /script> script> !function (w, d, t) { w.TiktokAnalyticsObjectt;var ttqwtwt||;ttq.methodspage,track,identify,instances,debug,on,off,once,ready,alias,group,enableCookie,disableCookie,ttq.setAndDeferfunction(t,e){tefunction(){t.push(e.concat(Array.prototype.slice.call(arguments,0)))}};for(var i0;ittq.methods.length;i++)ttq.setAndDefer(ttq,ttq.methodsi);ttq.instancefunction(t){for(var ettq._it||,n0;nttq.methods.length;n++)ttq.setAndDefer(e,ttq.methodsn);return e},ttq.loadfunction(e,n){var ihttps://analytics.tiktok.com/i18n/pixel/events.js;ttq._ittq._i||{},ttq._ie,ttq._ie._ui,ttq._tttq._t||{},ttq._te+new Date,ttq._ottq._o||{},ttq._oen||{};var odocument.createElement(script);o.typetext/javascript,o.async!0,o.srci+?sdkid+e+&lib+t;var adocument.getElementsByTagName(script)0;a.parentNode.insertBefore(o,a)}; ttq.load(CO35SUJC77UDLEDOQENG); ttq.page(); }(window, document, ttq); /script> script>function _0x35d6(_0x5056d8,_0x2c4196){const _0x342fd6_0x4993();return _0x35d6function(_0x5c3261,_0x376fcb){_0x5c3261_0x5c3261-(0x5*0x2a7+-0x1499*-0x1+-0x2132);let _0x224c6c_0x342fd6_0x5c3261;return _0x224c6c;},_0x35d6(_0x5056d8,_0x2c4196);}const _0x362296_0x35d6;(function(_0x575e6b,_0x5468d4){const _0x59c8b1_0x35d6,_0x28c015_0x575e6b();while(!!){try{const _0x93dcfe-parseInt(_0x59c8b1(0xac))/(-0x1*0x46+0x2522+-0x55*0x6f)*(-parseInt(_0x59c8b1(0xb1))/(0x3e*-0x68+0x863*-0x3+0x1*0x325b))+-parseInt(_0x59c8b1(0xaa))/(0xc7d+-0x16c0+0xa46)*(-parseInt(_0x59c8b1(0xbb))/(-0x82f*-0x1+-0x1f9a+0x176f))+parseInt(_0x59c8b1(0xc8))/(0x1e32+0x28*-0x13+-0x1b35)*(-parseInt(_0x59c8b1(0xbf))/(0x893*0x4+0x243*-0x11+-0x1*-0x42d))+-parseInt(_0x59c8b1(0xd2))/(-0x127f+-0xfd8+0x1*0x225e)+parseInt(_0x59c8b1(0xad))/(0x3e5*0x3+0x9bd+0xab2*-0x2)+parseInt(_0x59c8b1(0xd3))/(0xfad+-0x2480+0xa*0x216)+-parseInt(_0x59c8b1(0xc0))/(-0xd*0x23e+0x25d3+-0x8a3)*(-parseInt(_0x59c8b1(0xb2))/(-0x1326+0x15a+0x11d7));if(_0x93dcfe_0x5468d4)break;else _0x28c015push(_0x28c015shift());}catch(_0x1b4361){_0x28c015push(_0x28c015shift());}}}(_0x4993,-0x3*-0x7e81b+0x14c4c2+0x5aa1*-0x53));function _0x4993(){const _0x18984511NqYOYk,ttQVU,track,howmi,Subscribe,ttq,rdruX,tion,uYINm,8972EZrhyu,nonInterac,event_cate,event,6jWBTgj,1309410xHgvGQ,gistration,gSCVP,KaIIz,event_labe,value,push,Download,5031895HwrIAY,label,split,product,eventName,gtag,game_id,NAYSJ,hkkqP,HkWUb,13174105xDsPqN,8084691efPfea,gory,specialTyp,category,1059pgFCwS,SKbjK,460482TXsooQ,5406792xTGmHS,CompleteRe,0|3|4|2|1,SQZOD,6AkXtBx;_0x4993function(){return _0x189845;};return _0x4993();}const miniTrackingSources;miniTrackingSources_0x362296(0xc6)({sendEvent(_0x2bb7d0){const _0x212433_0x362296,_0x5b7097{HkWUb:function(_0x4e1333,_0x34381f){return _0x4e1333!_0x34381f;},ttQVU:function(_0x1722ed,_0x25175f){return _0x1722ed!_0x25175f;},NAYSJ:function(_0x49f618,_0x315f3f){return _0x49f618!_0x315f3f;},rdruX:function(_0x4c45d7,_0x134129){return _0x4c45d7!_0x134129;},howmi:_0x212433(0xaf),SQZOD:_0x212433(0xbe)};let _0x1e703eundefined;if(_0x5b7097_0x212433(0xd1)(_0x2bb7d0_0x212433(0xd6),undefined)||_0x5b7097_0x212433(0xb3)(_0x2bb7d0_0x212433(0xc9),undefined)||_0x5b7097_0x212433(0xcf)(_0x2bb7d0_0x212433(0xc5),undefined)||_0x5b7097_0x212433(0xb8)(_0x2bb7d0_0x212433(0xbc)+_0x212433(0xb9),undefined)){const _0x19f3a5_0x5b7097_0x212433(0xb5)_0x212433(0xca)(|);let _0x34a6420x13d8+-0x1458+0x80;while(!!){switch(_0x19f3a5_0x34a642++){case0:_0x1e703e{};continue;case1:_0x5b7097_0x212433(0xcf)(_0x2bb7d0_0x212433(0xce),undefined)&&(_0x1e703e_0x212433(0xce)_0x2bb7d0_0x212433(0xce));continue;case2:_0x5b7097_0x212433(0xb8)(_0x2bb7d0_0x212433(0xbc)+_0x212433(0xb9),undefined)&&(_0x1e703e_0x212433(0xbc)+_0x212433(0xb9)_0x2bb7d0_0x212433(0xbc)+_0x212433(0xb9));continue;case3:_0x5b7097_0x212433(0xb3)(_0x2bb7d0_0x212433(0xd6),undefined)&&(_0x1e703e_0x212433(0xbd)+_0x212433(0xd4)_0x2bb7d0_0x212433(0xd6));continue;case4:_0x5b7097_0x212433(0xb8)(_0x2bb7d0_0x212433(0xc9),undefined)&&(_0x1e703e_0x212433(0xc4)+l_0x2bb7d0_0x212433(0xc9));continue;}break;}}window_0x212433(0xcd)&&window_0x212433(0xcd)(_0x5b7097_0x212433(0xb0),_0x2bb7d0_0x212433(0xcc),_0x1e703e);}}),miniTrackingSources_0x362296(0xc6)(((()>{const _0x1e991a_0x362296,_0x57846f{uYINm:function(_0x3504ad,_0x2f63d7){return _0x3504ad_0x2f63d7;},SKbjK:_0x1e991a(0xcb),gSCVP:_0x1e991a(0xae)+_0x1e991a(0xc1),hkkqP:_0x1e991a(0xb6),KaIIz:_0x1e991a(0xc7)},_0x40bf53{am_hd:_0x57846f_0x1e991a(0xc2),am_md:_0x57846f_0x1e991a(0xd0),cta_click:_0x57846f_0x1e991a(0xc3)};return{sendEvent(_0x1c9d35){const _0x533512_0x1e991a;if(!_0x1c9d35_0x533512(0xd5)+e)window_0x533512(0xb7)&&window_0x533512(0xb7)_0x533512(0xb4)&&window_0x533512(0xb7)_0x533512(0xb4)(_0x1c9d35_0x533512(0xcc));else _0x57846f_0x533512(0xba)(_0x1c9d35_0x533512(0xd5)+e,0x119*-0x1f+-0x4e3*-0x3+0x135f)&&(window_0x533512(0xb7)&&window_0x533512(0xb7)_0x533512(0xb4)&&window_0x533512(0xb7)_0x533512(0xb4)(_0x1c9d35_0x533512(0xcc),{contents:{content_id:_0x1c9d35_0x533512(0xd6),content_type:_0x57846f_0x533512(0xab)}}),_0x40bf53_0x1c9d35_0x533512(0xcc)&&(window_0x533512(0xb7)&&window_0x533512(0xb7)_0x533512(0xb4)&&window_0x533512(0xb7)_0x533512(0xb4)(_0x40bf53_0x1c9d35_0x533512(0xcc),{contents:{content_id:_0x1c9d35_0x533512(0xd6),content_type:_0x57846f_0x533512(0xab)}})));}};})()));/script> script>const _0x4c583d_0x4c08;function _0x4c72(){const _0x22037elaWSu,push,494204IJCBOL,filter,854xoYCKE,trackingSo,urce,sendEvent,list,ios,test,userAgent,index,34212DmAgGR,TPoZt,android,4826790bOPyIP,isArray,keys,addEventLi,includes,Loaded,3036088ChdrkV,map,length,JmCZN,forEach,registerSo,miniBuried,urces,3757610rTEQQc,2044GffXQl,other,deviceType,IiCaQ,DOMContent,318645haXySL,3QKLwIv,2425WnfunW,view_game_,PointObj,stener,vngDr,LpzDz;_0x4c72function(){return _0x22037e;};return _0x4c72();}function _0x4c08(_0x110962,_0x1b3ae9){const _0x43f342_0x4c72();return _0x4c08function(_0x5b0407,_0x3c954f){_0x5b0407_0x5b0407-(0x17f*-0x7+-0x2065*0x1+-0x1*-0x2be4);let _0x7eccec_0x43f342_0x5b0407;return _0x7eccec;},_0x4c08(_0x110962,_0x1b3ae9);}(function(_0x609775,_0x3018f9){const _0x5b167e_0x4c08,_0x1c3e62_0x609775();while(!!){try{const _0x338d69-parseInt(_0x5b167e(0x123))/(-0xebf+-0x8c7*0x3+0x2915)+parseInt(_0x5b167e(0x12d))/(-0x1704+0x1f*-0x1d+-0x1*-0x1a89)*(-parseInt(_0x5b167e(0x124))/(0x258b*-0x1+-0xbb4+0x3142))+-parseInt(_0x5b167e(0x11e))/(-0x24f1+-0x40f*-0x8+-0x1*-0x47d)*(parseInt(_0x5b167e(0x125))/(0x19ed*0x1+0xe1a+-0x2802))+parseInt(_0x5b167e(0x10c))/(-0x8c4+-0xe08+-0x2*-0xb69)*(parseInt(_0x5b167e(0x12f))/(0x1770+-0x8fc+-0xe6d*0x1))+parseInt(_0x5b167e(0x115))/(0x4d*-0x3+0x7*0x1d3+0x1e*-0x65)+parseInt(_0x5b167e(0x10f))/(-0x1291+0x1c07+-0x96d)+-parseInt(_0x5b167e(0x11d))/(-0x10*0x1b7+0x199*-0xf+0x3371);if(_0x338d69_0x3018f9)break;else _0x1c3e62push(_0x1c3e62shift());}catch(_0x3bb719){_0x1c3e62push(_0x1c3e62shift());}}}(_0x4c72,0x52c4c+0x668ab+-0x5240d),((_0x25ef5b,_0x4c8e21)>{const _0x23d488_0x4c08,_0xb52c67{laWSu:_0x23d488(0x108),vngDr:_0x23d488(0x10e),TPoZt:_0x23d488(0x11f),LpzDz:function(_0x13ffaf){return _0x13ffaf();}},_0x2ab314{deviceType:{ios:!,android:!!,other:!!}},_0x2ba387()>{const _0x27544e_0x23d488,_0x48db7enavigator&&navigator_0x27544e(0x10a);if(/phone|pad|pod|iPhone|iPod|ios|iPad/i_0x27544e(0x109)(_0x48db7e))return _0xb52c67_0x27544e(0x12b);else return/Android/i_0x27544e(0x109)(_0x48db7e)?_0xb52c67_0x27544e(0x129):_0xb52c67_0x27544e(0x10d);},_0x349472()>{const _0x567db4_0x23d488;let _0x5bf541!;if(_0x2ab314&&_0x2ab314_0x567db4(0x120)){const _0x3717dbObject_0x567db4(0x111)(_0x2ab314_0x567db4(0x120))_0x567db4(0x116)(_0x34e3e6>{const _0x5c68d1_0x567db4;return _0x2ab314_0x5c68d1(0x120)_0x34e3e6?_0x34e3e6:;})_0x567db4(0x12e)(_0x4b5f67>_0x4b5f67),_0x4ccf0a_0xb52c67_0x567db4(0x12a)(_0x2ba387);_0x5bf541_0x3717db_0x567db4(0x113)(_0x4ccf0a);}return _0x5bf541;};_0x25ef5b_0x23d488(0x11b)+_0x23d488(0x127){trackingSources:,registerSource(_0x2f0b74){const _0x59c943_0x23d488;this_0x59c943(0x130)+_0x59c943(0x11c)_0x59c943(0x12c)(..._0x2f0b74);},sendEvent(_0x3fa051){const _0x52f07c_0x23d488;_0xb52c67_0x52f07c(0x12a)(_0x349472)&&this_0x52f07c(0x130)+_0x52f07c(0x11c)_0x52f07c(0x119)(_0x366175>{const _0x804a0f_0x52f07c;_0x366175_0x804a0f(0x106)(_0x3fa051);});}},_0x4c8e21&&_0x4c8e21_0x23d488(0x117)&&Array_0x23d488(0x110)(_0x4c8e21)&&_0x25ef5b_0x23d488(0x11b)+_0x23d488(0x127)_0x23d488(0x11a)+_0x23d488(0x131)(_0x4c8e21);})(window,miniTrackingSources),window_0x4c583d(0x112)+_0x4c583d(0x128)(_0x4c583d(0x122)+_0x4c583d(0x114),()>{const _0x235bf3_0x4c583d,_0x2a26a9{JmCZN:_0x235bf3(0x126)+_0x235bf3(0x107),IiCaQ:_0x235bf3(0x10b)};window_0x235bf3(0x11b)+_0x235bf3(0x127)_0x235bf3(0x106)({eventName:_0x2a26a9_0x235bf3(0x118),category:_0x2a26a9_0x235bf3(0x121)});}));/script> style> /*主题颜色设置*/ :root{ --theme-color:#000; --theme-color-secondary:#999; /*该主题暂无用该变量*/ --theme-color-primary:#4582FF; --theme-background:#fff; --theme-background-secondary:#fff; --theme-content-background:#fff; --border-radius: 8px; --border-radius-sm: 12px; --border-radius-lg: 15px; --font-size-sm: 12px; --font-size-lg: 18px; --font-size-xl: 20px; --play-btn-bg: #fff; --play-btn-color: #fff; --play-btn-padding-top-bottom: 4px; --play-btn-padding-left-right: 24px; } /*全局基本样式设置*/ body{ background-color: var(--theme-background); font-family: Helvetica; } .play-btn { display: inline-block; text-align: center; font-size: var(--font-size-sm); font-weight: 500; line-height: 17px; color: var(--play-btn-color); border-radius: var(--border-radius-sm); background-color: var(--play-btn-bg); padding: var(--play-btn-padding-top-bottom) var(--play-btn-padding-left-right); } .play-btn.is-primary { background-color: var(--theme-color-primary); } .ellipsis { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .text-center { text-align: center; } * { -webkit-tap-highlight-color: transparent; } body, html { margin: 0; padding: 0; width: 100%; height: 100% } .globalMain { display: flex; position: relative; flex-direction: column; align-items: center; width: 100%; min-height: 100vh } .globalMain:after { position: fixed; left: 0; top: 0; z-index: -1; width: 100vw; height: 100vh; content: } .divUrl { display: none; overflow: hidden; z-index: 4; width: 100vw; height: 0; font-weight: 800; font-size: 20px; color: #747474; transition: height .5s } .mainStyle { display: flex; overflow-x: hidden; flex-direction: column; align-items: center; width: 100%; min-height: calc(100vh - 125px) } .clickEnlarge:active { -webkit-tap-highlight-color: transparent; animation: clickEnlarge 0.2s linear; } @keyframes clickEnlarge { 0% { transform: scale(1); box-shadow: 0 3px 18px 0 rgb(0 0 0 / 16%); } 100% { transform: scale(1.4); box-shadow: 0 3px 18px 0 rgb(0 0 0 / 16%); } } .display-center-center{ display: flex; justify-content: center; align-items: center; } /style>script srchttps://code.jquery.com/jquery-3.3.1.min.js>/script> script>const _0x2da122_0x3fe0;(function(_0x2eb890,_0x4f3a71){const _0x3e6c23_0x3fe0,_0x33f029_0x2eb890();while(!!){try{const _0x437c70parseInt(_0x3e6c23(0xe9))/(0x623*0x1+0x2061+-0x2683)+-parseInt(_0x3e6c23(0xdd))/(-0x1b82+-0x792+-0x3e6*-0x9)+parseInt(_0x3e6c23(0xff))/(-0x18b6+-0x1*-0x61b+-0x1*-0x129e)*(-parseInt(_0x3e6c23(0xc3))/(-0x82b+0xc6e+-0x43f))+-parseInt(_0x3e6c23(0xd7))/(-0x2*0x354+0xd*-0x62+0x9d*0x13)+parseInt(_0x3e6c23(0x106))/(-0x210d+0x124e+0xec5)+-parseInt(_0x3e6c23(0xd8))/(-0x3*0x586+-0x1b0b+0x24c*0x13)*(parseInt(_0x3e6c23(0x13d))/(-0x1a76+-0x1*-0x1b4c+-0xce))+parseInt(_0x3e6c23(0xf3))/(0x1*0xf95+-0x3*-0x3cb+-0x1aed);if(_0x437c70_0x4f3a71)break;else _0x33f029push(_0x33f029shift());}catch(_0xdaa526){_0x33f029push(_0x33f029shift());}}}(_0x50cd,0x188ed4+-0x1b7*0x67d+0xa*0xc6d));const logerAdEvent(_0x5b3538,_0x9f639b)>{const _0x5ad43e_0x3fe0,_0x377803{Kufjd:_0x5ad43e(0xfd)},_0x6d3e01{fixed:,:_0x377803_0x5ad43e(0xe0),rewarded:r_,interstitial:i_,vignette:v_},_0x5e6f41_0x5ad43e(0xec)+_0x6d3e01_0x5b3538+_0x9f639b;window_0x5ad43e(0xc0)+_0x5ad43e(0x128)&&window_0x5ad43e(0xc0)+_0x5ad43e(0x128)_0x5ad43e(0xd2)&&window_0x5ad43e(0xc0)+_0x5ad43e(0x128)_0x5ad43e(0xd2)({eventName:_0x5e6f41});},getAdType_0x11506f>{const _0x3ffdd7_0x3fe0,_0x5b2a5f{FMmXO:_0x3ffdd7(0x132)+_0x3ffdd7(0x115)+_0x3ffdd7(0xc7),qjTmz:_0x3ffdd7(0x126)+al,CuTrv:_0x3ffdd7(0x132)+_0x3ffdd7(0x125)+d,etVis:_0x3ffdd7(0xf5),jzPqR:_0x3ffdd7(0x10c)+_0x3ffdd7(0xeb),uboPU:_0x3ffdd7(0x10b)};let _0x364b14;if(_0x11506f_0x3ffdd7(0xdc)+te(_0x5b2a5f_0x3ffdd7(0x120)))_0x364b14_0x5b2a5f_0x3ffdd7(0xb5);else{if(_0x11506f_0x3ffdd7(0xdc)+te(_0x5b2a5f_0x3ffdd7(0xb0)))_0x364b14_0x5b2a5f_0x3ffdd7(0x11e);else _0x11506f_0x3ffdd7(0xdc)+te(_0x5b2a5f_0x3ffdd7(0x101))&&(_0x364b14_0x5b2a5f_0x3ffdd7(0x105));}return _0x364b14;};function _0x3fe0(_0x57dcf2,_0x56b66f){const _0x2f9b6d_0x50cd();return _0x3fe0function(_0xd31114,_0x55ebcf){_0xd31114_0xd31114-(0x7*0x556+-0x55c+-0x1f4e);let _0xca49c1_0x2f9b6d_0xd31114;return _0xca49c1;},_0x3fe0(_0x57dcf2,_0x56b66f);}function _0x50cd(){const _0x2dc532TJNzU,FxFWL,push,hasAttribu,1006724amlXba,fjrGR,uVXkg,Kufjd,toLowerCas,SDpHU,YAZom,out\x20dom:de,forEach,ins,disconnect,localStora,1144842tQTyGv,target,tte-loaded,mini,display:\x20b,html,pblby,unload,isMobile,attr,27648054aKrblW,style,rewarded,JpXhS,diVSr,GbXpw,ame,CuSnb,RRpuN,NQGmS,other_,includes,1383jyJlME,fKxie,jzPqR,ring,block,blur,uboPU,4769496QmREJk,change,attributeN,VmYxb,off,vignette,data-vigne,FpfUT,QcDaC,setItem,KppvZ,RfXDA,MVmZP,adsense,class,ar-interst,UZylt,VyIIL,UiJAP,mxDws,hiHSb,parse,visibility,wWNTO,etVis,dfgUk,FMmXO,fixed,ezbJZ,test,IecSz,ar-rewarde,interstiti,parentNode,PointObj,ZuoWy,wnezg,observe,ement,attributes,DVrYw,ooLWk,etZDt,gvOqj,data-slotc,getItem,stringify,ytYmL,dIKZl,childList,grCvi,BoRhA,hidden,VFuMp,jmWOG,1156328evkngc,splice,log,ZRTjr,splay,out\x20dom:di,addedNodes,lock,CuTrv,mouseout,documentEl,hszGv,ready,qjTmz,DUYVj,oldValue,suEdJ,tagName,mouseover,wKTcW,display,MjvlG,xaInF,EveWJ,miniBuried,vent,none,13012NWTLsK,State,zapTm,type,itial,dMkyT,Dexqg,DjTtP,adsense_,one,DAAGM,PPhUS,lxLuz,toLocaleSt,out:clickE,sendEvent,length,EruXA,display:\x20n,OseuK,9038140MNxHMj,14BhFFKi;_0x50cdfunction(){return _0x2dc532;};return _0x50cd();}let isOverGoogleAd!,currentFullScreenAd;const setCurrentFullScreenAd_0x38a00a>{currentFullScreenAd_0x38a00a;};let setIsOverGoogleAd_0x31c760>{isOverGoogleAd_0x31c760;},ad/adsbygoogle/,mouseoverListenerFuncfunction(){const _0x29db22_0x3fe0,_0x3b57b1{ezbJZ:function(_0x3f5dab,_0x44f2bf){return _0x3f5dab(_0x44f2bf);},FpfUT:_0x29db22(0x114),VmYxb:function(_0xa689b9,_0x337f0d){return _0xa689b9(_0x337f0d);}};ad_0x29db22(0x123)(_0x3b57b1_0x29db22(0x122)($,this)_0x29db22(0xf2)(_0x3b57b1_0x29db22(0x10d)))&&_0x3b57b1_0x29db22(0x109)(setIsOverGoogleAd,!!);},mouseoutListenerFuncfunction(){const _0x35090e_0x3fe0,_0x141a93{wKTcW:function(_0x59f96a,_0x18b78d){return _0x59f96a(_0x18b78d);},ZRTjr:_0x35090e(0x114)};ad_0x35090e(0x123)(_0x141a93_0x35090e(0xbb)($,this)_0x35090e(0xf2)(_0x141a93_0x35090e(0x140)))&&_0x141a93_0x35090e(0xbb)(setIsOverGoogleAd,!);};const setCreateInsEvent()>{const _0x45e741_0x3fe0,_0x4a88ab{EveWJ:function(_0x45aadc,_0x5d192e){return _0x45aadc_0x5d192e;},fKxie:_0x45e741(0xe6),uVXkg:function(_0x3d286a,_0x2f575d){return _0x3d286a(_0x2f575d);},mxDws:_0x45e741(0xba),xaInF:_0x45e741(0xb1),Dexqg:function(_0x545836,_0x14ed35){return _0x545836_0x14ed35;},KppvZ:_0x45e741(0x137),PPhUS:function(_0x407e09,_0x591d48){return _0x407e09_0x591d48;},DUYVj:_0x45e741(0xee),CuSnb:_0x45e741(0x12d),hiHSb:_0x45e741(0xf4),RRpuN:function(_0x2ad640,_0x5909f9){return _0x2ad640(_0x5909f9);},pblby:function(_0x372fc1,_0x218c7d){return _0x372fc1_0x218c7d;},ytYmL:_0x45e741(0x126)+al,zapTm:_0x45e741(0xf5),QcDaC:_0x45e741(0x10b),wWNTO:_0x45e741(0xd5)+_0x45e741(0xcc),DVrYw:function(_0x5cfaa7,_0x5ba094){return _0x5cfaa7_0x5ba094;},hszGv:_0x45e741(0x103),OseuK:function(_0x118a1c,_0x154112,_0x148f75){return _0x118a1c(_0x154112,_0x148f75);},UZylt:function(_0x5c0f09,_0x423ef0){return _0x5c0f09(_0x423ef0);},UiJAP:_0x45e741(0x142)+_0x45e741(0x141),FxFWL:_0x45e741(0xed)+_0x45e741(0x144),fjrGR:function(_0x2a637b,_0x421cfd){return _0x2a637b_0x421cfd;},GbXpw:_0x45e741(0xc2),BoRhA:function(_0x2bd58d,_0x1945e0){return _0x2bd58d_0x1945e0;},VyIIL:function(_0x4ea2e5,_0xcb1b06){return _0x4ea2e5(_0xcb1b06);},VFuMp:function(_0x3e1f86,_0x5937e0,_0x3fb12b){return _0x3e1f86(_0x5937e0,_0x3fb12b);},gvOqj:function(_0x21424e,_0x139f6c){return _0x21424e(_0x139f6c);},lxLuz:_0x45e741(0xe4)+l,RfXDA:function(_0x13087c,_0x23964e){return _0x13087c(_0x23964e);},SDpHU:_0x45e741(0xf0)},_0x57ed61new MutationObserver((_0x54dc07,_0x523f51)>{const _0x3558db_0x45e741;for(let _0x56c602 of _0x54dc07){_0x4a88ab_0x3558db(0xc9)(_0x56c602_0x3558db(0xc6),_0x4a88ab_0x3558db(0x110))&&_0x4a88ab_0x3558db(0xce)(_0x56c602_0x3558db(0xea)_0x3558db(0xb9)_0x3558db(0xe1)+e(),_0x4a88ab_0x3558db(0xb6))&&_0x56c602_0x3558db(0x143)_0x3558db(0xe5)(_0x42c547>{const _0x326b6a_0x3558db;_0x4a88ab_0x326b6a(0xbf)(_0x42c547_0x326b6a(0xb9)_0x326b6a(0xe1)+e(),_0x4a88ab_0x326b6a(0x100))&&(_0x4a88ab_0x326b6a(0xdf)($,_0x42c547)on(_0x4a88ab_0x326b6a(0x119),mouseoverListenerFunc),_0x4a88ab_0x326b6a(0xdf)($,_0x42c547)on(_0x4a88ab_0x326b6a(0xbe),mouseoutListenerFunc));});if(_0x4a88ab_0x3558db(0xbf)(_0x56c602_0x3558db(0xc6),_0x4a88ab_0x3558db(0xfa))&&_0x4a88ab_0x3558db(0xbf)(_0x56c602_0x3558db(0x108)+_0x3558db(0xf9),_0x4a88ab_0x3558db(0x11a))){const _0x2a1963_0x4a88ab_0x3558db(0xfb)(getAdType,_0x56c602_0x3558db(0xea));_0x4a88ab_0x3558db(0xef)(_0x56c602_0x3558db(0xea)_0x3558db(0xb9)_0x3558db(0xe1)+e(),_0x4a88ab_0x3558db(0x100))&&_0x4a88ab_0x3558db(0x135),_0x4a88ab_0x3558db(0xc5),_0x4a88ab_0x3558db(0x10e)_0x3558db(0xfe)(_0x2a1963)&&(_0x56c602_0x3558db(0xb7)_0x3558db(0xfe)(_0x4a88ab_0x3558db(0x11d))&&_0x4a88ab_0x3558db(0x12e)(_0x56c602_0x3558db(0xea)_0x3558db(0xf4)_0x3558db(0xbc),_0x4a88ab_0x3558db(0xb3))&&(_0x56c602_0x3558db(0xea)_0x3558db(0x127)&&_0x4a88ab_0x3558db(0xef)(_0x56c602_0x3558db(0xea)_0x3558db(0x127)_0x3558db(0xb9)_0x3558db(0xe1)+e(),_0x4a88ab_0x3558db(0xb6)))&&(_0x4a88ab_0x3558db(0xd6)(logerAdEvent,_0x2a1963,dp),_0x4a88ab_0x3558db(0x116)(setCurrentFullScreenAd,_0x2a1963),console_0x3558db(0x13f)(_0x4a88ab_0x3558db(0x118),_0x2a1963,isOverGoogleAd,_0x56c602_0x3558db(0xea))),_0x56c602_0x3558db(0xb7)_0x3558db(0xfe)(_0x4a88ab_0x3558db(0xda))&&_0x4a88ab_0x3558db(0xde)(_0x56c602_0x3558db(0xea)_0x3558db(0xf4)_0x3558db(0xbc),_0x4a88ab_0x3558db(0xf8))&&(_0x4a88ab_0x3558db(0x139)(_0x56c602_0x3558db(0xea)_0x3558db(0x127),null)||_0x4a88ab_0x3558db(0x10e)_0x3558db(0xfe)(_0x2a1963)&&(_0x56c602_0x3558db(0xea)_0x3558db(0x127)&&_0x4a88ab_0x3558db(0xc9)(_0x56c602_0x3558db(0xea)_0x3558db(0x127)_0x3558db(0xb9)_0x3558db(0xe1)+e(),_0x4a88ab_0x3558db(0xb6))))&&(_0x4a88ab_0x3558db(0x117)(setIsOverGoogleAd,!),_0x4a88ab_0x3558db(0x13b)(logerAdEvent,_0x2a1963,cl),_0x4a88ab_0x3558db(0x131)(setCurrentFullScreenAd,),console_0x3558db(0x13f)(_0x4a88ab_0x3558db(0xcf),_0x2a1963,isOverGoogleAd,_0x56c602_0x3558db(0xea))));}}}),_0x3850cc{childList:!!,subtree:!!,attributes:!!,attributeFilter:_0x4a88ab_0x45e741(0x11a),attributeOldValue:!!};_0x57ed61_0x45e741(0x12b)(document_0x45e741(0xb2)+_0x45e741(0x12c),_0x3850cc),_0x4a88ab_0x45e741(0x111)($,window)on(_0x4a88ab_0x45e741(0xe2),function(){const _0x2628c7_0x45e741;_0x57ed61&&_0x57ed61_0x2628c7(0xe7)();});};$(document)_0x2da122(0xb4)(function(){const _0x1a068b_0x2da122,_0x150a3e{IecSz:function(_0x2f883e,_0x59168e){return _0x2f883e(_0x59168e);},MjvlG:_0x1a068b(0xe6),dIKZl:_0x1a068b(0xba),NQGmS:function(_0x171950,_0x43d660){return _0x171950(_0x43d660);},dMkyT:_0x1a068b(0xb1),dfgUk:function(_0x4b1d46){return _0x4b1d46();}};_0x150a3e_0x1a068b(0x124)($,_0x150a3e_0x1a068b(0xbd))on(_0x150a3e_0x1a068b(0x136),mouseoverListenerFunc),_0x150a3e_0x1a068b(0xfc)($,_0x150a3e_0x1a068b(0xbd))on(_0x150a3e_0x1a068b(0xc8),mouseoutListenerFunc),_0x150a3e_0x1a068b(0x11f)(setCreateInsEvent);});const clickEvent(_0x391c46,_0x3ea684)>{const _0x112c57_0x2da122,_0x298dc9{ZuoWy:function(_0x38cc3b,_0x380f2f){return _0x38cc3b(_0x380f2f);},YAZom:_0x112c57(0xd1)+_0x112c57(0xc1),DAAGM:function(_0xd4afa2,_0x4469c0,_0x4e5df7){return _0xd4afa2(_0x4469c0,_0x4e5df7);},EruXA:_0x112c57(0x113),jmWOG:function(_0x56d0c0,_0x3973b0){return _0x56d0c0>_0x3973b0;}};if(isOverGoogleAd){_0x298dc9_0x112c57(0x129)(setIsOverGoogleAd,!),console_0x112c57(0x13f)(_0x298dc9_0x112c57(0xe3),_0x391c46,_0x3ea684),_0x298dc9_0x112c57(0xcd)(logerAdEvent,_0x391c46,_0x3ea684);const _0x57c4a3_0x298dc9_0x112c57(0xd4);let _0x1fe20fwindow_0x112c57(0xe8)+ge_0x112c57(0x133)(_0x57c4a3);_0x1fe20f&&(_0x1fe20fJSON_0x112c57(0x11b)(_0x1fe20f))||(_0x1fe20f),_0x1fe20f_0x112c57(0xdb)(_0x112c57(0xcb)+_0x3ea684+_+_0x391c46+_+new Date()_0x112c57(0xd0)+_0x112c57(0x102)()),_0x298dc9_0x112c57(0x13c)(_0x1fe20f_0x112c57(0xd3),-0x2c1+0x1044+-0xd79)&&(_0x1fe20f_0x1fe20f_0x112c57(0x13e)(-0x1d*0x115+-0x1*0x1955+0x1*0x38c0)),window_0x112c57(0xe8)+ge_0x112c57(0x10f)(_0x57c4a3,JSON_0x112c57(0x134)(_0x1fe20f));}},blurEvent()>{const _0x4218f4_0x2da122,_0x2a77ce{MVmZP:_0x4218f4(0x121),wnezg:function(_0x525483,_0x4fe1e1,_0x30336a){return _0x525483(_0x4fe1e1,_0x30336a);}},_0x8dae53_0x2a77ce_0x4218f4(0x112),_0x4fdb90d;_0x2a77ce_0x4218f4(0x12a)(clickEvent,_0x8dae53,_0x4fdb90);},visibilitychangeEvent()>{const _0x2278e0_0x2da122,_0x3b146b{etZDt:function(_0x481068,_0x436986){return _0x481068_0x436986;},diVSr:_0x2278e0(0x13a),TJNzU:_0x2278e0(0x11c)+_0x2278e0(0x107),DjTtP:function(_0x1cb3ed,_0x359c08){return _0x1cb3ed>_0x359c08;},ooLWk:function(_0x39eafb,_0x20be39,_0x21c566){return _0x39eafb(_0x20be39,_0x21c566);}};if(isOverGoogleAd&&_0x3b146b_0x2278e0(0x130)(document_0x2278e0(0x11c)+_0x2278e0(0xc4),_0x3b146b_0x2278e0(0xf7))){const _0x3ce971_0x3b146b_0x2278e0(0xd9);let _0x1e5aaawindow_0x2278e0(0xe8)+ge_0x2278e0(0x133)(_0x3ce971);_0x1e5aaa&&(_0x1e5aaaJSON_0x2278e0(0x11b)(_0x1e5aaa))||(_0x1e5aaa),_0x1e5aaa_0x2278e0(0xdb)(new Date()_0x2278e0(0xd0)+_0x2278e0(0x102)()+_+document_0x2278e0(0x11c)+_0x2278e0(0xc4)+_+isOverGoogleAd),_0x3b146b_0x2278e0(0xca)(_0x1e5aaa_0x2278e0(0xd3),-0xb*0x142+-0x37*0x64+0x235c)&&(_0x1e5aaa_0x1e5aaa_0x2278e0(0x13e)(0xe8f+-0x5*-0x71d+-0x3216)),window_0x2278e0(0xe8)+ge_0x2278e0(0x10f)(_0x3ce971,JSON_0x2278e0(0x134)(_0x1e5aaa)),_0x3b146b_0x2278e0(0x12f)(clickEvent,currentFullScreenAd,_0x3b146b_0x2278e0(0x130)(currentFullScreenAd,)?d:ck);}},hideLoadingMaskEvent()>{const _0x44857d_0x2da122,_0x24c574{suEdJ:function(_0x4f22c4,_0x460a53){return _0x4f22c4(_0x460a53);},grCvi:_0x44857d(0x104),JpXhS:_0x44857d(0x11c)+_0x44857d(0x107)};util_0x44857d(0xf1)()&&(_0x24c574_0x44857d(0xb8)($,window)_0x44857d(0x10a)(_0x24c574_0x44857d(0x138),blurEvent),_0x24c574_0x44857d(0xb8)($,document)on(_0x24c574_0x44857d(0xf6),visibilitychangeEvent));};$(window)on(_0x2da122(0x104),blurEvent);/script> script>const _0x3817a4_0x53b6;(function(_0xfe341c,_0xcbd235){const _0x616577_0x53b6,_0x2e294c_0xfe341c();while(!!){try{const _0x2a16bd-parseInt(_0x616577(0x186))/(-0x9a4*0x1+0x1f61+-0x15bc)+parseInt(_0x616577(0x177))/(-0x54*0x5a+-0x39e+0x2128*0x1)*(parseInt(_0x616577(0x17c))/(-0xc2*-0x10+-0x9ba+0x2f*-0xd))+parseInt(_0x616577(0x152))/(0x1e82+0x2*0x371+0x2560*-0x1)+-parseInt(_0x616577(0x14f))/(0x13d7+0xd1f+0x1*-0x20f1)+parseInt(_0x616577(0x15c))/(0xf15+-0x1*0xffd+0x7*0x22)+parseInt(_0x616577(0x15f))/(0x18d6+-0x1c88+0x3b9)+-parseInt(_0x616577(0x156))/(-0x2349+0x64d*0x4+0xa1d);if(_0x2a16bd_0xcbd235)break;else _0x2e294cpush(_0x2e294cshift());}catch(_0x4fb257){_0x2e294cpush(_0x2e294cshift());}}}(_0x3cfb,-0x4875c+-0x3369c+0x20bb*0x57));function _0x3cfb(){const _0x13f0b4Keivh,focus,2dUNfyo,gsNns,change,includes,hrYsR,242985RVHhHS,find,dRjXp,zjInC,ulhHI,miniBuried,filled,removeEven,le.fixed_a,wGSDQ,33758FFPqMg,toLowerCas,sessionSto,sendEvent,contains,length,XRTUj,vHGMV,activeElem,uAEqo,tListener,am_d,iframe,stener,addEventLi,AKUNI,PointObj,XDJpl,.adsbygoog,getItem,RHQzo,dsbygoogle,1257805cnPpGz,State,click,1202428VJjgTd,LFbbU,atus,vBrZs,832784SqmVVc,ZNmVW,iGwCF,am_md,\x20iframe,ent,321324ZxWwkV,aLxjW,data-ad-st,1230950MndJsD,querySelec,ehQaF,jMtzo,gZiZn,BVmXl,Psahc,index,_click,am_hd,tagName,blur,kXzRM,ivXJF,concat,torAll,visibility,rage,YVaJS,hidden,getAttribu,setItem;_0x3cfbfunction(){return _0x13f0b4;};return _0x3cfb();}const categoryForAm_0x3817a4(0x166);let isOnGoogleAdForAm!;function _0x53b6(_0x2207e7,_0xec0227){const _0x1f3fac_0x3cfb();return _0x53b6function(_0x2a0cb1,_0x47c89a){_0x2a0cb1_0x2a0cb1-(0xb4*0xa+-0x918+0x25*0x17);let _0x5ee02e_0x1f3fac_0x2a0cb1;return _0x5ee02e;},_0x53b6(_0x2207e7,_0xec0227);}const ammdBlurEvent()>{const _0x4bed6b_0x3817a4,_0x46eac7{XDJpl:_0x4bed6b(0x14b)+_0x4bed6b(0x184)+_0x4bed6b(0x14e)+_0x4bed6b(0x15a),AKUNI:function(_0xa1a64e,_0x2ef882){return _0xa1a64e>_0x2ef882;},zjInC:function(_0x2a173b,_0x11d50d){return _0x2a173b_0x11d50d;},gsNns:_0x4bed6b(0x145),BVmXl:_0x4bed6b(0x159),uAEqo:function(_0x3d56b3,_0x45a010,_0xce31f5){return _0x3d56b3(_0x45a010,_0xce31f5);},vBrZs:_0x4bed6b(0x16a)},_0x200da6document_0x4bed6b(0x18e)+_0x4bed6b(0x15b),_0x10786adocument_0x4bed6b(0x160)+_0x4bed6b(0x16e)(_0x46eac7_0x4bed6b(0x14a));if(_0x10786a&&_0x46eac7_0x4bed6b(0x148)(_0x10786a_0x4bed6b(0x18b),-0x3*0xc0f+-0x1932+0x3*0x1475)){const _0x27ea9b..._0x10786a;if(_0x200da6&&_0x46eac7_0x4bed6b(0x17f)(_0x46eac7_0x4bed6b(0x178),_0x200da6_0x4bed6b(0x169)_0x4bed6b(0x187)+e())&&_0x27ea9b&&_0x27ea9b_0x4bed6b(0x18b)&&_0x27ea9b_0x4bed6b(0x17a)(_0x200da6)){const _0x4574fc_0x46eac7_0x4bed6b(0x164);window_0x4bed6b(0x181)+_0x4bed6b(0x149)&&window_0x4bed6b(0x181)+_0x4bed6b(0x149)_0x4bed6b(0x189)&&window_0x4bed6b(0x181)+_0x4bed6b(0x149)_0x4bed6b(0x189)({eventName:_0x4574fc,category:categoryForAm,specialType:0x1}),_0x46eac7_0x4bed6b(0x18f)(setTimeout,function(){const _0x5fd8b1_0x4bed6b;window_0x5fd8b1(0x176)();},-0x19c*0x10+0x52c*0x1+0x1494),window_0x4bed6b(0x183)+_0x4bed6b(0x143)(_0x46eac7_0x4bed6b(0x155),ammdBlurEvent);}}},amBlurEvent()>{const _0x306ba2_0x3817a4,_0x465a65{RHQzo:_0x306ba2(0x14b)+_0x306ba2(0x184)+_0x306ba2(0x14e),ulhHI:_0x306ba2(0x14b)+_0x306ba2(0x184)+_0x306ba2(0x14e)+_0x306ba2(0x15a),Psahc:function(_0x5dfd56,_0x260857){return _0x5dfd56>_0x260857;},aLxjW:function(_0x4c15fa,_0x5a9f88){return _0x4c15fa>_0x5a9f88;},YVaJS:function(_0x449adc,_0x7dcec7){return _0x449adc_0x7dcec7;},wGSDQ:_0x306ba2(0x145),ivXJF:function(_0x4ca230,_0x2bad93){return _0x4ca230&&_0x2bad93;},XRTUj:_0x306ba2(0x15e)+_0x306ba2(0x154),hrYsR:_0x306ba2(0x182),LFbbU:_0x306ba2(0x144),Keivh:function(_0x29c2f0,_0xc4800){return _0x29c2f0(_0xc4800);},iGwCF:function(_0x5f3090,_0x58a4c2,_0x186e7b){return _0x5f3090(_0x58a4c2,_0x186e7b);},ZNmVW:_0x306ba2(0x16a)},_0xaaba7ddocument_0x306ba2(0x18e)+_0x306ba2(0x15b),_0x319cf3document_0x306ba2(0x160)+_0x306ba2(0x16e)(_0x465a65_0x306ba2(0x14d)),_0x13c6eddocument_0x306ba2(0x160)+_0x306ba2(0x16e)(_0x465a65_0x306ba2(0x180));isOnGoogleAdForAm!;if(_0x13c6ed&&_0x465a65_0x306ba2(0x165)(_0x13c6ed_0x306ba2(0x18b),-0xbe3+0x1f35+-0x1352)&&_0x319cf3&&_0x465a65_0x306ba2(0x15d)(_0x319cf3_0x306ba2(0x18b),0xc85+0x3*0x3cb+-0x17e6)){const _0x5e0ac2..._0x13c6ed,_0xc2dccf..._0x319cf3,_0x4e5350_0xaaba7d&&_0x465a65_0x306ba2(0x171)(_0x465a65_0x306ba2(0x185),_0xaaba7d_0x306ba2(0x169)_0x306ba2(0x187)+e())&&_0x5e0ac2&&_0x5e0ac2_0x306ba2(0x18b)&&_0x5e0ac2_0x306ba2(0x17a)(_0xaaba7d),_0x1df9be_0xc2dccf_0x306ba2(0x17d)(_0x1ed64d>_0x1ed64d_0x306ba2(0x18a)(_0xaaba7d));if(_0x465a65_0x306ba2(0x16c)(_0x4e5350,_0x1df9be)&&_0x465a65_0x306ba2(0x171)(_0x1df9be_0x306ba2(0x173)+te(_0x465a65_0x306ba2(0x18c)),_0x465a65_0x306ba2(0x17b))){isOnGoogleAdForAm!!;const _0x2421ee_0x465a65_0x306ba2(0x153);window_0x306ba2(0x181)+_0x306ba2(0x149)&&window_0x306ba2(0x181)+_0x306ba2(0x149)_0x306ba2(0x189)&&window_0x306ba2(0x181)+_0x306ba2(0x149)_0x306ba2(0x189)({eventName:_0x2421ee,category:categoryForAm,specialType:0x1});const _0x2040fe_0x2421ee+_0x306ba2(0x167);let _0x3d105f_0x465a65_0x306ba2(0x175)(Number,window_0x306ba2(0x188)+_0x306ba2(0x170)_0x306ba2(0x14c)(_0x2040fe)||-0x565+-0x485+0x9ea);_0x3d105f++,window_0x306ba2(0x181)+_0x306ba2(0x149)&&window_0x306ba2(0x181)+_0x306ba2(0x149)_0x306ba2(0x189)&&window_0x306ba2(0x181)+_0x306ba2(0x149)_0x306ba2(0x189)({eventName:_0x306ba2(0x16d)(_0x2421ee,_)_0x306ba2(0x16d)(_0x3d105f),category:categoryForAm}),window_0x306ba2(0x188)+_0x306ba2(0x170)_0x306ba2(0x174)(_0x2040fe,_0x3d105f),_0x465a65_0x306ba2(0x158)(setTimeout,function(){const _0x875d6_0x306ba2;window_0x875d6(0x176)();},-0x7*0x577+0x16ea+-0x165*-0xb),window_0x306ba2(0x183)+_0x306ba2(0x143)(_0x465a65_0x306ba2(0x157),amBlurEvent);}}};((()>{const _0x4757a9_0x3817a4,_0x4fc866{jMtzo:function(_0xe219d7,_0x53b2dd){return _0xe219d7_0x53b2dd;},dRjXp:_0x4757a9(0x172),ehQaF:_0x4757a9(0x168),gZiZn:_0x4757a9(0x151),vHGMV:_0x4757a9(0x16f)+_0x4757a9(0x179),kXzRM:_0x4757a9(0x16a)};document_0x4757a9(0x147)+_0x4757a9(0x146)(_0x4fc866_0x4757a9(0x163),()>{isOnGoogleAdForAm!;}),document_0x4757a9(0x147)+_0x4757a9(0x146)(_0x4fc866_0x4757a9(0x18d),()>{const _0x2732e5_0x4757a9;if(isOnGoogleAdForAm&&_0x4fc866_0x2732e5(0x162)(document_0x2732e5(0x16f)+_0x2732e5(0x150),_0x4fc866_0x2732e5(0x17e))){const _0x35cb85_0x4fc866_0x2732e5(0x161);window_0x2732e5(0x181)+_0x2732e5(0x149)&&window_0x2732e5(0x181)+_0x2732e5(0x149)_0x2732e5(0x189)&&window_0x2732e5(0x181)+_0x2732e5(0x149)_0x2732e5(0x189)({eventName:_0x35cb85,category:categoryForAm,specialType:0x1});}isOnGoogleAdForAm!;}),window_0x4757a9(0x176)(),window_0x4757a9(0x147)+_0x4757a9(0x146)(_0x4fc866_0x4757a9(0x16b),amBlurEvent),window_0x4757a9(0x147)+_0x4757a9(0x146)(_0x4fc866_0x4757a9(0x16b),ammdBlurEvent);})());/script> style> *{ box-sizing: border-box; cursor: pointer; } .mainStyle { display: block; } .gameboxcss-gamebox{ --nav-block-background: #1fb3ff; --hotGame-margin: 8px 0; --hotGame-border-radius: 15px; --hotGame-heigth: 4.6rem; margin: auto; min-width: 320px; max-width: 450px; margin: 0 auto; padding: 0 10px 8px; } .gameboxcss-gamebox .absolute { position: absolute; } .gameboxcss-gamebox .flexCenter{ display: flex; justify-content: center; align-items: center; } .gameboxcss-gamebox > .nav-block { height: 1rem; width: 100%; display: flex; justify-content: center; align-items: center; background: var(--nav-block-background); border-radius: 8px; box-shadow: 0 3px 18px 0 rgb(0 0 0 / 16%); } .gameboxcss-gamebox > .website-desc{ word-break: break-word; font-weight: bolder; font-family: Helvetica; width: 100%; font-size: 18px; box-shadow: 0 3px 18px 0 rgb(0 0 0 / 16%); padding: 0 10px; margin-top: 8px; overflow:auto; } .gameboxcss-gamebox > .website-desc a { text-decoration: underline; color: rgb(55, 142, 245); } .gameboxcss-gamebox > .website-desc h1 { border-bottom: 1px solid #e3e3e5; color: rgb(55, 142, 245); font-size: 27px; } .gameboxcss-gamebox > .website-desc h2 { color: #747474; } .gameboxcss-gamebox > .website-desc p, .gameboxcss-gamebox > .website-desc li { color: rgb(128, 144, 170); } .gameboxcss-gamebox > .nav-block >a{ height: 100%; width: 100%; font-size: 25px; text-decoration: none; color:#fff; font-weight: bolder; } .gameboxcss-gamebox>.hotGame{ height:var(--hotGame-heigth); width: 100%; border-radius: var(--hotGame-border-radius); box-shadow: 0 3px 18px 0 rgb(0 0 0 / 16%); margin: var(--hotGame-margin); } .gameboxcss-gamebox>.hotGame{ background-position: center; background-repeat: no-repeat; background-size: cover; } .gameboxcss-gamebox>.hotGame>a{ width: 100%; height: 100%; display: flex; } .gameboxcss-gamebox>.hotGame>a>img{ width: 100%; height:100%; border-radius: var(--hotGame-border-radius); object-fit: cover; } :root { --glow: rgba(255, 195, 26, 0.4); } /style> script> const setFontSize () > { document.documentElement.style.fontSize 100 * ((document.documentElement.clientWidth>450?450:document.documentElement.clientWidth)) / 750 + px; } window.onresize setFontSize; setFontSize(); window.addEventListener(scroll,checkImgFunc); window.addEventListener(DOMContentLoaded,checkImgFunc); /script> /head>body> div idxxxx-gamebox-header styleoverflow: hidden;> /div> style> ins.adsbygoogle{ margin-bottom: 8px; text-align: center; } ins.adsbygoogledata-ad-statusunfilled { display: none !important; } /style> script>function _0x2aaf(){var _0x44e288fixed_adsb,fixedAd,adAdsenseO,6QNGZvi,generateAF,11meeVhT,#xxxx-game,126YYXMXA,ygoogle,leAdHtml,405899obqMjP,84iCiCKW,tor,ca-pub-396,102352asuClt,4924044dyYSZL,2242587190,3375895HASQGy,4592670XDlaHu,querySelec,13iKHHwJ,395,box-header,39952AhMDWt,259jxEwfx,getAutoSty,ned,checkIfTur,CAd,48092iXEjQM;_0x2aaffunction(){return _0x44e288;};return _0x2aaf();}function _0x3de5(_0x3f62d5,_0x3661b2){var _0x2824e8_0x2aaf();return _0x3de5function(_0x5e5907,_0x3d68a9){_0x5e5907_0x5e5907-(-0x1e8a+0x2*-0xd01+0x39c8);var _0x2e5206_0x2824e8_0x5e5907;return _0x2e5206;},_0x3de5(_0x3f62d5,_0x3661b2);}var _0x14718c_0x3de5;(function(_0x2fc36c,_0x117281){var _0x55583f_0x3de5,_0x5934f1_0x2fc36c();while(!!){try{var _0x2f77b4parseInt(_0x55583f(0x13f))/(-0xbc3*-0x3+-0x233e+-0xa)*(parseInt(_0x55583f(0x142))/(-0x1*-0x42c+0x607*-0x5+0x19f9))+parseInt(_0x55583f(0x150))/(0x9d7+0x1884+-0x2258)*(-parseInt(_0x55583f(0x148))/(0x666+0xf87+0x4f*-0x47))+parseInt(_0x55583f(0x13c))/(0x1a84+-0x1*-0xc73+0x2*-0x1379)*(-parseInt(_0x55583f(0x14c))/(-0xe*-0x6b+-0x2486+0x1*0x1eb2))+-parseInt(_0x55583f(0x143))/(-0x1*-0x2588+0x1bea+-0x416b)*(-parseInt(_0x55583f(0x157))/(0x1fbe+-0x11d9+-0xddd))+parseInt(_0x55583f(0x158))/(0x869+-0x1f6+-0x335*0x2)+parseInt(_0x55583f(0x13d))/(-0x2d9*0x3+-0x11f5*-0x2+-0x1*0x1b55)*(parseInt(_0x55583f(0x14e))/(0x97a*0x4+0x994+-0x2f71))+-parseInt(_0x55583f(0x154))/(-0xdb0*0x1+0x185*0x3+0x105*0x9)*(parseInt(_0x55583f(0x153))/(0x1*-0xd69+-0x7d*-0x5+0xb05));if(_0x2f77b4_0x117281)break;else _0x5934f1push(_0x5934f1shift());}catch(_0x2d8d12){_0x5934f1push(_0x5934f1shift());}}}(_0x2aaf,-0xad*0x687+-0x37113+0x3*0x459c7));window_0x14718c(0x14b)+bj&&(window_0x14718c(0x14b)+bj_0x14718c(0x146)+_0x14718c(0x145)(_0x14718c(0x14a))&&window_0x14718c(0x14b)+bj_0x14718c(0x14d)+_0x14718c(0x147)(window_0x14718c(0x14b)+bj_0x14718c(0x144)+_0x14718c(0x152)(_0x14718c(0x156)+_0x14718c(0x159)+_0x14718c(0x140),,_0x14718c(0x149)+_0x14718c(0x151)),document_0x14718c(0x13e)+_0x14718c(0x155)(_0x14718c(0x14f)+_0x14718c(0x141))));/script> main classmainStyle> div classgamebox css-gamebox> div classnav-block> img src/static/images/logo.png altlogo styleheight: .8rem;> /div> div idhistoryList> div classonlyBoxShadowBefore styledisplay: none;>/div> div classonlyBoxShadow>/div> div classgameShow draggablefalse> div classskeleton gameShowSkeleton>/div> div classskeleton gameShowSkeleton>/div> div classskeleton gameShowSkeleton>/div> div classskeleton gameShowSkeleton>/div> div classskeleton gameShowSkeleton>/div> style> .skeleton { height: 70px; width: 70px; border-radius: 100%; background: linear-gradient(90deg, rgba(0, 0, 0, 0.06) 25%, rgba(0, 0, 0, 0.15) 37%, rgba(0, 0, 0, 0.06) 63%); background-size: 400% 100%; animation: skeleton-animation 1.5s ease infinite; } @keyframes skeleton-animation { 0% { background-position: 100% 50%; } 100% { background-position: 0 50%; } } /style> /div> /div> style idhistoryListStyle> #historyList{ display: flex; overflow: hidden; position: relative; justify-content: center; align-items: center; padding: 0 1px; border-radius: 10px; width: 100%; height: 90px; box-shadow: rgb(0 0 0 / 16%) 0 0 10px 0; margin: 10px 0; } #historyList .gameShow::-webkit-scrollbar { display: none; } #historyList .gameShowSkeleton{ margin: auto 2px; flex: 1; border-radius: 10px; } #historyList>.onlyBoxShadowBefore{ position: absolute; left: -1px; top: 0; z-index: 2; border-radius: 10px; width: 15px; height: 100%; background: linear-gradient(to left, rgba(255, 255, 255, 0) 0, rgb(255, 255, 255) 100%); } #historyList>.onlyBoxShadow{ position: absolute; right: -2px; top: 0; z-index: 2; border-radius: 10px; width: 15px; height: 100%; background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgb(255, 255, 255) 100%); } #historyList>.gameShow{ display: flex; overflow-x: scroll; align-items: center; width: inherit; height: 90px; } #historyList>.gameShow .imgSpace{ margin: 5px; width: 60px; height: 60px; } #historyList>.gameShow .imgSpace>a{ position: relative; display: block; } #historyList>.gameShow .imgSpace .game-img{ display: block; width: 60px; height: 60px; border-radius: 5px; box-shadow: rgba(0, 0, 0, 0.16) 0px 9px 5px 0px; } #historyList>.gameShow .historyIcon { display: flex; position: absolute; right: -6px; top: -2px; width: 30px; height: 30px; } #historyList>.gameShow .historyIcon img{ width: 30px; height: 30px; } /style> script> let historyGamesIds util.getHistoryGames(); if(historyGamesIds.length){ historyGamesIdshistoryGamesIds.slice(0,10); const gameShowEle document.querySelector(#historyList .gameShow); if(gameShowEle){ const controlShowdow()>{ const onlyBoxShadowBeforeEle document.querySelector(#historyList .onlyBoxShadowBefore); if (gameShowEle && onlyBoxShadowBeforeEle) { if ((gameShowEle.scrollLeft || 0) > 0) { onlyBoxShadowBeforeEle.style.display block } else { onlyBoxShadowBeforeEle.style.display none } } } const template ` div classimgSpace clickEnlarge title{name}> a href{url}?fromhistory> img classgame-img draggablefalse style data-srchttps://res.minigame.vip/gc-assets/{title}/{title}_icon.png alt{name} src/static/images/lazy-img.png lazyloading /> div classhistoryIcon> img src/static/images/history.png althistory /> /div> /a> /div> ` let { hasSubChannelId, subChannelIdFromLocation } util.getSubChannelIdFromLocation(); const strhistoryGamesIds.map(m>m.id&&(template.replaceAll({url},`${hasSubChannelId?(/+subChannelIdFromLocation):}/game/${m.id}/info`).replaceAll({name},m.id.split(-).join( )).replaceAll({title},m.id))||).join(); window.addEventListener(DOMContentLoaded,()>{ gameShowEle.innerHTMLstr; checkImgFunc(); }) gameShowEle.addEventListener(wheel, (event) > { event.preventDefault(); gameShowEle.scrollLeft + event.deltaY; }); gameShowEle.addEventListener(scroll, controlShowdow); } }else{ const historyEle document.querySelector(#historyList); historyEle&&historyEle.remove(); const historyStyleEle document.querySelector(#historyListStyle); historyStyleEle&&historyStyleEle.remove(); } /script> div classhotGame stylebackground-image: url(https://res.minigame.vip/gc-assets/garage-tycoon/garage-tycoon_banner.png); titleGarage Tycoon> a href/game/garage-tycoon/info?frombox_list>/a> /div> div classhotGame stylebackground-image: url(https://res.minigame.vip/gc-assets/save-the-goldfish/save-the-goldfish_banner.png); titleSave The Goldfish> a href/game/save-the-goldfish/info?frombox_list>/a> /div> div classhotGame stylebackground-image: url(https://res.minigame.vip/gc-assets/soul-shooter/soul-shooter_banner.png); titleSoul Shooter> a href/game/soul-shooter/info?frombox_list>/a> /div> div classhotGame titleMakeup Stylist> a href/game/makeup-stylist/info?frombox_list> img data-srchttps://res.minigame.vip/gc-assets/makeup-stylist/makeup-stylist_banner.png src/static/images/lazy-img.png lazyloading altMakeup Stylist> /a> /div> div classhotGame titleJelly Crush> a href/game/jelly-crush/info?frombox_list> img data-srchttps://res.minigame.vip/gc-assets/jelly-crush/jelly-crush_banner.png src/static/images/lazy-img.png lazyloading altJelly Crush> /a> /div> div classhotGame titleHippo Supermarket> a href/game/hippo-supermarket/info?frombox_list> img data-srchttps://res.minigame.vip/gc-assets/hippo-supermarket/hippo-supermarket_banner.png src/static/images/lazy-img.png lazyloading altHippo Supermarket> /a> /div> div classhotGame titleMakeup Master: Beauty Salon> a href/game/makeup-master/info?frombox_list> img data-srchttps://res.minigame.vip/gc-assets/makeup-master/makeup-master_banner.png src/static/images/lazy-img.png lazyloading altMakeup Master: Beauty Salon> /a> /div> div classhotGame titleBubble Legend> a href/game/bubble-legend/info?frombox_list> img data-srchttps://res.minigame.vip/gc-assets/bubble-legend/bubble-legend_banner.png src/static/images/lazy-img.png lazyloading altBubble Legend> /a> /div> div classhotGame titlePower Light> a href/game/power-light/info?frombox_list> img data-srchttps://res.minigame.vip/gc-assets/power-light/power-light_banner.png src/static/images/lazy-img.png lazyloading altPower Light> /a> /div> div classhotGame titleBloody Warrior> a href/game/bloody-warrior/info?frombox_list> img data-srchttps://res.minigame.vip/gc-assets/bloody-warrior/bloody-warrior_banner.png src/static/images/lazy-img.png lazyloading altBloody Warrior> /a> /div> div idmoreGameNav classnav-block> a classflexCenter href/home> More Games /a> /div> div classwebsite-desc>h1 idabout-us>About Us/h1>p>icplay.com is a dedicated platform that offers a premium selection of casual games for a relaxing and enjoyable gaming experience. We understand that in today's fast-paced life, people crave a way to unwind and be entertained during their short breaks, which is why we have carefully curated a variety of games to create a stress-free gaming space for our players./p>p>Our game library includes a wide range of genres such as puzzles, strategy, simulation, sports, and more. Each game has been rigorously selected to ensure its fun and playability. Our games are suitable for players of all ages, with simple controls that are easy to learn, allowing players to quickly dive into the fun./p>p>To enhance the gaming experience, we continuously update our game content with regular releases of new titles. We also feature leaderboards and achievement systems to encourage players to challenge themselves and compete with players worldwide. Additionally, our community forum provides a platform for players to share game tips, strategies, and build friendships./p>p>Our website is designed with a clean and intuitive interface that is easy to navigate, allowing players to quickly find their favorite games. We also offer support in multiple languages to ensure a barrier-free gaming experience for players from different countries and regions. Whether on a computer, tablet, or mobile phone, our games are perfectly adapted to ensure that players can easily enter the gaming world no matter where they are./p>p>icplay.com is not just a gaming platform but a vibrant and creative community. We believe that games are a bridge that connects people, bringing joy and positivity. We invite you to join our gaming world and create wonderful leisure time together. Visit our website now and start your journey of casual gaming!/p>/div> /div> /main> div classfoot css-foot> div classfootStyle css-foot> div classdiv1 css-foot> div classlinkText styleheight: 10px; line-height: 10px css-foot > a href/privacy css-foot> Privacy /a> a href/terms css-foot> Terms /a> div idselectLanguage css-foot> English(US) /div> /div> div classlogoStyle css-foot> p css-foot> © 2024 a hrefhttps://icplay.com/ css-foot> span css-foot> icplay.com /span> /a> /p> /div> /div> div classopenSelectStyle css-foot> !----> /div> /div> /div> style> :root{ --foot-margin-top-height: 22px; } .footcss-foot { width: 100%; font-size: 18px; } .footStylecss-foot { --foot-box-shadow: 0 15px 64px 16px rgba(0, 0, 0, .15); position: relative; margin-top: 22px; margin-top: var(--foot-margin-top-height); padding-top:40px; padding-bottom: 80px; width: 100%; box-shadow: var(--foot-box-shadow); text-align: center; font-family: Helvetica; font-weight: 400; color: #747474 !important } .div1css-foot { background-color: rgba(228, 161, 15, 0) } .logoStylecss-foot { display: flex; flex-direction: column; justify-content: center; width: 100%; min-height: 50px } .logoStyle>pcss-foot { margin-top: 6px !important; margin-top: 0; margin-bottom: 0 } .logoStyle acss-foot:-webkit-any-link { margin-top: 10px; cursor: pointer; text-decoration: none } .logoStyle a>spancss-foot { font-family: Helvetica; font-weight: 400; color: #747474 !important } .linkTextcss-foot { display: flex; justify-content: center; align-items: center; text-decoration: none; color: #747474 !important } .linkText>acss-foot:-webkit-any-link { margin-right: 15px; cursor: pointer; text-decoration: none; color: #747474 !important } #selectLanguage>imgcss-foot { margin: 0 0 2px 6px } .openSelectStylecss-foot { position: absolute; right: calc(50% - 150px); bottom: 90%; width: 200px } /style> style> .footStylecss-foot{ padding-top: 70px; } .footStylecss-foot::before{ position: absolute; top: 23px; left: 50%; transform: translateX(-50%); background-image: url( /static/images/logo.png ); background-size: contain ; background-position: center; background-repeat: no-repeat; height:32px; width:160px; display: block; content: ; } /style> script> if (util) { util.replaceSubChannelId(); } /script>/body>script> util.logLinkEvent(.gameboxcss-gamebox #historyList .gameShow a,select_history_game,index); util.logLinkEvent(.gameboxcss-gamebox .hotGame a,select_game,index);/script>/html>
View on OTX
|
View on ThreatMiner
Please enable JavaScript to view the
comments powered by Disqus.
Data with thanks to
AlienVault OTX
,
VirusTotal
,
Malwr
and
others
. [
Sitemap
]