pb-sxp-ui 1.2.10 → 1.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +700 -284
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +62 -2
- package/dist/index.js +700 -284
- package/dist/index.js.map +1 -1
- package/dist/index.min.cjs +3 -3
- package/dist/index.min.cjs.map +1 -1
- package/dist/index.min.js +3 -3
- package/dist/index.min.js.map +1 -1
- package/dist/pb-ui.js +700 -284
- package/dist/pb-ui.js.map +1 -1
- package/dist/pb-ui.min.js +3 -3
- package/dist/pb-ui.min.js.map +1 -1
- package/es/core/components/SxpPageRender/FormatImage.js +1 -1
- package/es/core/components/SxpPageRender/Modal/index.js +34 -20
- package/es/core/components/SxpPageRender/Popup/index.js +2 -2
- package/es/core/components/SxpPageRender/ToggleButton/index.js +4 -1
- package/es/core/components/SxpPageRender/WaterFall/List.js +13 -18
- package/es/core/components/SxpPageRender/WaterFall/WaterfallList.js +12 -17
- package/es/core/components/SxpPageRender/index.d.ts +6 -1
- package/es/core/components/SxpPageRender/index.js +73 -42
- package/es/core/components/SxpPageRender/typing.d.ts +2 -0
- package/es/core/context/EditorContext.js +2 -0
- package/es/core/context/SxpDataSourceProvider.d.ts +3 -2
- package/es/core/context/SxpDataSourceProvider.js +53 -33
- package/es/core/hooks/useEventReport.d.ts +1 -1
- package/es/core/hooks/useEventReport.js +10 -9
- package/es/core/utils/tool.d.ts +5 -1
- package/es/core/utils/tool.js +69 -1
- package/es/materials/sxp/popup/AppointForm/settingRender.js +15 -0
- package/es/materials/sxp/popup/CommodityDetail/index.d.ts +13 -2
- package/es/materials/sxp/popup/CommodityDetail/index.js +60 -34
- package/es/materials/sxp/popup/CommodityDetail/material.js +4 -0
- package/es/materials/sxp/popup/CommodityDetail/settingRender.d.ts +28 -2
- package/es/materials/sxp/popup/CommodityDetail/settingRender.js +52 -0
- package/es/materials/sxp/popup/CommodityDetailDiroNew/index.d.ts +13 -2
- package/es/materials/sxp/popup/CommodityDetailDiroNew/index.js +85 -51
- package/es/materials/sxp/popup/CommodityDetailDiroNew/material.js +4 -0
- package/es/materials/sxp/popup/CommodityDetailDiroNew/settingRender.d.ts +28 -2
- package/es/materials/sxp/popup/CommodityDetailDiroNew/settingRender.js +52 -0
- package/es/materials/sxp/popup/CommodityList/settingRender.js +15 -0
- package/es/materials/sxp/popup/Iframe/index.d.ts +16 -0
- package/es/materials/sxp/popup/Iframe/index.js +18 -0
- package/es/materials/sxp/popup/Iframe/material.d.ts +2 -0
- package/es/materials/sxp/popup/Iframe/material.js +21 -0
- package/es/materials/sxp/popup/Iframe/settingRender.d.ts +9 -0
- package/es/materials/sxp/popup/Iframe/settingRender.js +12 -0
- package/es/materials/sxp/popup/Prompt/settingRender.js +16 -1
- package/es/materials/sxp/popup/index.d.ts +1 -0
- package/es/materials/sxp/popup/index.js +1 -0
- package/es/materials/sxp/template/Link/index.js +5 -11
- package/es/materials/sxp/template/Link/interactionRender.d.ts +8 -0
- package/es/materials/sxp/template/Link/interactionRender.js +11 -0
- package/es/materials/sxp/template/Link/material.js +3 -1
- package/es/materials/sxp/template/components/EventProvider.d.ts +3 -2
- package/es/materials/sxp/template/components/EventProvider.js +3 -3
- package/lib/core/components/SxpPageRender/FormatImage.js +1 -1
- package/lib/core/components/SxpPageRender/Modal/index.js +34 -20
- package/lib/core/components/SxpPageRender/Popup/index.js +2 -2
- package/lib/core/components/SxpPageRender/ToggleButton/index.js +3 -0
- package/lib/core/components/SxpPageRender/WaterFall/List.js +13 -18
- package/lib/core/components/SxpPageRender/WaterFall/WaterfallList.js +12 -17
- package/lib/core/components/SxpPageRender/index.d.ts +6 -1
- package/lib/core/components/SxpPageRender/index.js +72 -41
- package/lib/core/components/SxpPageRender/typing.d.ts +2 -0
- package/lib/core/context/EditorContext.js +2 -0
- package/lib/core/context/SxpDataSourceProvider.d.ts +3 -2
- package/lib/core/context/SxpDataSourceProvider.js +53 -33
- package/lib/core/hooks/useEventReport.d.ts +1 -1
- package/lib/core/hooks/useEventReport.js +10 -9
- package/lib/core/utils/tool.d.ts +5 -1
- package/lib/core/utils/tool.js +73 -1
- package/lib/materials/sxp/popup/AppointForm/settingRender.js +15 -0
- package/lib/materials/sxp/popup/CommodityDetail/index.d.ts +13 -2
- package/lib/materials/sxp/popup/CommodityDetail/index.js +60 -34
- package/lib/materials/sxp/popup/CommodityDetail/material.js +4 -0
- package/lib/materials/sxp/popup/CommodityDetail/settingRender.d.ts +28 -2
- package/lib/materials/sxp/popup/CommodityDetail/settingRender.js +52 -0
- package/lib/materials/sxp/popup/CommodityDetailDiroNew/index.d.ts +13 -2
- package/lib/materials/sxp/popup/CommodityDetailDiroNew/index.js +85 -51
- package/lib/materials/sxp/popup/CommodityDetailDiroNew/material.js +4 -0
- package/lib/materials/sxp/popup/CommodityDetailDiroNew/settingRender.d.ts +28 -2
- package/lib/materials/sxp/popup/CommodityDetailDiroNew/settingRender.js +52 -0
- package/lib/materials/sxp/popup/CommodityList/settingRender.js +15 -0
- package/lib/materials/sxp/popup/Iframe/index.d.ts +16 -0
- package/lib/materials/sxp/popup/Iframe/index.js +20 -0
- package/lib/materials/sxp/popup/Iframe/material.d.ts +2 -0
- package/lib/materials/sxp/popup/Iframe/material.js +25 -0
- package/lib/materials/sxp/popup/Iframe/settingRender.d.ts +9 -0
- package/lib/materials/sxp/popup/Iframe/settingRender.js +14 -0
- package/lib/materials/sxp/popup/Prompt/settingRender.js +16 -1
- package/lib/materials/sxp/popup/index.d.ts +1 -0
- package/lib/materials/sxp/popup/index.js +1 -0
- package/lib/materials/sxp/template/Link/index.js +5 -11
- package/lib/materials/sxp/template/Link/interactionRender.d.ts +8 -0
- package/lib/materials/sxp/template/Link/interactionRender.js +13 -0
- package/lib/materials/sxp/template/Link/material.js +3 -1
- package/lib/materials/sxp/template/components/EventProvider.d.ts +3 -2
- package/lib/materials/sxp/template/components/EventProvider.js +3 -3
- package/package.json +1 -1
package/dist/index.min.js
CHANGED
@@ -1,7 +1,7 @@
|
|
1
|
-
import{isEmpty as Mt,isEqual as Pi,cloneDeep as Gt,debounce as li,throttle as Lt,get as Di}from"lodash";import{v4 as Nn}from"uuid";import Bn from"pako";import m,{useContext as Rt,useMemo as ne,memo as Ie,useEffect as se,createContext as Nt,useState as W,useRef as re,useCallback as ue,forwardRef as Ut,useImperativeHandle as Oi,useLayoutEffect as Fn}from"react";import ai from"qs";import jn from"eventemitter3";import{css as xe}from"@emotion/css";import*as Mi from"react-dom";import Vn from"react-dom";function Je(t,e){var i={};for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&e.indexOf(n)<0&&(i[n]=t[n]);if(t!=null&&typeof Object.getOwnPropertySymbols=="function")for(var l=0,n=Object.getOwnPropertySymbols(t);l<n.length;l++)e.indexOf(n[l])<0&&Object.prototype.propertyIsEnumerable.call(t,n[l])&&(i[n[l]]=t[n[l]]);return i}function nt(t,e,i,n){function l(o){return o instanceof i?o:new i(function(r){r(o)})}return new(i||(i=Promise))(function(o,r){function s(d){try{u(n.next(d))}catch(f){r(f)}}function a(d){try{u(n.throw(d))}catch(f){r(f)}}function u(d){d.done?o(d.value):l(d.value).then(s,a)}u((n=n.apply(t,e||[])).next())})}typeof SuppressedError=="function"&&SuppressedError;const zn=/:\w+/g;var Li=(t,e)=>nt(void 0,void 0,void 0,function*(){const i={},n={};for(let l=0;l<e?.length;l++){const{id:o,method:r,url:s,urlParams:a,name:u,queryString:d,headers:f,body:v}=e[l];let h=s;a&&Object.entries(a).forEach(([w,T])=>{h=h.replace(zn,C=>C===w?T:C)}),d&&(h+=d),n[o]=u;try{const w=yield fetch(h,{method:r,headers:Object.assign({"Content-Type":"application/json"},f),body:JSON.stringify(v)}).then(T=>T.json());i[o]=w}catch(w){console.error("DataSource request error: ",w),i[o]={}}}return{$store:i,idMapName:n}});const Ri="SXP_TOKEN_INFO",Hn=(t,e)=>nt(void 0,void 0,void 0,function*(){var i;const n=t.getTenantId(),l=t.getAppId(),o=t.getApiUrl(),r=window.localStorage.getItem(Ri);let s=JSON.parse(r||"{}");if(Date.now()>((i=s?.expireTime)!==null&&i!==void 0?i:0)){const u=yield fetch(`${o}/storefront/v1/proxy/token/${e}`,{method:"POST",headers:{"x-tenant-id":n||"","x-app-id":l||""}}).then(d=>d.json());if(u.success){const d=u.data;s=Object.assign(Object.assign({},d),{expireTime:Date.now()+d.expire*1e3}),window.localStorage.setItem(Ri,JSON.stringify(s))}}return s});function Wt(t,e){const i="0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz".split(""),n=[];let l;if(e=e||i.length,t)for(l=0;l<t;l++)n[l]=i[0|Math.random()*e];else{let o;for(n[8]=n[13]=n[18]=n[23]="-",n[14]="4",l=0;l<36;l++)n[l]||(o=0|Math.random()*16,n[l]=i[l===19?o&3|8:o])}return n.join("")}const Gn=t=>{let e="";const i="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789",n=i.length;let l=0;for(;l<t;)e+=i.charAt(Math.floor(Math.random()*n)),l+=1;return e},Un=()=>{const t=Nn();return t?.replaceAll?t.replaceAll("-",""):Gn(32)},fe=(t,e)=>{if(!t)return"";let i="";const n=e?.["fontFamily-cn"],l=e?.["fontFamily-en"];if(!n&&!l)return t;let o=t;const r=/[\u4e00-\u9fa5]/g,s=/[^\u4e00-\u9fa5]/g,a=`font-family:${n??"inherit"}`,u=`font-family:${l??"inherit"}`,d=v=>{let h=v.search(r),w=v.search(s);return h!==-1&&w!==-1&&h<w&&(i+=`<span style="${a}">${v.substring(h,w)}</span>`,o=v.substring(w,v?.length)),h!==-1&&w!==-1&&h>w&&(i+=`<span style="${u}">${v.substring(w,h)}</span>`,o=v.substring(h,v?.length)),h===-1?(i+=`<span style="${u}">${v.substring(w,v?.length)}</span>`,o="",!1):w===-1?(i+=`<span style="${a}">${v.substring(h,v?.length)}</span>`,o="",!1):!0};let f=!0;for(;f;)f=d(o);return i};function Ni(t){const i=atob(t).split("").map(function(o){return o.charCodeAt(0)}),n=new Uint8Array(i),l=Bn.inflate(n,{to:"string"});return JSON.parse(l)}let ri=null;const Wn={dev:"https://clc-pagebuilder-be-dev.chatlabs.net",staging:"https://clc-pagebuilder-be-staging.chatlabs.net",live:"https://clc-pagebuilder-be.chatlabs.net"};class Yn{constructor(){if(this.setAppId=e=>{this.appId=e},this.setTenantId=e=>{this.tenantId=e},this.getAppId=()=>this.appId,this.getTenantId=()=>this.tenantId,ri)return ri;ri=this}setApiUrl(e){this.apiUrl=`https://${e}`}getApiUrl(){return this.apiUrl?this.apiUrl:this.env?Wn[this.env]:""}getEnv(){return this.env}setEnv(e){this.env=e}}let tt=null;const Xn={init:({appId:t,tenantId:e,env:i="live",apiUrl:n})=>{tt||(tt=new Yn),n&&tt.setApiUrl(n),tt.setAppId(t),tt.setTenantId(e),tt.setEnv(i)},getDetail:t=>{if(!tt)return;const e=tt.getTenantId(),i=tt.getAppId(),n=tt.getApiUrl();return fetch(`${n}/storefront/v1/page?path=`+t,{method:"get",headers:{"x-tenant-id":e||"","x-app-id":i||""}}).then(l=>nt(void 0,void 0,void 0,function*(){var o,r;const s=yield l.json(),a=Ni((o=s?.data)===null||o===void 0?void 0:o.data);if(a){const{$store:u}=yield Li(n,(r=a?.dataSource)!==null&&r!==void 0?r:[]);s.data.data=a,Object.assign(s.data.data,{__STORE__:u})}return s}))},getSxpDetailByPageId:t=>nt(void 0,void 0,void 0,function*(){if(!tt)return;const e=tt.getTenantId(),i=tt.getAppId(),n=tt.getApiUrl();return fetch(`${n}/storefront/v1/page?id=`+t,{method:"get",headers:{"x-tenant-id":e||"","x-app-id":i||""}}).then(l=>nt(void 0,void 0,void 0,function*(){var o;const r=yield l.json();if(!r.success)return;const s=Ni((o=r?.data)===null||o===void 0?void 0:o.data);return r.data.data=s,r.data}))}),getSxpRecommendVideoData:t=>nt(void 0,void 0,void 0,function*(){if(!tt)return;const e=yield Hn(tt,t),i=Wt(0,0);let n=window.localStorage.getItem("SXP_FAKE_SESSION_ID");Mt(n)&&(n=Wt(36,62),window.localStorage.setItem("SXP_FAKE_SESSION_ID",n));const l=yield fetch("https://dev-sxp-be.chatlabs.net/platform/open/rec/v1.2",{method:"POST",headers:{"Content-Type":"application/json",token:e.token,channel:e.channel,userId:e.userId},body:JSON.stringify({productUserId:n,channel:e.channel,maxRecs:10,requestId:i})}).then(o=>o.json());return l?.data||null})};function ft(){return Rt(qi)}function qn(){return Rt(Xi)}const si="feRealSessionIdKey",Bi=()=>{const t=Un();return`${Date.now()}${t}`},Jn=()=>{let t=Kn();return t||(t=Bi(),window.sessionStorage.setItem(si,t)),t},Fi=()=>{const t=Bi();window.sessionStorage.setItem(si,t)},Kn=()=>window.sessionStorage.getItem(si),ji="SXP_FAKE_USER_ID",Vi="FAKE_USER_STATE",zi="AGREE_POLICY",Hi="SLIDE_SKIP_STATE",Gi=()=>{let t=window.localStorage.getItem(ji);return Mt(t)&&(t=Wt(36,62),window.localStorage.setItem(ji,t)),t},Qn=()=>{const t=window.localStorage.getItem(Vi);return Mt(t)&&window.localStorage.setItem(Vi,"true"),Mt(t)},Zn=()=>{const t=window.localStorage.getItem(Hi);return Mt(t)},$n=()=>{window.localStorage.setItem(Hi,"true")};function ct(t,e){const{appDomain:i}=Pe();return ne(()=>e?`https://${e}${t}`:i?`https://${i}${t}`:`${window.location.origin}${t}`,[i,t,e])}const ht=new jn;var rt;(function(t){t.PAGE_DID_SHOW="pageDidShow",t.PAGE_DID_HIDE="pageDidHide",t.CHANGE_THEME_TAG="changeThemeTag"})(rt||(rt={}));const eo=({width:t=window.innerWidth,height:e=window.innerHeight,privacy_title:i,privacy_context:n,privacy_policy_url:l,privacy_policy_title:o})=>{const{setIsAgreePolicy:r,bffEventReport:s}=Pe(),a=ne(()=>{const f=location.search.slice(1),v=ai.parse(f.replace(/\+/g,"%2B"));for(const h in v)v[h]=v[h].replace(/%2B/g,"+");return v},[]),u=f=>{var v;return(v=a[f])!==null&&v!==void 0?v:null};se(()=>{s?.({eventInfo:{eventSubject:"privacyEnter",eventDescription:"User enter privacy page",utmSource:u("utm_source"),utmMedium:u("utm_medium"),utmCampaign:u("utm_campaign"),utmId:u("utm_id"),utmContent:u("utm_content"),clSource:u("cl_source"),enterTime:`${Date.now()}`,enterUrl:window.location.href,rtc:null,requestId:null,sessionID:null}})},[]);const d=()=>{s?.({eventInfo:{eventSubject:"userConsent",eventDescription:"\u7528\u6237\u6388\u6743\u3010\u64CD\u4F5C\u7ED3\u679C\u3011",consentResult:"0",consentTags:'["\u7CFB\u7EDF\u8FD0\u8425"]',rtc:null,requestId:null,sessionID:null}}),r?.(!0),window.localStorage.setItem(zi,"yes")};return m.createElement("div",{className:"consent-bg"},m.createElement("div",{className:"consent"},m.createElement("div",{className:"consent-col"},m.createElement("div",{className:"consent-title"},i??"Privacy Policy"),m.createElement("div",{className:"consent-content"},n??"This site uses cookies to improve your online experience. By continuing to use the site please agree the policy first.")),m.createElement("div",{className:"consent-col"},m.createElement("button",{"aria-label":"agree",className:"consent-btn",onClick:d},"Agree"),m.createElement("a",{className:"consent-policy",target:"_blank",href:l?`https://${l}`:void 0},o??"More information"))))};var to=Ie(eo);const Ui=Nt({rtcList:[],tagList:[]});var di;(function(t){t[t.BFF=5]="BFF"})(di||(di={}));const Yt="FOR U",io=({render:t,dataSources:e,utmVal:i,enableReportEvent:n=!0,maxSize:l,defaultSize:o,isPreview:r=!1,sxpParameter:s,appDomain:a,hashTagSize:u,loadingImage:d,isOpenHashTag:f=!1,enabledMetaConversionApi:v=!1,consentHeight:h,consentWidth:w,isShowTag:T=!0,isOpenConsent:C=!1,globalConfig:p,isEditor:x=!1,utmParameter:y})=>{var A,k,g;const[L,M]=W([]),[S,c]=W([]),[E,b]=W(!1),[I,D]=W({rtc:"",requestId:""}),P=re(null),N=re(!1),[F,_]=W(()=>!!window.localStorage.getItem(zi)),[R,B]=W(),[j,q]=W(),[H,Z]=W(f),[le,be]=W([]),[me,Te]=W(0),[ye,ee]=W(!1),[G,J]=W(null),Ae=re(),pe=re(),[he,Q]=W(Yt),z=re(-1),$=re(null),V=ne(()=>{var U,Y,Me,Be;return((Be=(Me=(Y=(U=p?.consent)===null||U===void 0?void 0:U[0])===null||Y===void 0?void 0:Y.item)===null||Me===void 0?void 0:Me.props)===null||Be===void 0?void 0:Be.privacy_necessity)&&!F&&!x||C},[F,p,C,x]),Ee=ue(U=>{var Y;const Me=U?.recList;return(Y=Me?.map(Se=>{var He,Le,Ye,it,O,de;if(!((He=Se?.video)===null||He===void 0)&&He.bindProducts&&((Ye=(Le=Se?.video)===null||Le===void 0?void 0:Le.bindProducts)===null||Ye===void 0?void 0:Ye.length)>0){const te=(de=(O=(it=Se?.video)===null||it===void 0?void 0:it.bindProducts)===null||O===void 0?void 0:O.filter(ge=>!!ge?.bindCta))!==null&&de!==void 0?de:[];return Object.assign(Object.assign({},Se),{video:Object.assign(Object.assign({},Se?.video),{bindProducts:te})})}return Se}))!==null&&Y!==void 0?Y:[]},[]);se(()=>{const U=Y=>{Ae.current=Y};return ht.on(rt.CHANGE_THEME_TAG,U),()=>{ht.off(rt.CHANGE_THEME_TAG,U)}},[]),se(()=>{Z(f)},[f]);const oe=ne(()=>e?.find(U=>U.type===di.BFF),[e]),X=ue((U,Y)=>{if(!oe)return;const Me=oe.url,Be=Gi();if(Y?.query){const Se=ai.stringify(Y.query);U=`${U}?${Se}`}return Y.type==="beacon"&&navigator.sendBeacon?navigator.sendBeacon(`${Me}/api/v1${U}`,new Blob([JSON.stringify(Object.assign(Object.assign(Object.assign({},oe.headers),{"x-user-id":Be}),Y.body))],{type:"application/json;charset=UTF-8"})):window.fetch(`${Me}/api/v1${U}`,{headers:Object.assign({"Content-Type":"application/json","x-user-id":Be},oe.headers),method:Y.method,body:JSON.stringify(Y.body)}).then(Se=>Se.json()).catch(Se=>Promise.reject(Se))},[oe]),K=ue(U=>nt(void 0,void 0,void 0,function*(){var Y,Me,Be,Se,He;if(U={maxSize:(Y=U?.maxSize)!==null&&Y!==void 0?Y:l,defaultSize:(Me=U?.defaultSize)!==null&&Me!==void 0?Me:o,"itemFilter.itemId":U?.["itemFilter.itemId"],"itemFilter.itemType":U?.["itemFilter.itemType"],hashTag:U?.hashTag,traceInfo:U?.traceInfo,themeTag:U?.themeTag},i){const Ye=(He=(Se=(Be=i?.split("&"))===null||Be===void 0?void 0:Be.filter(it=>{var O,de;const te=it.split("=")[0];return(de=(O=y?.channels)!==null&&O!==void 0?O:[])===null||de===void 0?void 0:de.includes(te)}))===null||Se===void 0?void 0:Se.join("&"))!==null&&He!==void 0?He:"";U=Object.assign(Object.assign({},U),{channel:decodeURIComponent(Ye)})}const Le=yield X?.("/recommend/list",{method:"GET",query:U});if(Le?.success)return U?.hashTag||D({rtc:Le.data.rtc,requestId:Le.data.requestId}),Le?.data}),[X,i,l,o]),ie=ue(()=>nt(void 0,void 0,void 0,function*(){if(L.length<=0)return;const U=yield K({hashTag:j?.hashTag,"itemFilter.itemId":j?.itemId,"itemFilter.itemType":j?.itemType,themeTag:Ae.current});M(L.concat(Ee(U))),be(le.concat(Ee(U)))}),[K,L,j,le]),Oe=ue(({userInfo:U,eventInfo:Y})=>{if(!n)return;U||(U={});const Me=Jn(),Be=Object.assign({sessionID:Me,rtc:I.rtc,requestId:I.requestId},Y),Se=Object.entries(U).map(([Le,Ye])=>({name:Le,value:Ye})),He=Object.entries(Be).map(([Le,Ye])=>Ye&&{name:Le,value:Ye}).filter(Boolean);return console.log("======== \u4E8B\u4EF6\u4E0A\u62A5 ========"),console.log("userInfo:",U),console.log("eventInfo:",Be),console.log("========= \u7ED3\u675F ========="),X?.("/event/report",{method:"POST",body:{userInfo:Se,eventInfo:He},type:"beacon"})},[X,I,n]),Ve=ue(U=>{var Y,{eventName:Me,actionSource:Be="website",eventSourceUrl:Se=(Y=window?.location)===null||Y===void 0?void 0:Y.href,externalId:He}=U;if(!n||!v)return;const Le=Gi();return X?.("/fb/events",{method:"POST",body:{eventName:Me,actionSource:Be,eventSourceUrl:Se,userData:{externalId:Le}},type:"beacon"})},[X,n,v]),ae=ue(U=>nt(void 0,void 0,void 0,function*(){const Y=yield X?.("/recommend/like",{method:"POST",body:U});return Y?.success}),[X]),ze=ue(U=>nt(void 0,void 0,void 0,function*(){const Y=yield X?.("/recommend/unlike",{method:"POST",body:U});return Y?.success}),[X]),Fe=ue(U=>nt(void 0,void 0,void 0,function*(){const Y=yield X?.("/customform",{method:"POST",body:U});return Y?.success}),[X]),ve=ue(()=>nt(void 0,void 0,void 0,function*(){var U,Y,Me,Be,Se;if(!(!i||!T))try{const He=(Me=(Y=(U=i?.split("&"))===null||U===void 0?void 0:U.filter(Ye=>{var it,O;const de=Ye.split("=")[0];return(O=(it=y?.channels)!==null&&it!==void 0?it:[])===null||O===void 0?void 0:O.includes(de)}))===null||Y===void 0?void 0:Y.join("&"))!==null&&Me!==void 0?Me:"",Le=yield X?.("/tag/list",{method:"GET",query:{channel:decodeURIComponent(He)}});c((Se=(Be=Le?.data)===null||Be===void 0?void 0:Be.tags)!==null&&Se!==void 0?Se:[])}catch(He){console.log("e",He)}}),[X,i,T]),Ne=ue((U,Y,Me,Be)=>{var Se,He,Le,Ye,it,O,de,te,ge,ke,_e,ce,we,Re,je,Ue,We,Ke,Qe,Ze,De,Ge,at,qe,vt,mt,Tt,xt;const Ce=Me?.bindCta,Rn=((Se=Y?.video)===null||Se===void 0?void 0:Se.bindProduct)||((He=Y?.video)===null||He===void 0?void 0:He.bindProducts)&&((Ye=(Le=Y?.video)===null||Le===void 0?void 0:Le.bindProducts)===null||Ye===void 0?void 0:Ye.length)>0;let Ht="";ye?Ht="hashTagPage":!((it=Y?.video)===null||it===void 0)&&it.url?Ht="videoPage":!((de=(O=Y?.video)===null||O===void 0?void 0:O.imgUrls)===null||de===void 0)&&de.length&&(Ht="imagePage"),Oe?.({eventInfo:Object.assign(Object.assign({},U),{ctaId:(te=Ce?.itemId)!==null&&te!==void 0?te:"",ctaName:(ge=Ce?.title)!==null&&ge!==void 0?ge:"",contentTags:JSON.stringify(Ce?.tags),position:Be+"",contentId:(_e=(ke=Y?.video)===null||ke===void 0?void 0:ke.itemId)!==null&&_e!==void 0?_e:"",productId:Rn?Me?.itemId:"",traceInfo:(Tt=(qe=(Qe=(je=(ce=Ce?.traceInfo)!==null&&ce!==void 0?ce:(Re=(we=Y?.video)===null||we===void 0?void 0:we.bindCta)===null||Re===void 0?void 0:Re.traceInfo)!==null&&je!==void 0?je:(Ke=(We=(Ue=Y?.video)===null||Ue===void 0?void 0:Ue.bindProduct)===null||We===void 0?void 0:We.bindCta)===null||Ke===void 0?void 0:Ke.traceInfo)!==null&&Qe!==void 0?Qe:(at=(Ge=(De=(Ze=Y?.video)===null||Ze===void 0?void 0:Ze.bindProducts)===null||De===void 0?void 0:De[0])===null||Ge===void 0?void 0:Ge.bindCta)===null||at===void 0?void 0:at.traceInfo)!==null&&qe!==void 0?qe:(mt=(vt=Y?.product)===null||vt===void 0?void 0:vt.bindCta)===null||mt===void 0?void 0:mt.traceInfo)!==null&&Tt!==void 0?Tt:"",fromKName:Ht,fromKPage:(xt=location?.href)!==null&&xt!==void 0?xt:""})})},[Oe,ye]),Xe=ue(()=>{var U,Y;const Me=location.search.slice(1),Be=ai.parse(Me.replace(/\+/g,"%2B"));for(const Le in Be)Be[Le]=Be[Le].replace(/%2B/g,"+");const Se=Le=>{var Ye;return(Ye=Be[Le])!==null&&Ye!==void 0?Ye:""},He=new Date;pe.current=He,Oe?.({eventInfo:{eventSubject:"h5LinkEnterFeed",eventDescription:"User enter h5 link",utmSource:Se("utm_source"),utmMedium:Se("utm_medium"),utmCampaign:Se("utm_campaign"),utmId:Se("utm_id"),utmContent:Se("utm_content"),enterTime:Math.floor(He/1e3)+"",requestId:null,enterUrl:(Y=(U=window?.location)===null||U===void 0?void 0:U.href)!==null&&Y!==void 0?Y:"",clSource:Se("cl_source")}})},[Oe]);se(()=>{V||Xe()},[V]),se(()=>{V||(b(!0),ve(),K().then(U=>{M(Ee(U)),be(Ee(U))}).finally(()=>{Oe({eventInfo:{eventSubject:"apiRequest",eventDescription:"api request succeed"}}),b(!1),N.current=!0}))},[V]),se(()=>{N.current&&(b(!0),ve(),K().then(U=>{M(Ee(U)),be(Ee(U))}).finally(()=>{b(!1)}))},[K,ve]);const dt=ct("/pb_static/a65d23c5893c49d7aaaa81681d3179e2.gif",a);return m.createElement(Ui.Provider,{value:{rtcList:L,setRtcList:M,mutateLike:ae,mutateUnlike:ze,submitForm:Fe,popupDetailData:R,loadVideos:ie,setPopupDetailData:B,getRecommendVideos:K,bffEventReport:Oe,utmVal:i,isPreview:r,loading:E,sxpParameter:s,waterFallData:j,setWaterFallData:q,ctaEvent:Ne,swiperRef:P,openHashtag:H,setOpenHashtag:Z,cacheRtcList:le,setCacheRtcList:be,cacheActiveIndex:me,setCacheActiveIndex:Te,isFromHashtag:ye,setIsFromHashtag:ee,appDomain:a,hashTagSize:u,loadingImage:d??dt,isOpenHashTag:f,tagList:S,setLoading:b,videoRef:G,setVideoRef:J,bffFbReport:Ve,isAgreePolicy:F,setIsAgreePolicy:_,curTime:pe,h5EnterLink:Xe,themeTag:Ae,isShowConsent:V,selectTag:he,setSelectTag:Q,globalConfig:p,popupCurTimeRef:$,checkCommodityIndexRef:z}},V?m.createElement(to,Object.assign({},(g=(k=(A=p?.consent)===null||A===void 0?void 0:A[0])===null||k===void 0?void 0:k.item)===null||g===void 0?void 0:g.props)):t({rtcList:L,mutateLike:ae,mutateUnlike:ze,submitForm:Fe,tagList:S}))};var Wi=Ie(io);function Pe(){return Rt(Ui)}var Yi;(function(t){t.STRING="string",t.NUMBER="number",t.ARRAY="array",t.OBJECT="object",t.BOOLEAN="boolean",t.ARRAY_OBJECT="array-object",t.ARRAY_STRING="array-string",t.ARRAY_NUMBER="array-number"})(Yi||(Yi={}));const Xi=Nt({$store:{},options:[],configs:[]}),no=({children:t,isSsr:e,enable:i})=>{const[n,l]=W([]),{schema:o}=ft(),[r,s]=W(o.__STORE__||{}),[a,u]=W([]);se(()=>{var v;e||Pi(a,o?.dataSource)||u((v=o?.dataSource)!==null&&v!==void 0?v:[])},[o?.dataSource,e]);const d=ue(()=>nt(void 0,void 0,void 0,function*(){const{$store:v,idMapName:h}=yield Li("",a);s(v),f(v,h)}),[a]),f=(v,h)=>{const w=[];Object.entries(v).forEach(([T,C])=>{Object.keys(C).forEach(p=>{const x={label:`${h[T]} - ${p}`,value:`{{ ${T}.${p} }}`};w.push(x)})}),l(w)};return se(()=>{e||d()},[d,e,o]),i?m.createElement(Xi.Provider,{value:{$store:o.__STORE__||r,options:n,configs:a}},t):t};var oo=Ie(no);const Xt={id:Wt(6,10),item:{type:"common",h:300,category:"block",displayName:"block",isFirstLayout:!0,w:1e3},point:{i:"x-0",x:-38.34375,y:0,w:1e3,h:300,isBounded:!0,actualX:0,actualY:0},pathArr:[0],positionY:0},ci={id:"",duration:0,name:"none"},qi=m.createContext({resolver:{},currentNode:null,schema:{pointData:[],dataSource:[],mobilePiontData:[],type:"PC",pcPiontData:[],pageInfo:{},pcPageConf:{},mobilePageConf:{},__STORE__:{},sxpPageConf:{}},pageInfoData:{},prePiontData:[],undoStack:[Xt],redoStack:[],popup:ci,setPopup:()=>{}}),Ji=Ut(({children:t,resolver:e,isSsr:i,schema:n,enableDataSource:l=!0,utmVal:o},r)=>{const[s,a]=W(null),[u,d]=W(n||{pointData:[Xt],dataSource:[],mobilePiontData:[],type:"PC",pcPiontData:[],pageInfo:{},pcPageConf:{},mobilePageConf:{},sxpPageConf:{}}),[f,v]=W([Xt]),[h,w]=W([[Xt]]),[T,C]=W([]),[p,x]=W(ci);typeof window<"u"&&(window.sxpPopup=(L,M)=>{x(Object.assign(Object.assign(Object.assign({},ci),{id:L}),M))}),typeof window<"u"&&(window.getJointUtmLink=L=>L?.indexOf("?")!==-1?L+(o?"&"+o:""):L+(o?"?"+o:"")),se(()=>{w([u.pointData]),C([])},[u.type]);const y=ue(L=>{const M=Gt(u);M&&(M.dataSource=L,d?.(M))},[u]),[A,k]=W();Oi(r,()=>({loadSchema(L){L&&(w([L.pointData]),d(L))},exportSchema(){return Gt(u)},getPageInfoData(){return A},initPageInfoData(L){L&&k(L)}}));const g=ne(()=>{if(u)return u.type==="PC"?u.pcPageConf:u.mobilePageConf},[u]);return m.createElement(qi.Provider,{value:{resolver:e,currentNode:s,schema:u,setCurrentNode:a,setSchema:d,saveDataSource:y,prePiontData:f,setPrePiontData:v,pageInfoData:A,setPageInfoData:L=>k(Object.assign(Object.assign({},A),L)),undoStack:h,redoStack:T,setRedoStack:C,setUndoStack:w,getCurPageConf:g,popup:p,setPopup:x}},m.createElement(oo,{isSsr:i,enable:l},t))});var lo=Object.freeze({__proto__:null,EditorCore:Ji}),ao=[{title:"\u70B9\u51FB\u4E8B\u4EF6",child:[{type:"link",name:"onClick"}]}],ro=[{type:"Text",label:"\u7EC4\u4EF6\u540D\u79F0",name:"name"},{title:"\u8868\u5355\u4FE1\u606F",child:[{type:"Text",label:"\u6807\u9898",name:["props","title"]},{type:"Group",label:"\u6807\u9898\u5B57\u4F53",child:[{type:"Select",name:["textStyle","fontFamily-cn"],bottomText:"\u4E2D\u6587\u5B57\u4F53"},{type:"Select",name:["textStyle","fontFamily-en"],bottomText:"\u82F1\u6587/\u5176\u4ED6\u5B57\u4F53"}]},{type:"Group",label:"",child:[{type:"Color",name:["textStyle","color"]},{type:"Number",name:["textStyle","fontSize"],addonAfter:"px"}]},{label:"\u6807\u9898\u6837\u5F0F",type:"TextStyle",name:["textStyle"]},{label:"\u6807\u9898\u5BF9\u9F50",type:"TextAlign",name:["textStyle"]},{label:"\u6807\u9898\u95F4\u8DDD",type:"TextSpace",name:["textStyle"]},{label:"\u8868\u5355\u5E03\u5C40",type:"Radius",options:[{label:"\u5DE6\u53F3",value:"horizontal"},{label:"\u4E0A\u4E0B",value:"vertical"},{label:"\u63D0\u793A",value:void 0}],name:["props","layoutType"]},{label:"\u63D0\u4EA4\u6309\u94AE\u6587\u672C",type:"Text",name:["props","submitText"]},{type:"Group",label:"\u63D0\u4EA4\u6309\u94AE\u5B57\u4F53",child:[{type:"Select",name:["props","submitButtonStyle","fontFamily-cn"],bottomText:"\u4E2D\u6587\u5B57\u4F53"},{type:"Select",name:["props","submitButtonStyle","fontFamily-en"],bottomText:"\u82F1\u6587/\u5176\u4ED6\u5B57\u4F53"}]},{type:"Group",label:"",child:[{type:"Color",name:["props","submitButtonStyle","color"],initialValue:"#fff"},{type:"Number",name:["props","submitButtonStyle","fontSize"],addonAfter:"px",initialValue:12}]},{label:"\u63D0\u4EA4\u6309\u94AE\u6587\u672C\u6837\u5F0F",type:"TextStyle",name:["props","submitButtonStyle"]},{label:"\u63D0\u4EA4\u6309\u94AE\u5BF9\u9F50",type:"TextAlign",name:["props","submitButtonStyle"]},{label:"\u63D0\u4EA4\u6309\u94AE\u989C\u8272",type:"Color",name:["props","submitBgColor"]},{label:"\u63D0\u4EA4\u6309\u94AE\u95F4\u8DDD",type:"TextSpace",name:["props","submitButtonStyle"]}]},{title:"\u8868\u5355\u9879",child:[{type:"AddFormItems",name:["props","columns"]}]}];function $e(){const{bffEventReport:t,popupDetailData:e,waterFallData:i,isFromHashtag:n}=Pe(),l=ue((s,a,u,d)=>{var f,v,h,w,T,C,p,x,y,A,k,g,L,M,S,c,E,b,I,D,P,N,F,_,R,B;let j="";e&&(!((v=(f=s?.video)===null||f===void 0?void 0:f.bindProducts)===null||v===void 0)&&v.length||!((h=s?.video)===null||h===void 0)&&h.bindProduct)?j="pdpPage":n?j="hashTagPage":!((w=s?.video)===null||w===void 0)&&w.url?j="videoPage":!((T=s?.video)===null||T===void 0)&&T.imgUrls&&(!((p=(C=s?.video)===null||C===void 0?void 0:C.imgUrls)===null||p===void 0)&&p.length)?j="imagePage":s?.product&&(j="productPage"),t?.({eventInfo:{eventSubject:"jumpToWeb",eventDescription:"User jumped to website",productId:(x=a?.itemId)!==null&&x!==void 0?x:"",productName:(y=a?.title)!==null&&y!==void 0?y:"",price:a?.price?a?.price+"":"0",productCollection:(A=a?.collection)!==null&&A!==void 0?A:"",fromKName:j,fromKPage:location?.href,contentTags:a?.tags?JSON.stringify(a?.tags):"",position:d+"",contentId:(g=(k=s?.video)===null||k===void 0?void 0:k.itemId)!==null&&g!==void 0?g:"",ctatId:(L=u?.itemId)!==null&&L!==void 0?L:"",traceInfo:(B=(F=(P=(E=(M=a?.traceInfo)!==null&&M!==void 0?M:(c=(S=s?.video)===null||S===void 0?void 0:S.bindProduct)===null||c===void 0?void 0:c.traceInfo)!==null&&E!==void 0?E:(D=(I=(b=s?.video)===null||b===void 0?void 0:b.bindProducts)===null||I===void 0?void 0:I[0])===null||D===void 0?void 0:D.traceInfo)!==null&&P!==void 0?P:(N=s?.product)===null||N===void 0?void 0:N.traceInfo)!==null&&F!==void 0?F:(R=(_=s?.video)===null||_===void 0?void 0:_.bindCta)===null||R===void 0?void 0:R.traceInfo)!==null&&B!==void 0?B:""}})},[t,e,n]),o=ue((s,a,u,d,f)=>{var v,h,w,T,C,p,x,y,A,k,g,L,M,S;let c="";e&&(!((h=(v=s?.video)===null||v===void 0?void 0:v.bindProducts)===null||h===void 0)&&h.length||!((w=s?.video)===null||w===void 0)&&w.bindProduct)?c="pdpPage":s?.product&&(c="productPage"),t?.({eventInfo:{productId:a?.itemId,productName:a?.title,price:a?.price?a?.price+"":"0",productCollection:a?.collection,fromKName:c,fromKPage:location?.href,contentTags:JSON.stringify(a?.tags),position:f+"",contentId:(T=s?.video)===null||T===void 0?void 0:T.itemId,ctatId:u?.itemId,traceInfo:(S=(L=(y=(C=a?.traceInfo)!==null&&C!==void 0?C:(x=(p=s?.video)===null||p===void 0?void 0:p.bindProduct)===null||x===void 0?void 0:x.traceInfo)!==null&&y!==void 0?y:(g=(k=(A=s?.video)===null||A===void 0?void 0:A.bindProducts)===null||k===void 0?void 0:k[0])===null||g===void 0?void 0:g.traceInfo)!==null&&L!==void 0?L:(M=s?.product)===null||M===void 0?void 0:M.traceInfo)!==null&&S!==void 0?S:"",timeOnSite:Math.floor((new Date-d)/1e3)+"",eventSubject:"productView",eventDescription:"User browsed the product"}})},[t,e]),r=ue((s,a,u,d)=>{a&&a===Yt&&t?.({eventInfo:{lastFeed:s,themeTags:u?`['${u}']`:"",hashTags:d?`['${d}']`:"",eventSubject:"backMainFeed",eventDescription:"back Main Feed"}})},[t]);return{jumpToWeb:l,productView:o,backMainFeed:r}}const so=({layout:t,columns:e,onChange:i})=>m.createElement(m.Fragment,null,e?.map((n,l)=>m.createElement("div",{key:l,className:"pb-appoint-form-container-item",style:{flexDirection:t==="horizontal"?"row":"column"}},t!=="inline"&&m.createElement("label",{className:"pb-appoint-form-container-label"},n?.title),n?.valueType==="text"&&m.createElement("input",Object.assign({className:"pb-appoint-form-container-input",type:"text",placeholder:t==="inline"?n?.title:"\u8BF7\u8F93\u5165",name:n?.dataIndex},i&&{onChange:i})))));var co=Ie(so);const uo=t=>{var{columns:e,style:i,title:n,textStyle:l,submitBgColor:o,submitColor:r,submitText:s,layoutType:a="inline",isExternalLink:u,isPopup:d,onClick:f,onClose:v,submitButtonStyle:h}=t,w=Je(t,["columns","style","title","textStyle","submitBgColor","submitColor","submitText","layoutType","isExternalLink","isPopup","onClick","onClose","submitButtonStyle"]);const{submitForm:T,popupDetailData:C}=Pe(),{jumpToWeb:p}=$e(),[x,y]=W(!1),A=ne(()=>[{title:"",dataIndex:"field",valueType:"text",key:"1"},{title:"",dataIndex:"field",valueType:"text",key:"2"},{title:"",dataIndex:"field",valueType:"text",key:"3"},{title:"",dataIndex:"field",valueType:"text",key:"4"}],[]),[k,g]=W({}),L=ne(()=>Gt(e)||A,[e,A]),M=ue(c=>{const{name:E,value:b}=c.target;g(Object.assign(Object.assign({},k),{[E]:b}))},[k]),S=li(()=>nt(void 0,void 0,void 0,function*(){var c,E,b,I,D;const P=k;if(!P)return;const N=(E=(c=Object.keys(P))===null||c===void 0?void 0:c.map(_=>{var R;return{name:_,value:(R=P[_])!==null&&R!==void 0?R:""}}))===null||E===void 0?void 0:E.filter(_=>_?.value);if(!N||!N?.length)return;y(!0);const F=yield T?.({attributes:N});if(y(!1),F){if(u){const _=C,R=(b=_?.video)===null||b===void 0?void 0:b.bindProduct,B=(D=(I=_?.video)===null||I===void 0?void 0:I.bindProduct)===null||D===void 0?void 0:D.bindCta,j=C?.index;p(_,R,B,j)}d||v?.(),f?.()}}),1e3);return m.createElement("div",{className:"pb-appoint-form"},m.createElement("div",{className:`pb-appoint-form-title ${xe(Object.assign({},l))}`,dangerouslySetInnerHTML:{__html:fe(n,l)}}),m.createElement("div",Object.assign({className:xe(Object.assign({},i))},w),m.createElement("div",{className:"pb-appoint-form-container"},m.createElement(co,{columns:L,layout:a,onChange:M}))),m.createElement("div",{className:"pb-appoint-form-btn-wrapper"},m.createElement("button",{"aria-label":s,onClick:S,className:"pb-appoint-form-btn",style:Object.assign({color:r,background:o},h),dangerouslySetInnerHTML:{__html:fe(x?"loading...":s,h)}})))};var po=Ie(uo);function et(t,e){return t.extend=e,t}const vo=et(po,{displayName:"\u9884\u7EA6\u8868\u5355",icon:"",category:"popup",type:"AppointForm",related:{settingRender:ro,bindableProps:[],interactionRender:ao},defaulSetting:{name:"\u8868\u5355",props:{title:"Appointment Booking",submitColor:"#fff",submitBgColor:"#000",submitText:"Submit",layoutType:void 0},style:{},textStyle:{fontSize:14,color:"#000",textAlign:"center"}},w:100,h:40,sort:2});var mo=[{title:"\u5546\u54C1\u56FE\u7247",child:[{type:"Radius",label:"\u8F6E\u64AD\u6307\u793A\u5668",options:[{label:"\u5C45\u5DE6",value:"left"},{label:"\u5C45\u4E2D",value:"center"}],name:["props","swiper","dotsAlign"]},{type:"Number",name:["props","swiper","delay"],addonAfter:"s"},{type:"Group",child:[{label:"\u5C45\u4E2D\u5782\u76F4\u504F\u79FB",type:"Number",name:["props","swiper","translateY"],min:-1e3,addonAfter:"%",initialValue:0}]}]},{title:"\u591A\u5546\u54C1\u5207\u6362\u5668",child:[{type:"Switch",name:["props","commodityGroup","open"],label:"\u5FEB\u901F\u5207\u6362\u5F00\u5173"},{type:"Group",child:[{label:"\u5C45\u4E2D\u5782\u76F4\u504F\u79FB",type:"Number",name:["props","commodityGroup","translateY"],min:-1e3,addonAfter:"%",initialValue:0}]},{type:"Group",child:[{label:"\u4E0A\u8FB9\u8DDD",name:["props","commodityGroup","style","marginTop"],type:"Number",addonAfter:"px",initialValue:20},{label:"\u4E0B\u8FB9\u8DDD",name:["props","commodityGroup","style","marginBottom"],type:"Number",addonAfter:"px"}]}]},{title:"\u5546\u54C1\u6587\u672C",child:[{name:["props","commodityStyles"],type:"SelectLinkage",child:[{label:"\u5B57\u6BB5",type:"Select",options:[{label:"\u5546\u54C1\u540D\u79F0",value:"title"},{label:"\u7CFB\u5217\u540D\u79F0",value:"collection"},{label:"\u4EF7\u683C",value:"price"},{label:"\u5546\u54C1\u63CF\u8FF0",value:"info"},{label:"\u7A0E\u8D39\u8BF4\u660E",value:"taxInfo"}],name:["props","commodityStyles","field"],initialValue:"title"},{type:"Group",child:[{label:"\u4E0A\u8FB9\u8DDD",type:"Number",addonAfter:"px",name:["marginTop"]},{label:"\u4E0B\u8FB9\u8DDD",type:"Number",addonAfter:"px",name:["marginBottom"]}]},{type:"Group",label:"\u6807\u9898\u5B57\u4F53",child:[{type:"Select",name:["fontFamily-cn"],bottomText:"\u4E2D\u6587\u5B57\u4F53"},{type:"Select",name:["fontFamily-en"],bottomText:"\u82F1\u6587/\u5176\u4ED6\u5B57\u4F53"}]},{type:"Group",label:"",child:[{type:"Color",name:["color"]},{type:"Number",addonAfter:"px",name:["fontSize"]}]},{label:"\u6807\u9898\u6837\u5F0F",type:"TextStyle"},{label:"\u6807\u9898\u5BF9\u9F50",type:"TextAlign"},{label:"\u9ED8\u8BA4\u884C\u6570",type:"Number",name:["lineClamp"]},{label:"\u95F4\u8DDD",type:"TextSpace"}]}]},{title:"\u8D2D\u4E70\u6309\u94AE\u6837\u5F0F",child:[{type:"Color",label:"\u80CC\u666F\u8272",name:["props","buttonStyle","backgroundColor"],initialValue:"#000"},{type:"Group",label:"\u5C3A\u5BF8",child:[{type:"Number",name:["props","buttonStyle","height"],addonAfter:"H"}]},{type:"Group",label:"\u5706\u89D2",child:[{type:"Slider",name:["props","buttonStyle","borderRadius"],max:100},{type:"Number",name:["props","buttonStyle","borderRadius"],addonAfter:"px",max:100}]},{type:"TextMargin",name:["props","buttonStyle"]},{type:"Group",label:"\u5B57\u4F53",child:[{type:"Select",name:["props","buttonStyle","fontFamily-cn"],bottomText:"\u4E2D\u6587\u5B57\u4F53"},{type:"Select",name:["props","buttonStyle","fontFamily-en"],bottomText:"\u82F1\u6587/\u5176\u4ED6\u5B57\u4F53"}]},{type:"Group",label:"",child:[{type:"Color",name:["props","buttonStyle","color"],initialValue:"#fff"},{type:"Number",name:["props","buttonStyle","fontSize"],addonAfter:"px"}]},{type:"TextStyle",name:["props","buttonStyle"]},{type:"TextAlign",name:["props","buttonStyle"]},{label:"\u95F4\u8DDD",type:"TextSpace",name:["props","buttonStyle"]}]}];function Ki(t){return t!==null&&typeof t=="object"&&"constructor"in t&&t.constructor===Object}function ui(t,e){t===void 0&&(t={}),e===void 0&&(e={}),Object.keys(e).forEach(i=>{typeof t[i]>"u"?t[i]=e[i]:Ki(e[i])&&Ki(t[i])&&Object.keys(e[i]).length>0&&ui(t[i],e[i])})}const Qi={body:{},addEventListener(){},removeEventListener(){},activeElement:{blur(){},nodeName:""},querySelector(){return null},querySelectorAll(){return[]},getElementById(){return null},createEvent(){return{initEvent(){}}},createElement(){return{children:[],childNodes:[],style:{},setAttribute(){},getElementsByTagName(){return[]}}},createElementNS(){return{}},importNode(){return null},location:{hash:"",host:"",hostname:"",href:"",origin:"",pathname:"",protocol:"",search:""}};function gt(){const t=typeof document<"u"?document:{};return ui(t,Qi),t}const fo={document:Qi,navigator:{userAgent:""},location:{hash:"",host:"",hostname:"",href:"",origin:"",pathname:"",protocol:"",search:""},history:{replaceState(){},pushState(){},go(){},back(){}},CustomEvent:function(){return this},addEventListener(){},removeEventListener(){},getComputedStyle(){return{getPropertyValue(){return""}}},Image(){},Date(){},screen:{},setTimeout(){},clearTimeout(){},matchMedia(){return{}},requestAnimationFrame(t){return typeof setTimeout>"u"?(t(),null):setTimeout(t,0)},cancelAnimationFrame(t){typeof setTimeout>"u"||clearTimeout(t)}};function ot(){const t=typeof window<"u"?window:{};return ui(t,fo),t}function Et(t){return t===void 0&&(t=""),t.trim().split(" ").filter(e=>!!e.trim())}function ho(t){const e=t;Object.keys(e).forEach(i=>{try{e[i]=null}catch{}try{delete e[i]}catch{}})}function _t(t,e){return e===void 0&&(e=0),setTimeout(t,e)}function ut(){return Date.now()}function go(t){const e=ot();let i;return e.getComputedStyle&&(i=e.getComputedStyle(t,null)),!i&&t.currentStyle&&(i=t.currentStyle),i||(i=t.style),i}function bo(t,e){e===void 0&&(e="x");const i=ot();let n,l,o;const r=go(t);return i.WebKitCSSMatrix?(l=r.transform||r.webkitTransform,l.split(",").length>6&&(l=l.split(", ").map(s=>s.replace(",",".")).join(", ")),o=new i.WebKitCSSMatrix(l==="none"?"":l)):(o=r.MozTransform||r.OTransform||r.MsTransform||r.msTransform||r.transform||r.getPropertyValue("transform").replace("translate(","matrix(1, 0, 0, 1,"),n=o.toString().split(",")),e==="x"&&(i.WebKitCSSMatrix?l=o.m41:n.length===16?l=parseFloat(n[12]):l=parseFloat(n[4])),e==="y"&&(i.WebKitCSSMatrix?l=o.m42:n.length===16?l=parseFloat(n[13]):l=parseFloat(n[5])),l||0}function qt(t){return typeof t=="object"&&t!==null&&t.constructor&&Object.prototype.toString.call(t).slice(8,-1)==="Object"}function yo(t){return typeof window<"u"&&typeof window.HTMLElement<"u"?t instanceof HTMLElement:t&&(t.nodeType===1||t.nodeType===11)}function st(){const t=Object(arguments.length<=0?void 0:arguments[0]),e=["__proto__","constructor","prototype"];for(let i=1;i<arguments.length;i+=1){const n=i<0||arguments.length<=i?void 0:arguments[i];if(n!=null&&!yo(n)){const l=Object.keys(Object(n)).filter(o=>e.indexOf(o)<0);for(let o=0,r=l.length;o<r;o+=1){const s=l[o],a=Object.getOwnPropertyDescriptor(n,s);a!==void 0&&a.enumerable&&(qt(t[s])&&qt(n[s])?n[s].__swiper__?t[s]=n[s]:st(t[s],n[s]):!qt(t[s])&&qt(n[s])?(t[s]={},n[s].__swiper__?t[s]=n[s]:st(t[s],n[s])):t[s]=n[s])}}}return t}function Jt(t,e,i){t.style.setProperty(e,i)}function Zi(t){let{swiper:e,targetPosition:i,side:n}=t;const l=ot(),o=-e.translate;let r=null,s;const a=e.params.speed;e.wrapperEl.style.scrollSnapType="none",l.cancelAnimationFrame(e.cssModeFrameID);const u=i>o?"next":"prev",d=(v,h)=>u==="next"&&v>=h||u==="prev"&&v<=h,f=()=>{s=new Date().getTime(),r===null&&(r=s);const v=Math.max(Math.min((s-r)/a,1),0),h=.5-Math.cos(v*Math.PI)/2;let w=o+h*(i-o);if(d(w,i)&&(w=i),e.wrapperEl.scrollTo({[n]:w}),d(w,i)){e.wrapperEl.style.overflow="hidden",e.wrapperEl.style.scrollSnapType="",setTimeout(()=>{e.wrapperEl.style.overflow="",e.wrapperEl.scrollTo({[n]:w})}),l.cancelAnimationFrame(e.cssModeFrameID);return}e.cssModeFrameID=l.requestAnimationFrame(f)};f()}function yt(t,e){return e===void 0&&(e=""),[...t.children].filter(i=>i.matches(e))}function Kt(t){try{console.warn(t);return}catch{}}function Bt(t,e){e===void 0&&(e=[]);const i=document.createElement(t);return i.classList.add(...Array.isArray(e)?e:Et(e)),i}function wo(t){const e=ot(),i=gt(),n=t.getBoundingClientRect(),l=i.body,o=t.clientTop||l.clientTop||0,r=t.clientLeft||l.clientLeft||0,s=t===e?e.scrollY:t.scrollTop,a=t===e?e.scrollX:t.scrollLeft;return{top:n.top+s-o,left:n.left+a-r}}function So(t,e){const i=[];for(;t.previousElementSibling;){const n=t.previousElementSibling;e?n.matches(e)&&i.push(n):i.push(n),t=n}return i}function To(t,e){const i=[];for(;t.nextElementSibling;){const n=t.nextElementSibling;e?n.matches(e)&&i.push(n):i.push(n),t=n}return i}function Ct(t,e){return ot().getComputedStyle(t,null).getPropertyValue(e)}function Qt(t){let e=t,i;if(e){for(i=0;(e=e.previousSibling)!==null;)e.nodeType===1&&(i+=1);return i}}function $i(t,e){const i=[];let n=t.parentElement;for(;n;)e?n.matches(e)&&i.push(n):i.push(n),n=n.parentElement;return i}function pi(t,e){function i(n){n.target===t&&(e.call(t,n),t.removeEventListener("transitionend",i))}e&&t.addEventListener("transitionend",i)}function vi(t,e,i){const n=ot();return i?t[e==="width"?"offsetWidth":"offsetHeight"]+parseFloat(n.getComputedStyle(t,null).getPropertyValue(e==="width"?"margin-right":"margin-top"))+parseFloat(n.getComputedStyle(t,null).getPropertyValue(e==="width"?"margin-left":"margin-bottom")):t.offsetWidth}function wt(t){return(Array.isArray(t)?t:[t]).filter(e=>!!e)}function xo(t){let{swiper:e,extendParams:i,on:n,emit:l}=t;const o=ot();i({mousewheel:{enabled:!1,releaseOnEdges:!1,invert:!1,forceToAxis:!1,sensitivity:1,eventsTarget:"container",thresholdDelta:null,thresholdTime:null,noMousewheelClass:"swiper-no-mousewheel"}}),e.mousewheel={enabled:!1};let r,s=ut(),a;const u=[];function d(y){let L=0,M=0,S=0,c=0;return"detail"in y&&(M=y.detail),"wheelDelta"in y&&(M=-y.wheelDelta/120),"wheelDeltaY"in y&&(M=-y.wheelDeltaY/120),"wheelDeltaX"in y&&(L=-y.wheelDeltaX/120),"axis"in y&&y.axis===y.HORIZONTAL_AXIS&&(L=M,M=0),S=L*10,c=M*10,"deltaY"in y&&(c=y.deltaY),"deltaX"in y&&(S=y.deltaX),y.shiftKey&&!S&&(S=c,c=0),(S||c)&&y.deltaMode&&(y.deltaMode===1?(S*=40,c*=40):(S*=800,c*=800)),S&&!L&&(L=S<1?-1:1),c&&!M&&(M=c<1?-1:1),{spinX:L,spinY:M,pixelX:S,pixelY:c}}function f(){e.enabled&&(e.mouseEntered=!0)}function v(){e.enabled&&(e.mouseEntered=!1)}function h(y){return e.params.mousewheel.thresholdDelta&&y.delta<e.params.mousewheel.thresholdDelta||e.params.mousewheel.thresholdTime&&ut()-s<e.params.mousewheel.thresholdTime?!1:y.delta>=6&&ut()-s<60?!0:(y.direction<0?(!e.isEnd||e.params.loop)&&!e.animating&&(e.slideNext(),l("scroll",y.raw)):(!e.isBeginning||e.params.loop)&&!e.animating&&(e.slidePrev(),l("scroll",y.raw)),s=new o.Date().getTime(),!1)}function w(y){const A=e.params.mousewheel;if(y.direction<0){if(e.isEnd&&!e.params.loop&&A.releaseOnEdges)return!0}else if(e.isBeginning&&!e.params.loop&&A.releaseOnEdges)return!0;return!1}function T(y){let A=y,k=!0;if(!e.enabled||y.target.closest(`.${e.params.mousewheel.noMousewheelClass}`))return;const g=e.params.mousewheel;e.params.cssMode&&A.preventDefault();let L=e.el;e.params.mousewheel.eventsTarget!=="container"&&(L=document.querySelector(e.params.mousewheel.eventsTarget));const M=L&&L.contains(A.target);if(!e.mouseEntered&&!M&&!g.releaseOnEdges)return!0;A.originalEvent&&(A=A.originalEvent);let S=0;const c=e.rtlTranslate?-1:1,E=d(A);if(g.forceToAxis)if(e.isHorizontal())if(Math.abs(E.pixelX)>Math.abs(E.pixelY))S=-E.pixelX*c;else return!0;else if(Math.abs(E.pixelY)>Math.abs(E.pixelX))S=-E.pixelY;else return!0;else S=Math.abs(E.pixelX)>Math.abs(E.pixelY)?-E.pixelX*c:-E.pixelY;if(S===0)return!0;g.invert&&(S=-S);let b=e.getTranslate()+S*g.sensitivity;if(b>=e.minTranslate()&&(b=e.minTranslate()),b<=e.maxTranslate()&&(b=e.maxTranslate()),k=e.params.loop?!0:!(b===e.minTranslate()||b===e.maxTranslate()),k&&e.params.nested&&A.stopPropagation(),!e.params.freeMode||!e.params.freeMode.enabled){const I={time:ut(),delta:Math.abs(S),direction:Math.sign(S),raw:y};u.length>=2&&u.shift();const D=u.length?u[u.length-1]:void 0;if(u.push(I),D?(I.direction!==D.direction||I.delta>D.delta||I.time>D.time+150)&&h(I):h(I),w(I))return!0}else{const I={time:ut(),delta:Math.abs(S),direction:Math.sign(S)},D=a&&I.time<a.time+500&&I.delta<=a.delta&&I.direction===a.direction;if(!D){a=void 0;let P=e.getTranslate()+S*g.sensitivity;const N=e.isBeginning,F=e.isEnd;if(P>=e.minTranslate()&&(P=e.minTranslate()),P<=e.maxTranslate()&&(P=e.maxTranslate()),e.setTransition(0),e.setTranslate(P),e.updateProgress(),e.updateActiveIndex(),e.updateSlidesClasses(),(!N&&e.isBeginning||!F&&e.isEnd)&&e.updateSlidesClasses(),e.params.loop&&e.loopFix({direction:I.direction<0?"next":"prev",byMousewheel:!0}),e.params.freeMode.sticky){clearTimeout(r),r=void 0,u.length>=15&&u.shift();const _=u.length?u[u.length-1]:void 0,R=u[0];if(u.push(I),_&&(I.delta>_.delta||I.direction!==_.direction))u.splice(0);else if(u.length>=15&&I.time-R.time<500&&R.delta-I.delta>=1&&I.delta<=6){const B=S>0?.8:.2;a=I,u.splice(0),r=_t(()=>{e.slideToClosest(e.params.speed,!0,void 0,B)},0)}r||(r=_t(()=>{a=I,u.splice(0),e.slideToClosest(e.params.speed,!0,void 0,.5)},500))}if(D||l("scroll",A),e.params.autoplay&&e.params.autoplayDisableOnInteraction&&e.autoplay.stop(),g.releaseOnEdges&&(P===e.minTranslate()||P===e.maxTranslate()))return!0}}return A.preventDefault?A.preventDefault():A.returnValue=!1,!1}function C(y){let A=e.el;e.params.mousewheel.eventsTarget!=="container"&&(A=document.querySelector(e.params.mousewheel.eventsTarget)),A[y]("mouseenter",f),A[y]("mouseleave",v),A[y]("wheel",T)}function p(){return e.params.cssMode?(e.wrapperEl.removeEventListener("wheel",T),!0):e.mousewheel.enabled?!1:(C("addEventListener"),e.mousewheel.enabled=!0,!0)}function x(){return e.params.cssMode?(e.wrapperEl.addEventListener(event,T),!0):e.mousewheel.enabled?(C("removeEventListener"),e.mousewheel.enabled=!1,!0):!1}n("init",()=>{!e.params.mousewheel.enabled&&e.params.cssMode&&x(),e.params.mousewheel.enabled&&p()}),n("destroy",()=>{e.params.cssMode&&p(),e.mousewheel.enabled&&x()}),Object.assign(e.mousewheel,{enable:p,disable:x})}function en(t,e,i,n){return t.params.createElements&&Object.keys(n).forEach(l=>{if(!i[l]&&i.auto===!0){let o=yt(t.el,`.${n[l]}`)[0];o||(o=Bt("div",n[l]),o.className=n[l],t.el.append(o)),i[l]=o,e[l]=o}}),i}function Pt(t){return t===void 0&&(t=""),`.${t.trim().replace(/([\.:!+\/])/g,"\\$1").replace(/ /g,".")}`}function Zt(t){let{swiper:e,extendParams:i,on:n,emit:l}=t;const o="swiper-pagination";i({pagination:{el:null,bulletElement:"span",clickable:!1,hideOnClick:!1,renderBullet:null,renderProgressbar:null,renderFraction:null,renderCustom:null,progressbarOpposite:!1,type:"bullets",dynamicBullets:!1,dynamicMainBullets:1,formatFractionCurrent:p=>p,formatFractionTotal:p=>p,bulletClass:`${o}-bullet`,bulletActiveClass:`${o}-bullet-active`,modifierClass:`${o}-`,currentClass:`${o}-current`,totalClass:`${o}-total`,hiddenClass:`${o}-hidden`,progressbarFillClass:`${o}-progressbar-fill`,progressbarOppositeClass:`${o}-progressbar-opposite`,clickableClass:`${o}-clickable`,lockClass:`${o}-lock`,horizontalClass:`${o}-horizontal`,verticalClass:`${o}-vertical`,paginationDisabledClass:`${o}-disabled`}}),e.pagination={el:null,bullets:[]};let r,s=0;function a(){return!e.params.pagination.el||!e.pagination.el||Array.isArray(e.pagination.el)&&e.pagination.el.length===0}function u(p,x){const{bulletActiveClass:y}=e.params.pagination;p&&(p=p[`${x==="prev"?"previous":"next"}ElementSibling`],p&&(p.classList.add(`${y}-${x}`),p=p[`${x==="prev"?"previous":"next"}ElementSibling`],p&&p.classList.add(`${y}-${x}-${x}`)))}function d(p){const x=p.target.closest(Pt(e.params.pagination.bulletClass));if(!x)return;p.preventDefault();const y=Qt(x)*e.params.slidesPerGroup;if(e.params.loop){if(e.realIndex===y)return;e.slideToLoop(y)}else e.slideTo(y)}function f(){const p=e.rtl,x=e.params.pagination;if(a())return;let y=e.pagination.el;y=wt(y);let A,k;const g=e.virtual&&e.params.virtual.enabled?e.virtual.slides.length:e.slides.length,L=e.params.loop?Math.ceil(g/e.params.slidesPerGroup):e.snapGrid.length;if(e.params.loop?(k=e.previousRealIndex||0,A=e.params.slidesPerGroup>1?Math.floor(e.realIndex/e.params.slidesPerGroup):e.realIndex):typeof e.snapIndex<"u"?(A=e.snapIndex,k=e.previousSnapIndex):(k=e.previousIndex||0,A=e.activeIndex||0),x.type==="bullets"&&e.pagination.bullets&&e.pagination.bullets.length>0){const M=e.pagination.bullets;let S,c,E;if(x.dynamicBullets&&(r=vi(M[0],e.isHorizontal()?"width":"height",!0),y.forEach(b=>{b.style[e.isHorizontal()?"width":"height"]=`${r*(x.dynamicMainBullets+4)}px`}),x.dynamicMainBullets>1&&k!==void 0&&(s+=A-(k||0),s>x.dynamicMainBullets-1?s=x.dynamicMainBullets-1:s<0&&(s=0)),S=Math.max(A-s,0),c=S+(Math.min(M.length,x.dynamicMainBullets)-1),E=(c+S)/2),M.forEach(b=>{const I=[...["","-next","-next-next","-prev","-prev-prev","-main"].map(D=>`${x.bulletActiveClass}${D}`)].map(D=>typeof D=="string"&&D.includes(" ")?D.split(" "):D).flat();b.classList.remove(...I)}),y.length>1)M.forEach(b=>{const I=Qt(b);I===A?b.classList.add(...x.bulletActiveClass.split(" ")):e.isElement&&b.setAttribute("part","bullet"),x.dynamicBullets&&(I>=S&&I<=c&&b.classList.add(...`${x.bulletActiveClass}-main`.split(" ")),I===S&&u(b,"prev"),I===c&&u(b,"next"))});else{const b=M[A];if(b&&b.classList.add(...x.bulletActiveClass.split(" ")),e.isElement&&M.forEach((I,D)=>{I.setAttribute("part",D===A?"bullet-active":"bullet")}),x.dynamicBullets){const I=M[S],D=M[c];for(let P=S;P<=c;P+=1)M[P]&&M[P].classList.add(...`${x.bulletActiveClass}-main`.split(" "));u(I,"prev"),u(D,"next")}}if(x.dynamicBullets){const b=Math.min(M.length,x.dynamicMainBullets+4),I=(r*b-r)/2-E*r,D=p?"right":"left";M.forEach(P=>{P.style[e.isHorizontal()?D:"top"]=`${I}px`})}}y.forEach((M,S)=>{if(x.type==="fraction"&&(M.querySelectorAll(Pt(x.currentClass)).forEach(c=>{c.textContent=x.formatFractionCurrent(A+1)}),M.querySelectorAll(Pt(x.totalClass)).forEach(c=>{c.textContent=x.formatFractionTotal(L)})),x.type==="progressbar"){let c;x.progressbarOpposite?c=e.isHorizontal()?"vertical":"horizontal":c=e.isHorizontal()?"horizontal":"vertical";const E=(A+1)/L;let b=1,I=1;c==="horizontal"?b=E:I=E,M.querySelectorAll(Pt(x.progressbarFillClass)).forEach(D=>{D.style.transform=`translate3d(0,0,0) scaleX(${b}) scaleY(${I})`,D.style.transitionDuration=`${e.params.speed}ms`})}x.type==="custom"&&x.renderCustom?(M.innerHTML=x.renderCustom(e,A+1,L),S===0&&l("paginationRender",M)):(S===0&&l("paginationRender",M),l("paginationUpdate",M)),e.params.watchOverflow&&e.enabled&&M.classList[e.isLocked?"add":"remove"](x.lockClass)})}function v(){const p=e.params.pagination;if(a())return;const x=e.virtual&&e.params.virtual.enabled?e.virtual.slides.length:e.grid&&e.params.grid.rows>1?e.slides.length/Math.ceil(e.params.grid.rows):e.slides.length;let y=e.pagination.el;y=wt(y);let A="";if(p.type==="bullets"){let k=e.params.loop?Math.ceil(x/e.params.slidesPerGroup):e.snapGrid.length;e.params.freeMode&&e.params.freeMode.enabled&&k>x&&(k=x);for(let g=0;g<k;g+=1)p.renderBullet?A+=p.renderBullet.call(e,g,p.bulletClass):A+=`<${p.bulletElement} ${e.isElement?'part="bullet"':""} class="${p.bulletClass}"></${p.bulletElement}>`}p.type==="fraction"&&(p.renderFraction?A=p.renderFraction.call(e,p.currentClass,p.totalClass):A=`<span class="${p.currentClass}"></span> / <span class="${p.totalClass}"></span>`),p.type==="progressbar"&&(p.renderProgressbar?A=p.renderProgressbar.call(e,p.progressbarFillClass):A=`<span class="${p.progressbarFillClass}"></span>`),e.pagination.bullets=[],y.forEach(k=>{p.type!=="custom"&&(k.innerHTML=A||""),p.type==="bullets"&&e.pagination.bullets.push(...k.querySelectorAll(Pt(p.bulletClass)))}),p.type!=="custom"&&l("paginationRender",y[0])}function h(){e.params.pagination=en(e,e.originalParams.pagination,e.params.pagination,{el:"swiper-pagination"});const p=e.params.pagination;if(!p.el)return;let x;typeof p.el=="string"&&e.isElement&&(x=e.el.querySelector(p.el)),!x&&typeof p.el=="string"&&(x=[...document.querySelectorAll(p.el)]),x||(x=p.el),!(!x||x.length===0)&&(e.params.uniqueNavElements&&typeof p.el=="string"&&Array.isArray(x)&&x.length>1&&(x=[...e.el.querySelectorAll(p.el)],x.length>1&&(x=x.filter(y=>$i(y,".swiper")[0]===e.el)[0])),Array.isArray(x)&&x.length===1&&(x=x[0]),Object.assign(e.pagination,{el:x}),x=wt(x),x.forEach(y=>{p.type==="bullets"&&p.clickable&&y.classList.add(...(p.clickableClass||"").split(" ")),y.classList.add(p.modifierClass+p.type),y.classList.add(e.isHorizontal()?p.horizontalClass:p.verticalClass),p.type==="bullets"&&p.dynamicBullets&&(y.classList.add(`${p.modifierClass}${p.type}-dynamic`),s=0,p.dynamicMainBullets<1&&(p.dynamicMainBullets=1)),p.type==="progressbar"&&p.progressbarOpposite&&y.classList.add(p.progressbarOppositeClass),p.clickable&&y.addEventListener("click",d),e.enabled||y.classList.add(p.lockClass)}))}function w(){const p=e.params.pagination;if(a())return;let x=e.pagination.el;x&&(x=wt(x),x.forEach(y=>{y.classList.remove(p.hiddenClass),y.classList.remove(p.modifierClass+p.type),y.classList.remove(e.isHorizontal()?p.horizontalClass:p.verticalClass),p.clickable&&(y.classList.remove(...(p.clickableClass||"").split(" ")),y.removeEventListener("click",d))})),e.pagination.bullets&&e.pagination.bullets.forEach(y=>y.classList.remove(...p.bulletActiveClass.split(" ")))}n("changeDirection",()=>{if(!e.pagination||!e.pagination.el)return;const p=e.params.pagination;let{el:x}=e.pagination;x=wt(x),x.forEach(y=>{y.classList.remove(p.horizontalClass,p.verticalClass),y.classList.add(e.isHorizontal()?p.horizontalClass:p.verticalClass)})}),n("init",()=>{e.params.pagination.enabled===!1?C():(h(),v(),f())}),n("activeIndexChange",()=>{typeof e.snapIndex>"u"&&f()}),n("snapIndexChange",()=>{f()}),n("snapGridLengthChange",()=>{v(),f()}),n("destroy",()=>{w()}),n("enable disable",()=>{let{el:p}=e.pagination;p&&(p=wt(p),p.forEach(x=>x.classList[e.enabled?"remove":"add"](e.params.pagination.lockClass)))}),n("lock unlock",()=>{f()}),n("click",(p,x)=>{const y=x.target,A=wt(e.pagination.el);if(e.params.pagination.el&&e.params.pagination.hideOnClick&&A&&A.length>0&&!y.classList.contains(e.params.pagination.bulletClass)){if(e.navigation&&(e.navigation.nextEl&&y===e.navigation.nextEl||e.navigation.prevEl&&y===e.navigation.prevEl))return;const k=A[0].classList.contains(e.params.pagination.hiddenClass);l(k===!0?"paginationShow":"paginationHide"),A.forEach(g=>g.classList.toggle(e.params.pagination.hiddenClass))}});const T=()=>{e.el.classList.remove(e.params.pagination.paginationDisabledClass);let{el:p}=e.pagination;p&&(p=wt(p),p.forEach(x=>x.classList.remove(e.params.pagination.paginationDisabledClass))),h(),v(),f()},C=()=>{e.el.classList.add(e.params.pagination.paginationDisabledClass);let{el:p}=e.pagination;p&&(p=wt(p),p.forEach(x=>x.classList.add(e.params.pagination.paginationDisabledClass))),w()};Object.assign(e.pagination,{enable:T,disable:C,render:v,update:f,init:h,destroy:w})}function Ao(t){let{swiper:e,extendParams:i,on:n,emit:l}=t;const o=gt();let r=!1,s=null,a=null,u,d,f,v;i({scrollbar:{el:null,dragSize:"auto",hide:!1,draggable:!1,snapOnRelease:!0,lockClass:"swiper-scrollbar-lock",dragClass:"swiper-scrollbar-drag",scrollbarDisabledClass:"swiper-scrollbar-disabled",horizontalClass:"swiper-scrollbar-horizontal",verticalClass:"swiper-scrollbar-vertical"}}),e.scrollbar={el:null,dragEl:null};function h(){if(!e.params.scrollbar.el||!e.scrollbar.el)return;const{scrollbar:b,rtlTranslate:I}=e,{dragEl:D,el:P}=b,N=e.params.scrollbar,F=e.params.loop?e.progressLoop:e.progress;let _=d,R=(f-d)*F;I?(R=-R,R>0?(_=d-R,R=0):-R+d>f&&(_=f+R)):R<0?(_=d+R,R=0):R+d>f&&(_=f-R),e.isHorizontal()?(D.style.transform=`translate3d(${R}px, 0, 0)`,D.style.width=`${_}px`):(D.style.transform=`translate3d(0px, ${R}px, 0)`,D.style.height=`${_}px`),N.hide&&(clearTimeout(s),P.style.opacity=1,s=setTimeout(()=>{P.style.opacity=0,P.style.transitionDuration="400ms"},1e3))}function w(b){!e.params.scrollbar.el||!e.scrollbar.el||(e.scrollbar.dragEl.style.transitionDuration=`${b}ms`)}function T(){if(!e.params.scrollbar.el||!e.scrollbar.el)return;const{scrollbar:b}=e,{dragEl:I,el:D}=b;I.style.width="",I.style.height="",f=e.isHorizontal()?D.offsetWidth:D.offsetHeight,v=e.size/(e.virtualSize+e.params.slidesOffsetBefore-(e.params.centeredSlides?e.snapGrid[0]:0)),e.params.scrollbar.dragSize==="auto"?d=f*v:d=parseInt(e.params.scrollbar.dragSize,10),e.isHorizontal()?I.style.width=`${d}px`:I.style.height=`${d}px`,v>=1?D.style.display="none":D.style.display="",e.params.scrollbar.hide&&(D.style.opacity=0),e.params.watchOverflow&&e.enabled&&b.el.classList[e.isLocked?"add":"remove"](e.params.scrollbar.lockClass)}function C(b){return e.isHorizontal()?b.clientX:b.clientY}function p(b){const{scrollbar:I,rtlTranslate:D}=e,{el:P}=I;let N;N=(C(b)-wo(P)[e.isHorizontal()?"left":"top"]-(u!==null?u:d/2))/(f-d),N=Math.max(Math.min(N,1),0),D&&(N=1-N);const F=e.minTranslate()+(e.maxTranslate()-e.minTranslate())*N;e.updateProgress(F),e.setTranslate(F),e.updateActiveIndex(),e.updateSlidesClasses()}function x(b){const I=e.params.scrollbar,{scrollbar:D,wrapperEl:P}=e,{el:N,dragEl:F}=D;r=!0,u=b.target===F?C(b)-b.target.getBoundingClientRect()[e.isHorizontal()?"left":"top"]:null,b.preventDefault(),b.stopPropagation(),P.style.transitionDuration="100ms",F.style.transitionDuration="100ms",p(b),clearTimeout(a),N.style.transitionDuration="0ms",I.hide&&(N.style.opacity=1),e.params.cssMode&&(e.wrapperEl.style["scroll-snap-type"]="none"),l("scrollbarDragStart",b)}function y(b){const{scrollbar:I,wrapperEl:D}=e,{el:P,dragEl:N}=I;r&&(b.preventDefault&&b.cancelable?b.preventDefault():b.returnValue=!1,p(b),D.style.transitionDuration="0ms",P.style.transitionDuration="0ms",N.style.transitionDuration="0ms",l("scrollbarDragMove",b))}function A(b){const I=e.params.scrollbar,{scrollbar:D,wrapperEl:P}=e,{el:N}=D;r&&(r=!1,e.params.cssMode&&(e.wrapperEl.style["scroll-snap-type"]="",P.style.transitionDuration=""),I.hide&&(clearTimeout(a),a=_t(()=>{N.style.opacity=0,N.style.transitionDuration="400ms"},1e3)),l("scrollbarDragEnd",b),I.snapOnRelease&&e.slideToClosest())}function k(b){const{scrollbar:I,params:D}=e,P=I.el;if(!P)return;const N=P,F=D.passiveListeners?{passive:!1,capture:!1}:!1,_=D.passiveListeners?{passive:!0,capture:!1}:!1;if(!N)return;const R=b==="on"?"addEventListener":"removeEventListener";N[R]("pointerdown",x,F),o[R]("pointermove",y,F),o[R]("pointerup",A,_)}function g(){!e.params.scrollbar.el||!e.scrollbar.el||k("on")}function L(){!e.params.scrollbar.el||!e.scrollbar.el||k("off")}function M(){const{scrollbar:b,el:I}=e;e.params.scrollbar=en(e,e.originalParams.scrollbar,e.params.scrollbar,{el:"swiper-scrollbar"});const D=e.params.scrollbar;if(!D.el)return;let P;if(typeof D.el=="string"&&e.isElement&&(P=e.el.querySelector(D.el)),!P&&typeof D.el=="string"){if(P=o.querySelectorAll(D.el),!P.length)return}else P||(P=D.el);e.params.uniqueNavElements&&typeof D.el=="string"&&P.length>1&&I.querySelectorAll(D.el).length===1&&(P=I.querySelector(D.el)),P.length>0&&(P=P[0]),P.classList.add(e.isHorizontal()?D.horizontalClass:D.verticalClass);let N;P&&(N=P.querySelector(Pt(e.params.scrollbar.dragClass)),N||(N=Bt("div",e.params.scrollbar.dragClass),P.append(N))),Object.assign(b,{el:P,dragEl:N}),D.draggable&&g(),P&&P.classList[e.enabled?"remove":"add"](...Et(e.params.scrollbar.lockClass))}function S(){const b=e.params.scrollbar,I=e.scrollbar.el;I&&I.classList.remove(...Et(e.isHorizontal()?b.horizontalClass:b.verticalClass)),L()}n("changeDirection",()=>{if(!e.scrollbar||!e.scrollbar.el)return;const b=e.params.scrollbar;let{el:I}=e.scrollbar;I=wt(I),I.forEach(D=>{D.classList.remove(b.horizontalClass,b.verticalClass),D.classList.add(e.isHorizontal()?b.horizontalClass:b.verticalClass)})}),n("init",()=>{e.params.scrollbar.enabled===!1?E():(M(),T(),h())}),n("update resize observerUpdate lock unlock changeDirection",()=>{T()}),n("setTranslate",()=>{h()}),n("setTransition",(b,I)=>{w(I)}),n("enable disable",()=>{const{el:b}=e.scrollbar;b&&b.classList[e.enabled?"remove":"add"](...Et(e.params.scrollbar.lockClass))}),n("destroy",()=>{S()});const c=()=>{e.el.classList.remove(...Et(e.params.scrollbar.scrollbarDisabledClass)),e.scrollbar.el&&e.scrollbar.el.classList.remove(...Et(e.params.scrollbar.scrollbarDisabledClass)),M(),T(),h()},E=()=>{e.el.classList.add(...Et(e.params.scrollbar.scrollbarDisabledClass)),e.scrollbar.el&&e.scrollbar.el.classList.add(...Et(e.params.scrollbar.scrollbarDisabledClass)),S()};Object.assign(e.scrollbar,{enable:c,disable:E,updateSize:T,setTranslate:h,init:M,destroy:S})}function $t(t){let{swiper:e,extendParams:i,on:n,emit:l,params:o}=t;e.autoplay={running:!1,paused:!1,timeLeft:0},i({autoplay:{enabled:!1,delay:3e3,waitForTransition:!0,disableOnInteraction:!1,stopOnLastSlide:!1,reverseDirection:!1,pauseOnMouseEnter:!1}});let r,s,a=o&&o.autoplay?o.autoplay.delay:3e3,u=o&&o.autoplay?o.autoplay.delay:3e3,d,f=new Date().getTime(),v,h,w,T,C,p,x;function y(_){!e||e.destroyed||!e.wrapperEl||_.target===e.wrapperEl&&(e.wrapperEl.removeEventListener("transitionend",y),!(x||_.detail&&_.detail.bySwiperTouchMove)&&c())}const A=()=>{if(e.destroyed||!e.autoplay.running)return;e.autoplay.paused?v=!0:v&&(u=d,v=!1);const _=e.autoplay.paused?d:f+u-new Date().getTime();e.autoplay.timeLeft=_,l("autoplayTimeLeft",_,_/a),s=requestAnimationFrame(()=>{A()})},k=()=>{let _;return e.virtual&&e.params.virtual.enabled?_=e.slides.filter(B=>B.classList.contains("swiper-slide-active"))[0]:_=e.slides[e.activeIndex],_?parseInt(_.getAttribute("data-swiper-autoplay"),10):void 0},g=_=>{if(e.destroyed||!e.autoplay.running)return;cancelAnimationFrame(s),A();let R=typeof _>"u"?e.params.autoplay.delay:_;a=e.params.autoplay.delay,u=e.params.autoplay.delay;const B=k();!Number.isNaN(B)&&B>0&&typeof _>"u"&&(R=B,a=B,u=B),d=R;const j=e.params.speed,q=()=>{!e||e.destroyed||(e.params.autoplay.reverseDirection?!e.isBeginning||e.params.loop||e.params.rewind?(e.slidePrev(j,!0,!0),l("autoplay")):e.params.autoplay.stopOnLastSlide||(e.slideTo(e.slides.length-1,j,!0,!0),l("autoplay")):!e.isEnd||e.params.loop||e.params.rewind?(e.slideNext(j,!0,!0),l("autoplay")):e.params.autoplay.stopOnLastSlide||(e.slideTo(0,j,!0,!0),l("autoplay")),e.params.cssMode&&(f=new Date().getTime(),requestAnimationFrame(()=>{g()})))};return R>0?(clearTimeout(r),r=setTimeout(()=>{q()},R)):requestAnimationFrame(()=>{q()}),R},L=()=>{f=new Date().getTime(),e.autoplay.running=!0,g(),l("autoplayStart")},M=()=>{e.autoplay.running=!1,clearTimeout(r),cancelAnimationFrame(s),l("autoplayStop")},S=(_,R)=>{if(e.destroyed||!e.autoplay.running)return;clearTimeout(r),_||(p=!0);const B=()=>{l("autoplayPause"),e.params.autoplay.waitForTransition?e.wrapperEl.addEventListener("transitionend",y):c()};if(e.autoplay.paused=!0,R){C&&(d=e.params.autoplay.delay),C=!1,B();return}d=(d||e.params.autoplay.delay)-(new Date().getTime()-f),!(e.isEnd&&d<0&&!e.params.loop)&&(d<0&&(d=0),B())},c=()=>{e.isEnd&&d<0&&!e.params.loop||e.destroyed||!e.autoplay.running||(f=new Date().getTime(),p?(p=!1,g(d)):g(),e.autoplay.paused=!1,l("autoplayResume"))},E=()=>{if(e.destroyed||!e.autoplay.running)return;const _=gt();_.visibilityState==="hidden"&&(p=!0,S(!0)),_.visibilityState==="visible"&&c()},b=_=>{_.pointerType==="mouse"&&(p=!0,x=!0,!(e.animating||e.autoplay.paused)&&S(!0))},I=_=>{_.pointerType==="mouse"&&(x=!1,e.autoplay.paused&&c())},D=()=>{e.params.autoplay.pauseOnMouseEnter&&(e.el.addEventListener("pointerenter",b),e.el.addEventListener("pointerleave",I))},P=()=>{e.el&&typeof e.el!="string"&&(e.el.removeEventListener("pointerenter",b),e.el.removeEventListener("pointerleave",I))},N=()=>{gt().addEventListener("visibilitychange",E)},F=()=>{gt().removeEventListener("visibilitychange",E)};n("init",()=>{e.params.autoplay.enabled&&(D(),N(),L())}),n("destroy",()=>{P(),F(),e.autoplay.running&&M()}),n("_freeModeStaticRelease",()=>{(w||p)&&c()}),n("_freeModeNoMomentumRelease",()=>{e.params.autoplay.disableOnInteraction?M():S(!0,!0)}),n("beforeTransitionStart",(_,R,B)=>{e.destroyed||!e.autoplay.running||(B||!e.params.autoplay.disableOnInteraction?S(!0,!0):M())}),n("sliderFirstMove",()=>{if(!(e.destroyed||!e.autoplay.running)){if(e.params.autoplay.disableOnInteraction){M();return}h=!0,w=!1,p=!1,T=setTimeout(()=>{p=!0,w=!0,S(!0)},200)}}),n("touchEnd",()=>{if(!(e.destroyed||!e.autoplay.running||!h)){if(clearTimeout(T),clearTimeout(r),e.params.autoplay.disableOnInteraction){w=!1,h=!1;return}w&&e.params.cssMode&&c(),w=!1,h=!1}}),n("slideChange",()=>{e.destroyed||!e.autoplay.running||(C=!0)}),Object.assign(e.autoplay,{start:L,stop:M,pause:S,resume:c})}function Eo(t){let{swiper:e,extendParams:i,emit:n,once:l}=t;i({freeMode:{enabled:!1,momentum:!0,momentumRatio:1,momentumBounce:!0,momentumBounceRatio:1,momentumVelocityRatio:1,sticky:!1,minimumVelocity:.02}});function o(){if(e.params.cssMode)return;const a=e.getTranslate();e.setTranslate(a),e.setTransition(0),e.touchEventsData.velocities.length=0,e.freeMode.onTouchEnd({currentPos:e.rtl?e.translate:-e.translate})}function r(){if(e.params.cssMode)return;const{touchEventsData:a,touches:u}=e;a.velocities.length===0&&a.velocities.push({position:u[e.isHorizontal()?"startX":"startY"],time:a.touchStartTime}),a.velocities.push({position:u[e.isHorizontal()?"currentX":"currentY"],time:ut()})}function s(a){let{currentPos:u}=a;if(e.params.cssMode)return;const{params:d,wrapperEl:f,rtlTranslate:v,snapGrid:h,touchEventsData:w}=e,C=ut()-w.touchStartTime;if(u<-e.minTranslate()){e.slideTo(e.activeIndex);return}if(u>-e.maxTranslate()){e.slides.length<h.length?e.slideTo(h.length-1):e.slideTo(e.slides.length-1);return}if(d.freeMode.momentum){if(w.velocities.length>1){const M=w.velocities.pop(),S=w.velocities.pop(),c=M.position-S.position,E=M.time-S.time;e.velocity=c/E,e.velocity/=2,Math.abs(e.velocity)<d.freeMode.minimumVelocity&&(e.velocity=0),(E>150||ut()-M.time>300)&&(e.velocity=0)}else e.velocity=0;e.velocity*=d.freeMode.momentumVelocityRatio,w.velocities.length=0;let p=1e3*d.freeMode.momentumRatio;const x=e.velocity*p;let y=e.translate+x;v&&(y=-y);let A=!1,k;const g=Math.abs(e.velocity)*20*d.freeMode.momentumBounceRatio;let L;if(y<e.maxTranslate())d.freeMode.momentumBounce?(y+e.maxTranslate()<-g&&(y=e.maxTranslate()-g),k=e.maxTranslate(),A=!0,w.allowMomentumBounce=!0):y=e.maxTranslate(),d.loop&&d.centeredSlides&&(L=!0);else if(y>e.minTranslate())d.freeMode.momentumBounce?(y-e.minTranslate()>g&&(y=e.minTranslate()+g),k=e.minTranslate(),A=!0,w.allowMomentumBounce=!0):y=e.minTranslate(),d.loop&&d.centeredSlides&&(L=!0);else if(d.freeMode.sticky){let M;for(let S=0;S<h.length;S+=1)if(h[S]>-y){M=S;break}Math.abs(h[M]-y)<Math.abs(h[M-1]-y)||e.swipeDirection==="next"?y=h[M]:y=h[M-1],y=-y}if(L&&l("transitionEnd",()=>{e.loopFix()}),e.velocity!==0){if(v?p=Math.abs((-y-e.translate)/e.velocity):p=Math.abs((y-e.translate)/e.velocity),d.freeMode.sticky){const M=Math.abs((v?-y:y)-e.translate),S=e.slidesSizesGrid[e.activeIndex];M<S?p=d.speed:M<2*S?p=d.speed*1.5:p=d.speed*2.5}}else if(d.freeMode.sticky){e.slideToClosest();return}d.freeMode.momentumBounce&&A?(e.updateProgress(k),e.setTransition(p),e.setTranslate(y),e.transitionStart(!0,e.swipeDirection),e.animating=!0,pi(f,()=>{!e||e.destroyed||!w.allowMomentumBounce||(n("momentumBounce"),e.setTransition(d.speed),setTimeout(()=>{e.setTranslate(k),pi(f,()=>{!e||e.destroyed||e.transitionEnd()})},0))})):e.velocity?(n("_freeModeNoMomentumRelease"),e.updateProgress(y),e.setTransition(p),e.setTranslate(y),e.transitionStart(!0,e.swipeDirection),e.animating||(e.animating=!0,pi(f,()=>{!e||e.destroyed||e.transitionEnd()}))):e.updateProgress(y),e.updateActiveIndex(),e.updateSlidesClasses()}else if(d.freeMode.sticky){e.slideToClosest();return}else d.freeMode&&n("_freeModeNoMomentumRelease");(!d.freeMode.momentum||C>=d.longSwipesMs)&&(n("_freeModeStaticRelease"),e.updateProgress(),e.updateActiveIndex(),e.updateSlidesClasses())}Object.assign(e,{freeMode:{onTouchStart:o,onTouchMove:r,onTouchEnd:s}})}let mi;function Co(){const t=ot(),e=gt();return{smoothScroll:e.documentElement&&e.documentElement.style&&"scrollBehavior"in e.documentElement.style,touch:!!("ontouchstart"in t||t.DocumentTouch&&e instanceof t.DocumentTouch)}}function tn(){return mi||(mi=Co()),mi}let fi;function Io(t){let{userAgent:e}=t===void 0?{}:t;const i=tn(),n=ot(),l=n.navigator.platform,o=e||n.navigator.userAgent,r={ios:!1,android:!1},s=n.screen.width,a=n.screen.height,u=o.match(/(Android);?[\s\/]+([\d.]+)?/);let d=o.match(/(iPad).*OS\s([\d_]+)/);const f=o.match(/(iPod)(.*OS\s([\d_]+))?/),v=!d&&o.match(/(iPhone\sOS|iOS)\s([\d_]+)/),h=l==="Win32";let w=l==="MacIntel";const T=["1024x1366","1366x1024","834x1194","1194x834","834x1112","1112x834","768x1024","1024x768","820x1180","1180x820","810x1080","1080x810"];return!d&&w&&i.touch&&T.indexOf(`${s}x${a}`)>=0&&(d=o.match(/(Version)\/([\d.]+)/),d||(d=[0,1,"13_0_0"]),w=!1),u&&!h&&(r.os="android",r.android=!0),(d||v||f)&&(r.os="ios",r.ios=!0),r}function nn(t){return t===void 0&&(t={}),fi||(fi=Io(t)),fi}let hi;function ko(){const t=ot(),e=nn();let i=!1;function n(){const s=t.navigator.userAgent.toLowerCase();return s.indexOf("safari")>=0&&s.indexOf("chrome")<0&&s.indexOf("android")<0}if(n()){const s=String(t.navigator.userAgent);if(s.includes("Version/")){const[a,u]=s.split("Version/")[1].split(" ")[0].split(".").map(d=>Number(d));i=a<16||a===16&&u<2}}const l=/(iPhone|iPod|iPad).*AppleWebKit(?!.*Safari)/i.test(t.navigator.userAgent),o=n(),r=o||l&&e.ios;return{isSafari:i||o,needPerspectiveFix:i,need3dFix:r,isWebView:l}}function _o(){return hi||(hi=ko()),hi}function Po(t){let{swiper:e,on:i,emit:n}=t;const l=ot();let o=null,r=null;const s=()=>{!e||e.destroyed||!e.initialized||(n("beforeResize"),n("resize"))},a=()=>{!e||e.destroyed||!e.initialized||(o=new ResizeObserver(f=>{r=l.requestAnimationFrame(()=>{const{width:v,height:h}=e;let w=v,T=h;f.forEach(C=>{let{contentBoxSize:p,contentRect:x,target:y}=C;y&&y!==e.el||(w=x?x.width:(p[0]||p).inlineSize,T=x?x.height:(p[0]||p).blockSize)}),(w!==v||T!==h)&&s()})}),o.observe(e.el))},u=()=>{r&&l.cancelAnimationFrame(r),o&&o.unobserve&&e.el&&(o.unobserve(e.el),o=null)},d=()=>{!e||e.destroyed||!e.initialized||n("orientationchange")};i("init",()=>{if(e.params.resizeObserver&&typeof l.ResizeObserver<"u"){a();return}l.addEventListener("resize",s),l.addEventListener("orientationchange",d)}),i("destroy",()=>{u(),l.removeEventListener("resize",s),l.removeEventListener("orientationchange",d)})}function Do(t){let{swiper:e,extendParams:i,on:n,emit:l}=t;const o=[],r=ot(),s=function(d,f){f===void 0&&(f={});const v=r.MutationObserver||r.WebkitMutationObserver,h=new v(w=>{if(e.__preventObserver__)return;if(w.length===1){l("observerUpdate",w[0]);return}const T=function(){l("observerUpdate",w[0])};r.requestAnimationFrame?r.requestAnimationFrame(T):r.setTimeout(T,0)});h.observe(d,{attributes:typeof f.attributes>"u"?!0:f.attributes,childList:typeof f.childList>"u"?!0:f.childList,characterData:typeof f.characterData>"u"?!0:f.characterData}),o.push(h)},a=()=>{if(e.params.observer){if(e.params.observeParents){const d=$i(e.hostEl);for(let f=0;f<d.length;f+=1)s(d[f])}s(e.hostEl,{childList:e.params.observeSlideChildren}),s(e.wrapperEl,{attributes:!1})}},u=()=>{o.forEach(d=>{d.disconnect()}),o.splice(0,o.length)};i({observer:!1,observeParents:!1,observeSlideChildren:!1}),n("init",a),n("destroy",u)}var Oo={on(t,e,i){const n=this;if(!n.eventsListeners||n.destroyed||typeof e!="function")return n;const l=i?"unshift":"push";return t.split(" ").forEach(o=>{n.eventsListeners[o]||(n.eventsListeners[o]=[]),n.eventsListeners[o][l](e)}),n},once(t,e,i){const n=this;if(!n.eventsListeners||n.destroyed||typeof e!="function")return n;function l(){n.off(t,l),l.__emitterProxy&&delete l.__emitterProxy;for(var o=arguments.length,r=new Array(o),s=0;s<o;s++)r[s]=arguments[s];e.apply(n,r)}return l.__emitterProxy=e,n.on(t,l,i)},onAny(t,e){const i=this;if(!i.eventsListeners||i.destroyed||typeof t!="function")return i;const n=e?"unshift":"push";return i.eventsAnyListeners.indexOf(t)<0&&i.eventsAnyListeners[n](t),i},offAny(t){const e=this;if(!e.eventsListeners||e.destroyed||!e.eventsAnyListeners)return e;const i=e.eventsAnyListeners.indexOf(t);return i>=0&&e.eventsAnyListeners.splice(i,1),e},off(t,e){const i=this;return!i.eventsListeners||i.destroyed||!i.eventsListeners||t.split(" ").forEach(n=>{typeof e>"u"?i.eventsListeners[n]=[]:i.eventsListeners[n]&&i.eventsListeners[n].forEach((l,o)=>{(l===e||l.__emitterProxy&&l.__emitterProxy===e)&&i.eventsListeners[n].splice(o,1)})}),i},emit(){const t=this;if(!t.eventsListeners||t.destroyed||!t.eventsListeners)return t;let e,i,n;for(var l=arguments.length,o=new Array(l),r=0;r<l;r++)o[r]=arguments[r];return typeof o[0]=="string"||Array.isArray(o[0])?(e=o[0],i=o.slice(1,o.length),n=t):(e=o[0].events,i=o[0].data,n=o[0].context||t),i.unshift(n),(Array.isArray(e)?e:e.split(" ")).forEach(a=>{t.eventsAnyListeners&&t.eventsAnyListeners.length&&t.eventsAnyListeners.forEach(u=>{u.apply(n,[a,...i])}),t.eventsListeners&&t.eventsListeners[a]&&t.eventsListeners[a].forEach(u=>{u.apply(n,i)})}),t}};function Mo(){const t=this;let e,i;const n=t.el;typeof t.params.width<"u"&&t.params.width!==null?e=t.params.width:e=n.clientWidth,typeof t.params.height<"u"&&t.params.height!==null?i=t.params.height:i=n.clientHeight,!(e===0&&t.isHorizontal()||i===0&&t.isVertical())&&(e=e-parseInt(Ct(n,"padding-left")||0,10)-parseInt(Ct(n,"padding-right")||0,10),i=i-parseInt(Ct(n,"padding-top")||0,10)-parseInt(Ct(n,"padding-bottom")||0,10),Number.isNaN(e)&&(e=0),Number.isNaN(i)&&(i=0),Object.assign(t,{width:e,height:i,size:t.isHorizontal()?e:i}))}function Lo(){const t=this;function e(c,E){return parseFloat(c.getPropertyValue(t.getDirectionLabel(E))||0)}const i=t.params,{wrapperEl:n,slidesEl:l,size:o,rtlTranslate:r,wrongRTL:s}=t,a=t.virtual&&i.virtual.enabled,u=a?t.virtual.slides.length:t.slides.length,d=yt(l,`.${t.params.slideClass}, swiper-slide`),f=a?t.virtual.slides.length:d.length;let v=[];const h=[],w=[];let T=i.slidesOffsetBefore;typeof T=="function"&&(T=i.slidesOffsetBefore.call(t));let C=i.slidesOffsetAfter;typeof C=="function"&&(C=i.slidesOffsetAfter.call(t));const p=t.snapGrid.length,x=t.slidesGrid.length;let y=i.spaceBetween,A=-T,k=0,g=0;if(typeof o>"u")return;typeof y=="string"&&y.indexOf("%")>=0?y=parseFloat(y.replace("%",""))/100*o:typeof y=="string"&&(y=parseFloat(y)),t.virtualSize=-y,d.forEach(c=>{r?c.style.marginLeft="":c.style.marginRight="",c.style.marginBottom="",c.style.marginTop=""}),i.centeredSlides&&i.cssMode&&(Jt(n,"--swiper-centered-offset-before",""),Jt(n,"--swiper-centered-offset-after",""));const L=i.grid&&i.grid.rows>1&&t.grid;L?t.grid.initSlides(d):t.grid&&t.grid.unsetSlides();let M;const S=i.slidesPerView==="auto"&&i.breakpoints&&Object.keys(i.breakpoints).filter(c=>typeof i.breakpoints[c].slidesPerView<"u").length>0;for(let c=0;c<f;c+=1){M=0;let E;if(d[c]&&(E=d[c]),L&&t.grid.updateSlide(c,E,d),!(d[c]&&Ct(E,"display")==="none")){if(i.slidesPerView==="auto"){S&&(d[c].style[t.getDirectionLabel("width")]="");const b=getComputedStyle(E),I=E.style.transform,D=E.style.webkitTransform;if(I&&(E.style.transform="none"),D&&(E.style.webkitTransform="none"),i.roundLengths)M=t.isHorizontal()?vi(E,"width",!0):vi(E,"height",!0);else{const P=e(b,"width"),N=e(b,"padding-left"),F=e(b,"padding-right"),_=e(b,"margin-left"),R=e(b,"margin-right"),B=b.getPropertyValue("box-sizing");if(B&&B==="border-box")M=P+_+R;else{const{clientWidth:j,offsetWidth:q}=E;M=P+N+F+_+R+(q-j)}}I&&(E.style.transform=I),D&&(E.style.webkitTransform=D),i.roundLengths&&(M=Math.floor(M))}else M=(o-(i.slidesPerView-1)*y)/i.slidesPerView,i.roundLengths&&(M=Math.floor(M)),d[c]&&(d[c].style[t.getDirectionLabel("width")]=`${M}px`);d[c]&&(d[c].swiperSlideSize=M),w.push(M),i.centeredSlides?(A=A+M/2+k/2+y,k===0&&c!==0&&(A=A-o/2-y),c===0&&(A=A-o/2-y),Math.abs(A)<1/1e3&&(A=0),i.roundLengths&&(A=Math.floor(A)),g%i.slidesPerGroup===0&&v.push(A),h.push(A)):(i.roundLengths&&(A=Math.floor(A)),(g-Math.min(t.params.slidesPerGroupSkip,g))%t.params.slidesPerGroup===0&&v.push(A),h.push(A),A=A+M+y),t.virtualSize+=M+y,k=M,g+=1}}if(t.virtualSize=Math.max(t.virtualSize,o)+C,r&&s&&(i.effect==="slide"||i.effect==="coverflow")&&(n.style.width=`${t.virtualSize+y}px`),i.setWrapperSize&&(n.style[t.getDirectionLabel("width")]=`${t.virtualSize+y}px`),L&&t.grid.updateWrapperSize(M,v),!i.centeredSlides){const c=[];for(let E=0;E<v.length;E+=1){let b=v[E];i.roundLengths&&(b=Math.floor(b)),v[E]<=t.virtualSize-o&&c.push(b)}v=c,Math.floor(t.virtualSize-o)-Math.floor(v[v.length-1])>1&&v.push(t.virtualSize-o)}if(a&&i.loop){const c=w[0]+y;if(i.slidesPerGroup>1){const E=Math.ceil((t.virtual.slidesBefore+t.virtual.slidesAfter)/i.slidesPerGroup),b=c*i.slidesPerGroup;for(let I=0;I<E;I+=1)v.push(v[v.length-1]+b)}for(let E=0;E<t.virtual.slidesBefore+t.virtual.slidesAfter;E+=1)i.slidesPerGroup===1&&v.push(v[v.length-1]+c),h.push(h[h.length-1]+c),t.virtualSize+=c}if(v.length===0&&(v=[0]),y!==0){const c=t.isHorizontal()&&r?"marginLeft":t.getDirectionLabel("marginRight");d.filter((E,b)=>!i.cssMode||i.loop?!0:b!==d.length-1).forEach(E=>{E.style[c]=`${y}px`})}if(i.centeredSlides&&i.centeredSlidesBounds){let c=0;w.forEach(b=>{c+=b+(y||0)}),c-=y;const E=c-o;v=v.map(b=>b<=0?-T:b>E?E+C:b)}if(i.centerInsufficientSlides){let c=0;w.forEach(b=>{c+=b+(y||0)}),c-=y;const E=(i.slidesOffsetBefore||0)+(i.slidesOffsetAfter||0);if(c+E<o){const b=(o-c-E)/2;v.forEach((I,D)=>{v[D]=I-b}),h.forEach((I,D)=>{h[D]=I+b})}}if(Object.assign(t,{slides:d,snapGrid:v,slidesGrid:h,slidesSizesGrid:w}),i.centeredSlides&&i.cssMode&&!i.centeredSlidesBounds){Jt(n,"--swiper-centered-offset-before",`${-v[0]}px`),Jt(n,"--swiper-centered-offset-after",`${t.size/2-w[w.length-1]/2}px`);const c=-t.snapGrid[0],E=-t.slidesGrid[0];t.snapGrid=t.snapGrid.map(b=>b+c),t.slidesGrid=t.slidesGrid.map(b=>b+E)}if(f!==u&&t.emit("slidesLengthChange"),v.length!==p&&(t.params.watchOverflow&&t.checkOverflow(),t.emit("snapGridLengthChange")),h.length!==x&&t.emit("slidesGridLengthChange"),i.watchSlidesProgress&&t.updateSlidesOffset(),t.emit("slidesUpdated"),!a&&!i.cssMode&&(i.effect==="slide"||i.effect==="fade")){const c=`${i.containerModifierClass}backface-hidden`,E=t.el.classList.contains(c);f<=i.maxBackfaceHiddenSlides?E||t.el.classList.add(c):E&&t.el.classList.remove(c)}}function Ro(t){const e=this,i=[],n=e.virtual&&e.params.virtual.enabled;let l=0,o;typeof t=="number"?e.setTransition(t):t===!0&&e.setTransition(e.params.speed);const r=s=>n?e.slides[e.getSlideIndexByData(s)]:e.slides[s];if(e.params.slidesPerView!=="auto"&&e.params.slidesPerView>1)if(e.params.centeredSlides)(e.visibleSlides||[]).forEach(s=>{i.push(s)});else for(o=0;o<Math.ceil(e.params.slidesPerView);o+=1){const s=e.activeIndex+o;if(s>e.slides.length&&!n)break;i.push(r(s))}else i.push(r(e.activeIndex));for(o=0;o<i.length;o+=1)if(typeof i[o]<"u"){const s=i[o].offsetHeight;l=s>l?s:l}(l||l===0)&&(e.wrapperEl.style.height=`${l}px`)}function No(){const t=this,e=t.slides,i=t.isElement?t.isHorizontal()?t.wrapperEl.offsetLeft:t.wrapperEl.offsetTop:0;for(let n=0;n<e.length;n+=1)e[n].swiperSlideOffset=(t.isHorizontal()?e[n].offsetLeft:e[n].offsetTop)-i-t.cssOverflowAdjustment()}const on=(t,e,i)=>{e&&!t.classList.contains(i)?t.classList.add(i):!e&&t.classList.contains(i)&&t.classList.remove(i)};function Bo(t){t===void 0&&(t=this&&this.translate||0);const e=this,i=e.params,{slides:n,rtlTranslate:l,snapGrid:o}=e;if(n.length===0)return;typeof n[0].swiperSlideOffset>"u"&&e.updateSlidesOffset();let r=-t;l&&(r=t),e.visibleSlidesIndexes=[],e.visibleSlides=[];let s=i.spaceBetween;typeof s=="string"&&s.indexOf("%")>=0?s=parseFloat(s.replace("%",""))/100*e.size:typeof s=="string"&&(s=parseFloat(s));for(let a=0;a<n.length;a+=1){const u=n[a];let d=u.swiperSlideOffset;i.cssMode&&i.centeredSlides&&(d-=n[0].swiperSlideOffset);const f=(r+(i.centeredSlides?e.minTranslate():0)-d)/(u.swiperSlideSize+s),v=(r-o[0]+(i.centeredSlides?e.minTranslate():0)-d)/(u.swiperSlideSize+s),h=-(r-d),w=h+e.slidesSizesGrid[a],T=h>=0&&h<=e.size-e.slidesSizesGrid[a],C=h>=0&&h<e.size-1||w>1&&w<=e.size||h<=0&&w>=e.size;C&&(e.visibleSlides.push(u),e.visibleSlidesIndexes.push(a)),on(u,C,i.slideVisibleClass),on(u,T,i.slideFullyVisibleClass),u.progress=l?-f:f,u.originalProgress=l?-v:v}}function Fo(t){const e=this;if(typeof t>"u"){const d=e.rtlTranslate?-1:1;t=e&&e.translate&&e.translate*d||0}const i=e.params,n=e.maxTranslate()-e.minTranslate();let{progress:l,isBeginning:o,isEnd:r,progressLoop:s}=e;const a=o,u=r;if(n===0)l=0,o=!0,r=!0;else{l=(t-e.minTranslate())/n;const d=Math.abs(t-e.minTranslate())<1,f=Math.abs(t-e.maxTranslate())<1;o=d||l<=0,r=f||l>=1,d&&(l=0),f&&(l=1)}if(i.loop){const d=e.getSlideIndexByData(0),f=e.getSlideIndexByData(e.slides.length-1),v=e.slidesGrid[d],h=e.slidesGrid[f],w=e.slidesGrid[e.slidesGrid.length-1],T=Math.abs(t);T>=v?s=(T-v)/w:s=(T+w-h)/w,s>1&&(s-=1)}Object.assign(e,{progress:l,progressLoop:s,isBeginning:o,isEnd:r}),(i.watchSlidesProgress||i.centeredSlides&&i.autoHeight)&&e.updateSlidesProgress(t),o&&!a&&e.emit("reachBeginning toEdge"),r&&!u&&e.emit("reachEnd toEdge"),(a&&!o||u&&!r)&&e.emit("fromEdge"),e.emit("progress",l)}const gi=(t,e,i)=>{e&&!t.classList.contains(i)?t.classList.add(i):!e&&t.classList.contains(i)&&t.classList.remove(i)};function jo(){const t=this,{slides:e,params:i,slidesEl:n,activeIndex:l}=t,o=t.virtual&&i.virtual.enabled,r=t.grid&&i.grid&&i.grid.rows>1,s=f=>yt(n,`.${i.slideClass}${f}, swiper-slide${f}`)[0];let a,u,d;if(o)if(i.loop){let f=l-t.virtual.slidesBefore;f<0&&(f=t.virtual.slides.length+f),f>=t.virtual.slides.length&&(f-=t.virtual.slides.length),a=s(`[data-swiper-slide-index="${f}"]`)}else a=s(`[data-swiper-slide-index="${l}"]`);else r?(a=e.filter(f=>f.column===l)[0],d=e.filter(f=>f.column===l+1)[0],u=e.filter(f=>f.column===l-1)[0]):a=e[l];a&&(r||(d=To(a,`.${i.slideClass}, swiper-slide`)[0],i.loop&&!d&&(d=e[0]),u=So(a,`.${i.slideClass}, swiper-slide`)[0],i.loop&&!u===0&&(u=e[e.length-1]))),e.forEach(f=>{gi(f,f===a,i.slideActiveClass),gi(f,f===d,i.slideNextClass),gi(f,f===u,i.slidePrevClass)}),t.emitSlidesClasses()}const ei=(t,e)=>{if(!t||t.destroyed||!t.params)return;const i=()=>t.isElement?"swiper-slide":`.${t.params.slideClass}`,n=e.closest(i());if(n){let l=n.querySelector(`.${t.params.lazyPreloaderClass}`);!l&&t.isElement&&(n.shadowRoot?l=n.shadowRoot.querySelector(`.${t.params.lazyPreloaderClass}`):requestAnimationFrame(()=>{n.shadowRoot&&(l=n.shadowRoot.querySelector(`.${t.params.lazyPreloaderClass}`),l&&l.remove())})),l&&l.remove()}},bi=(t,e)=>{if(!t.slides[e])return;const i=t.slides[e].querySelector('[loading="lazy"]');i&&i.removeAttribute("loading")},yi=t=>{if(!t||t.destroyed||!t.params)return;let e=t.params.lazyPreloadPrevNext;const i=t.slides.length;if(!i||!e||e<0)return;e=Math.min(e,i);const n=t.params.slidesPerView==="auto"?t.slidesPerViewDynamic():Math.ceil(t.params.slidesPerView),l=t.activeIndex;if(t.params.grid&&t.params.grid.rows>1){const r=l,s=[r-e];s.push(...Array.from({length:e}).map((a,u)=>r+n+u)),t.slides.forEach((a,u)=>{s.includes(a.column)&&bi(t,u)});return}const o=l+n-1;if(t.params.rewind||t.params.loop)for(let r=l-e;r<=o+e;r+=1){const s=(r%i+i)%i;(s<l||s>o)&&bi(t,s)}else for(let r=Math.max(l-e,0);r<=Math.min(o+e,i-1);r+=1)r!==l&&(r>o||r<l)&&bi(t,r)};function Vo(t){const{slidesGrid:e,params:i}=t,n=t.rtlTranslate?t.translate:-t.translate;let l;for(let o=0;o<e.length;o+=1)typeof e[o+1]<"u"?n>=e[o]&&n<e[o+1]-(e[o+1]-e[o])/2?l=o:n>=e[o]&&n<e[o+1]&&(l=o+1):n>=e[o]&&(l=o);return i.normalizeSlideIndex&&(l<0||typeof l>"u")&&(l=0),l}function zo(t){const e=this,i=e.rtlTranslate?e.translate:-e.translate,{snapGrid:n,params:l,activeIndex:o,realIndex:r,snapIndex:s}=e;let a=t,u;const d=h=>{let w=h-e.virtual.slidesBefore;return w<0&&(w=e.virtual.slides.length+w),w>=e.virtual.slides.length&&(w-=e.virtual.slides.length),w};if(typeof a>"u"&&(a=Vo(e)),n.indexOf(i)>=0)u=n.indexOf(i);else{const h=Math.min(l.slidesPerGroupSkip,a);u=h+Math.floor((a-h)/l.slidesPerGroup)}if(u>=n.length&&(u=n.length-1),a===o&&!e.params.loop){u!==s&&(e.snapIndex=u,e.emit("snapIndexChange"));return}if(a===o&&e.params.loop&&e.virtual&&e.params.virtual.enabled){e.realIndex=d(a);return}const f=e.grid&&l.grid&&l.grid.rows>1;let v;if(e.virtual&&l.virtual.enabled&&l.loop)v=d(a);else if(f){const h=e.slides.filter(T=>T.column===a)[0];let w=parseInt(h.getAttribute("data-swiper-slide-index"),10);Number.isNaN(w)&&(w=Math.max(e.slides.indexOf(h),0)),v=Math.floor(w/l.grid.rows)}else if(e.slides[a]){const h=e.slides[a].getAttribute("data-swiper-slide-index");h?v=parseInt(h,10):v=a}else v=a;Object.assign(e,{previousSnapIndex:s,snapIndex:u,previousRealIndex:r,realIndex:v,previousIndex:o,activeIndex:a}),e.initialized&&yi(e),e.emit("activeIndexChange"),e.emit("snapIndexChange"),(e.initialized||e.params.runCallbacksOnInit)&&(r!==v&&e.emit("realIndexChange"),e.emit("slideChange"))}function Ho(t,e){const i=this,n=i.params;let l=t.closest(`.${n.slideClass}, swiper-slide`);!l&&i.isElement&&e&&e.length>1&&e.includes(t)&&[...e.slice(e.indexOf(t)+1,e.length)].forEach(s=>{!l&&s.matches&&s.matches(`.${n.slideClass}, swiper-slide`)&&(l=s)});let o=!1,r;if(l){for(let s=0;s<i.slides.length;s+=1)if(i.slides[s]===l){o=!0,r=s;break}}if(l&&o)i.clickedSlide=l,i.virtual&&i.params.virtual.enabled?i.clickedIndex=parseInt(l.getAttribute("data-swiper-slide-index"),10):i.clickedIndex=r;else{i.clickedSlide=void 0,i.clickedIndex=void 0;return}n.slideToClickedSlide&&i.clickedIndex!==void 0&&i.clickedIndex!==i.activeIndex&&i.slideToClickedSlide()}var Go={updateSize:Mo,updateSlides:Lo,updateAutoHeight:Ro,updateSlidesOffset:No,updateSlidesProgress:Bo,updateProgress:Fo,updateSlidesClasses:jo,updateActiveIndex:zo,updateClickedSlide:Ho};function Uo(t){t===void 0&&(t=this.isHorizontal()?"x":"y");const e=this,{params:i,rtlTranslate:n,translate:l,wrapperEl:o}=e;if(i.virtualTranslate)return n?-l:l;if(i.cssMode)return l;let r=bo(o,t);return r+=e.cssOverflowAdjustment(),n&&(r=-r),r||0}function Wo(t,e){const i=this,{rtlTranslate:n,params:l,wrapperEl:o,progress:r}=i;let s=0,a=0;const u=0;i.isHorizontal()?s=n?-t:t:a=t,l.roundLengths&&(s=Math.floor(s),a=Math.floor(a)),i.previousTranslate=i.translate,i.translate=i.isHorizontal()?s:a,l.cssMode?o[i.isHorizontal()?"scrollLeft":"scrollTop"]=i.isHorizontal()?-s:-a:l.virtualTranslate||(i.isHorizontal()?s-=i.cssOverflowAdjustment():a-=i.cssOverflowAdjustment(),o.style.transform=`translate3d(${s}px, ${a}px, ${u}px)`);let d;const f=i.maxTranslate()-i.minTranslate();f===0?d=0:d=(t-i.minTranslate())/f,d!==r&&i.updateProgress(t),i.emit("setTranslate",i.translate,e)}function Yo(){return-this.snapGrid[0]}function Xo(){return-this.snapGrid[this.snapGrid.length-1]}function qo(t,e,i,n,l){t===void 0&&(t=0),e===void 0&&(e=this.params.speed),i===void 0&&(i=!0),n===void 0&&(n=!0);const o=this,{params:r,wrapperEl:s}=o;if(o.animating&&r.preventInteractionOnTransition)return!1;const a=o.minTranslate(),u=o.maxTranslate();let d;if(n&&t>a?d=a:n&&t<u?d=u:d=t,o.updateProgress(d),r.cssMode){const f=o.isHorizontal();if(e===0)s[f?"scrollLeft":"scrollTop"]=-d;else{if(!o.support.smoothScroll)return Zi({swiper:o,targetPosition:-d,side:f?"left":"top"}),!0;s.scrollTo({[f?"left":"top"]:-d,behavior:"smooth"})}return!0}return e===0?(o.setTransition(0),o.setTranslate(d),i&&(o.emit("beforeTransitionStart",e,l),o.emit("transitionEnd"))):(o.setTransition(e),o.setTranslate(d),i&&(o.emit("beforeTransitionStart",e,l),o.emit("transitionStart")),o.animating||(o.animating=!0,o.onTranslateToWrapperTransitionEnd||(o.onTranslateToWrapperTransitionEnd=function(v){!o||o.destroyed||v.target===this&&(o.wrapperEl.removeEventListener("transitionend",o.onTranslateToWrapperTransitionEnd),o.onTranslateToWrapperTransitionEnd=null,delete o.onTranslateToWrapperTransitionEnd,o.animating=!1,i&&o.emit("transitionEnd"))}),o.wrapperEl.addEventListener("transitionend",o.onTranslateToWrapperTransitionEnd))),!0}var Jo={getTranslate:Uo,setTranslate:Wo,minTranslate:Yo,maxTranslate:Xo,translateTo:qo};function Ko(t,e){const i=this;i.params.cssMode||(i.wrapperEl.style.transitionDuration=`${t}ms`,i.wrapperEl.style.transitionDelay=t===0?"0ms":""),i.emit("setTransition",t,e)}function ln(t){let{swiper:e,runCallbacks:i,direction:n,step:l}=t;const{activeIndex:o,previousIndex:r}=e;let s=n;if(s||(o>r?s="next":o<r?s="prev":s="reset"),e.emit(`transition${l}`),i&&o!==r){if(s==="reset"){e.emit(`slideResetTransition${l}`);return}e.emit(`slideChangeTransition${l}`),s==="next"?e.emit(`slideNextTransition${l}`):e.emit(`slidePrevTransition${l}`)}}function Qo(t,e){t===void 0&&(t=!0);const i=this,{params:n}=i;n.cssMode||(n.autoHeight&&i.updateAutoHeight(),ln({swiper:i,runCallbacks:t,direction:e,step:"Start"}))}function Zo(t,e){t===void 0&&(t=!0);const i=this,{params:n}=i;i.animating=!1,!n.cssMode&&(i.setTransition(0),ln({swiper:i,runCallbacks:t,direction:e,step:"End"}))}var $o={setTransition:Ko,transitionStart:Qo,transitionEnd:Zo};function el(t,e,i,n,l){t===void 0&&(t=0),i===void 0&&(i=!0),typeof t=="string"&&(t=parseInt(t,10));const o=this;let r=t;r<0&&(r=0);const{params:s,snapGrid:a,slidesGrid:u,previousIndex:d,activeIndex:f,rtlTranslate:v,wrapperEl:h,enabled:w}=o;if(!w&&!n&&!l||o.destroyed||o.animating&&s.preventInteractionOnTransition)return!1;typeof e>"u"&&(e=o.params.speed);const T=Math.min(o.params.slidesPerGroupSkip,r);let C=T+Math.floor((r-T)/o.params.slidesPerGroup);C>=a.length&&(C=a.length-1);const p=-a[C];if(s.normalizeSlideIndex)for(let y=0;y<u.length;y+=1){const A=-Math.floor(p*100),k=Math.floor(u[y]*100),g=Math.floor(u[y+1]*100);typeof u[y+1]<"u"?A>=k&&A<g-(g-k)/2?r=y:A>=k&&A<g&&(r=y+1):A>=k&&(r=y)}if(o.initialized&&r!==f&&(!o.allowSlideNext&&(v?p>o.translate&&p>o.minTranslate():p<o.translate&&p<o.minTranslate())||!o.allowSlidePrev&&p>o.translate&&p>o.maxTranslate()&&(f||0)!==r))return!1;r!==(d||0)&&i&&o.emit("beforeSlideChangeStart"),o.updateProgress(p);let x;if(r>f?x="next":r<f?x="prev":x="reset",v&&-p===o.translate||!v&&p===o.translate)return o.updateActiveIndex(r),s.autoHeight&&o.updateAutoHeight(),o.updateSlidesClasses(),s.effect!=="slide"&&o.setTranslate(p),x!=="reset"&&(o.transitionStart(i,x),o.transitionEnd(i,x)),!1;if(s.cssMode){const y=o.isHorizontal(),A=v?p:-p;if(e===0){const k=o.virtual&&o.params.virtual.enabled;k&&(o.wrapperEl.style.scrollSnapType="none",o._immediateVirtual=!0),k&&!o._cssModeVirtualInitialSet&&o.params.initialSlide>0?(o._cssModeVirtualInitialSet=!0,requestAnimationFrame(()=>{h[y?"scrollLeft":"scrollTop"]=A})):h[y?"scrollLeft":"scrollTop"]=A,k&&requestAnimationFrame(()=>{o.wrapperEl.style.scrollSnapType="",o._immediateVirtual=!1})}else{if(!o.support.smoothScroll)return Zi({swiper:o,targetPosition:A,side:y?"left":"top"}),!0;h.scrollTo({[y?"left":"top"]:A,behavior:"smooth"})}return!0}return o.setTransition(e),o.setTranslate(p),o.updateActiveIndex(r),o.updateSlidesClasses(),o.emit("beforeTransitionStart",e,n),o.transitionStart(i,x),e===0?o.transitionEnd(i,x):o.animating||(o.animating=!0,o.onSlideToWrapperTransitionEnd||(o.onSlideToWrapperTransitionEnd=function(A){!o||o.destroyed||A.target===this&&(o.wrapperEl.removeEventListener("transitionend",o.onSlideToWrapperTransitionEnd),o.onSlideToWrapperTransitionEnd=null,delete o.onSlideToWrapperTransitionEnd,o.transitionEnd(i,x))}),o.wrapperEl.addEventListener("transitionend",o.onSlideToWrapperTransitionEnd)),!0}function tl(t,e,i,n){t===void 0&&(t=0),i===void 0&&(i=!0),typeof t=="string"&&(t=parseInt(t,10));const l=this;if(l.destroyed)return;typeof e>"u"&&(e=l.params.speed);const o=l.grid&&l.params.grid&&l.params.grid.rows>1;let r=t;if(l.params.loop)if(l.virtual&&l.params.virtual.enabled)r=r+l.virtual.slidesBefore;else{let s;if(o){const v=r*l.params.grid.rows;s=l.slides.filter(h=>h.getAttribute("data-swiper-slide-index")*1===v)[0].column}else s=l.getSlideIndexByData(r);const a=o?Math.ceil(l.slides.length/l.params.grid.rows):l.slides.length,{centeredSlides:u}=l.params;let d=l.params.slidesPerView;d==="auto"?d=l.slidesPerViewDynamic():(d=Math.ceil(parseFloat(l.params.slidesPerView,10)),u&&d%2===0&&(d=d+1));let f=a-s<d;if(u&&(f=f||s<Math.ceil(d/2)),n&&u&&l.params.slidesPerView!=="auto"&&!o&&(f=!1),f){const v=u?s<l.activeIndex?"prev":"next":s-l.activeIndex-1<l.params.slidesPerView?"next":"prev";l.loopFix({direction:v,slideTo:!0,activeSlideIndex:v==="next"?s+1:s-a+1,slideRealIndex:v==="next"?l.realIndex:void 0})}if(o){const v=r*l.params.grid.rows;r=l.slides.filter(h=>h.getAttribute("data-swiper-slide-index")*1===v)[0].column}else r=l.getSlideIndexByData(r)}return requestAnimationFrame(()=>{l.slideTo(r,e,i,n)}),l}function il(t,e,i){e===void 0&&(e=!0);const n=this,{enabled:l,params:o,animating:r}=n;if(!l||n.destroyed)return n;typeof t>"u"&&(t=n.params.speed);let s=o.slidesPerGroup;o.slidesPerView==="auto"&&o.slidesPerGroup===1&&o.slidesPerGroupAuto&&(s=Math.max(n.slidesPerViewDynamic("current",!0),1));const a=n.activeIndex<o.slidesPerGroupSkip?1:s,u=n.virtual&&o.virtual.enabled;if(o.loop){if(r&&!u&&o.loopPreventsSliding)return!1;if(n.loopFix({direction:"next"}),n._clientLeft=n.wrapperEl.clientLeft,n.activeIndex===n.slides.length-1&&o.cssMode)return requestAnimationFrame(()=>{n.slideTo(n.activeIndex+a,t,e,i)}),!0}return o.rewind&&n.isEnd?n.slideTo(0,t,e,i):n.slideTo(n.activeIndex+a,t,e,i)}function nl(t,e,i){e===void 0&&(e=!0);const n=this,{params:l,snapGrid:o,slidesGrid:r,rtlTranslate:s,enabled:a,animating:u}=n;if(!a||n.destroyed)return n;typeof t>"u"&&(t=n.params.speed);const d=n.virtual&&l.virtual.enabled;if(l.loop){if(u&&!d&&l.loopPreventsSliding)return!1;n.loopFix({direction:"prev"}),n._clientLeft=n.wrapperEl.clientLeft}const f=s?n.translate:-n.translate;function v(p){return p<0?-Math.floor(Math.abs(p)):Math.floor(p)}const h=v(f),w=o.map(p=>v(p));let T=o[w.indexOf(h)-1];if(typeof T>"u"&&l.cssMode){let p;o.forEach((x,y)=>{h>=x&&(p=y)}),typeof p<"u"&&(T=o[p>0?p-1:p])}let C=0;if(typeof T<"u"&&(C=r.indexOf(T),C<0&&(C=n.activeIndex-1),l.slidesPerView==="auto"&&l.slidesPerGroup===1&&l.slidesPerGroupAuto&&(C=C-n.slidesPerViewDynamic("previous",!0)+1,C=Math.max(C,0))),l.rewind&&n.isBeginning){const p=n.params.virtual&&n.params.virtual.enabled&&n.virtual?n.virtual.slides.length-1:n.slides.length-1;return n.slideTo(p,t,e,i)}else if(l.loop&&n.activeIndex===0&&l.cssMode)return requestAnimationFrame(()=>{n.slideTo(C,t,e,i)}),!0;return n.slideTo(C,t,e,i)}function ol(t,e,i){e===void 0&&(e=!0);const n=this;if(!n.destroyed)return typeof t>"u"&&(t=n.params.speed),n.slideTo(n.activeIndex,t,e,i)}function ll(t,e,i,n){e===void 0&&(e=!0),n===void 0&&(n=.5);const l=this;if(l.destroyed)return;typeof t>"u"&&(t=l.params.speed);let o=l.activeIndex;const r=Math.min(l.params.slidesPerGroupSkip,o),s=r+Math.floor((o-r)/l.params.slidesPerGroup),a=l.rtlTranslate?l.translate:-l.translate;if(a>=l.snapGrid[s]){const u=l.snapGrid[s],d=l.snapGrid[s+1];a-u>(d-u)*n&&(o+=l.params.slidesPerGroup)}else{const u=l.snapGrid[s-1],d=l.snapGrid[s];a-u<=(d-u)*n&&(o-=l.params.slidesPerGroup)}return o=Math.max(o,0),o=Math.min(o,l.slidesGrid.length-1),l.slideTo(o,t,e,i)}function al(){const t=this;if(t.destroyed)return;const{params:e,slidesEl:i}=t,n=e.slidesPerView==="auto"?t.slidesPerViewDynamic():e.slidesPerView;let l=t.clickedIndex,o;const r=t.isElement?"swiper-slide":`.${e.slideClass}`;if(e.loop){if(t.animating)return;o=parseInt(t.clickedSlide.getAttribute("data-swiper-slide-index"),10),e.centeredSlides?l<t.loopedSlides-n/2||l>t.slides.length-t.loopedSlides+n/2?(t.loopFix(),l=t.getSlideIndex(yt(i,`${r}[data-swiper-slide-index="${o}"]`)[0]),_t(()=>{t.slideTo(l)})):t.slideTo(l):l>t.slides.length-n?(t.loopFix(),l=t.getSlideIndex(yt(i,`${r}[data-swiper-slide-index="${o}"]`)[0]),_t(()=>{t.slideTo(l)})):t.slideTo(l)}else t.slideTo(l)}var rl={slideTo:el,slideToLoop:tl,slideNext:il,slidePrev:nl,slideReset:ol,slideToClosest:ll,slideToClickedSlide:al};function sl(t){const e=this,{params:i,slidesEl:n}=e;if(!i.loop||e.virtual&&e.params.virtual.enabled)return;const l=()=>{yt(n,`.${i.slideClass}, swiper-slide`).forEach((f,v)=>{f.setAttribute("data-swiper-slide-index",v)})},o=e.grid&&i.grid&&i.grid.rows>1,r=i.slidesPerGroup*(o?i.grid.rows:1),s=e.slides.length%r!==0,a=o&&e.slides.length%i.grid.rows!==0,u=d=>{for(let f=0;f<d;f+=1){const v=e.isElement?Bt("swiper-slide",[i.slideBlankClass]):Bt("div",[i.slideClass,i.slideBlankClass]);e.slidesEl.append(v)}};if(s){if(i.loopAddBlankSlides){const d=r-e.slides.length%r;u(d),e.recalcSlides(),e.updateSlides()}else Kt("Swiper Loop Warning: The number of slides is not even to slidesPerGroup, loop mode may not function properly. You need to add more slides (or make duplicates, or empty slides)");l()}else if(a){if(i.loopAddBlankSlides){const d=i.grid.rows-e.slides.length%i.grid.rows;u(d),e.recalcSlides(),e.updateSlides()}else Kt("Swiper Loop Warning: The number of slides is not even to grid.rows, loop mode may not function properly. You need to add more slides (or make duplicates, or empty slides)");l()}else l();e.loopFix({slideRealIndex:t,direction:i.centeredSlides?void 0:"next"})}function dl(t){let{slideRealIndex:e,slideTo:i=!0,direction:n,setTranslate:l,activeSlideIndex:o,byController:r,byMousewheel:s}=t===void 0?{}:t;const a=this;if(!a.params.loop)return;a.emit("beforeLoopFix");const{slides:u,allowSlidePrev:d,allowSlideNext:f,slidesEl:v,params:h}=a,{centeredSlides:w}=h;if(a.allowSlidePrev=!0,a.allowSlideNext=!0,a.virtual&&h.virtual.enabled){i&&(!h.centeredSlides&&a.snapIndex===0?a.slideTo(a.virtual.slides.length,0,!1,!0):h.centeredSlides&&a.snapIndex<h.slidesPerView?a.slideTo(a.virtual.slides.length+a.snapIndex,0,!1,!0):a.snapIndex===a.snapGrid.length-1&&a.slideTo(a.virtual.slidesBefore,0,!1,!0)),a.allowSlidePrev=d,a.allowSlideNext=f,a.emit("loopFix");return}let T=h.slidesPerView;T==="auto"?T=a.slidesPerViewDynamic():(T=Math.ceil(parseFloat(h.slidesPerView,10)),w&&T%2===0&&(T=T+1));const C=h.slidesPerGroupAuto?T:h.slidesPerGroup;let p=C;p%C!==0&&(p+=C-p%C),p+=h.loopAdditionalSlides,a.loopedSlides=p;const x=a.grid&&h.grid&&h.grid.rows>1;u.length<T+p?Kt("Swiper Loop Warning: The number of slides is not enough for loop mode, it will be disabled and not function properly. You need to add more slides (or make duplicates) or lower the values of slidesPerView and slidesPerGroup parameters"):x&&h.grid.fill==="row"&&Kt("Swiper Loop Warning: Loop mode is not compatible with grid.fill = `row`");const y=[],A=[];let k=a.activeIndex;typeof o>"u"?o=a.getSlideIndex(u.filter(I=>I.classList.contains(h.slideActiveClass))[0]):k=o;const g=n==="next"||!n,L=n==="prev"||!n;let M=0,S=0;const c=x?Math.ceil(u.length/h.grid.rows):u.length,b=(x?u[o].column:o)+(w&&typeof l>"u"?-T/2+.5:0);if(b<p){M=Math.max(p-b,C);for(let I=0;I<p-b;I+=1){const D=I-Math.floor(I/c)*c;if(x){const P=c-D-1;for(let N=u.length-1;N>=0;N-=1)u[N].column===P&&y.push(N)}else y.push(c-D-1)}}else if(b+T>c-p){S=Math.max(b-(c-p*2),C);for(let I=0;I<S;I+=1){const D=I-Math.floor(I/c)*c;x?u.forEach((P,N)=>{P.column===D&&A.push(N)}):A.push(D)}}if(a.__preventObserver__=!0,requestAnimationFrame(()=>{a.__preventObserver__=!1}),L&&y.forEach(I=>{u[I].swiperLoopMoveDOM=!0,v.prepend(u[I]),u[I].swiperLoopMoveDOM=!1}),g&&A.forEach(I=>{u[I].swiperLoopMoveDOM=!0,v.append(u[I]),u[I].swiperLoopMoveDOM=!1}),a.recalcSlides(),h.slidesPerView==="auto"?a.updateSlides():x&&(y.length>0&&L||A.length>0&&g)&&a.slides.forEach((I,D)=>{a.grid.updateSlide(D,I,a.slides)}),h.watchSlidesProgress&&a.updateSlidesOffset(),i){if(y.length>0&&L){if(typeof e>"u"){const I=a.slidesGrid[k],P=a.slidesGrid[k+M]-I;s?a.setTranslate(a.translate-P):(a.slideTo(k+Math.ceil(M),0,!1,!0),l&&(a.touchEventsData.startTranslate=a.touchEventsData.startTranslate-P,a.touchEventsData.currentTranslate=a.touchEventsData.currentTranslate-P))}else if(l){const I=x?y.length/h.grid.rows:y.length;a.slideTo(a.activeIndex+I,0,!1,!0),a.touchEventsData.currentTranslate=a.translate}}else if(A.length>0&&g)if(typeof e>"u"){const I=a.slidesGrid[k],P=a.slidesGrid[k-S]-I;s?a.setTranslate(a.translate-P):(a.slideTo(k-S,0,!1,!0),l&&(a.touchEventsData.startTranslate=a.touchEventsData.startTranslate-P,a.touchEventsData.currentTranslate=a.touchEventsData.currentTranslate-P))}else{const I=x?A.length/h.grid.rows:A.length;a.slideTo(a.activeIndex-I,0,!1,!0)}}if(a.allowSlidePrev=d,a.allowSlideNext=f,a.controller&&a.controller.control&&!r){const I={slideRealIndex:e,direction:n,setTranslate:l,activeSlideIndex:o,byController:!0};Array.isArray(a.controller.control)?a.controller.control.forEach(D=>{!D.destroyed&&D.params.loop&&D.loopFix({...I,slideTo:D.params.slidesPerView===h.slidesPerView?i:!1})}):a.controller.control instanceof a.constructor&&a.controller.control.params.loop&&a.controller.control.loopFix({...I,slideTo:a.controller.control.params.slidesPerView===h.slidesPerView?i:!1})}a.emit("loopFix")}function cl(){const t=this,{params:e,slidesEl:i}=t;if(!e.loop||t.virtual&&t.params.virtual.enabled)return;t.recalcSlides();const n=[];t.slides.forEach(l=>{const o=typeof l.swiperSlideIndex>"u"?l.getAttribute("data-swiper-slide-index")*1:l.swiperSlideIndex;n[o]=l}),t.slides.forEach(l=>{l.removeAttribute("data-swiper-slide-index")}),n.forEach(l=>{i.append(l)}),t.recalcSlides(),t.slideTo(t.realIndex,0)}var ul={loopCreate:sl,loopFix:dl,loopDestroy:cl};function pl(t){const e=this;if(!e.params.simulateTouch||e.params.watchOverflow&&e.isLocked||e.params.cssMode)return;const i=e.params.touchEventsTarget==="container"?e.el:e.wrapperEl;e.isElement&&(e.__preventObserver__=!0),i.style.cursor="move",i.style.cursor=t?"grabbing":"grab",e.isElement&&requestAnimationFrame(()=>{e.__preventObserver__=!1})}function vl(){const t=this;t.params.watchOverflow&&t.isLocked||t.params.cssMode||(t.isElement&&(t.__preventObserver__=!0),t[t.params.touchEventsTarget==="container"?"el":"wrapperEl"].style.cursor="",t.isElement&&requestAnimationFrame(()=>{t.__preventObserver__=!1}))}var ml={setGrabCursor:pl,unsetGrabCursor:vl};function fl(t,e){e===void 0&&(e=this);function i(n){if(!n||n===gt()||n===ot())return null;n.assignedSlot&&(n=n.assignedSlot);const l=n.closest(t);return!l&&!n.getRootNode?null:l||i(n.getRootNode().host)}return i(e)}function an(t,e,i){const n=ot(),{params:l}=t,o=l.edgeSwipeDetection,r=l.edgeSwipeThreshold;return o&&(i<=r||i>=n.innerWidth-r)?o==="prevent"?(e.preventDefault(),!0):!1:!0}function hl(t){const e=this,i=gt();let n=t;n.originalEvent&&(n=n.originalEvent);const l=e.touchEventsData;if(n.type==="pointerdown"){if(l.pointerId!==null&&l.pointerId!==n.pointerId)return;l.pointerId=n.pointerId}else n.type==="touchstart"&&n.targetTouches.length===1&&(l.touchId=n.targetTouches[0].identifier);if(n.type==="touchstart"){an(e,n,n.targetTouches[0].pageX);return}const{params:o,touches:r,enabled:s}=e;if(!s||!o.simulateTouch&&n.pointerType==="mouse"||e.animating&&o.preventInteractionOnTransition)return;!e.animating&&o.cssMode&&o.loop&&e.loopFix();let a=n.target;if(o.touchEventsTarget==="wrapper"&&!e.wrapperEl.contains(a)||"which"in n&&n.which===3||"button"in n&&n.button>0||l.isTouched&&l.isMoved)return;const u=!!o.noSwipingClass&&o.noSwipingClass!=="",d=n.composedPath?n.composedPath():n.path;u&&n.target&&n.target.shadowRoot&&d&&(a=d[0]);const f=o.noSwipingSelector?o.noSwipingSelector:`.${o.noSwipingClass}`,v=!!(n.target&&n.target.shadowRoot);if(o.noSwiping&&(v?fl(f,a):a.closest(f))){e.allowClick=!0;return}if(o.swipeHandler&&!a.closest(o.swipeHandler))return;r.currentX=n.pageX,r.currentY=n.pageY;const h=r.currentX,w=r.currentY;if(!an(e,n,h))return;Object.assign(l,{isTouched:!0,isMoved:!1,allowTouchCallbacks:!0,isScrolling:void 0,startMoving:void 0}),r.startX=h,r.startY=w,l.touchStartTime=ut(),e.allowClick=!0,e.updateSize(),e.swipeDirection=void 0,o.threshold>0&&(l.allowThresholdMove=!1);let T=!0;a.matches(l.focusableElements)&&(T=!1,a.nodeName==="SELECT"&&(l.isTouched=!1)),i.activeElement&&i.activeElement.matches(l.focusableElements)&&i.activeElement!==a&&i.activeElement.blur();const C=T&&e.allowTouchMove&&o.touchStartPreventDefault;(o.touchStartForcePreventDefault||C)&&!a.isContentEditable&&n.preventDefault(),o.freeMode&&o.freeMode.enabled&&e.freeMode&&e.animating&&!o.cssMode&&e.freeMode.onTouchStart(),e.emit("touchStart",n)}function gl(t){const e=gt(),i=this,n=i.touchEventsData,{params:l,touches:o,rtlTranslate:r,enabled:s}=i;if(!s||!l.simulateTouch&&t.pointerType==="mouse")return;let a=t;if(a.originalEvent&&(a=a.originalEvent),a.type==="pointermove"&&(n.touchId!==null||a.pointerId!==n.pointerId))return;let u;if(a.type==="touchmove"){if(u=[...a.changedTouches].filter(g=>g.identifier===n.touchId)[0],!u||u.identifier!==n.touchId)return}else u=a;if(!n.isTouched){n.startMoving&&n.isScrolling&&i.emit("touchMoveOpposite",a);return}const d=u.pageX,f=u.pageY;if(a.preventedByNestedSwiper){o.startX=d,o.startY=f;return}if(!i.allowTouchMove){a.target.matches(n.focusableElements)||(i.allowClick=!1),n.isTouched&&(Object.assign(o,{startX:d,startY:f,currentX:d,currentY:f}),n.touchStartTime=ut());return}if(l.touchReleaseOnEdges&&!l.loop){if(i.isVertical()){if(f<o.startY&&i.translate<=i.maxTranslate()||f>o.startY&&i.translate>=i.minTranslate()){n.isTouched=!1,n.isMoved=!1;return}}else if(d<o.startX&&i.translate<=i.maxTranslate()||d>o.startX&&i.translate>=i.minTranslate())return}if(e.activeElement&&a.target===e.activeElement&&a.target.matches(n.focusableElements)){n.isMoved=!0,i.allowClick=!1;return}n.allowTouchCallbacks&&i.emit("touchMove",a),o.previousX=o.currentX,o.previousY=o.currentY,o.currentX=d,o.currentY=f;const v=o.currentX-o.startX,h=o.currentY-o.startY;if(i.params.threshold&&Math.sqrt(v**2+h**2)<i.params.threshold)return;if(typeof n.isScrolling>"u"){let g;i.isHorizontal()&&o.currentY===o.startY||i.isVertical()&&o.currentX===o.startX?n.isScrolling=!1:v*v+h*h>=25&&(g=Math.atan2(Math.abs(h),Math.abs(v))*180/Math.PI,n.isScrolling=i.isHorizontal()?g>l.touchAngle:90-g>l.touchAngle)}if(n.isScrolling&&i.emit("touchMoveOpposite",a),typeof n.startMoving>"u"&&(o.currentX!==o.startX||o.currentY!==o.startY)&&(n.startMoving=!0),n.isScrolling||a.type==="touchmove"&&n.preventTouchMoveFromPointerMove){n.isTouched=!1;return}if(!n.startMoving)return;i.allowClick=!1,!l.cssMode&&a.cancelable&&a.preventDefault(),l.touchMoveStopPropagation&&!l.nested&&a.stopPropagation();let w=i.isHorizontal()?v:h,T=i.isHorizontal()?o.currentX-o.previousX:o.currentY-o.previousY;l.oneWayMovement&&(w=Math.abs(w)*(r?1:-1),T=Math.abs(T)*(r?1:-1)),o.diff=w,w*=l.touchRatio,r&&(w=-w,T=-T);const C=i.touchesDirection;i.swipeDirection=w>0?"prev":"next",i.touchesDirection=T>0?"prev":"next";const p=i.params.loop&&!l.cssMode,x=i.touchesDirection==="next"&&i.allowSlideNext||i.touchesDirection==="prev"&&i.allowSlidePrev;if(!n.isMoved){if(p&&x&&i.loopFix({direction:i.swipeDirection}),n.startTranslate=i.getTranslate(),i.setTransition(0),i.animating){const g=new window.CustomEvent("transitionend",{bubbles:!0,cancelable:!0,detail:{bySwiperTouchMove:!0}});i.wrapperEl.dispatchEvent(g)}n.allowMomentumBounce=!1,l.grabCursor&&(i.allowSlideNext===!0||i.allowSlidePrev===!0)&&i.setGrabCursor(!0),i.emit("sliderFirstMove",a)}let y;if(new Date().getTime(),n.isMoved&&n.allowThresholdMove&&C!==i.touchesDirection&&p&&x&&Math.abs(w)>=1){Object.assign(o,{startX:d,startY:f,currentX:d,currentY:f,startTranslate:n.currentTranslate}),n.loopSwapReset=!0,n.startTranslate=n.currentTranslate;return}i.emit("sliderMove",a),n.isMoved=!0,n.currentTranslate=w+n.startTranslate;let A=!0,k=l.resistanceRatio;if(l.touchReleaseOnEdges&&(k=0),w>0?(p&&x&&!y&&n.allowThresholdMove&&n.currentTranslate>(l.centeredSlides?i.minTranslate()-i.slidesSizesGrid[i.activeIndex+1]:i.minTranslate())&&i.loopFix({direction:"prev",setTranslate:!0,activeSlideIndex:0}),n.currentTranslate>i.minTranslate()&&(A=!1,l.resistance&&(n.currentTranslate=i.minTranslate()-1+(-i.minTranslate()+n.startTranslate+w)**k))):w<0&&(p&&x&&!y&&n.allowThresholdMove&&n.currentTranslate<(l.centeredSlides?i.maxTranslate()+i.slidesSizesGrid[i.slidesSizesGrid.length-1]:i.maxTranslate())&&i.loopFix({direction:"next",setTranslate:!0,activeSlideIndex:i.slides.length-(l.slidesPerView==="auto"?i.slidesPerViewDynamic():Math.ceil(parseFloat(l.slidesPerView,10)))}),n.currentTranslate<i.maxTranslate()&&(A=!1,l.resistance&&(n.currentTranslate=i.maxTranslate()+1-(i.maxTranslate()-n.startTranslate-w)**k))),A&&(a.preventedByNestedSwiper=!0),!i.allowSlideNext&&i.swipeDirection==="next"&&n.currentTranslate<n.startTranslate&&(n.currentTranslate=n.startTranslate),!i.allowSlidePrev&&i.swipeDirection==="prev"&&n.currentTranslate>n.startTranslate&&(n.currentTranslate=n.startTranslate),!i.allowSlidePrev&&!i.allowSlideNext&&(n.currentTranslate=n.startTranslate),l.threshold>0)if(Math.abs(w)>l.threshold||n.allowThresholdMove){if(!n.allowThresholdMove){n.allowThresholdMove=!0,o.startX=o.currentX,o.startY=o.currentY,n.currentTranslate=n.startTranslate,o.diff=i.isHorizontal()?o.currentX-o.startX:o.currentY-o.startY;return}}else{n.currentTranslate=n.startTranslate;return}!l.followFinger||l.cssMode||((l.freeMode&&l.freeMode.enabled&&i.freeMode||l.watchSlidesProgress)&&(i.updateActiveIndex(),i.updateSlidesClasses()),l.freeMode&&l.freeMode.enabled&&i.freeMode&&i.freeMode.onTouchMove(),i.updateProgress(n.currentTranslate),i.setTranslate(n.currentTranslate))}function bl(t){const e=this,i=e.touchEventsData;let n=t;n.originalEvent&&(n=n.originalEvent);let l;if(n.type==="touchend"||n.type==="touchcancel"){if(l=[...n.changedTouches].filter(k=>k.identifier===i.touchId)[0],!l||l.identifier!==i.touchId)return}else{if(i.touchId!==null||n.pointerId!==i.pointerId)return;l=n}if(["pointercancel","pointerout","pointerleave","contextmenu"].includes(n.type)&&!(["pointercancel","contextmenu"].includes(n.type)&&(e.browser.isSafari||e.browser.isWebView)))return;i.pointerId=null,i.touchId=null;const{params:r,touches:s,rtlTranslate:a,slidesGrid:u,enabled:d}=e;if(!d||!r.simulateTouch&&n.pointerType==="mouse")return;if(i.allowTouchCallbacks&&e.emit("touchEnd",n),i.allowTouchCallbacks=!1,!i.isTouched){i.isMoved&&r.grabCursor&&e.setGrabCursor(!1),i.isMoved=!1,i.startMoving=!1;return}r.grabCursor&&i.isMoved&&i.isTouched&&(e.allowSlideNext===!0||e.allowSlidePrev===!0)&&e.setGrabCursor(!1);const f=ut(),v=f-i.touchStartTime;if(e.allowClick){const k=n.path||n.composedPath&&n.composedPath();e.updateClickedSlide(k&&k[0]||n.target,k),e.emit("tap click",n),v<300&&f-i.lastClickTime<300&&e.emit("doubleTap doubleClick",n)}if(i.lastClickTime=ut(),_t(()=>{e.destroyed||(e.allowClick=!0)}),!i.isTouched||!i.isMoved||!e.swipeDirection||s.diff===0&&!i.loopSwapReset||i.currentTranslate===i.startTranslate&&!i.loopSwapReset){i.isTouched=!1,i.isMoved=!1,i.startMoving=!1;return}i.isTouched=!1,i.isMoved=!1,i.startMoving=!1;let h;if(r.followFinger?h=a?e.translate:-e.translate:h=-i.currentTranslate,r.cssMode)return;if(r.freeMode&&r.freeMode.enabled){e.freeMode.onTouchEnd({currentPos:h});return}const w=h>=-e.maxTranslate()&&!e.params.loop;let T=0,C=e.slidesSizesGrid[0];for(let k=0;k<u.length;k+=k<r.slidesPerGroupSkip?1:r.slidesPerGroup){const g=k<r.slidesPerGroupSkip-1?1:r.slidesPerGroup;typeof u[k+g]<"u"?(w||h>=u[k]&&h<u[k+g])&&(T=k,C=u[k+g]-u[k]):(w||h>=u[k])&&(T=k,C=u[u.length-1]-u[u.length-2])}let p=null,x=null;r.rewind&&(e.isBeginning?x=r.virtual&&r.virtual.enabled&&e.virtual?e.virtual.slides.length-1:e.slides.length-1:e.isEnd&&(p=0));const y=(h-u[T])/C,A=T<r.slidesPerGroupSkip-1?1:r.slidesPerGroup;if(v>r.longSwipesMs){if(!r.longSwipes){e.slideTo(e.activeIndex);return}e.swipeDirection==="next"&&(y>=r.longSwipesRatio?e.slideTo(r.rewind&&e.isEnd?p:T+A):e.slideTo(T)),e.swipeDirection==="prev"&&(y>1-r.longSwipesRatio?e.slideTo(T+A):x!==null&&y<0&&Math.abs(y)>r.longSwipesRatio?e.slideTo(x):e.slideTo(T))}else{if(!r.shortSwipes){e.slideTo(e.activeIndex);return}e.navigation&&(n.target===e.navigation.nextEl||n.target===e.navigation.prevEl)?n.target===e.navigation.nextEl?e.slideTo(T+A):e.slideTo(T):(e.swipeDirection==="next"&&e.slideTo(p!==null?p:T+A),e.swipeDirection==="prev"&&e.slideTo(x!==null?x:T))}}function rn(){const t=this,{params:e,el:i}=t;if(i&&i.offsetWidth===0)return;e.breakpoints&&t.setBreakpoint();const{allowSlideNext:n,allowSlidePrev:l,snapGrid:o}=t,r=t.virtual&&t.params.virtual.enabled;t.allowSlideNext=!0,t.allowSlidePrev=!0,t.updateSize(),t.updateSlides(),t.updateSlidesClasses();const s=r&&e.loop;(e.slidesPerView==="auto"||e.slidesPerView>1)&&t.isEnd&&!t.isBeginning&&!t.params.centeredSlides&&!s?t.slideTo(t.slides.length-1,0,!1,!0):t.params.loop&&!r?t.slideToLoop(t.realIndex,0,!1,!0):t.slideTo(t.activeIndex,0,!1,!0),t.autoplay&&t.autoplay.running&&t.autoplay.paused&&(clearTimeout(t.autoplay.resizeTimeout),t.autoplay.resizeTimeout=setTimeout(()=>{t.autoplay&&t.autoplay.running&&t.autoplay.paused&&t.autoplay.resume()},500)),t.allowSlidePrev=l,t.allowSlideNext=n,t.params.watchOverflow&&o!==t.snapGrid&&t.checkOverflow()}function yl(t){const e=this;e.enabled&&(e.allowClick||(e.params.preventClicks&&t.preventDefault(),e.params.preventClicksPropagation&&e.animating&&(t.stopPropagation(),t.stopImmediatePropagation())))}function wl(){const t=this,{wrapperEl:e,rtlTranslate:i,enabled:n}=t;if(!n)return;t.previousTranslate=t.translate,t.isHorizontal()?t.translate=-e.scrollLeft:t.translate=-e.scrollTop,t.translate===0&&(t.translate=0),t.updateActiveIndex(),t.updateSlidesClasses();let l;const o=t.maxTranslate()-t.minTranslate();o===0?l=0:l=(t.translate-t.minTranslate())/o,l!==t.progress&&t.updateProgress(i?-t.translate:t.translate),t.emit("setTranslate",t.translate,!1)}function Sl(t){const e=this;ei(e,t.target),!(e.params.cssMode||e.params.slidesPerView!=="auto"&&!e.params.autoHeight)&&e.update()}function Tl(){const t=this;t.documentTouchHandlerProceeded||(t.documentTouchHandlerProceeded=!0,t.params.touchReleaseOnEdges&&(t.el.style.touchAction="auto"))}const sn=(t,e)=>{const i=gt(),{params:n,el:l,wrapperEl:o,device:r}=t,s=!!n.nested,a=e==="on"?"addEventListener":"removeEventListener",u=e;!l||typeof l=="string"||(i[a]("touchstart",t.onDocumentTouchStart,{passive:!1,capture:s}),l[a]("touchstart",t.onTouchStart,{passive:!1}),l[a]("pointerdown",t.onTouchStart,{passive:!1}),i[a]("touchmove",t.onTouchMove,{passive:!1,capture:s}),i[a]("pointermove",t.onTouchMove,{passive:!1,capture:s}),i[a]("touchend",t.onTouchEnd,{passive:!0}),i[a]("pointerup",t.onTouchEnd,{passive:!0}),i[a]("pointercancel",t.onTouchEnd,{passive:!0}),i[a]("touchcancel",t.onTouchEnd,{passive:!0}),i[a]("pointerout",t.onTouchEnd,{passive:!0}),i[a]("pointerleave",t.onTouchEnd,{passive:!0}),i[a]("contextmenu",t.onTouchEnd,{passive:!0}),(n.preventClicks||n.preventClicksPropagation)&&l[a]("click",t.onClick,!0),n.cssMode&&o[a]("scroll",t.onScroll),n.updateOnWindowResize?t[u](r.ios||r.android?"resize orientationchange observerUpdate":"resize observerUpdate",rn,!0):t[u]("observerUpdate",rn,!0),l[a]("load",t.onLoad,{capture:!0}))};function xl(){const t=this,{params:e}=t;t.onTouchStart=hl.bind(t),t.onTouchMove=gl.bind(t),t.onTouchEnd=bl.bind(t),t.onDocumentTouchStart=Tl.bind(t),e.cssMode&&(t.onScroll=wl.bind(t)),t.onClick=yl.bind(t),t.onLoad=Sl.bind(t),sn(t,"on")}function Al(){sn(this,"off")}var El={attachEvents:xl,detachEvents:Al};const dn=(t,e)=>t.grid&&e.grid&&e.grid.rows>1;function Cl(){const t=this,{realIndex:e,initialized:i,params:n,el:l}=t,o=n.breakpoints;if(!o||o&&Object.keys(o).length===0)return;const r=t.getBreakpoint(o,t.params.breakpointsBase,t.el);if(!r||t.currentBreakpoint===r)return;const a=(r in o?o[r]:void 0)||t.originalParams,u=dn(t,n),d=dn(t,a),f=t.params.grabCursor,v=a.grabCursor,h=n.enabled;u&&!d?(l.classList.remove(`${n.containerModifierClass}grid`,`${n.containerModifierClass}grid-column`),t.emitContainerClasses()):!u&&d&&(l.classList.add(`${n.containerModifierClass}grid`),(a.grid.fill&&a.grid.fill==="column"||!a.grid.fill&&n.grid.fill==="column")&&l.classList.add(`${n.containerModifierClass}grid-column`),t.emitContainerClasses()),f&&!v?t.unsetGrabCursor():!f&&v&&t.setGrabCursor(),["navigation","pagination","scrollbar"].forEach(y=>{if(typeof a[y]>"u")return;const A=n[y]&&n[y].enabled,k=a[y]&&a[y].enabled;A&&!k&&t[y].disable(),!A&&k&&t[y].enable()});const w=a.direction&&a.direction!==n.direction,T=n.loop&&(a.slidesPerView!==n.slidesPerView||w),C=n.loop;w&&i&&t.changeDirection(),st(t.params,a);const p=t.params.enabled,x=t.params.loop;Object.assign(t,{allowTouchMove:t.params.allowTouchMove,allowSlideNext:t.params.allowSlideNext,allowSlidePrev:t.params.allowSlidePrev}),h&&!p?t.disable():!h&&p&&t.enable(),t.currentBreakpoint=r,t.emit("_beforeBreakpoint",a),i&&(T?(t.loopDestroy(),t.loopCreate(e),t.updateSlides()):!C&&x?(t.loopCreate(e),t.updateSlides()):C&&!x&&t.loopDestroy()),t.emit("breakpoint",a)}function Il(t,e,i){if(e===void 0&&(e="window"),!t||e==="container"&&!i)return;let n=!1;const l=ot(),o=e==="window"?l.innerHeight:i.clientHeight,r=Object.keys(t).map(s=>{if(typeof s=="string"&&s.indexOf("@")===0){const a=parseFloat(s.substr(1));return{value:o*a,point:s}}return{value:s,point:s}});r.sort((s,a)=>parseInt(s.value,10)-parseInt(a.value,10));for(let s=0;s<r.length;s+=1){const{point:a,value:u}=r[s];e==="window"?l.matchMedia(`(min-width: ${u}px)`).matches&&(n=a):u<=i.clientWidth&&(n=a)}return n||"max"}var kl={setBreakpoint:Cl,getBreakpoint:Il};function _l(t,e){const i=[];return t.forEach(n=>{typeof n=="object"?Object.keys(n).forEach(l=>{n[l]&&i.push(e+l)}):typeof n=="string"&&i.push(e+n)}),i}function Pl(){const t=this,{classNames:e,params:i,rtl:n,el:l,device:o}=t,r=_l(["initialized",i.direction,{"free-mode":t.params.freeMode&&i.freeMode.enabled},{autoheight:i.autoHeight},{rtl:n},{grid:i.grid&&i.grid.rows>1},{"grid-column":i.grid&&i.grid.rows>1&&i.grid.fill==="column"},{android:o.android},{ios:o.ios},{"css-mode":i.cssMode},{centered:i.cssMode&&i.centeredSlides},{"watch-progress":i.watchSlidesProgress}],i.containerModifierClass);e.push(...r),l.classList.add(...e),t.emitContainerClasses()}function Dl(){const t=this,{el:e,classNames:i}=t;!e||typeof e=="string"||(e.classList.remove(...i),t.emitContainerClasses())}var Ol={addClasses:Pl,removeClasses:Dl};function Ml(){const t=this,{isLocked:e,params:i}=t,{slidesOffsetBefore:n}=i;if(n){const l=t.slides.length-1,o=t.slidesGrid[l]+t.slidesSizesGrid[l]+n*2;t.isLocked=t.size>o}else t.isLocked=t.snapGrid.length===1;i.allowSlideNext===!0&&(t.allowSlideNext=!t.isLocked),i.allowSlidePrev===!0&&(t.allowSlidePrev=!t.isLocked),e&&e!==t.isLocked&&(t.isEnd=!1),e!==t.isLocked&&t.emit(t.isLocked?"lock":"unlock")}var Ll={checkOverflow:Ml},wi={init:!0,direction:"horizontal",oneWayMovement:!1,swiperElementNodeName:"SWIPER-CONTAINER",touchEventsTarget:"wrapper",initialSlide:0,speed:300,cssMode:!1,updateOnWindowResize:!0,resizeObserver:!0,nested:!1,createElements:!1,eventsPrefix:"swiper",enabled:!0,focusableElements:"input, select, option, textarea, button, video, label",width:null,height:null,preventInteractionOnTransition:!1,userAgent:null,url:null,edgeSwipeDetection:!1,edgeSwipeThreshold:20,autoHeight:!1,setWrapperSize:!1,virtualTranslate:!1,effect:"slide",breakpoints:void 0,breakpointsBase:"window",spaceBetween:0,slidesPerView:1,slidesPerGroup:1,slidesPerGroupSkip:0,slidesPerGroupAuto:!1,centeredSlides:!1,centeredSlidesBounds:!1,slidesOffsetBefore:0,slidesOffsetAfter:0,normalizeSlideIndex:!0,centerInsufficientSlides:!1,watchOverflow:!0,roundLengths:!1,touchRatio:1,touchAngle:45,simulateTouch:!0,shortSwipes:!0,longSwipes:!0,longSwipesRatio:.5,longSwipesMs:300,followFinger:!0,allowTouchMove:!0,threshold:5,touchMoveStopPropagation:!1,touchStartPreventDefault:!0,touchStartForcePreventDefault:!1,touchReleaseOnEdges:!1,uniqueNavElements:!0,resistance:!0,resistanceRatio:.85,watchSlidesProgress:!1,grabCursor:!1,preventClicks:!0,preventClicksPropagation:!0,slideToClickedSlide:!1,loop:!1,loopAddBlankSlides:!0,loopAdditionalSlides:0,loopPreventsSliding:!0,rewind:!1,allowSlidePrev:!0,allowSlideNext:!0,swipeHandler:null,noSwiping:!0,noSwipingClass:"swiper-no-swiping",noSwipingSelector:null,passiveListeners:!0,maxBackfaceHiddenSlides:10,containerModifierClass:"swiper-",slideClass:"swiper-slide",slideBlankClass:"swiper-slide-blank",slideActiveClass:"swiper-slide-active",slideVisibleClass:"swiper-slide-visible",slideFullyVisibleClass:"swiper-slide-fully-visible",slideNextClass:"swiper-slide-next",slidePrevClass:"swiper-slide-prev",wrapperClass:"swiper-wrapper",lazyPreloaderClass:"swiper-lazy-preloader",lazyPreloadPrevNext:0,runCallbacksOnInit:!0,_emitClasses:!1};function Rl(t,e){return function(n){n===void 0&&(n={});const l=Object.keys(n)[0],o=n[l];if(typeof o!="object"||o===null){st(e,n);return}if(t[l]===!0&&(t[l]={enabled:!0}),l==="navigation"&&t[l]&&t[l].enabled&&!t[l].prevEl&&!t[l].nextEl&&(t[l].auto=!0),["pagination","scrollbar"].indexOf(l)>=0&&t[l]&&t[l].enabled&&!t[l].el&&(t[l].auto=!0),!(l in t&&"enabled"in o)){st(e,n);return}typeof t[l]=="object"&&!("enabled"in t[l])&&(t[l].enabled=!0),t[l]||(t[l]={enabled:!1}),st(e,n)}}const Si={eventsEmitter:Oo,update:Go,translate:Jo,transition:$o,slide:rl,loop:ul,grabCursor:ml,events:El,breakpoints:kl,checkOverflow:Ll,classes:Ol},Ti={};let xi=class At{constructor(){let e,i;for(var n=arguments.length,l=new Array(n),o=0;o<n;o++)l[o]=arguments[o];l.length===1&&l[0].constructor&&Object.prototype.toString.call(l[0]).slice(8,-1)==="Object"?i=l[0]:[e,i]=l,i||(i={}),i=st({},i),e&&!i.el&&(i.el=e);const r=gt();if(i.el&&typeof i.el=="string"&&r.querySelectorAll(i.el).length>1){const d=[];return r.querySelectorAll(i.el).forEach(f=>{const v=st({},i,{el:f});d.push(new At(v))}),d}const s=this;s.__swiper__=!0,s.support=tn(),s.device=nn({userAgent:i.userAgent}),s.browser=_o(),s.eventsListeners={},s.eventsAnyListeners=[],s.modules=[...s.__modules__],i.modules&&Array.isArray(i.modules)&&s.modules.push(...i.modules);const a={};s.modules.forEach(d=>{d({params:i,swiper:s,extendParams:Rl(i,a),on:s.on.bind(s),once:s.once.bind(s),off:s.off.bind(s),emit:s.emit.bind(s)})});const u=st({},wi,a);return s.params=st({},u,Ti,i),s.originalParams=st({},s.params),s.passedParams=st({},i),s.params&&s.params.on&&Object.keys(s.params.on).forEach(d=>{s.on(d,s.params.on[d])}),s.params&&s.params.onAny&&s.onAny(s.params.onAny),Object.assign(s,{enabled:s.params.enabled,el:e,classNames:[],slides:[],slidesGrid:[],snapGrid:[],slidesSizesGrid:[],isHorizontal(){return s.params.direction==="horizontal"},isVertical(){return s.params.direction==="vertical"},activeIndex:0,realIndex:0,isBeginning:!0,isEnd:!1,translate:0,previousTranslate:0,progress:0,velocity:0,animating:!1,cssOverflowAdjustment(){return Math.trunc(this.translate/2**23)*2**23},allowSlideNext:s.params.allowSlideNext,allowSlidePrev:s.params.allowSlidePrev,touchEventsData:{isTouched:void 0,isMoved:void 0,allowTouchCallbacks:void 0,touchStartTime:void 0,isScrolling:void 0,currentTranslate:void 0,startTranslate:void 0,allowThresholdMove:void 0,focusableElements:s.params.focusableElements,lastClickTime:0,clickTimeout:void 0,velocities:[],allowMomentumBounce:void 0,startMoving:void 0,pointerId:null,touchId:null},allowClick:!0,allowTouchMove:s.params.allowTouchMove,touches:{startX:0,startY:0,currentX:0,currentY:0,diff:0},imagesToLoad:[],imagesLoaded:0}),s.emit("_swiper"),s.params.init&&s.init(),s}getDirectionLabel(e){return this.isHorizontal()?e:{width:"height","margin-top":"margin-left","margin-bottom ":"margin-right","margin-left":"margin-top","margin-right":"margin-bottom","padding-left":"padding-top","padding-right":"padding-bottom",marginRight:"marginBottom"}[e]}getSlideIndex(e){const{slidesEl:i,params:n}=this,l=yt(i,`.${n.slideClass}, swiper-slide`),o=Qt(l[0]);return Qt(e)-o}getSlideIndexByData(e){return this.getSlideIndex(this.slides.filter(i=>i.getAttribute("data-swiper-slide-index")*1===e)[0])}recalcSlides(){const e=this,{slidesEl:i,params:n}=e;e.slides=yt(i,`.${n.slideClass}, swiper-slide`)}enable(){const e=this;e.enabled||(e.enabled=!0,e.params.grabCursor&&e.setGrabCursor(),e.emit("enable"))}disable(){const e=this;e.enabled&&(e.enabled=!1,e.params.grabCursor&&e.unsetGrabCursor(),e.emit("disable"))}setProgress(e,i){const n=this;e=Math.min(Math.max(e,0),1);const l=n.minTranslate(),r=(n.maxTranslate()-l)*e+l;n.translateTo(r,typeof i>"u"?0:i),n.updateActiveIndex(),n.updateSlidesClasses()}emitContainerClasses(){const e=this;if(!e.params._emitClasses||!e.el)return;const i=e.el.className.split(" ").filter(n=>n.indexOf("swiper")===0||n.indexOf(e.params.containerModifierClass)===0);e.emit("_containerClasses",i.join(" "))}getSlideClasses(e){const i=this;return i.destroyed?"":e.className.split(" ").filter(n=>n.indexOf("swiper-slide")===0||n.indexOf(i.params.slideClass)===0).join(" ")}emitSlidesClasses(){const e=this;if(!e.params._emitClasses||!e.el)return;const i=[];e.slides.forEach(n=>{const l=e.getSlideClasses(n);i.push({slideEl:n,classNames:l}),e.emit("_slideClass",n,l)}),e.emit("_slideClasses",i)}slidesPerViewDynamic(e,i){e===void 0&&(e="current"),i===void 0&&(i=!1);const n=this,{params:l,slides:o,slidesGrid:r,slidesSizesGrid:s,size:a,activeIndex:u}=n;let d=1;if(typeof l.slidesPerView=="number")return l.slidesPerView;if(l.centeredSlides){let f=o[u]?Math.ceil(o[u].swiperSlideSize):0,v;for(let h=u+1;h<o.length;h+=1)o[h]&&!v&&(f+=Math.ceil(o[h].swiperSlideSize),d+=1,f>a&&(v=!0));for(let h=u-1;h>=0;h-=1)o[h]&&!v&&(f+=o[h].swiperSlideSize,d+=1,f>a&&(v=!0))}else if(e==="current")for(let f=u+1;f<o.length;f+=1)(i?r[f]+s[f]-r[u]<a:r[f]-r[u]<a)&&(d+=1);else for(let f=u-1;f>=0;f-=1)r[u]-r[f]<a&&(d+=1);return d}update(){const e=this;if(!e||e.destroyed)return;const{snapGrid:i,params:n}=e;n.breakpoints&&e.setBreakpoint(),[...e.el.querySelectorAll('[loading="lazy"]')].forEach(r=>{r.complete&&ei(e,r)}),e.updateSize(),e.updateSlides(),e.updateProgress(),e.updateSlidesClasses();function l(){const r=e.rtlTranslate?e.translate*-1:e.translate,s=Math.min(Math.max(r,e.maxTranslate()),e.minTranslate());e.setTranslate(s),e.updateActiveIndex(),e.updateSlidesClasses()}let o;if(n.freeMode&&n.freeMode.enabled&&!n.cssMode)l(),n.autoHeight&&e.updateAutoHeight();else{if((n.slidesPerView==="auto"||n.slidesPerView>1)&&e.isEnd&&!n.centeredSlides){const r=e.virtual&&n.virtual.enabled?e.virtual.slides:e.slides;o=e.slideTo(r.length-1,0,!1,!0)}else o=e.slideTo(e.activeIndex,0,!1,!0);o||l()}n.watchOverflow&&i!==e.snapGrid&&e.checkOverflow(),e.emit("update")}changeDirection(e,i){i===void 0&&(i=!0);const n=this,l=n.params.direction;return e||(e=l==="horizontal"?"vertical":"horizontal"),e===l||e!=="horizontal"&&e!=="vertical"||(n.el.classList.remove(`${n.params.containerModifierClass}${l}`),n.el.classList.add(`${n.params.containerModifierClass}${e}`),n.emitContainerClasses(),n.params.direction=e,n.slides.forEach(o=>{e==="vertical"?o.style.width="":o.style.height=""}),n.emit("changeDirection"),i&&n.update()),n}changeLanguageDirection(e){const i=this;i.rtl&&e==="rtl"||!i.rtl&&e==="ltr"||(i.rtl=e==="rtl",i.rtlTranslate=i.params.direction==="horizontal"&&i.rtl,i.rtl?(i.el.classList.add(`${i.params.containerModifierClass}rtl`),i.el.dir="rtl"):(i.el.classList.remove(`${i.params.containerModifierClass}rtl`),i.el.dir="ltr"),i.update())}mount(e){const i=this;if(i.mounted)return!0;let n=e||i.params.el;if(typeof n=="string"&&(n=document.querySelector(n)),!n)return!1;n.swiper=i,n.parentNode&&n.parentNode.host&&n.parentNode.host.nodeName===i.params.swiperElementNodeName.toUpperCase()&&(i.isElement=!0);const l=()=>`.${(i.params.wrapperClass||"").trim().split(" ").join(".")}`;let r=n&&n.shadowRoot&&n.shadowRoot.querySelector?n.shadowRoot.querySelector(l()):yt(n,l())[0];return!r&&i.params.createElements&&(r=Bt("div",i.params.wrapperClass),n.append(r),yt(n,`.${i.params.slideClass}`).forEach(s=>{r.append(s)})),Object.assign(i,{el:n,wrapperEl:r,slidesEl:i.isElement&&!n.parentNode.host.slideSlots?n.parentNode.host:r,hostEl:i.isElement?n.parentNode.host:n,mounted:!0,rtl:n.dir.toLowerCase()==="rtl"||Ct(n,"direction")==="rtl",rtlTranslate:i.params.direction==="horizontal"&&(n.dir.toLowerCase()==="rtl"||Ct(n,"direction")==="rtl"),wrongRTL:Ct(r,"display")==="-webkit-box"}),!0}init(e){const i=this;if(i.initialized||i.mount(e)===!1)return i;i.emit("beforeInit"),i.params.breakpoints&&i.setBreakpoint(),i.addClasses(),i.updateSize(),i.updateSlides(),i.params.watchOverflow&&i.checkOverflow(),i.params.grabCursor&&i.enabled&&i.setGrabCursor(),i.params.loop&&i.virtual&&i.params.virtual.enabled?i.slideTo(i.params.initialSlide+i.virtual.slidesBefore,0,i.params.runCallbacksOnInit,!1,!0):i.slideTo(i.params.initialSlide,0,i.params.runCallbacksOnInit,!1,!0),i.params.loop&&i.loopCreate(),i.attachEvents();const l=[...i.el.querySelectorAll('[loading="lazy"]')];return i.isElement&&l.push(...i.hostEl.querySelectorAll('[loading="lazy"]')),l.forEach(o=>{o.complete?ei(i,o):o.addEventListener("load",r=>{ei(i,r.target)})}),yi(i),i.initialized=!0,yi(i),i.emit("init"),i.emit("afterInit"),i}destroy(e,i){e===void 0&&(e=!0),i===void 0&&(i=!0);const n=this,{params:l,el:o,wrapperEl:r,slides:s}=n;return typeof n.params>"u"||n.destroyed||(n.emit("beforeDestroy"),n.initialized=!1,n.detachEvents(),l.loop&&n.loopDestroy(),i&&(n.removeClasses(),o&&typeof o!="string"&&o.removeAttribute("style"),r&&r.removeAttribute("style"),s&&s.length&&s.forEach(a=>{a.classList.remove(l.slideVisibleClass,l.slideFullyVisibleClass,l.slideActiveClass,l.slideNextClass,l.slidePrevClass),a.removeAttribute("style"),a.removeAttribute("data-swiper-slide-index")})),n.emit("destroy"),Object.keys(n.eventsListeners).forEach(a=>{n.off(a)}),e!==!1&&(n.el&&typeof n.el!="string"&&(n.el.swiper=null),ho(n)),n.destroyed=!0),null}static extendDefaults(e){st(Ti,e)}static get extendedDefaults(){return Ti}static get defaults(){return wi}static installModule(e){At.prototype.__modules__||(At.prototype.__modules__=[]);const i=At.prototype.__modules__;typeof e=="function"&&i.indexOf(e)<0&&i.push(e)}static use(e){return Array.isArray(e)?(e.forEach(i=>At.installModule(i)),At):(At.installModule(e),At)}};Object.keys(Si).forEach(t=>{Object.keys(Si[t]).forEach(e=>{xi.prototype[e]=Si[t][e]})}),xi.use([Po,Do]);const cn=["eventsPrefix","injectStyles","injectStylesUrls","modules","init","_direction","oneWayMovement","swiperElementNodeName","touchEventsTarget","initialSlide","_speed","cssMode","updateOnWindowResize","resizeObserver","nested","focusableElements","_enabled","_width","_height","preventInteractionOnTransition","userAgent","url","_edgeSwipeDetection","_edgeSwipeThreshold","_freeMode","_autoHeight","setWrapperSize","virtualTranslate","_effect","breakpoints","breakpointsBase","_spaceBetween","_slidesPerView","maxBackfaceHiddenSlides","_grid","_slidesPerGroup","_slidesPerGroupSkip","_slidesPerGroupAuto","_centeredSlides","_centeredSlidesBounds","_slidesOffsetBefore","_slidesOffsetAfter","normalizeSlideIndex","_centerInsufficientSlides","_watchOverflow","roundLengths","touchRatio","touchAngle","simulateTouch","_shortSwipes","_longSwipes","longSwipesRatio","longSwipesMs","_followFinger","allowTouchMove","_threshold","touchMoveStopPropagation","touchStartPreventDefault","touchStartForcePreventDefault","touchReleaseOnEdges","uniqueNavElements","_resistance","_resistanceRatio","_watchSlidesProgress","_grabCursor","preventClicks","preventClicksPropagation","_slideToClickedSlide","_loop","loopAdditionalSlides","loopAddBlankSlides","loopPreventsSliding","_rewind","_allowSlidePrev","_allowSlideNext","_swipeHandler","_noSwiping","noSwipingClass","noSwipingSelector","passiveListeners","containerModifierClass","slideClass","slideActiveClass","slideVisibleClass","slideFullyVisibleClass","slideNextClass","slidePrevClass","slideBlankClass","wrapperClass","lazyPreloaderClass","lazyPreloadPrevNext","runCallbacksOnInit","observer","observeParents","observeSlideChildren","a11y","_autoplay","_controller","coverflowEffect","cubeEffect","fadeEffect","flipEffect","creativeEffect","cardsEffect","hashNavigation","history","keyboard","mousewheel","_navigation","_pagination","parallax","_scrollbar","_thumbs","virtual","zoom","control"];function It(t){return typeof t=="object"&&t!==null&&t.constructor&&Object.prototype.toString.call(t).slice(8,-1)==="Object"&&!t.__swiper__}function Dt(t,e){const i=["__proto__","constructor","prototype"];Object.keys(e).filter(n=>i.indexOf(n)<0).forEach(n=>{typeof t[n]>"u"?t[n]=e[n]:It(e[n])&&It(t[n])&&Object.keys(e[n]).length>0?e[n].__swiper__?t[n]=e[n]:Dt(t[n],e[n]):t[n]=e[n]})}function un(t){return t===void 0&&(t={}),t.navigation&&typeof t.navigation.nextEl>"u"&&typeof t.navigation.prevEl>"u"}function pn(t){return t===void 0&&(t={}),t.pagination&&typeof t.pagination.el>"u"}function vn(t){return t===void 0&&(t={}),t.scrollbar&&typeof t.scrollbar.el>"u"}function mn(t){t===void 0&&(t="");const e=t.split(" ").map(n=>n.trim()).filter(n=>!!n),i=[];return e.forEach(n=>{i.indexOf(n)<0&&i.push(n)}),i.join(" ")}function Nl(t){return t===void 0&&(t=""),t?t.includes("swiper-wrapper")?t:`swiper-wrapper ${t}`:"swiper-wrapper"}function Bl(t){let{swiper:e,slides:i,passedParams:n,changedParams:l,nextEl:o,prevEl:r,scrollbarEl:s,paginationEl:a}=t;const u=l.filter(S=>S!=="children"&&S!=="direction"&&S!=="wrapperClass"),{params:d,pagination:f,navigation:v,scrollbar:h,virtual:w,thumbs:T}=e;let C,p,x,y,A,k,g,L;l.includes("thumbs")&&n.thumbs&&n.thumbs.swiper&&d.thumbs&&!d.thumbs.swiper&&(C=!0),l.includes("controller")&&n.controller&&n.controller.control&&d.controller&&!d.controller.control&&(p=!0),l.includes("pagination")&&n.pagination&&(n.pagination.el||a)&&(d.pagination||d.pagination===!1)&&f&&!f.el&&(x=!0),l.includes("scrollbar")&&n.scrollbar&&(n.scrollbar.el||s)&&(d.scrollbar||d.scrollbar===!1)&&h&&!h.el&&(y=!0),l.includes("navigation")&&n.navigation&&(n.navigation.prevEl||r)&&(n.navigation.nextEl||o)&&(d.navigation||d.navigation===!1)&&v&&!v.prevEl&&!v.nextEl&&(A=!0);const M=S=>{e[S]&&(e[S].destroy(),S==="navigation"?(e.isElement&&(e[S].prevEl.remove(),e[S].nextEl.remove()),d[S].prevEl=void 0,d[S].nextEl=void 0,e[S].prevEl=void 0,e[S].nextEl=void 0):(e.isElement&&e[S].el.remove(),d[S].el=void 0,e[S].el=void 0))};l.includes("loop")&&e.isElement&&(d.loop&&!n.loop?k=!0:!d.loop&&n.loop?g=!0:L=!0),u.forEach(S=>{if(It(d[S])&&It(n[S]))Object.assign(d[S],n[S]),(S==="navigation"||S==="pagination"||S==="scrollbar")&&"enabled"in n[S]&&!n[S].enabled&&M(S);else{const c=n[S];(c===!0||c===!1)&&(S==="navigation"||S==="pagination"||S==="scrollbar")?c===!1&&M(S):d[S]=n[S]}}),u.includes("controller")&&!p&&e.controller&&e.controller.control&&d.controller&&d.controller.control&&(e.controller.control=d.controller.control),l.includes("children")&&i&&w&&d.virtual.enabled?(w.slides=i,w.update(!0)):l.includes("virtual")&&w&&d.virtual.enabled&&(i&&(w.slides=i),w.update(!0)),l.includes("children")&&i&&d.loop&&(L=!0),C&&T.init()&&T.update(!0),p&&(e.controller.control=d.controller.control),x&&(e.isElement&&(!a||typeof a=="string")&&(a=document.createElement("div"),a.classList.add("swiper-pagination"),a.part.add("pagination"),e.el.appendChild(a)),a&&(d.pagination.el=a),f.init(),f.render(),f.update()),y&&(e.isElement&&(!s||typeof s=="string")&&(s=document.createElement("div"),s.classList.add("swiper-scrollbar"),s.part.add("scrollbar"),e.el.appendChild(s)),s&&(d.scrollbar.el=s),h.init(),h.updateSize(),h.setTranslate()),A&&(e.isElement&&((!o||typeof o=="string")&&(o=document.createElement("div"),o.classList.add("swiper-button-next"),o.innerHTML=e.hostEl.constructor.nextButtonSvg,o.part.add("button-next"),e.el.appendChild(o)),(!r||typeof r=="string")&&(r=document.createElement("div"),r.classList.add("swiper-button-prev"),r.innerHTML=e.hostEl.constructor.prevButtonSvg,r.part.add("button-prev"),e.el.appendChild(r))),o&&(d.navigation.nextEl=o),r&&(d.navigation.prevEl=r),v.init(),v.update()),l.includes("allowSlideNext")&&(e.allowSlideNext=n.allowSlideNext),l.includes("allowSlidePrev")&&(e.allowSlidePrev=n.allowSlidePrev),l.includes("direction")&&e.changeDirection(n.direction,!1),(k||L)&&e.loopDestroy(),(g||L)&&e.loopCreate(),e.update()}function Fl(t,e){t===void 0&&(t={}),e===void 0&&(e=!0);const i={on:{}},n={},l={};Dt(i,wi),i._emitClasses=!0,i.init=!1;const o={},r=cn.map(a=>a.replace(/_/,"")),s=Object.assign({},t);return Object.keys(s).forEach(a=>{typeof t[a]>"u"||(r.indexOf(a)>=0?It(t[a])?(i[a]={},l[a]={},Dt(i[a],t[a]),Dt(l[a],t[a])):(i[a]=t[a],l[a]=t[a]):a.search(/on[A-Z]/)===0&&typeof t[a]=="function"?e?n[`${a[2].toLowerCase()}${a.substr(3)}`]=t[a]:i.on[`${a[2].toLowerCase()}${a.substr(3)}`]=t[a]:o[a]=t[a])}),["navigation","pagination","scrollbar"].forEach(a=>{i[a]===!0&&(i[a]={}),i[a]===!1&&delete i[a]}),{params:i,passedParams:l,rest:o,events:n}}function jl(t,e){let{el:i,nextEl:n,prevEl:l,paginationEl:o,scrollbarEl:r,swiper:s}=t;un(e)&&n&&l&&(s.params.navigation.nextEl=n,s.originalParams.navigation.nextEl=n,s.params.navigation.prevEl=l,s.originalParams.navigation.prevEl=l),pn(e)&&o&&(s.params.pagination.el=o,s.originalParams.pagination.el=o),vn(e)&&r&&(s.params.scrollbar.el=r,s.originalParams.scrollbar.el=r),s.init(i)}function Vl(t,e,i,n,l){const o=[];if(!e)return o;const r=a=>{o.indexOf(a)<0&&o.push(a)};if(i&&n){const a=n.map(l),u=i.map(l);a.join("")!==u.join("")&&r("children"),n.length!==i.length&&r("children")}return cn.filter(a=>a[0]==="_").map(a=>a.replace(/_/,"")).forEach(a=>{if(a in t&&a in e)if(It(t[a])&&It(e[a])){const u=Object.keys(t[a]),d=Object.keys(e[a]);u.length!==d.length?r(a):(u.forEach(f=>{t[a][f]!==e[a][f]&&r(a)}),d.forEach(f=>{t[a][f]!==e[a][f]&&r(a)}))}else t[a]!==e[a]&&r(a)}),o}const zl=t=>{!t||t.destroyed||!t.params.virtual||t.params.virtual&&!t.params.virtual.enabled||(t.updateSlides(),t.updateProgress(),t.updateSlidesClasses(),t.parallax&&t.params.parallax&&t.params.parallax.enabled&&t.parallax.setTranslate())};function ti(){return ti=Object.assign?Object.assign.bind():function(t){for(var e=1;e<arguments.length;e++){var i=arguments[e];for(var n in i)Object.prototype.hasOwnProperty.call(i,n)&&(t[n]=i[n])}return t},ti.apply(this,arguments)}function fn(t){return t.type&&t.type.displayName&&t.type.displayName.includes("SwiperSlide")}function hn(t){const e=[];return m.Children.toArray(t).forEach(i=>{fn(i)?e.push(i):i.props&&i.props.children&&hn(i.props.children).forEach(n=>e.push(n))}),e}function Hl(t){const e=[],i={"container-start":[],"container-end":[],"wrapper-start":[],"wrapper-end":[]};return m.Children.toArray(t).forEach(n=>{if(fn(n))e.push(n);else if(n.props&&n.props.slot&&i[n.props.slot])i[n.props.slot].push(n);else if(n.props&&n.props.children){const l=hn(n.props.children);l.length>0?l.forEach(o=>e.push(o)):i["container-end"].push(n)}else i["container-end"].push(n)}),{slides:e,slots:i}}function Gl(t,e,i){if(!i)return null;const n=d=>{let f=d;return d<0?f=e.length+d:f>=e.length&&(f=f-e.length),f},l=t.isHorizontal()?{[t.rtlTranslate?"right":"left"]:`${i.offset}px`}:{top:`${i.offset}px`},{from:o,to:r}=i,s=t.params.loop?-e.length:0,a=t.params.loop?e.length*2:e.length,u=[];for(let d=s;d<a;d+=1)d>=o&&d<=r&&u.push(e[n(d)]);return u.map((d,f)=>m.cloneElement(d,{swiper:t,style:l,key:d.props.virtualIndex||d.key||`slide-${f}`}))}function Ft(t,e){return typeof window>"u"?se(t,e):Fn(t,e)}const Ai=Nt(null),gn=()=>Rt(Ai),Ul=Nt(null),kt=Ut(function(t,e){let{className:i,tag:n="div",wrapperTag:l="div",children:o,onSwiper:r,...s}=t===void 0?{}:t,a=!1;const[u,d]=W("swiper"),[f,v]=W(null),[h,w]=W(!1),T=re(!1),C=re(null),p=re(null),x=re(null),y=re(null),A=re(null),k=re(null),g=re(null),L=re(null),{params:M,passedParams:S,rest:c,events:E}=Fl(s),{slides:b,slots:I}=Hl(o),D=()=>{w(!h)};Object.assign(M.on,{_containerClasses(R,B){d(B)}});const P=()=>{Object.assign(M.on,E),a=!0;const R={...M};if(delete R.wrapperClass,p.current=new xi(R),p.current.virtual&&p.current.params.virtual.enabled){p.current.virtual.slides=b;const B={cache:!1,slides:b,renderExternal:v,renderExternalUpdate:!1};Dt(p.current.params.virtual,B),Dt(p.current.originalParams.virtual,B)}};C.current||P(),p.current&&p.current.on("_beforeBreakpoint",D);const N=()=>{a||!E||!p.current||Object.keys(E).forEach(R=>{p.current.on(R,E[R])})},F=()=>{!E||!p.current||Object.keys(E).forEach(R=>{p.current.off(R,E[R])})};se(()=>()=>{p.current&&p.current.off("_beforeBreakpoint",D)}),se(()=>{!T.current&&p.current&&(p.current.emitSlidesClasses(),T.current=!0)}),Ft(()=>{if(e&&(e.current=C.current),!!C.current)return p.current.destroyed&&P(),jl({el:C.current,nextEl:A.current,prevEl:k.current,paginationEl:g.current,scrollbarEl:L.current,swiper:p.current},M),r&&!p.current.destroyed&&r(p.current),()=>{p.current&&!p.current.destroyed&&p.current.destroy(!0,!1)}},[]),Ft(()=>{N();const R=Vl(S,x.current,b,y.current,B=>B.key);return x.current=S,y.current=b,R.length&&p.current&&!p.current.destroyed&&Bl({swiper:p.current,slides:b,passedParams:S,changedParams:R,nextEl:A.current,prevEl:k.current,scrollbarEl:L.current,paginationEl:g.current}),()=>{F()}}),Ft(()=>{zl(p.current)},[f]);function _(){return M.virtual?Gl(p.current,b,f):b.map((R,B)=>m.cloneElement(R,{swiper:p.current,swiperSlideIndex:B}))}return m.createElement(n,ti({ref:C,className:mn(`${u}${i?` ${i}`:""}`)},c),m.createElement(Ul.Provider,{value:p.current},I["container-start"],m.createElement(l,{className:Nl(M.wrapperClass)},I["wrapper-start"],_(),I["wrapper-end"]),un(M)&&m.createElement(m.Fragment,null,m.createElement("div",{ref:k,className:"swiper-button-prev"}),m.createElement("div",{ref:A,className:"swiper-button-next"})),vn(M)&&m.createElement("div",{ref:L,className:"swiper-scrollbar"}),pn(M)&&m.createElement("div",{ref:g,className:"swiper-pagination"}),I["container-end"]))});kt.displayName="Swiper";const bt=Ut(function(t,e){let{tag:i="div",children:n,className:l="",swiper:o,zoom:r,lazy:s,virtualIndex:a,swiperSlideIndex:u,...d}=t===void 0?{}:t;const f=re(null),[v,h]=W("swiper-slide"),[w,T]=W(!1);function C(A,k,g){k===f.current&&h(g)}Ft(()=>{if(typeof u<"u"&&(f.current.swiperSlideIndex=u),e&&(e.current=f.current),!(!f.current||!o)){if(o.destroyed){v!=="swiper-slide"&&h("swiper-slide");return}return o.on("_slideClass",C),()=>{o&&o.off("_slideClass",C)}}}),Ft(()=>{o&&f.current&&!o.destroyed&&h(o.getSlideClasses(f.current))},[o]);const p={isActive:v.indexOf("swiper-slide-active")>=0,isVisible:v.indexOf("swiper-slide-visible")>=0,isPrev:v.indexOf("swiper-slide-prev")>=0,isNext:v.indexOf("swiper-slide-next")>=0},x=()=>typeof n=="function"?n(p):n,y=()=>{T(!0)};return m.createElement(i,ti({ref:f,className:mn(`${v}${l?` ${l}`:""}`),"data-swiper-slide-index":a,onLoad:y},d),r&&m.createElement(Ai.Provider,{value:p},m.createElement("div",{className:"swiper-zoom-container","data-swiper-zoom":typeof r=="number"?r:void 0},x(),s&&!w&&m.createElement("div",{className:"swiper-lazy-preloader"}))),!r&&m.createElement(Ai.Provider,{value:p},x(),s&&!w&&m.createElement("div",{className:"swiper-lazy-preloader"})))});bt.displayName="SwiperSlide";const Wl="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAjhJREFUWEfFlztOw0AQhmeWiJ4CCmpQ5DiRQsIJyAWg5A0lR0AIChDiCJS8ER0cADgBeRSxt4CCDgkaKiq8i+zYeWx2413HEWmiJJv9v535Z2aN8M8vFPT9z3zETD0aAUChUJjwvPFHAJhBhB3Hqd6OAsK2yyucwykAvP38eJX398Z3AJDLlVYR8ToU9Rhj25TWr9KEsKy5dULIGQCMtfZly45TvwsAstm56UwG6wA4FUFwzrdctxZBDcWSy5XWEPG8I84/GcMipdWPtgcsaz5PCHtKG0IuTiqUvjT9U/WYMG2IOPE+AP+LtCB0xKUAAyA2Xbd2o2OG0NQXvTnvhL17D7EPtH9TRCIWwkRcGYGIQgYBABuqPuHXOQBc6pw80lBGwBQiiXhsBHQhkoprA6iM6acjhDQKu5YJZW6XeOI3XJdpvfsdTu52VfXEekD8owQiXGIubpSCbhDbLu8DwKEAd+A41SOdPpE4BS0viFOtvV2iKWqUgn5x/tmS70xR01GuDSCKc86/OCcLgTyyZ0ScDGNhFAktAJV4NFJ9YyaFiAWIE+9uVkkgBgLoig8DMWAa9ro9ynkUdlW5maZDCmB6clmz0k1HH4Cs1Ezbq2p2yEpUuBOKTSZZex00RUWIrltxuuK6EOGDSbGIOPZicpMx6fny650377qNRgBgWeVFQuA+6UjVgREhGIMlSqsPUQqIbZdOOIdZQmCv2axRnU1N1+TzJYsxOEaEV8ep7frPZ7Gd0FTEdP0ft0/kMNdg0eoAAAAASUVORK5CYII=",Yl=({visible:t,onClose:e,children:i,modalStyle:n,padding:l,popup:o,schema:r,fullHeight:s=window.innerHeight,isFullScreen:a=!1})=>{var u,d;const f=re(null),v=re(null),h=re(null),w=re(null),T=s*.2,C=a?s:s*.8,[p,x]=W(T),[y,A]=W(!1),k=re(null),{globalConfig:g,popupDetailData:L}=Pe(),{schema:M}=ft();se(()=>{const P=document.getElementById("sxp-render"),N=document.getElementById("pb-modal");N?k.current=N:(k.current=document.createElement("div"),k.current.setAttribute("id","pb-modal"),P?.appendChild(k.current))},[]);const S=ne(()=>o?.id&&o?.id!==""||t,[t,o]),c=ne(()=>{var P,N,F,_,R;const B=r??M,j=(F=(N=(P=B?.sxpPageConf)===null||P===void 0?void 0:P.globalConfig)===null||N===void 0?void 0:N.popupList)===null||F===void 0?void 0:F.find(q=>q?.id===o?.id);return((R=(_=j?.item)===null||_===void 0?void 0:_.event)===null||R===void 0?void 0:R.isScrollFullScreen)||!1},[o,r,M]);if(se(()=>{S?A(!0):setTimeout(()=>{A(!1),x(T)},o?.duration)},[S,o]),!k.current)return null;const E=li(()=>{e?.()},300),b=P=>{f.current=P.touches[0],v.current=P.touches[0],h.current=!0},I=P=>{requestAnimationFrame(()=>{var N;if(h.current&&((N=w?.current)===null||N===void 0?void 0:N.scrollTop)===0){const F=P.touches[0].clientY,_=P.touches[0].clientX,R=f.current.clientY-F;f.current=P.touches[0];const B=F-v.current.clientY,j=_-v.current.clientX;if(Math.abs(j)>Math.abs(B))return;const q=p-R;q>0&&x(q)}})},D=P=>{var N;if(h.current&&((N=w?.current)===null||N===void 0?void 0:N.scrollTop)===0){const F=P.changedTouches[0].clientY-v.current.clientY,_=P.changedTouches[0].clientX-v.current.clientX;if(Math.abs(_)>Math.abs(F))return;const R=v.current.clientY-f.current.clientY;R>0?x(0):p<T&&R<0?x(T):p>=T&&R<0&&e?.()}h.current=!1};return Mi.createPortal(m.createElement(m.Fragment,null,y&&m.createElement("div",{className:"modal-bg",style:Object.assign({display:"flex",backgroundColor:S?"rgba(0, 0, 0, 0.7)":"rgba(0, 0, 0, 0)"},n),onClick:E},m.createElement("div",Object.assign({className:`modal-container ${S?"modal-popIn":"modal-popOut"}`,style:Object.assign({padding:l,animationDuration:((u=o?.duration)!==null&&u!==void 0?u:0)/1e3+"s"},c&&{transform:`translateY(${p}px)`}),onClick:P=>{P.stopPropagation(),P.preventDefault()}},c&&{onTouchMove:I,onTouchStart:b,onTouchEnd:D}),m.createElement("div",{onClick:e,className:"modal-icon-wrapper"},m.createElement("img",{src:(d=g?.popupCloseIcon)!==null&&d!==void 0?d:Wl,alt:"close",className:"modal-icon"})),m.createElement("div",{ref:w,style:{height:c?s:C,overflow:c&&p<=0||!c?"auto":"hidden"}},i)))),k.current)};var jt=Ie(Yl);const Xl=(t="",e)=>{if(/[\u4e00-\u9fa5]+/.test(t))return t.slice(0,54);const n=t.split(" "),l=[];for(let r=0;r<n.length&&(l.push(n[r]),!(l.join(" ").length>=e));r++);return(l.length>1&&l.length<n.length?l.slice(0,l.length-1):l).join(" ")+" "},ql=({text:t,maxStr:e=108,style:i,className:n,onClick:l,foldText:o,unfoldText:r,isPost:s,onChange:a})=>{const[u,d]=W(!1),[f,v]=W(!1),h=Number(i?.lineClamp||2),w=re(null),T=re(null),C=ue(()=>{d(!u)},[u,a]);return ne(()=>!u&&t.length>e?Xl(t,e)+"...":t,[t,e,u]),se(()=>{var p,x;((p=T?.current)===null||p===void 0?void 0:p.offsetHeight)>((x=w?.current)===null||x===void 0?void 0:x.offsetHeight)&&s?v(!0):v(!1),T.current.style.display="none"},[s]),m.createElement("div",{className:n,style:Object.assign(Object.assign({},i),{transform:"translate3d(0px, 0px, 0px)"}),hidden:!t||t===""},m.createElement("div",{ref:w,style:{overflow:"hidden",WebkitLineClamp:!s||u?"":h,textOverflow:"ellipsis",display:"-webkit-box",WebkitBoxOrient:"vertical",wordBreak:"break-word"},dangerouslySetInnerHTML:{__html:fe(t?.replace(/\n/g,"</br>"),i)}}),m.createElement("div",{ref:T,dangerouslySetInnerHTML:{__html:fe(t?.replace(/\n/g,"</br>"),i)}}),t&&s&&f&&m.createElement("span",{style:{textDecoration:"underline",cursor:"pointer"},onClick:l??C,dangerouslySetInnerHTML:{__html:fe(u?r||"show less":o||"show more",i)}}))};var ii=Ie(ql);const Jl=Ut((t,e)=>{const{src:i,onLoad:n,style:l,className:o,loading:r,alt:s="image"}=t,[a,u]=W(),d=re(null),[f,v]=W(!1);return Oi(e,()=>({setSrc:h=>{h&&u(h)}})),se(()=>{i&&u(i)},[i]),se(()=>{const h=()=>{i&&!f&&(d.current.src="",d.current.src=i)};return ht.on(rt.PAGE_DID_SHOW,h),()=>{ht.off(rt.PAGE_DID_SHOW,h)}},[i,f]),m.createElement(m.Fragment,null,!f&&m.createElement("div",{style:{width:"100%",height:"100%",zIndex:1,backgroundColor:"#fff"}}),a?.includes(".avif")?m.createElement("picture",null,m.createElement("source",{type:"image/avif",srcSet:a}),m.createElement("source",{type:"image/webp",srcSet:`${a}?imageMogr2/format/webp`}),m.createElement("source",{type:"image/jpeg",srcSet:`${a}?imageMogr2/format/jpg`}),m.createElement("img",{ref:d,className:o,src:a,style:Object.assign({},l),loading:r,onLoad:h=>{v(!0),n?.(h.target)},alt:s})):m.createElement("img",{ref:d,className:o,src:a,style:Object.assign({},l),loading:r,onLoad:h=>{v(!0),n?.(h.target)},alt:s}))});var lt=Ie(Jl);const Kl=({children:t,isPadding:e=!0,style:i,enableSlideActive:n=!1})=>{const l=re(),{popupDetailData:o}=Pe();return se(()=>{var r,s;n&&((r=l?.current)===null||r===void 0||r.swiper.slideTo((s=o?.multiCheckIndex)!==null&&s!==void 0?s:0))},[o,n]),m.createElement(kt,{ref:l,direction:"horizontal",slidesPerView:"auto",freeMode:!0,mousewheel:!0,modules:[Eo,Ao,xo],style:Object.assign({padding:e?"0 12px 0 20px":0},i)},t)};var Vt=Ie(Kl);const Ql=({products:t,data:e,defImg:i,style:n,onCLick:l,popupDetailData:o,check:r})=>{var s;const{productView:a}=$e(),{popupCurTimeRef:u}=Pe(),d=(f,v)=>{if(r===v)return;const h=t?.[r];a(o,h,h?.bindCta,u.current,o?.index),l?.(v)};return m.createElement(m.Fragment,null,e?.open&&(t&&t?.length>1||!o)&&m.createElement(Vt,{enableSlideActive:!0,isPadding:!1,style:Object.assign(Object.assign({},n),e?.style)},(s=o?t:[0,1,2,3])===null||s===void 0?void 0:s.map((f,v)=>{var h,w,T;return m.createElement(m.Fragment,null,f?.bindCta?m.createElement(bt,{className:xe({width:"50px",height:"50px",marginRight:"10px"}),onClick:()=>{d(f,v)},key:v},m.createElement(lt,{style:{height:"100%",width:"100%",objectFit:"cover",display:"block",objectPosition:`50% ${e?.translateY?e?.translateY+50:50}%`,border:r===v?"1px solid #000":"1px solid #f2f2f2",boxSizing:"border-box"},src:(T=(h=f?.cover)!==null&&h!==void 0?h:(w=f?.homePage)===null||w===void 0?void 0:w[0])!==null&&T!==void 0?T:i})):null)})))};var bn=Ie(Ql);const Zl=t=>{var e,i,n,l,o,r,s,a,u,d,f,v,h,w,T,C,p,x,y,A,k,{content:g,style:L,bgImg:M,onClick:S,schema:c,isDefault:E,bottom_image:b,tipText:I,isPost:D,viewTime:P,rec:N,swiper:F,commodityStyles:_,buttonStyle:R,index:B,commodityGroup:j}=t,q=Je(t,["content","style","bgImg","onClick","schema","isDefault","bottom_image","tipText","isPost","viewTime","rec","swiper","commodityStyles","buttonStyle","index","commodityGroup"]);const{sxpParameter:H,popupDetailData:Z,isPreview:le,bffFbReport:be,popupCurTimeRef:me,checkCommodityIndexRef:Te}=Pe(),{jumpToWeb:ye,productView:ee}=$e(),G=re(null),[J,Ae]=W(!1),[pe,he]=W(!1),[Q,z]=W((e=Z?.multiCheckIndex)!==null&&e!==void 0?e:0),$=D?N:Z;let V=D?$?.product:(n=(i=$?.video)===null||i===void 0?void 0:i.bindProduct)!==null&&n!==void 0?n:(o=(l=$?.video)===null||l===void 0?void 0:l.bindProducts)===null||o===void 0?void 0:o[0],Ee=D?(r=$?.product)===null||r===void 0?void 0:r.bindCta:(u=(a=(s=$?.video)===null||s===void 0?void 0:s.bindProduct)===null||a===void 0?void 0:a.bindCta)!==null&&u!==void 0?u:(v=(f=(d=$?.video)===null||d===void 0?void 0:d.bindProducts)===null||f===void 0?void 0:f[0])===null||v===void 0?void 0:v.bindCta;const oe=D?B:Z?.index;if(!D&&j?.open&&(!((h=$?.video)===null||h===void 0)&&h.bindProducts)&&((T=(w=$?.video)===null||w===void 0?void 0:w.bindProducts)===null||T===void 0?void 0:T.length)>0){Te.current=Q;const ve=(C=$?.video)===null||C===void 0?void 0:C.bindProducts[Q];V=ve,Ee=ve?.bindCta}const X=()=>{V?.link&&(ye($,V,Ee,oe),D||ee($,V,Ee,P||G.current,oe),window.location.href=window.getJointUtmLink(V.link))};se(()=>{D||be?.({eventName:"ProductView"})},[D,be]),se(()=>{const ve=()=>{G.current=new Date};return ve(),window.addEventListener("pageshow",ve),()=>{window.removeEventListener("pageshow",ve)}},[]);const K=ne(()=>{var ve,Ne,Xe,dt,U;return V?.currency&&V?.price?`${(Xe=(Ne=(ve=V?.currency)===null||ve===void 0?void 0:ve.split("-")[1])===null||Ne===void 0?void 0:Ne.toUpperCase())!==null&&Xe!==void 0?Xe:""}${(U=(dt=V?.price)===null||dt===void 0?void 0:dt.toLocaleString("zh",{minimumFractionDigits:0}))!==null&&U!==void 0?U:""}`:"$7,000"},[V?.price,V?.currency]),ie=le?375:(p=L?.width)!==null&&p!==void 0?p:window.innerWidth,Oe=({isPost:ve})=>{var Ne,Xe,dt,U;return m.createElement("div",null,m.createElement("div",{className:"pb-commondity-content-collection",style:ae(_?.collection),hidden:!!V&&(!V?.collection||V?.collection===""),dangerouslySetInnerHTML:{__html:fe((Ne=V?.collection)!==null&&Ne!==void 0?Ne:"Tiffany Lock",_?.collection)}}),m.createElement("div",{className:"pb-commondity-content-title",style:ae(_?.title),hidden:!!V&&!V?.title,dangerouslySetInnerHTML:{__html:fe((Xe=V?.title)!==null&&Xe!==void 0?Xe:"Pendant in Yellow Gold with Diamonds, Medium",_?.title)}}),m.createElement("div",{className:"pb-commondity-content-price",style:ae(_?.price),hidden:!!V&&!V?.price,dangerouslySetInnerHTML:{__html:fe(K,_?.price)}}),m.createElement("div",{hidden:!!V&&!V?.taxInfo,style:ae(_?.taxInfo),dangerouslySetInnerHTML:{__html:fe((dt=V?.taxInfo)!==null&&dt!==void 0?dt:"\u7A0E\u8D39",_?.taxInfo)}}),m.createElement("div",{hidden:!!V&&(!V?.info||V?.info==="")},m.createElement(ii,{foldText:I?.foldText,unfoldText:I?.unfoldText,onClick:()=>Ae(!0),isPost:ve,text:(U=V?.info)!==null&&U!==void 0?U:`The design inspiration of Tiffany Lock series comes from the power of connection and inclusiveness, and the
|
1
|
+
import{isEmpty as Bt,isEqual as Vi,cloneDeep as Wt,debounce as mi,throttle as Ft,get as zi}from"lodash";import{v4 as Xn}from"uuid";import Jn from"pako";import p,{useContext as Nt,useMemo as ue,memo as Ce,useEffect as be,createContext as jt,useState as $,useRef as ge,useCallback as we,forwardRef as Yt,useImperativeHandle as Hi,useLayoutEffect as qn}from"react";import fi from"qs";import Kn from"eventemitter3";import{css as Ee}from"@emotion/css";import*as Ui from"react-dom";import Zn from"react-dom";function Ze(t,e){var i={};for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&e.indexOf(n)<0&&(i[n]=t[n]);if(t!=null&&typeof Object.getOwnPropertySymbols=="function")for(var l=0,n=Object.getOwnPropertySymbols(t);l<n.length;l++)e.indexOf(n[l])<0&&Object.prototype.propertyIsEnumerable.call(t,n[l])&&(i[n[l]]=t[n[l]]);return i}function it(t,e,i,n){function l(o){return o instanceof i?o:new i(function(a){a(o)})}return new(i||(i=Promise))(function(o,a){function r(c){try{u(n.next(c))}catch(f){a(f)}}function d(c){try{u(n.throw(c))}catch(f){a(f)}}function u(c){c.done?o(c.value):l(c.value).then(r,d)}u((n=n.apply(t,e||[])).next())})}typeof SuppressedError=="function"&&SuppressedError;const Qn=/:\w+/g;var Gi=(t,e)=>it(void 0,void 0,void 0,function*(){const i={},n={};for(let l=0;l<e?.length;l++){const{id:o,method:a,url:r,urlParams:d,name:u,queryString:c,headers:f,body:m}=e[l];let h=r;d&&Object.entries(d).forEach(([w,y])=>{h=h.replace(Qn,P=>P===w?y:P)}),c&&(h+=c),n[o]=u;try{const w=yield fetch(h,{method:a,headers:Object.assign({"Content-Type":"application/json"},f),body:JSON.stringify(m)}).then(y=>y.json());i[o]=w}catch(w){console.error("DataSource request error: ",w),i[o]={}}}return{$store:i,idMapName:n}});const Wi="SXP_TOKEN_INFO",$n=(t,e)=>it(void 0,void 0,void 0,function*(){var i;const n=t.getTenantId(),l=t.getAppId(),o=t.getApiUrl(),a=window.localStorage.getItem(Wi);let r=JSON.parse(a||"{}");if(Date.now()>((i=r?.expireTime)!==null&&i!==void 0?i:0)){const u=yield fetch(`${o}/storefront/v1/proxy/token/${e}`,{method:"POST",headers:{"x-tenant-id":n||"","x-app-id":l||""}}).then(c=>c.json());if(u.success){const c=u.data;r=Object.assign(Object.assign({},c),{expireTime:Date.now()+c.expire*1e3}),window.localStorage.setItem(Wi,JSON.stringify(r))}}return r});function Xt(t,e){const i="0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz".split(""),n=[];let l;if(e=e||i.length,t)for(l=0;l<t;l++)n[l]=i[0|Math.random()*e];else{let o;for(n[8]=n[13]=n[18]=n[23]="-",n[14]="4",l=0;l<36;l++)n[l]||(o=0|Math.random()*16,n[l]=i[l===19?o&3|8:o])}return n.join("")}const eo=t=>{let e="";const i="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789",n=i.length;let l=0;for(;l<t;)e+=i.charAt(Math.floor(Math.random()*n)),l+=1;return e},to=()=>{const t=Xn();return t?.replaceAll?t.replaceAll("-",""):eo(32)},xe=(t,e)=>{if(!t)return"";let i="";const n=e?.["fontFamily-cn"],l=e?.["fontFamily-en"];if(!n&&!l)return t;let o=t;const a=/[\u4e00-\u9fa5]/g,r=/[^\u4e00-\u9fa5]/g,d=`font-family:${n??"inherit"}`,u=`font-family:${l??"inherit"}`,c=m=>{let h=m.search(a),w=m.search(r);return h!==-1&&w!==-1&&h<w&&(i+=`<span style="${d}">${m.substring(h,w)}</span>`,o=m.substring(w,m?.length)),h!==-1&&w!==-1&&h>w&&(i+=`<span style="${u}">${m.substring(w,h)}</span>`,o=m.substring(h,m?.length)),h===-1?(i+=`<span style="${u}">${m.substring(w,m?.length)}</span>`,o="",!1):w===-1?(i+=`<span style="${d}">${m.substring(h,m?.length)}</span>`,o="",!1):!0};let f=!0;for(;f;)f=c(o);return i};function io(){var t,e,i,n,l,o,a;let r=self.navigator.userAgent;return r?/edge\/([\d\.]+)/i.exec(r)?`Edge ${(t=/edge\/([\d\.]+)/i.exec(r))===null||t===void 0?void 0:t[1]}`:/edg\/([\d\.]+)/i.exec(r)?`Edge(Chromium) ${(e=/edge\/([\d\.]+)/i.exec(r))===null||e===void 0?void 0:e[1]}`:/msie/i.test(r)?`Internet Explorer ${(i=/msie ([\d\.]+)/i.exec(r))===null||i===void 0?void 0:i[1]}`:/Trident/i.test(r)?`Internet Explorer ${(n=/rv:([\d\.]+)/i.exec(r))===null||n===void 0?void 0:n[1]}`:/chrome/i.test(r)?`Chrome ${(l=/chrome\/([\d\.]+)/i.exec(r))===null||l===void 0?void 0:l[1]}`:/firefox/i.test(r)?`Firefox ${(o=/firefox\/([\d\.]+)/i.exec(r))===null||o===void 0?void 0:o[1]}`:/safari/i.test(r)?`Safari ${(a=/version\/([\d\.]+)/i.exec(r))===null||a===void 0?void 0:a[1]}`:"Unknown":"Unknown"}function no(){var t,e,i;let n=self.navigator.userAgent;return n?/iphone/i.test(n)?`IOS ${(t=n.match(/OS\s(.*?)\slike/))===null||t===void 0?void 0:t[1]}`:/android/i.test(n)?`Android ${(e=n.match(/Android\s(.*?)\;/))===null||e===void 0?void 0:e[1]}`:/windows/i.test(n)?`Windows ${(i=n.match(/Windows\s(.*?)\;/))===null||i===void 0?void 0:i[1]}`:/mac/i.test(n)?"Mac OS":"Unknown":"Unknown"}function oo(){let t=self.navigator.userAgent;if(!t)return"Unknown";if(/iphone/i.test(t))return"iPhone";if(/android/i.test(t)){var e=t.indexOf("("),i=t.indexOf(")");if(e!==-1&&i!==-1){var n=t.substring(e+1,i);return`${n}`}}return/windows/i.test(t)?"Windows":/mac/i.test(t)?"Mac":"Unknown"}function Yi(t){const i=document.cookie.split(";");let n=null;return i.forEach(l=>{const[o,a]=l.trim().split("=");o===t&&(n=a)}),n??""}function Xi(t){const i=atob(t).split("").map(function(o){return o.charCodeAt(0)}),n=new Uint8Array(i),l=Jn.inflate(n,{to:"string"});return JSON.parse(l)}let hi=null;const lo={dev:"https://clc-pagebuilder-be-dev.chatlabs.net",staging:"https://clc-pagebuilder-be-staging.chatlabs.net",live:"https://clc-pagebuilder-be.chatlabs.net"};class ao{constructor(){if(this.setAppId=e=>{this.appId=e},this.setTenantId=e=>{this.tenantId=e},this.getAppId=()=>this.appId,this.getTenantId=()=>this.tenantId,hi)return hi;hi=this}setApiUrl(e){this.apiUrl=`https://${e}`}getApiUrl(){return this.apiUrl?this.apiUrl:this.env?lo[this.env]:""}getEnv(){return this.env}setEnv(e){this.env=e}}let nt=null;const ro={init:({appId:t,tenantId:e,env:i="live",apiUrl:n})=>{nt||(nt=new ao),n&&nt.setApiUrl(n),nt.setAppId(t),nt.setTenantId(e),nt.setEnv(i)},getDetail:t=>{if(!nt)return;const e=nt.getTenantId(),i=nt.getAppId(),n=nt.getApiUrl();return fetch(`${n}/storefront/v1/page?path=`+t,{method:"get",headers:{"x-tenant-id":e||"","x-app-id":i||""}}).then(l=>it(void 0,void 0,void 0,function*(){var o,a;const r=yield l.json(),d=Xi((o=r?.data)===null||o===void 0?void 0:o.data);if(d){const{$store:u}=yield Gi(n,(a=d?.dataSource)!==null&&a!==void 0?a:[]);r.data.data=d,Object.assign(r.data.data,{__STORE__:u})}return r}))},getSxpDetailByPageId:t=>it(void 0,void 0,void 0,function*(){if(!nt)return;const e=nt.getTenantId(),i=nt.getAppId(),n=nt.getApiUrl();return fetch(`${n}/storefront/v1/page?id=`+t,{method:"get",headers:{"x-tenant-id":e||"","x-app-id":i||""}}).then(l=>it(void 0,void 0,void 0,function*(){var o;const a=yield l.json();if(!a.success)return;const r=Xi((o=a?.data)===null||o===void 0?void 0:o.data);return a.data.data=r,a.data}))}),getSxpRecommendVideoData:t=>it(void 0,void 0,void 0,function*(){if(!nt)return;const e=yield $n(nt,t),i=Xt(0,0);let n=window.localStorage.getItem("SXP_FAKE_SESSION_ID");Bt(n)&&(n=Xt(36,62),window.localStorage.setItem("SXP_FAKE_SESSION_ID",n));const l=yield fetch("https://dev-sxp-be.chatlabs.net/platform/open/rec/v1.2",{method:"POST",headers:{"Content-Type":"application/json",token:e.token,channel:e.channel,userId:e.userId},body:JSON.stringify({productUserId:n,channel:e.channel,maxRecs:10,requestId:i})}).then(o=>o.json());return l?.data||null})};function ft(){return Nt(dn)}function so(){return Nt(ln)}const gi="feRealSessionIdKey",Ji=()=>{const t=to();return`${Date.now()}${t}`},co=()=>{let t=uo();return t||(t=Ji(),window.sessionStorage.setItem(gi,t)),t},qi=()=>{const t=Ji();window.sessionStorage.setItem(gi,t)},uo=()=>window.sessionStorage.getItem(gi),Ki="SXP_FAKE_USER_ID",Zi="FAKE_USER_STATE",Qi="AGREE_POLICY",$i="SLIDE_SKIP_STATE",en=()=>{let t=window.localStorage.getItem(Ki);return Bt(t)&&(t=Xt(36,62),window.localStorage.setItem(Ki,t)),t},vo=()=>{const t=window.localStorage.getItem(Zi);return Bt(t)&&window.localStorage.setItem(Zi,"true"),Bt(t)},po=()=>{const t=window.localStorage.getItem($i);return Bt(t)},mo=()=>{window.localStorage.setItem($i,"true")};function ct(t,e){const{appDomain:i}=Oe();return ue(()=>e?`https://${e}${t}`:i?`https://${i}${t}`:`${window.location.origin}${t}`,[i,t,e])}const ht=new Kn;var at;(function(t){t.PAGE_DID_SHOW="pageDidShow",t.PAGE_DID_HIDE="pageDidHide",t.CHANGE_THEME_TAG="changeThemeTag"})(at||(at={}));const fo=({width:t=window.innerWidth,height:e=window.innerHeight,privacy_title:i,privacy_context:n,privacy_policy_url:l,privacy_policy_title:o})=>{const{setIsAgreePolicy:a,bffEventReport:r}=Oe(),d=ue(()=>{const f=location.search.slice(1),m=fi.parse(f.replace(/\+/g,"%2B"));for(const h in m)m[h]=m[h].replace(/%2B/g,"+");return m},[]),u=f=>{var m;return(m=d[f])!==null&&m!==void 0?m:null};be(()=>{r?.({eventInfo:{eventSubject:"privacyEnter",eventDescription:"User enter privacy page",utmSource:u("utm_source"),utmMedium:u("utm_medium"),utmCampaign:u("utm_campaign"),utmId:u("utm_id"),utmContent:u("utm_content"),clSource:u("cl_source"),enterTime:`${Date.now()}`,enterUrl:window.location.href,rtc:null,requestId:null,sessionID:null}})},[]);const c=()=>{r?.({eventInfo:{eventSubject:"userConsent",eventDescription:"\u7528\u6237\u6388\u6743\u3010\u64CD\u4F5C\u7ED3\u679C\u3011",consentResult:"0",consentTags:'["\u7CFB\u7EDF\u8FD0\u8425"]',rtc:null,requestId:null,sessionID:null}}),a?.(!0),window.localStorage.setItem(Qi,"yes")};return p.createElement("div",{className:"consent-bg"},p.createElement("div",{className:"consent"},p.createElement("div",{className:"consent-col"},p.createElement("div",{className:"consent-title"},i??"Privacy Policy"),p.createElement("div",{className:"consent-content"},n??"This site uses cookies to improve your online experience. By continuing to use the site please agree the policy first.")),p.createElement("div",{className:"consent-col"},p.createElement("button",{"aria-label":"agree",className:"consent-btn",onClick:c},"Agree"),p.createElement("a",{className:"consent-policy",target:"_blank",href:l?`https://${l}`:void 0},o??"More information"))))};var ho=Ce(fo);const tn=jt({rtcList:[],tagList:[]});var bi;(function(t){t[t.BFF=5]="BFF"})(bi||(bi={}));const Jt="FOR U",go=({render:t,dataSources:e,utmVal:i,enableReportEvent:n=!0,maxSize:l,defaultSize:o,isPreview:a=!1,sxpParameter:r,appDomain:d,hashTagSize:u,loadingImage:c,isOpenHashTag:f=!1,enabledMetaConversionApi:m=!1,consentHeight:h,consentWidth:w,isShowTag:y=!0,isOpenConsent:P=!1,globalConfig:v,isEditor:x=!1,utmParameter:b,channelQueryList:A})=>{var C,g,M;const[k,S]=$([]),[s,E]=$([]),[T,_]=$(!1),[D,O]=$({rtc:"",requestId:""}),j=ge(null),H=ge(!1),[F,B]=$(()=>!!window.localStorage.getItem(Qi)),[R,Z]=$(),[G,ne]=$(),[q,K]=$(f),[V,pe]=$([]),[me,X]=$(0),[Q,le]=$(!1),[ie,de]=$(null),re=ge(),ae=ge(),[oe,Te]=$(Jt),Ie=ge(-1),Be=ge(null),_e=ue(()=>{var J,W,Se,De;return((De=(Se=(W=(J=v?.consent)===null||J===void 0?void 0:J[0])===null||W===void 0?void 0:W.item)===null||Se===void 0?void 0:Se.props)===null||De===void 0?void 0:De.privacy_necessity)&&!F&&!x||P},[F,v,P,x]),He=we(J=>{var W;const Se=J?.recList;return(W=Se?.map(se=>{var Re,Ue,Ge,We,I,N;if(!((Re=se?.video)===null||Re===void 0)&&Re.bindProducts&&((Ge=(Ue=se?.video)===null||Ue===void 0?void 0:Ue.bindProducts)===null||Ge===void 0?void 0:Ge.length)>0){const Y=(N=(I=(We=se?.video)===null||We===void 0?void 0:We.bindProducts)===null||I===void 0?void 0:I.filter(te=>!!te?.bindCta))!==null&&N!==void 0?N:[];return Object.assign(Object.assign({},se),{video:Object.assign(Object.assign({},se?.video),{bindProducts:Y})})}return se}))!==null&&W!==void 0?W:[]},[]);be(()=>{const J=W=>{re.current=W};return ht.on(at.CHANGE_THEME_TAG,J),()=>{ht.off(at.CHANGE_THEME_TAG,J)}},[]),be(()=>{K(f)},[f]);const Ve=ue(()=>e?.find(J=>J.type===bi.BFF),[e]),U=we((J,W)=>{if(!Ve)return;const Se=Ve.url,De=en();if(W?.query){const se=fi.stringify(W.query);J=`${J}?${se}`}return W.type==="beacon"&&navigator.sendBeacon?navigator.sendBeacon(`${Se}/api/v1${J}`,new Blob([JSON.stringify(Object.assign(Object.assign(Object.assign({},Ve.headers),{"x-user-id":De}),W.body))],{type:"application/json;charset=UTF-8"})):window.fetch(`${Se}/api/v1${J}`,{headers:Object.assign({"Content-Type":"application/json","x-user-id":De},Ve.headers),method:W.method,body:JSON.stringify(W.body)}).then(se=>se.json()).catch(se=>Promise.reject(se))},[Ve]),ye=we(J=>it(void 0,void 0,void 0,function*(){var W,Se,De,se,Re,Ue,Ge;if(J=Object.assign(Object.assign({maxSize:(W=J?.maxSize)!==null&&W!==void 0?W:l,defaultSize:(Se=J?.defaultSize)!==null&&Se!==void 0?Se:o,hashTag:J?.hashTag,traceInfo:J?.traceInfo,themeTag:J?.themeTag},J?.contentFilter&&{contentFilter:`[${J?.contentFilter}]`}),J?.productFilter&&{productFilter:`[${J?.productFilter}]`}),i){const I=(Re=(se=(De=i?.split("&"))===null||De===void 0?void 0:De.filter(N=>{var Y,te;const ve=N.split("=")[0];return(te=(Y=b?.channels)!==null&&Y!==void 0?Y:[])===null||te===void 0?void 0:te.includes(ve)}))===null||se===void 0?void 0:se.join("&"))!==null&&Re!==void 0?Re:"";J=Object.assign(Object.assign({},J),{channel:decodeURIComponent(I)})}if(v?.enablePreview||x){if(J=Object.assign(Object.assign(Object.assign({},J),{directPage:!0,level:1}),!i&&A&&A?.length>0&&{channel:A?.[0]}),!J?.channel)return;let I=[],N=null,Y=1;const te=ve=>it(void 0,void 0,void 0,function*(){var he,ee,ce,ke;if(ve.pageNum=Y,N=yield U?.("/recommend/list",{method:"GET",query:ve}),!N?.success)return;const Me=(ee=(he=N?.data)===null||he===void 0?void 0:he.recList)===null||ee===void 0?void 0:ee[0];I=I.concat((ke=(ce=N?.data)===null||ce===void 0?void 0:ce.recList)!==null&&ke!==void 0?ke:[]),(Me?.product||Me?.video)&&(Y=Y+1,yield te(ve))});return yield te(J),!J?.hashTag&&N&&O({rtc:(Ue=N?.data)===null||Ue===void 0?void 0:Ue.rtc,requestId:(Ge=N?.data)===null||Ge===void 0?void 0:Ge.requestId}),Object.assign(Object.assign({},N.data),{recList:I})}const We=yield U?.("/recommend/list",{method:"GET",query:J});if(We?.success)return J?.hashTag||O({rtc:We.data.rtc,requestId:We.data.requestId}),We?.data}),[U,i,l,o,v?.enablePreview,A,x]),Pe=we(()=>it(void 0,void 0,void 0,function*(){var J,W,Se,De;if(k.length<=0)return;const se=k?.[k?.length-1],Re=yield ye(Object.assign(Object.assign(Object.assign({hashTag:G?.hashTag},((J=se?.product)===null||J===void 0?void 0:J.itemId)&&{productFilter:(W=se?.product)===null||W===void 0?void 0:W.itemId}),((Se=se?.video)===null||Se===void 0?void 0:Se.itemId)&&{contentFilter:(De=se?.video)===null||De===void 0?void 0:De.itemId}),{themeTag:re.current}));S(k.concat(He(Re))),pe(V.concat(He(Re)))}),[ye,k,G,V]),fe=we(({userInfo:J,eventInfo:W})=>{if(!n||v?.enablePreview)return;J||(J={});const Se=co(),De=Object.assign(Object.assign({sessionID:Se,rtc:D.rtc,requestId:D.requestId},W),{sxpDevice:oo(),sxpSystem:no(),sxpBrowser:io()}),se=Object.entries(J).map(([Ue,Ge])=>({name:Ue,value:Ge})),Re=Object.entries(De).map(([Ue,Ge])=>Ge&&{name:Ue,value:Ge}).filter(Boolean);return console.log("======== \u4E8B\u4EF6\u4E0A\u62A5 ========"),console.log("userInfo:",J),console.log("eventInfo:",De),console.log("========= \u7ED3\u675F ========="),U?.("/event/report",{method:"POST",body:{userInfo:se,eventInfo:Re},type:"beacon"})},[U,D,n,v?.enablePreview]),Ne=we(J=>{var W,Se,{eventName:De,actionSource:se="website",eventSourceUrl:Re=(W=window?.location)===null||W===void 0?void 0:W.href,externalId:Ue}=J;if(!n||!m||v?.enablePreview)return;const Ge=en();return U?.("/fb/events",{method:"POST",body:{eventName:De,actionSource:se,eventSourceUrl:Re,userData:{externalId:Ge,fbc:`fb.2.${new Date().getTime()}.${Yi("_fbc")}`,fbp:`fb.2.${new Date().getTime()}.${Yi("_fbp")}`,client_user_agent:(Se=window?.navigator)===null||Se===void 0?void 0:Se.userAgent}},type:"beacon"})},[U,n,m,v?.enablePreview]),je=we(J=>it(void 0,void 0,void 0,function*(){const W=yield U?.("/recommend/like",{method:"POST",body:J});return W?.success}),[U]),Ae=we(J=>it(void 0,void 0,void 0,function*(){const W=yield U?.("/recommend/unlike",{method:"POST",body:J});return W?.success}),[U]),z=we(J=>it(void 0,void 0,void 0,function*(){const W=yield U?.("/customform",{method:"POST",body:J});return W?.success}),[U]),L=we(()=>it(void 0,void 0,void 0,function*(){var J,W,Se,De,se;if(!(!i||!y))try{const Re=(Se=(W=(J=i?.split("&"))===null||J===void 0?void 0:J.filter(Ge=>{var We,I;const N=Ge.split("=")[0];return(I=(We=b?.channels)!==null&&We!==void 0?We:[])===null||I===void 0?void 0:I.includes(N)}))===null||W===void 0?void 0:W.join("&"))!==null&&Se!==void 0?Se:"",Ue=yield U?.("/tag/list",{method:"GET",query:{channel:decodeURIComponent(Re)}});E((se=(De=Ue?.data)===null||De===void 0?void 0:De.tags)!==null&&se!==void 0?se:[])}catch(Re){console.log("e",Re)}}),[U,i,y]),Fe=we((J,W,Se,De)=>{var se,Re,Ue,Ge,We,I,N,Y,te,ve,he,ee,ce,ke,Me,Ye,Je,qe,Qe,$e,Le,Xe,dt,Ke,pt,mt,xt,Tt,ze,ai,ri,si,ci,ui,vi,pi;const At=Se?.bindCta,Yn=((se=W?.video)===null||se===void 0?void 0:se.bindProduct)||((Re=W?.video)===null||Re===void 0?void 0:Re.bindProducts)&&((Ge=(Ue=W?.video)===null||Ue===void 0?void 0:Ue.bindProducts)===null||Ge===void 0?void 0:Ge.length)>0;let Gt="";Q?Gt="hashTagPage":!((We=W?.video)===null||We===void 0)&&We.url?Gt="videoPage":!((N=(I=W?.video)===null||I===void 0?void 0:I.imgUrls)===null||N===void 0)&&N.length&&(Gt="imagePage");const ji=(ke=(ee=(Y=Se?.tags)!==null&&Y!==void 0?Y:(he=(ve=(te=W?.video)===null||te===void 0?void 0:te.bindProducts)===null||ve===void 0?void 0:ve[0])===null||he===void 0?void 0:he.tags)!==null&&ee!==void 0?ee:(ce=W?.video)===null||ce===void 0?void 0:ce.tags)!==null&&ke!==void 0?ke:(Me=W?.product)===null||Me===void 0?void 0:Me.tags;fe?.({eventInfo:Object.assign(Object.assign({},J),{ctaId:(Ye=At?.itemId)!==null&&Ye!==void 0?Ye:"",ctaName:(Je=At?.title)!==null&&Je!==void 0?Je:"",contentTags:ji?JSON.stringify(ji):"",position:De+"",contentId:(Qe=(qe=W?.video)===null||qe===void 0?void 0:qe.itemId)!==null&&Qe!==void 0?Qe:"",productId:Yn?Se?.itemId:"",traceInfo:(vi=(si=(xt=(dt=($e=At?.traceInfo)!==null&&$e!==void 0?$e:(Xe=(Le=W?.video)===null||Le===void 0?void 0:Le.bindCta)===null||Xe===void 0?void 0:Xe.traceInfo)!==null&&dt!==void 0?dt:(mt=(pt=(Ke=W?.video)===null||Ke===void 0?void 0:Ke.bindProduct)===null||pt===void 0?void 0:pt.bindCta)===null||mt===void 0?void 0:mt.traceInfo)!==null&&xt!==void 0?xt:(ri=(ai=(ze=(Tt=W?.video)===null||Tt===void 0?void 0:Tt.bindProducts)===null||ze===void 0?void 0:ze[0])===null||ai===void 0?void 0:ai.bindCta)===null||ri===void 0?void 0:ri.traceInfo)!==null&&si!==void 0?si:(ui=(ci=W?.product)===null||ci===void 0?void 0:ci.bindCta)===null||ui===void 0?void 0:ui.traceInfo)!==null&&vi!==void 0?vi:"",fromKName:Gt,fromKPage:(pi=location?.href)!==null&&pi!==void 0?pi:""})})},[fe,Q]),st=we(()=>{var J,W;const Se=location.search.slice(1),De=fi.parse(Se.replace(/\+/g,"%2B"));for(const Ue in De)De[Ue]=De[Ue].replace(/%2B/g,"+");const se=Ue=>{var Ge;return(Ge=De[Ue])!==null&&Ge!==void 0?Ge:""},Re=new Date;ae.current=Re,fe?.({eventInfo:{eventSubject:"h5LinkEnterFeed",eventDescription:"User enter h5 link",utmSource:se("utm_source"),utmMedium:se("utm_medium"),utmCampaign:se("utm_campaign"),utmId:se("utm_id"),utmContent:se("utm_content"),enterTime:Math.floor(Re/1e3)+"",requestId:null,enterUrl:(W=(J=window?.location)===null||J===void 0?void 0:J.href)!==null&&W!==void 0?W:"",clSource:se("cl_source")}})},[fe]);be(()=>{_e||st()},[_e]),be(()=>{_e||(_(!0),L(),ye().then(J=>{S(He(J)),pe(He(J))}).finally(()=>{fe({eventInfo:{eventSubject:"apiRequest",eventDescription:"api request succeed"}}),_(!1),H.current=!0}))},[_e]),be(()=>{!H.current&&!x||(_(!0),L(),ye().then(J=>{S(He(J)),pe(He(J))}).finally(()=>{_(!1)}))},[L,x,ye]);const kt=ct("/pb_static/a65d23c5893c49d7aaaa81681d3179e2.gif",d);return p.createElement(tn.Provider,{value:{rtcList:k,setRtcList:S,mutateLike:je,mutateUnlike:Ae,submitForm:z,popupDetailData:R,loadVideos:Pe,setPopupDetailData:Z,getRecommendVideos:ye,bffEventReport:fe,utmVal:i,isPreview:a,loading:T,sxpParameter:r,waterFallData:G,setWaterFallData:ne,ctaEvent:Fe,swiperRef:j,openHashtag:q,setOpenHashtag:K,cacheRtcList:V,setCacheRtcList:pe,cacheActiveIndex:me,setCacheActiveIndex:X,isFromHashtag:Q,setIsFromHashtag:le,appDomain:d,hashTagSize:u,loadingImage:c??kt,isOpenHashTag:f,tagList:s,setLoading:_,videoRef:ie,setVideoRef:de,bffFbReport:Ne,isAgreePolicy:F,setIsAgreePolicy:B,curTime:ae,h5EnterLink:st,themeTag:re,isShowConsent:_e,selectTag:oe,setSelectTag:Te,globalConfig:v,popupCurTimeRef:Be,checkCommodityIndexRef:Ie}},_e?p.createElement(ho,Object.assign({},(M=(g=(C=v?.consent)===null||C===void 0?void 0:C[0])===null||g===void 0?void 0:g.item)===null||M===void 0?void 0:M.props)):t({rtcList:k,mutateLike:je,mutateUnlike:Ae,submitForm:z,tagList:s}))};var nn=Ce(go);function Oe(){return Nt(tn)}var on;(function(t){t.STRING="string",t.NUMBER="number",t.ARRAY="array",t.OBJECT="object",t.BOOLEAN="boolean",t.ARRAY_OBJECT="array-object",t.ARRAY_STRING="array-string",t.ARRAY_NUMBER="array-number"})(on||(on={}));const ln=jt({$store:{},options:[],configs:[]}),bo=({children:t,isSsr:e,enable:i})=>{const[n,l]=$([]),{schema:o}=ft(),[a,r]=$(o.__STORE__||{}),[d,u]=$([]);be(()=>{var m;e||Vi(d,o?.dataSource)||u((m=o?.dataSource)!==null&&m!==void 0?m:[])},[o?.dataSource,e]);const c=we(()=>it(void 0,void 0,void 0,function*(){const{$store:m,idMapName:h}=yield Gi("",d);r(m),f(m,h)}),[d]),f=(m,h)=>{const w=[];Object.entries(m).forEach(([y,P])=>{Object.keys(P).forEach(v=>{const x={label:`${h[y]} - ${v}`,value:`{{ ${y}.${v} }}`};w.push(x)})}),l(w)};return be(()=>{e||c()},[c,e,o]),i?p.createElement(ln.Provider,{value:{$store:o.__STORE__||a,options:n,configs:d}},t):t};var yo=Ce(bo);const qt={id:Xt(6,10),item:{type:"common",h:300,category:"block",displayName:"block",isFirstLayout:!0,w:1e3},point:{i:"x-0",x:-38.34375,y:0,w:1e3,h:300,isBounded:!0,actualX:0,actualY:0},pathArr:[0],positionY:0},yi={id:"",duration:0,name:"none"},dn=p.createContext({resolver:{},currentNode:null,schema:{pointData:[],dataSource:[],mobilePiontData:[],type:"PC",pcPiontData:[],pageInfo:{},pcPageConf:{},mobilePageConf:{},__STORE__:{},sxpPageConf:{}},pageInfoData:{},prePiontData:[],undoStack:[qt],redoStack:[],popup:yi,setPopup:()=>{}}),an=Yt(({children:t,resolver:e,isSsr:i,schema:n,enableDataSource:l=!0,utmVal:o},a)=>{const[r,d]=$(null),[u,c]=$(n||{pointData:[qt],dataSource:[],mobilePiontData:[],type:"PC",pcPiontData:[],pageInfo:{},pcPageConf:{},mobilePageConf:{},sxpPageConf:{}}),[f,m]=$([qt]),[h,w]=$([[qt]]),[y,P]=$([]),[v,x]=$(yi);typeof window<"u"&&(window.sxpPopup=(M,k)=>{x(Object.assign(Object.assign(Object.assign({},yi),{id:M}),k))}),typeof window<"u"&&(window.getJointUtmLink=M=>(mo(),M?.indexOf("?")!==-1?M+(o?"&"+o:""):M+(o?"?"+o:""))),be(()=>{w([u.pointData]),P([])},[u.type]);const b=we(M=>{const k=Wt(u);k&&(k.dataSource=M,c?.(k))},[u]),[A,C]=$();Hi(a,()=>({loadSchema(M){M&&(w([M.pointData]),c(M))},exportSchema(){return Wt(u)},getPageInfoData(){return A},initPageInfoData(M){M&&C(M)}}));const g=ue(()=>{if(u)return u.type==="PC"?u.pcPageConf:u.mobilePageConf},[u]);return p.createElement(dn.Provider,{value:{resolver:e,currentNode:r,schema:u,setCurrentNode:d,setSchema:c,saveDataSource:b,prePiontData:f,setPrePiontData:m,pageInfoData:A,setPageInfoData:M=>C(Object.assign(Object.assign({},A),M)),undoStack:h,redoStack:y,setRedoStack:P,setUndoStack:w,getCurPageConf:g,popup:v,setPopup:x}},p.createElement(yo,{isSsr:i,enable:l},t))});var wo=Object.freeze({__proto__:null,EditorCore:an}),So=[{title:"\u70B9\u51FB\u4E8B\u4EF6",child:[{type:"link",name:"onClick"}]}],xo=[{title:"\u5F39\u7A97\u80CC\u666F",child:[{type:"Number",label:"\u5DE6\u53F3\u8FB9\u8DDD",name:["props","popupBg","horizontalMargin"]},{type:"Number",label:"\u4E0B\u8FB9\u8DDD",name:["props","popupBg","bottomMargin"]}]},{type:"Text",label:"\u7EC4\u4EF6\u540D\u79F0",name:"name"},{title:"\u8868\u5355\u4FE1\u606F",child:[{type:"Text",label:"\u6807\u9898",name:["props","title"]},{type:"Group",label:"\u6807\u9898\u5B57\u4F53",child:[{type:"Select",name:["textStyle","fontFamily-cn"],bottomText:"\u4E2D\u6587\u5B57\u4F53"},{type:"Select",name:["textStyle","fontFamily-en"],bottomText:"\u82F1\u6587/\u5176\u4ED6\u5B57\u4F53"}]},{type:"Group",label:"",child:[{type:"Color",name:["textStyle","color"]},{type:"Number",name:["textStyle","fontSize"],addonAfter:"px"}]},{label:"\u6807\u9898\u6837\u5F0F",type:"TextStyle",name:["textStyle"]},{label:"\u6807\u9898\u5BF9\u9F50",type:"TextAlign",name:["textStyle"]},{label:"\u6807\u9898\u95F4\u8DDD",type:"TextSpace",name:["textStyle"]},{label:"\u8868\u5355\u5E03\u5C40",type:"Radius",options:[{label:"\u5DE6\u53F3",value:"horizontal"},{label:"\u4E0A\u4E0B",value:"vertical"},{label:"\u63D0\u793A",value:void 0}],name:["props","layoutType"]},{label:"\u63D0\u4EA4\u6309\u94AE\u6587\u672C",type:"Text",name:["props","submitText"]},{type:"Group",label:"\u63D0\u4EA4\u6309\u94AE\u5B57\u4F53",child:[{type:"Select",name:["props","submitButtonStyle","fontFamily-cn"],bottomText:"\u4E2D\u6587\u5B57\u4F53"},{type:"Select",name:["props","submitButtonStyle","fontFamily-en"],bottomText:"\u82F1\u6587/\u5176\u4ED6\u5B57\u4F53"}]},{type:"Group",label:"",child:[{type:"Color",name:["props","submitButtonStyle","color"],initialValue:"#fff"},{type:"Number",name:["props","submitButtonStyle","fontSize"],addonAfter:"px",initialValue:12}]},{label:"\u63D0\u4EA4\u6309\u94AE\u6587\u672C\u6837\u5F0F",type:"TextStyle",name:["props","submitButtonStyle"]},{label:"\u63D0\u4EA4\u6309\u94AE\u5BF9\u9F50",type:"TextAlign",name:["props","submitButtonStyle"]},{label:"\u63D0\u4EA4\u6309\u94AE\u989C\u8272",type:"Color",name:["props","submitBgColor"]},{label:"\u63D0\u4EA4\u6309\u94AE\u95F4\u8DDD",type:"TextSpace",name:["props","submitButtonStyle"]}]},{title:"\u8868\u5355\u9879",child:[{type:"AddFormItems",name:["props","columns"]}]}];function et(){const{bffEventReport:t,popupDetailData:e,waterFallData:i,isFromHashtag:n}=Oe(),l=we((r,d,u,c,f)=>{var m,h,w,y,P,v,x,b,A,C,g,M,k,S,s,E,T,_,D,O,j,H,F,B,R,Z,G,ne,q,K,V,pe,me,X;let Q="";e&&(!((h=(m=r?.video)===null||m===void 0?void 0:m.bindProducts)===null||h===void 0)&&h.length||!((w=r?.video)===null||w===void 0)&&w.bindProduct)?Q="pdpPage":n?Q="hashTagPage":!((y=r?.video)===null||y===void 0)&&y.url?Q="videoPage":!((P=r?.video)===null||P===void 0)&&P.imgUrls&&(!((x=(v=r?.video)===null||v===void 0?void 0:v.imgUrls)===null||x===void 0)&&x.length)?Q="imagePage":r?.product&&(Q="productPage");const le=(S=(M=(b=d?.tags)!==null&&b!==void 0?b:(g=(C=(A=r?.video)===null||A===void 0?void 0:A.bindProducts)===null||C===void 0?void 0:C[0])===null||g===void 0?void 0:g.tags)!==null&&M!==void 0?M:(k=r?.video)===null||k===void 0?void 0:k.tags)!==null&&S!==void 0?S:(s=r?.product)===null||s===void 0?void 0:s.tags;t?.({eventInfo:{eventSubject:"jumpToWeb",eventDescription:"User jumped to website",productId:(E=d?.itemId)!==null&&E!==void 0?E:"",productName:(T=d?.title)!==null&&T!==void 0?T:"",price:d?.price?d?.price+"":"0",productCollection:(_=d?.collection)!==null&&_!==void 0?_:"",fromKName:Q,fromKPage:location?.href,contentTags:le?JSON.stringify(le):"",position:c+"",contentId:(O=(D=r?.video)===null||D===void 0?void 0:D.itemId)!==null&&O!==void 0?O:"",ctatId:(j=u?.itemId)!==null&&j!==void 0?j:"",traceInfo:(X=(V=(q=(R=(H=f??d?.traceInfo)!==null&&H!==void 0?H:(B=(F=r?.video)===null||F===void 0?void 0:F.bindProduct)===null||B===void 0?void 0:B.traceInfo)!==null&&R!==void 0?R:(ne=(G=(Z=r?.video)===null||Z===void 0?void 0:Z.bindProducts)===null||G===void 0?void 0:G[0])===null||ne===void 0?void 0:ne.traceInfo)!==null&&q!==void 0?q:(K=r?.product)===null||K===void 0?void 0:K.traceInfo)!==null&&V!==void 0?V:(me=(pe=r?.video)===null||pe===void 0?void 0:pe.bindCta)===null||me===void 0?void 0:me.traceInfo)!==null&&X!==void 0?X:""}})},[t,e,n]),o=we((r,d,u,c,f)=>{var m,h,w,y,P,v,x,b,A,C,g,M,k,S;let s="";e&&(!((h=(m=r?.video)===null||m===void 0?void 0:m.bindProducts)===null||h===void 0)&&h.length||!((w=r?.video)===null||w===void 0)&&w.bindProduct)?s="pdpPage":r?.product&&(s="productPage"),t?.({eventInfo:{productId:d?.itemId,productName:d?.title,price:d?.price?d?.price+"":"0",productCollection:d?.collection,fromKName:s,fromKPage:location?.href,contentTags:JSON.stringify(d?.tags),position:f+"",contentId:(y=r?.video)===null||y===void 0?void 0:y.itemId,ctatId:u?.itemId,traceInfo:(S=(M=(b=(P=d?.traceInfo)!==null&&P!==void 0?P:(x=(v=r?.video)===null||v===void 0?void 0:v.bindProduct)===null||x===void 0?void 0:x.traceInfo)!==null&&b!==void 0?b:(g=(C=(A=r?.video)===null||A===void 0?void 0:A.bindProducts)===null||C===void 0?void 0:C[0])===null||g===void 0?void 0:g.traceInfo)!==null&&M!==void 0?M:(k=r?.product)===null||k===void 0?void 0:k.traceInfo)!==null&&S!==void 0?S:"",timeOnSite:Math.floor((new Date-c)/1e3)+"",eventSubject:"productView",eventDescription:"User browsed the product"}})},[t,e]),a=we((r,d,u,c)=>{d&&d===Jt&&t?.({eventInfo:{lastFeed:r,themeTags:u?`['${u}']`:"",hashTags:c?`['${c}']`:"",eventSubject:"backMainFeed",eventDescription:"back Main Feed"}})},[t]);return{jumpToWeb:l,productView:o,backMainFeed:a}}const To=({layout:t,columns:e,onChange:i})=>p.createElement(p.Fragment,null,e?.map((n,l)=>p.createElement("div",{key:l,className:"pb-appoint-form-container-item",style:{flexDirection:t==="horizontal"?"row":"column"}},t!=="inline"&&p.createElement("label",{className:"pb-appoint-form-container-label"},n?.title),n?.valueType==="text"&&p.createElement("input",Object.assign({className:"pb-appoint-form-container-input",type:"text",placeholder:t==="inline"?n?.title:"\u8BF7\u8F93\u5165",name:n?.dataIndex},i&&{onChange:i})))));var Ao=Ce(To);const Eo=t=>{var{columns:e,style:i,title:n,textStyle:l,submitBgColor:o,submitColor:a,submitText:r,layoutType:d="inline",isExternalLink:u,isPopup:c,onClick:f,onClose:m,submitButtonStyle:h}=t,w=Ze(t,["columns","style","title","textStyle","submitBgColor","submitColor","submitText","layoutType","isExternalLink","isPopup","onClick","onClose","submitButtonStyle"]);const{submitForm:y,popupDetailData:P}=Oe(),{jumpToWeb:v}=et(),[x,b]=$(!1),A=ue(()=>[{title:"",dataIndex:"field",valueType:"text",key:"1"},{title:"",dataIndex:"field",valueType:"text",key:"2"},{title:"",dataIndex:"field",valueType:"text",key:"3"},{title:"",dataIndex:"field",valueType:"text",key:"4"}],[]),[C,g]=$({}),M=ue(()=>Wt(e)||A,[e,A]),k=we(s=>{const{name:E,value:T}=s.target;g(Object.assign(Object.assign({},C),{[E]:T}))},[C]),S=mi(()=>it(void 0,void 0,void 0,function*(){var s,E,T,_,D;const O=C;if(!O)return;const j=(E=(s=Object.keys(O))===null||s===void 0?void 0:s.map(F=>{var B;return{name:F,value:(B=O[F])!==null&&B!==void 0?B:""}}))===null||E===void 0?void 0:E.filter(F=>F?.value);if(!j||!j?.length)return;b(!0);const H=yield y?.({attributes:j});if(b(!1),H){if(u){const F=P,B=(T=F?.video)===null||T===void 0?void 0:T.bindProduct,R=(D=(_=F?.video)===null||_===void 0?void 0:_.bindProduct)===null||D===void 0?void 0:D.bindCta,Z=P?.index;v(F,B,R,Z)}c||m?.(),f?.()}}),1e3);return p.createElement("div",{className:"pb-appoint-form"},p.createElement("div",{className:`pb-appoint-form-title ${Ee(Object.assign({},l))}`,dangerouslySetInnerHTML:{__html:xe(n,l)}}),p.createElement("div",Object.assign({className:Ee(Object.assign({},i))},w),p.createElement("div",{className:"pb-appoint-form-container"},p.createElement(Ao,{columns:M,layout:d,onChange:k}))),p.createElement("div",{className:"pb-appoint-form-btn-wrapper"},p.createElement("button",{"aria-label":r,onClick:S,className:"pb-appoint-form-btn",style:Object.assign({color:a,background:o},h),dangerouslySetInnerHTML:{__html:xe(x?"loading...":r,h)}})))};var Io=Ce(Eo);function tt(t,e){return t.extend=e,t}const Co=tt(Io,{displayName:"\u9884\u7EA6\u8868\u5355",icon:"",category:"popup",type:"AppointForm",related:{settingRender:xo,bindableProps:[],interactionRender:So},defaulSetting:{name:"\u8868\u5355",props:{title:"Appointment Booking",submitColor:"#fff",submitBgColor:"#000",submitText:"Submit",layoutType:void 0},style:{},textStyle:{fontSize:14,color:"#000",textAlign:"center"}},w:100,h:40,sort:2});var ko=[{title:"\u5F39\u7A97\u80CC\u666F",child:[{type:"Number",label:"\u5DE6\u53F3\u8FB9\u8DDD",name:["props","popupBg","horizontalMargin"]},{type:"Number",label:"\u4E0B\u8FB9\u8DDD",name:["props","popupBg","bottomMargin"]}]},{title:"\u5546\u54C1\u56FE\u7247",child:[{type:"Group",label:"\u5BBD\u9AD8\u6BD4",child:[{type:"Number",name:["props","commodityImgRatio","w"],addonAfter:"w"},{type:"Number",name:["props","commodityImgRatio","h"],addonAfter:"h"}]},{type:"Radius",label:"\u8F6E\u64AD\u6307\u793A\u5668",options:[{label:"\u5C45\u5DE6",value:"left"},{label:"\u5C45\u4E2D",value:"center"},{label:"\u5C45\u53F3",value:"right"}],name:["props","swiper","dotsAlign"]},{type:"Number",name:["props","swiper","delay"],addonAfter:"s"},{type:"Group",child:[{label:"\u5C45\u4E2D\u5782\u76F4\u504F\u79FB",type:"Number",name:["props","swiper","translateY"],min:-1e3,addonAfter:"%",initialValue:0}]}]},{title:"\u591A\u5546\u54C1\u5207\u6362\u5668",child:[{type:"Switch",name:["props","commodityGroup","open"],label:"\u5FEB\u901F\u5207\u6362\u5F00\u5173"},{type:"Group",child:[{label:"\u5C45\u4E2D\u5782\u76F4\u504F\u79FB",type:"Number",name:["props","commodityGroup","translateY"],min:-1e3,addonAfter:"%",initialValue:0}]},{type:"Group",child:[{label:"\u4E0A\u8FB9\u8DDD",name:["props","commodityGroup","style","marginTop"],type:"Number",addonAfter:"px",initialValue:20},{label:"\u4E0B\u8FB9\u8DDD",name:["props","commodityGroup","style","marginBottom"],type:"Number",addonAfter:"px"}]}]},{title:"\u5546\u54C1\u6587\u672C",child:[{name:["props","commodityStyles"],type:"SelectLinkage",child:[{label:"\u5B57\u6BB5",type:"Select",options:[{label:"\u5546\u54C1\u540D\u79F0",value:"title"},{label:"\u7CFB\u5217\u540D\u79F0",value:"collection"},{label:"\u4EF7\u683C",value:"price"},{label:"\u5546\u54C1\u63CF\u8FF0",value:"info"},{label:"\u7A0E\u8D39\u8BF4\u660E",value:"taxInfo"}],name:["props","commodityStyles","field"],initialValue:"title"},{type:"Group",child:[{label:"\u4E0A\u8FB9\u8DDD",type:"Number",addonAfter:"px",name:["marginTop"]},{label:"\u4E0B\u8FB9\u8DDD",type:"Number",addonAfter:"px",name:["marginBottom"]}]},{type:"Group",label:"\u6807\u9898\u5B57\u4F53",child:[{type:"Select",name:["fontFamily-cn"],bottomText:"\u4E2D\u6587\u5B57\u4F53"},{type:"Select",name:["fontFamily-en"],bottomText:"\u82F1\u6587/\u5176\u4ED6\u5B57\u4F53"}]},{type:"Group",label:"",child:[{type:"Color",name:["color"]},{type:"Number",addonAfter:"px",name:["fontSize"]}]},{label:"\u6807\u9898\u6837\u5F0F",type:"TextStyle"},{label:"\u6807\u9898\u5BF9\u9F50",type:"TextAlign"},{label:"\u9ED8\u8BA4\u884C\u6570",type:"Number",name:["lineClamp"]},{label:"\u95F4\u8DDD",type:"TextSpace"},{label:"\u4EF7\u683C\u5343\u5206\u7B26\u5C55\u793A",type:"Switch",name:["enableFormattedPrice"],initialValue:!0}]}]},{title:"\u8D2D\u4E70\u6309\u94AE\u6837\u5F0F",child:[{type:"Color",label:"\u80CC\u666F\u8272",name:["props","buttonStyle","backgroundColor"],initialValue:"#000"},{type:"Group",label:"\u5C3A\u5BF8",child:[{type:"Number",name:["props","buttonStyle","height"],addonAfter:"H"}]},{type:"Group",label:"\u5706\u89D2",child:[{type:"Slider",name:["props","buttonStyle","borderRadius"],max:100},{type:"Number",name:["props","buttonStyle","borderRadius"],addonAfter:"px",max:100}]},{type:"TextMargin",name:["props","buttonStyle"]},{type:"Group",label:"\u5B57\u4F53",child:[{type:"Select",name:["props","buttonStyle","fontFamily-cn"],bottomText:"\u4E2D\u6587\u5B57\u4F53"},{type:"Select",name:["props","buttonStyle","fontFamily-en"],bottomText:"\u82F1\u6587/\u5176\u4ED6\u5B57\u4F53"}]},{type:"Group",label:"",child:[{type:"Color",name:["props","buttonStyle","color"],initialValue:"#fff"},{type:"Number",name:["props","buttonStyle","fontSize"],addonAfter:"px"}]},{type:"TextStyle",name:["props","buttonStyle"]},{type:"TextAlign",name:["props","buttonStyle"]},{label:"\u95F4\u8DDD",type:"TextSpace",name:["props","buttonStyle"]}]},{title:"Iframe\u5546\u54C1\u5F39\u7A97",child:[{label:"\u5F39\u7A97\u6309\u94AE",type:"Upload",name:["props","iframeIcon"],text:"\u5EFA\u8BAE\u5C3A\u5BF8\uFF1A106 * 41"}]}];function rn(t){return t!==null&&typeof t=="object"&&"constructor"in t&&t.constructor===Object}function wi(t,e){t===void 0&&(t={}),e===void 0&&(e={}),Object.keys(e).forEach(i=>{typeof t[i]>"u"?t[i]=e[i]:rn(e[i])&&rn(t[i])&&Object.keys(e[i]).length>0&&wi(t[i],e[i])})}const sn={body:{},addEventListener(){},removeEventListener(){},activeElement:{blur(){},nodeName:""},querySelector(){return null},querySelectorAll(){return[]},getElementById(){return null},createEvent(){return{initEvent(){}}},createElement(){return{children:[],childNodes:[],style:{},setAttribute(){},getElementsByTagName(){return[]}}},createElementNS(){return{}},importNode(){return null},location:{hash:"",host:"",hostname:"",href:"",origin:"",pathname:"",protocol:"",search:""}};function gt(){const t=typeof document<"u"?document:{};return wi(t,sn),t}const _o={document:sn,navigator:{userAgent:""},location:{hash:"",host:"",hostname:"",href:"",origin:"",pathname:"",protocol:"",search:""},history:{replaceState(){},pushState(){},go(){},back(){}},CustomEvent:function(){return this},addEventListener(){},removeEventListener(){},getComputedStyle(){return{getPropertyValue(){return""}}},Image(){},Date(){},screen:{},setTimeout(){},clearTimeout(){},matchMedia(){return{}},requestAnimationFrame(t){return typeof setTimeout>"u"?(t(),null):setTimeout(t,0)},cancelAnimationFrame(t){typeof setTimeout>"u"||clearTimeout(t)}};function ot(){const t=typeof window<"u"?window:{};return wi(t,_o),t}function It(t){return t===void 0&&(t=""),t.trim().split(" ").filter(e=>!!e.trim())}function Po(t){const e=t;Object.keys(e).forEach(i=>{try{e[i]=null}catch{}try{delete e[i]}catch{}})}function Dt(t,e){return e===void 0&&(e=0),setTimeout(t,e)}function ut(){return Date.now()}function Do(t){const e=ot();let i;return e.getComputedStyle&&(i=e.getComputedStyle(t,null)),!i&&t.currentStyle&&(i=t.currentStyle),i||(i=t.style),i}function Oo(t,e){e===void 0&&(e="x");const i=ot();let n,l,o;const a=Do(t);return i.WebKitCSSMatrix?(l=a.transform||a.webkitTransform,l.split(",").length>6&&(l=l.split(", ").map(r=>r.replace(",",".")).join(", ")),o=new i.WebKitCSSMatrix(l==="none"?"":l)):(o=a.MozTransform||a.OTransform||a.MsTransform||a.msTransform||a.transform||a.getPropertyValue("transform").replace("translate(","matrix(1, 0, 0, 1,"),n=o.toString().split(",")),e==="x"&&(i.WebKitCSSMatrix?l=o.m41:n.length===16?l=parseFloat(n[12]):l=parseFloat(n[4])),e==="y"&&(i.WebKitCSSMatrix?l=o.m42:n.length===16?l=parseFloat(n[13]):l=parseFloat(n[5])),l||0}function Kt(t){return typeof t=="object"&&t!==null&&t.constructor&&Object.prototype.toString.call(t).slice(8,-1)==="Object"}function Mo(t){return typeof window<"u"&&typeof window.HTMLElement<"u"?t instanceof HTMLElement:t&&(t.nodeType===1||t.nodeType===11)}function rt(){const t=Object(arguments.length<=0?void 0:arguments[0]),e=["__proto__","constructor","prototype"];for(let i=1;i<arguments.length;i+=1){const n=i<0||arguments.length<=i?void 0:arguments[i];if(n!=null&&!Mo(n)){const l=Object.keys(Object(n)).filter(o=>e.indexOf(o)<0);for(let o=0,a=l.length;o<a;o+=1){const r=l[o],d=Object.getOwnPropertyDescriptor(n,r);d!==void 0&&d.enumerable&&(Kt(t[r])&&Kt(n[r])?n[r].__swiper__?t[r]=n[r]:rt(t[r],n[r]):!Kt(t[r])&&Kt(n[r])?(t[r]={},n[r].__swiper__?t[r]=n[r]:rt(t[r],n[r])):t[r]=n[r])}}}return t}function Zt(t,e,i){t.style.setProperty(e,i)}function cn(t){let{swiper:e,targetPosition:i,side:n}=t;const l=ot(),o=-e.translate;let a=null,r;const d=e.params.speed;e.wrapperEl.style.scrollSnapType="none",l.cancelAnimationFrame(e.cssModeFrameID);const u=i>o?"next":"prev",c=(m,h)=>u==="next"&&m>=h||u==="prev"&&m<=h,f=()=>{r=new Date().getTime(),a===null&&(a=r);const m=Math.max(Math.min((r-a)/d,1),0),h=.5-Math.cos(m*Math.PI)/2;let w=o+h*(i-o);if(c(w,i)&&(w=i),e.wrapperEl.scrollTo({[n]:w}),c(w,i)){e.wrapperEl.style.overflow="hidden",e.wrapperEl.style.scrollSnapType="",setTimeout(()=>{e.wrapperEl.style.overflow="",e.wrapperEl.scrollTo({[n]:w})}),l.cancelAnimationFrame(e.cssModeFrameID);return}e.cssModeFrameID=l.requestAnimationFrame(f)};f()}function yt(t,e){return e===void 0&&(e=""),[...t.children].filter(i=>i.matches(e))}function Qt(t){try{console.warn(t);return}catch{}}function Vt(t,e){e===void 0&&(e=[]);const i=document.createElement(t);return i.classList.add(...Array.isArray(e)?e:It(e)),i}function Lo(t){const e=ot(),i=gt(),n=t.getBoundingClientRect(),l=i.body,o=t.clientTop||l.clientTop||0,a=t.clientLeft||l.clientLeft||0,r=t===e?e.scrollY:t.scrollTop,d=t===e?e.scrollX:t.scrollLeft;return{top:n.top+r-o,left:n.left+d-a}}function Ro(t,e){const i=[];for(;t.previousElementSibling;){const n=t.previousElementSibling;e?n.matches(e)&&i.push(n):i.push(n),t=n}return i}function Bo(t,e){const i=[];for(;t.nextElementSibling;){const n=t.nextElementSibling;e?n.matches(e)&&i.push(n):i.push(n),t=n}return i}function Ct(t,e){return ot().getComputedStyle(t,null).getPropertyValue(e)}function $t(t){let e=t,i;if(e){for(i=0;(e=e.previousSibling)!==null;)e.nodeType===1&&(i+=1);return i}}function un(t,e){const i=[];let n=t.parentElement;for(;n;)e?n.matches(e)&&i.push(n):i.push(n),n=n.parentElement;return i}function Si(t,e){function i(n){n.target===t&&(e.call(t,n),t.removeEventListener("transitionend",i))}e&&t.addEventListener("transitionend",i)}function xi(t,e,i){const n=ot();return i?t[e==="width"?"offsetWidth":"offsetHeight"]+parseFloat(n.getComputedStyle(t,null).getPropertyValue(e==="width"?"margin-right":"margin-top"))+parseFloat(n.getComputedStyle(t,null).getPropertyValue(e==="width"?"margin-left":"margin-bottom")):t.offsetWidth}function wt(t){return(Array.isArray(t)?t:[t]).filter(e=>!!e)}function Fo(t){let{swiper:e,extendParams:i,on:n,emit:l}=t;const o=ot();i({mousewheel:{enabled:!1,releaseOnEdges:!1,invert:!1,forceToAxis:!1,sensitivity:1,eventsTarget:"container",thresholdDelta:null,thresholdTime:null,noMousewheelClass:"swiper-no-mousewheel"}}),e.mousewheel={enabled:!1};let a,r=ut(),d;const u=[];function c(b){let M=0,k=0,S=0,s=0;return"detail"in b&&(k=b.detail),"wheelDelta"in b&&(k=-b.wheelDelta/120),"wheelDeltaY"in b&&(k=-b.wheelDeltaY/120),"wheelDeltaX"in b&&(M=-b.wheelDeltaX/120),"axis"in b&&b.axis===b.HORIZONTAL_AXIS&&(M=k,k=0),S=M*10,s=k*10,"deltaY"in b&&(s=b.deltaY),"deltaX"in b&&(S=b.deltaX),b.shiftKey&&!S&&(S=s,s=0),(S||s)&&b.deltaMode&&(b.deltaMode===1?(S*=40,s*=40):(S*=800,s*=800)),S&&!M&&(M=S<1?-1:1),s&&!k&&(k=s<1?-1:1),{spinX:M,spinY:k,pixelX:S,pixelY:s}}function f(){e.enabled&&(e.mouseEntered=!0)}function m(){e.enabled&&(e.mouseEntered=!1)}function h(b){return e.params.mousewheel.thresholdDelta&&b.delta<e.params.mousewheel.thresholdDelta||e.params.mousewheel.thresholdTime&&ut()-r<e.params.mousewheel.thresholdTime?!1:b.delta>=6&&ut()-r<60?!0:(b.direction<0?(!e.isEnd||e.params.loop)&&!e.animating&&(e.slideNext(),l("scroll",b.raw)):(!e.isBeginning||e.params.loop)&&!e.animating&&(e.slidePrev(),l("scroll",b.raw)),r=new o.Date().getTime(),!1)}function w(b){const A=e.params.mousewheel;if(b.direction<0){if(e.isEnd&&!e.params.loop&&A.releaseOnEdges)return!0}else if(e.isBeginning&&!e.params.loop&&A.releaseOnEdges)return!0;return!1}function y(b){let A=b,C=!0;if(!e.enabled||b.target.closest(`.${e.params.mousewheel.noMousewheelClass}`))return;const g=e.params.mousewheel;e.params.cssMode&&A.preventDefault();let M=e.el;e.params.mousewheel.eventsTarget!=="container"&&(M=document.querySelector(e.params.mousewheel.eventsTarget));const k=M&&M.contains(A.target);if(!e.mouseEntered&&!k&&!g.releaseOnEdges)return!0;A.originalEvent&&(A=A.originalEvent);let S=0;const s=e.rtlTranslate?-1:1,E=c(A);if(g.forceToAxis)if(e.isHorizontal())if(Math.abs(E.pixelX)>Math.abs(E.pixelY))S=-E.pixelX*s;else return!0;else if(Math.abs(E.pixelY)>Math.abs(E.pixelX))S=-E.pixelY;else return!0;else S=Math.abs(E.pixelX)>Math.abs(E.pixelY)?-E.pixelX*s:-E.pixelY;if(S===0)return!0;g.invert&&(S=-S);let T=e.getTranslate()+S*g.sensitivity;if(T>=e.minTranslate()&&(T=e.minTranslate()),T<=e.maxTranslate()&&(T=e.maxTranslate()),C=e.params.loop?!0:!(T===e.minTranslate()||T===e.maxTranslate()),C&&e.params.nested&&A.stopPropagation(),!e.params.freeMode||!e.params.freeMode.enabled){const _={time:ut(),delta:Math.abs(S),direction:Math.sign(S),raw:b};u.length>=2&&u.shift();const D=u.length?u[u.length-1]:void 0;if(u.push(_),D?(_.direction!==D.direction||_.delta>D.delta||_.time>D.time+150)&&h(_):h(_),w(_))return!0}else{const _={time:ut(),delta:Math.abs(S),direction:Math.sign(S)},D=d&&_.time<d.time+500&&_.delta<=d.delta&&_.direction===d.direction;if(!D){d=void 0;let O=e.getTranslate()+S*g.sensitivity;const j=e.isBeginning,H=e.isEnd;if(O>=e.minTranslate()&&(O=e.minTranslate()),O<=e.maxTranslate()&&(O=e.maxTranslate()),e.setTransition(0),e.setTranslate(O),e.updateProgress(),e.updateActiveIndex(),e.updateSlidesClasses(),(!j&&e.isBeginning||!H&&e.isEnd)&&e.updateSlidesClasses(),e.params.loop&&e.loopFix({direction:_.direction<0?"next":"prev",byMousewheel:!0}),e.params.freeMode.sticky){clearTimeout(a),a=void 0,u.length>=15&&u.shift();const F=u.length?u[u.length-1]:void 0,B=u[0];if(u.push(_),F&&(_.delta>F.delta||_.direction!==F.direction))u.splice(0);else if(u.length>=15&&_.time-B.time<500&&B.delta-_.delta>=1&&_.delta<=6){const R=S>0?.8:.2;d=_,u.splice(0),a=Dt(()=>{e.slideToClosest(e.params.speed,!0,void 0,R)},0)}a||(a=Dt(()=>{d=_,u.splice(0),e.slideToClosest(e.params.speed,!0,void 0,.5)},500))}if(D||l("scroll",A),e.params.autoplay&&e.params.autoplayDisableOnInteraction&&e.autoplay.stop(),g.releaseOnEdges&&(O===e.minTranslate()||O===e.maxTranslate()))return!0}}return A.preventDefault?A.preventDefault():A.returnValue=!1,!1}function P(b){let A=e.el;e.params.mousewheel.eventsTarget!=="container"&&(A=document.querySelector(e.params.mousewheel.eventsTarget)),A[b]("mouseenter",f),A[b]("mouseleave",m),A[b]("wheel",y)}function v(){return e.params.cssMode?(e.wrapperEl.removeEventListener("wheel",y),!0):e.mousewheel.enabled?!1:(P("addEventListener"),e.mousewheel.enabled=!0,!0)}function x(){return e.params.cssMode?(e.wrapperEl.addEventListener(event,y),!0):e.mousewheel.enabled?(P("removeEventListener"),e.mousewheel.enabled=!1,!0):!1}n("init",()=>{!e.params.mousewheel.enabled&&e.params.cssMode&&x(),e.params.mousewheel.enabled&&v()}),n("destroy",()=>{e.params.cssMode&&v(),e.mousewheel.enabled&&x()}),Object.assign(e.mousewheel,{enable:v,disable:x})}function vn(t,e,i,n){return t.params.createElements&&Object.keys(n).forEach(l=>{if(!i[l]&&i.auto===!0){let o=yt(t.el,`.${n[l]}`)[0];o||(o=Vt("div",n[l]),o.className=n[l],t.el.append(o)),i[l]=o,e[l]=o}}),i}function Ot(t){return t===void 0&&(t=""),`.${t.trim().replace(/([\.:!+\/])/g,"\\$1").replace(/ /g,".")}`}function ei(t){let{swiper:e,extendParams:i,on:n,emit:l}=t;const o="swiper-pagination";i({pagination:{el:null,bulletElement:"span",clickable:!1,hideOnClick:!1,renderBullet:null,renderProgressbar:null,renderFraction:null,renderCustom:null,progressbarOpposite:!1,type:"bullets",dynamicBullets:!1,dynamicMainBullets:1,formatFractionCurrent:v=>v,formatFractionTotal:v=>v,bulletClass:`${o}-bullet`,bulletActiveClass:`${o}-bullet-active`,modifierClass:`${o}-`,currentClass:`${o}-current`,totalClass:`${o}-total`,hiddenClass:`${o}-hidden`,progressbarFillClass:`${o}-progressbar-fill`,progressbarOppositeClass:`${o}-progressbar-opposite`,clickableClass:`${o}-clickable`,lockClass:`${o}-lock`,horizontalClass:`${o}-horizontal`,verticalClass:`${o}-vertical`,paginationDisabledClass:`${o}-disabled`}}),e.pagination={el:null,bullets:[]};let a,r=0;function d(){return!e.params.pagination.el||!e.pagination.el||Array.isArray(e.pagination.el)&&e.pagination.el.length===0}function u(v,x){const{bulletActiveClass:b}=e.params.pagination;v&&(v=v[`${x==="prev"?"previous":"next"}ElementSibling`],v&&(v.classList.add(`${b}-${x}`),v=v[`${x==="prev"?"previous":"next"}ElementSibling`],v&&v.classList.add(`${b}-${x}-${x}`)))}function c(v){const x=v.target.closest(Ot(e.params.pagination.bulletClass));if(!x)return;v.preventDefault();const b=$t(x)*e.params.slidesPerGroup;if(e.params.loop){if(e.realIndex===b)return;e.slideToLoop(b)}else e.slideTo(b)}function f(){const v=e.rtl,x=e.params.pagination;if(d())return;let b=e.pagination.el;b=wt(b);let A,C;const g=e.virtual&&e.params.virtual.enabled?e.virtual.slides.length:e.slides.length,M=e.params.loop?Math.ceil(g/e.params.slidesPerGroup):e.snapGrid.length;if(e.params.loop?(C=e.previousRealIndex||0,A=e.params.slidesPerGroup>1?Math.floor(e.realIndex/e.params.slidesPerGroup):e.realIndex):typeof e.snapIndex<"u"?(A=e.snapIndex,C=e.previousSnapIndex):(C=e.previousIndex||0,A=e.activeIndex||0),x.type==="bullets"&&e.pagination.bullets&&e.pagination.bullets.length>0){const k=e.pagination.bullets;let S,s,E;if(x.dynamicBullets&&(a=xi(k[0],e.isHorizontal()?"width":"height",!0),b.forEach(T=>{T.style[e.isHorizontal()?"width":"height"]=`${a*(x.dynamicMainBullets+4)}px`}),x.dynamicMainBullets>1&&C!==void 0&&(r+=A-(C||0),r>x.dynamicMainBullets-1?r=x.dynamicMainBullets-1:r<0&&(r=0)),S=Math.max(A-r,0),s=S+(Math.min(k.length,x.dynamicMainBullets)-1),E=(s+S)/2),k.forEach(T=>{const _=[...["","-next","-next-next","-prev","-prev-prev","-main"].map(D=>`${x.bulletActiveClass}${D}`)].map(D=>typeof D=="string"&&D.includes(" ")?D.split(" "):D).flat();T.classList.remove(..._)}),b.length>1)k.forEach(T=>{const _=$t(T);_===A?T.classList.add(...x.bulletActiveClass.split(" ")):e.isElement&&T.setAttribute("part","bullet"),x.dynamicBullets&&(_>=S&&_<=s&&T.classList.add(...`${x.bulletActiveClass}-main`.split(" ")),_===S&&u(T,"prev"),_===s&&u(T,"next"))});else{const T=k[A];if(T&&T.classList.add(...x.bulletActiveClass.split(" ")),e.isElement&&k.forEach((_,D)=>{_.setAttribute("part",D===A?"bullet-active":"bullet")}),x.dynamicBullets){const _=k[S],D=k[s];for(let O=S;O<=s;O+=1)k[O]&&k[O].classList.add(...`${x.bulletActiveClass}-main`.split(" "));u(_,"prev"),u(D,"next")}}if(x.dynamicBullets){const T=Math.min(k.length,x.dynamicMainBullets+4),_=(a*T-a)/2-E*a,D=v?"right":"left";k.forEach(O=>{O.style[e.isHorizontal()?D:"top"]=`${_}px`})}}b.forEach((k,S)=>{if(x.type==="fraction"&&(k.querySelectorAll(Ot(x.currentClass)).forEach(s=>{s.textContent=x.formatFractionCurrent(A+1)}),k.querySelectorAll(Ot(x.totalClass)).forEach(s=>{s.textContent=x.formatFractionTotal(M)})),x.type==="progressbar"){let s;x.progressbarOpposite?s=e.isHorizontal()?"vertical":"horizontal":s=e.isHorizontal()?"horizontal":"vertical";const E=(A+1)/M;let T=1,_=1;s==="horizontal"?T=E:_=E,k.querySelectorAll(Ot(x.progressbarFillClass)).forEach(D=>{D.style.transform=`translate3d(0,0,0) scaleX(${T}) scaleY(${_})`,D.style.transitionDuration=`${e.params.speed}ms`})}x.type==="custom"&&x.renderCustom?(k.innerHTML=x.renderCustom(e,A+1,M),S===0&&l("paginationRender",k)):(S===0&&l("paginationRender",k),l("paginationUpdate",k)),e.params.watchOverflow&&e.enabled&&k.classList[e.isLocked?"add":"remove"](x.lockClass)})}function m(){const v=e.params.pagination;if(d())return;const x=e.virtual&&e.params.virtual.enabled?e.virtual.slides.length:e.grid&&e.params.grid.rows>1?e.slides.length/Math.ceil(e.params.grid.rows):e.slides.length;let b=e.pagination.el;b=wt(b);let A="";if(v.type==="bullets"){let C=e.params.loop?Math.ceil(x/e.params.slidesPerGroup):e.snapGrid.length;e.params.freeMode&&e.params.freeMode.enabled&&C>x&&(C=x);for(let g=0;g<C;g+=1)v.renderBullet?A+=v.renderBullet.call(e,g,v.bulletClass):A+=`<${v.bulletElement} ${e.isElement?'part="bullet"':""} class="${v.bulletClass}"></${v.bulletElement}>`}v.type==="fraction"&&(v.renderFraction?A=v.renderFraction.call(e,v.currentClass,v.totalClass):A=`<span class="${v.currentClass}"></span> / <span class="${v.totalClass}"></span>`),v.type==="progressbar"&&(v.renderProgressbar?A=v.renderProgressbar.call(e,v.progressbarFillClass):A=`<span class="${v.progressbarFillClass}"></span>`),e.pagination.bullets=[],b.forEach(C=>{v.type!=="custom"&&(C.innerHTML=A||""),v.type==="bullets"&&e.pagination.bullets.push(...C.querySelectorAll(Ot(v.bulletClass)))}),v.type!=="custom"&&l("paginationRender",b[0])}function h(){e.params.pagination=vn(e,e.originalParams.pagination,e.params.pagination,{el:"swiper-pagination"});const v=e.params.pagination;if(!v.el)return;let x;typeof v.el=="string"&&e.isElement&&(x=e.el.querySelector(v.el)),!x&&typeof v.el=="string"&&(x=[...document.querySelectorAll(v.el)]),x||(x=v.el),!(!x||x.length===0)&&(e.params.uniqueNavElements&&typeof v.el=="string"&&Array.isArray(x)&&x.length>1&&(x=[...e.el.querySelectorAll(v.el)],x.length>1&&(x=x.filter(b=>un(b,".swiper")[0]===e.el)[0])),Array.isArray(x)&&x.length===1&&(x=x[0]),Object.assign(e.pagination,{el:x}),x=wt(x),x.forEach(b=>{v.type==="bullets"&&v.clickable&&b.classList.add(...(v.clickableClass||"").split(" ")),b.classList.add(v.modifierClass+v.type),b.classList.add(e.isHorizontal()?v.horizontalClass:v.verticalClass),v.type==="bullets"&&v.dynamicBullets&&(b.classList.add(`${v.modifierClass}${v.type}-dynamic`),r=0,v.dynamicMainBullets<1&&(v.dynamicMainBullets=1)),v.type==="progressbar"&&v.progressbarOpposite&&b.classList.add(v.progressbarOppositeClass),v.clickable&&b.addEventListener("click",c),e.enabled||b.classList.add(v.lockClass)}))}function w(){const v=e.params.pagination;if(d())return;let x=e.pagination.el;x&&(x=wt(x),x.forEach(b=>{b.classList.remove(v.hiddenClass),b.classList.remove(v.modifierClass+v.type),b.classList.remove(e.isHorizontal()?v.horizontalClass:v.verticalClass),v.clickable&&(b.classList.remove(...(v.clickableClass||"").split(" ")),b.removeEventListener("click",c))})),e.pagination.bullets&&e.pagination.bullets.forEach(b=>b.classList.remove(...v.bulletActiveClass.split(" ")))}n("changeDirection",()=>{if(!e.pagination||!e.pagination.el)return;const v=e.params.pagination;let{el:x}=e.pagination;x=wt(x),x.forEach(b=>{b.classList.remove(v.horizontalClass,v.verticalClass),b.classList.add(e.isHorizontal()?v.horizontalClass:v.verticalClass)})}),n("init",()=>{e.params.pagination.enabled===!1?P():(h(),m(),f())}),n("activeIndexChange",()=>{typeof e.snapIndex>"u"&&f()}),n("snapIndexChange",()=>{f()}),n("snapGridLengthChange",()=>{m(),f()}),n("destroy",()=>{w()}),n("enable disable",()=>{let{el:v}=e.pagination;v&&(v=wt(v),v.forEach(x=>x.classList[e.enabled?"remove":"add"](e.params.pagination.lockClass)))}),n("lock unlock",()=>{f()}),n("click",(v,x)=>{const b=x.target,A=wt(e.pagination.el);if(e.params.pagination.el&&e.params.pagination.hideOnClick&&A&&A.length>0&&!b.classList.contains(e.params.pagination.bulletClass)){if(e.navigation&&(e.navigation.nextEl&&b===e.navigation.nextEl||e.navigation.prevEl&&b===e.navigation.prevEl))return;const C=A[0].classList.contains(e.params.pagination.hiddenClass);l(C===!0?"paginationShow":"paginationHide"),A.forEach(g=>g.classList.toggle(e.params.pagination.hiddenClass))}});const y=()=>{e.el.classList.remove(e.params.pagination.paginationDisabledClass);let{el:v}=e.pagination;v&&(v=wt(v),v.forEach(x=>x.classList.remove(e.params.pagination.paginationDisabledClass))),h(),m(),f()},P=()=>{e.el.classList.add(e.params.pagination.paginationDisabledClass);let{el:v}=e.pagination;v&&(v=wt(v),v.forEach(x=>x.classList.add(e.params.pagination.paginationDisabledClass))),w()};Object.assign(e.pagination,{enable:y,disable:P,render:m,update:f,init:h,destroy:w})}function No(t){let{swiper:e,extendParams:i,on:n,emit:l}=t;const o=gt();let a=!1,r=null,d=null,u,c,f,m;i({scrollbar:{el:null,dragSize:"auto",hide:!1,draggable:!1,snapOnRelease:!0,lockClass:"swiper-scrollbar-lock",dragClass:"swiper-scrollbar-drag",scrollbarDisabledClass:"swiper-scrollbar-disabled",horizontalClass:"swiper-scrollbar-horizontal",verticalClass:"swiper-scrollbar-vertical"}}),e.scrollbar={el:null,dragEl:null};function h(){if(!e.params.scrollbar.el||!e.scrollbar.el)return;const{scrollbar:T,rtlTranslate:_}=e,{dragEl:D,el:O}=T,j=e.params.scrollbar,H=e.params.loop?e.progressLoop:e.progress;let F=c,B=(f-c)*H;_?(B=-B,B>0?(F=c-B,B=0):-B+c>f&&(F=f+B)):B<0?(F=c+B,B=0):B+c>f&&(F=f-B),e.isHorizontal()?(D.style.transform=`translate3d(${B}px, 0, 0)`,D.style.width=`${F}px`):(D.style.transform=`translate3d(0px, ${B}px, 0)`,D.style.height=`${F}px`),j.hide&&(clearTimeout(r),O.style.opacity=1,r=setTimeout(()=>{O.style.opacity=0,O.style.transitionDuration="400ms"},1e3))}function w(T){!e.params.scrollbar.el||!e.scrollbar.el||(e.scrollbar.dragEl.style.transitionDuration=`${T}ms`)}function y(){if(!e.params.scrollbar.el||!e.scrollbar.el)return;const{scrollbar:T}=e,{dragEl:_,el:D}=T;_.style.width="",_.style.height="",f=e.isHorizontal()?D.offsetWidth:D.offsetHeight,m=e.size/(e.virtualSize+e.params.slidesOffsetBefore-(e.params.centeredSlides?e.snapGrid[0]:0)),e.params.scrollbar.dragSize==="auto"?c=f*m:c=parseInt(e.params.scrollbar.dragSize,10),e.isHorizontal()?_.style.width=`${c}px`:_.style.height=`${c}px`,m>=1?D.style.display="none":D.style.display="",e.params.scrollbar.hide&&(D.style.opacity=0),e.params.watchOverflow&&e.enabled&&T.el.classList[e.isLocked?"add":"remove"](e.params.scrollbar.lockClass)}function P(T){return e.isHorizontal()?T.clientX:T.clientY}function v(T){const{scrollbar:_,rtlTranslate:D}=e,{el:O}=_;let j;j=(P(T)-Lo(O)[e.isHorizontal()?"left":"top"]-(u!==null?u:c/2))/(f-c),j=Math.max(Math.min(j,1),0),D&&(j=1-j);const H=e.minTranslate()+(e.maxTranslate()-e.minTranslate())*j;e.updateProgress(H),e.setTranslate(H),e.updateActiveIndex(),e.updateSlidesClasses()}function x(T){const _=e.params.scrollbar,{scrollbar:D,wrapperEl:O}=e,{el:j,dragEl:H}=D;a=!0,u=T.target===H?P(T)-T.target.getBoundingClientRect()[e.isHorizontal()?"left":"top"]:null,T.preventDefault(),T.stopPropagation(),O.style.transitionDuration="100ms",H.style.transitionDuration="100ms",v(T),clearTimeout(d),j.style.transitionDuration="0ms",_.hide&&(j.style.opacity=1),e.params.cssMode&&(e.wrapperEl.style["scroll-snap-type"]="none"),l("scrollbarDragStart",T)}function b(T){const{scrollbar:_,wrapperEl:D}=e,{el:O,dragEl:j}=_;a&&(T.preventDefault&&T.cancelable?T.preventDefault():T.returnValue=!1,v(T),D.style.transitionDuration="0ms",O.style.transitionDuration="0ms",j.style.transitionDuration="0ms",l("scrollbarDragMove",T))}function A(T){const _=e.params.scrollbar,{scrollbar:D,wrapperEl:O}=e,{el:j}=D;a&&(a=!1,e.params.cssMode&&(e.wrapperEl.style["scroll-snap-type"]="",O.style.transitionDuration=""),_.hide&&(clearTimeout(d),d=Dt(()=>{j.style.opacity=0,j.style.transitionDuration="400ms"},1e3)),l("scrollbarDragEnd",T),_.snapOnRelease&&e.slideToClosest())}function C(T){const{scrollbar:_,params:D}=e,O=_.el;if(!O)return;const j=O,H=D.passiveListeners?{passive:!1,capture:!1}:!1,F=D.passiveListeners?{passive:!0,capture:!1}:!1;if(!j)return;const B=T==="on"?"addEventListener":"removeEventListener";j[B]("pointerdown",x,H),o[B]("pointermove",b,H),o[B]("pointerup",A,F)}function g(){!e.params.scrollbar.el||!e.scrollbar.el||C("on")}function M(){!e.params.scrollbar.el||!e.scrollbar.el||C("off")}function k(){const{scrollbar:T,el:_}=e;e.params.scrollbar=vn(e,e.originalParams.scrollbar,e.params.scrollbar,{el:"swiper-scrollbar"});const D=e.params.scrollbar;if(!D.el)return;let O;if(typeof D.el=="string"&&e.isElement&&(O=e.el.querySelector(D.el)),!O&&typeof D.el=="string"){if(O=o.querySelectorAll(D.el),!O.length)return}else O||(O=D.el);e.params.uniqueNavElements&&typeof D.el=="string"&&O.length>1&&_.querySelectorAll(D.el).length===1&&(O=_.querySelector(D.el)),O.length>0&&(O=O[0]),O.classList.add(e.isHorizontal()?D.horizontalClass:D.verticalClass);let j;O&&(j=O.querySelector(Ot(e.params.scrollbar.dragClass)),j||(j=Vt("div",e.params.scrollbar.dragClass),O.append(j))),Object.assign(T,{el:O,dragEl:j}),D.draggable&&g(),O&&O.classList[e.enabled?"remove":"add"](...It(e.params.scrollbar.lockClass))}function S(){const T=e.params.scrollbar,_=e.scrollbar.el;_&&_.classList.remove(...It(e.isHorizontal()?T.horizontalClass:T.verticalClass)),M()}n("changeDirection",()=>{if(!e.scrollbar||!e.scrollbar.el)return;const T=e.params.scrollbar;let{el:_}=e.scrollbar;_=wt(_),_.forEach(D=>{D.classList.remove(T.horizontalClass,T.verticalClass),D.classList.add(e.isHorizontal()?T.horizontalClass:T.verticalClass)})}),n("init",()=>{e.params.scrollbar.enabled===!1?E():(k(),y(),h())}),n("update resize observerUpdate lock unlock changeDirection",()=>{y()}),n("setTranslate",()=>{h()}),n("setTransition",(T,_)=>{w(_)}),n("enable disable",()=>{const{el:T}=e.scrollbar;T&&T.classList[e.enabled?"remove":"add"](...It(e.params.scrollbar.lockClass))}),n("destroy",()=>{S()});const s=()=>{e.el.classList.remove(...It(e.params.scrollbar.scrollbarDisabledClass)),e.scrollbar.el&&e.scrollbar.el.classList.remove(...It(e.params.scrollbar.scrollbarDisabledClass)),k(),y(),h()},E=()=>{e.el.classList.add(...It(e.params.scrollbar.scrollbarDisabledClass)),e.scrollbar.el&&e.scrollbar.el.classList.add(...It(e.params.scrollbar.scrollbarDisabledClass)),S()};Object.assign(e.scrollbar,{enable:s,disable:E,updateSize:y,setTranslate:h,init:k,destroy:S})}function ti(t){let{swiper:e,extendParams:i,on:n,emit:l,params:o}=t;e.autoplay={running:!1,paused:!1,timeLeft:0},i({autoplay:{enabled:!1,delay:3e3,waitForTransition:!0,disableOnInteraction:!1,stopOnLastSlide:!1,reverseDirection:!1,pauseOnMouseEnter:!1}});let a,r,d=o&&o.autoplay?o.autoplay.delay:3e3,u=o&&o.autoplay?o.autoplay.delay:3e3,c,f=new Date().getTime(),m,h,w,y,P,v,x;function b(F){!e||e.destroyed||!e.wrapperEl||F.target===e.wrapperEl&&(e.wrapperEl.removeEventListener("transitionend",b),!(x||F.detail&&F.detail.bySwiperTouchMove)&&s())}const A=()=>{if(e.destroyed||!e.autoplay.running)return;e.autoplay.paused?m=!0:m&&(u=c,m=!1);const F=e.autoplay.paused?c:f+u-new Date().getTime();e.autoplay.timeLeft=F,l("autoplayTimeLeft",F,F/d),r=requestAnimationFrame(()=>{A()})},C=()=>{let F;return e.virtual&&e.params.virtual.enabled?F=e.slides.filter(R=>R.classList.contains("swiper-slide-active"))[0]:F=e.slides[e.activeIndex],F?parseInt(F.getAttribute("data-swiper-autoplay"),10):void 0},g=F=>{if(e.destroyed||!e.autoplay.running)return;cancelAnimationFrame(r),A();let B=typeof F>"u"?e.params.autoplay.delay:F;d=e.params.autoplay.delay,u=e.params.autoplay.delay;const R=C();!Number.isNaN(R)&&R>0&&typeof F>"u"&&(B=R,d=R,u=R),c=B;const Z=e.params.speed,G=()=>{!e||e.destroyed||(e.params.autoplay.reverseDirection?!e.isBeginning||e.params.loop||e.params.rewind?(e.slidePrev(Z,!0,!0),l("autoplay")):e.params.autoplay.stopOnLastSlide||(e.slideTo(e.slides.length-1,Z,!0,!0),l("autoplay")):!e.isEnd||e.params.loop||e.params.rewind?(e.slideNext(Z,!0,!0),l("autoplay")):e.params.autoplay.stopOnLastSlide||(e.slideTo(0,Z,!0,!0),l("autoplay")),e.params.cssMode&&(f=new Date().getTime(),requestAnimationFrame(()=>{g()})))};return B>0?(clearTimeout(a),a=setTimeout(()=>{G()},B)):requestAnimationFrame(()=>{G()}),B},M=()=>{f=new Date().getTime(),e.autoplay.running=!0,g(),l("autoplayStart")},k=()=>{e.autoplay.running=!1,clearTimeout(a),cancelAnimationFrame(r),l("autoplayStop")},S=(F,B)=>{if(e.destroyed||!e.autoplay.running)return;clearTimeout(a),F||(v=!0);const R=()=>{l("autoplayPause"),e.params.autoplay.waitForTransition?e.wrapperEl.addEventListener("transitionend",b):s()};if(e.autoplay.paused=!0,B){P&&(c=e.params.autoplay.delay),P=!1,R();return}c=(c||e.params.autoplay.delay)-(new Date().getTime()-f),!(e.isEnd&&c<0&&!e.params.loop)&&(c<0&&(c=0),R())},s=()=>{e.isEnd&&c<0&&!e.params.loop||e.destroyed||!e.autoplay.running||(f=new Date().getTime(),v?(v=!1,g(c)):g(),e.autoplay.paused=!1,l("autoplayResume"))},E=()=>{if(e.destroyed||!e.autoplay.running)return;const F=gt();F.visibilityState==="hidden"&&(v=!0,S(!0)),F.visibilityState==="visible"&&s()},T=F=>{F.pointerType==="mouse"&&(v=!0,x=!0,!(e.animating||e.autoplay.paused)&&S(!0))},_=F=>{F.pointerType==="mouse"&&(x=!1,e.autoplay.paused&&s())},D=()=>{e.params.autoplay.pauseOnMouseEnter&&(e.el.addEventListener("pointerenter",T),e.el.addEventListener("pointerleave",_))},O=()=>{e.el&&typeof e.el!="string"&&(e.el.removeEventListener("pointerenter",T),e.el.removeEventListener("pointerleave",_))},j=()=>{gt().addEventListener("visibilitychange",E)},H=()=>{gt().removeEventListener("visibilitychange",E)};n("init",()=>{e.params.autoplay.enabled&&(D(),j(),M())}),n("destroy",()=>{O(),H(),e.autoplay.running&&k()}),n("_freeModeStaticRelease",()=>{(w||v)&&s()}),n("_freeModeNoMomentumRelease",()=>{e.params.autoplay.disableOnInteraction?k():S(!0,!0)}),n("beforeTransitionStart",(F,B,R)=>{e.destroyed||!e.autoplay.running||(R||!e.params.autoplay.disableOnInteraction?S(!0,!0):k())}),n("sliderFirstMove",()=>{if(!(e.destroyed||!e.autoplay.running)){if(e.params.autoplay.disableOnInteraction){k();return}h=!0,w=!1,v=!1,y=setTimeout(()=>{v=!0,w=!0,S(!0)},200)}}),n("touchEnd",()=>{if(!(e.destroyed||!e.autoplay.running||!h)){if(clearTimeout(y),clearTimeout(a),e.params.autoplay.disableOnInteraction){w=!1,h=!1;return}w&&e.params.cssMode&&s(),w=!1,h=!1}}),n("slideChange",()=>{e.destroyed||!e.autoplay.running||(P=!0)}),Object.assign(e.autoplay,{start:M,stop:k,pause:S,resume:s})}function jo(t){let{swiper:e,extendParams:i,emit:n,once:l}=t;i({freeMode:{enabled:!1,momentum:!0,momentumRatio:1,momentumBounce:!0,momentumBounceRatio:1,momentumVelocityRatio:1,sticky:!1,minimumVelocity:.02}});function o(){if(e.params.cssMode)return;const d=e.getTranslate();e.setTranslate(d),e.setTransition(0),e.touchEventsData.velocities.length=0,e.freeMode.onTouchEnd({currentPos:e.rtl?e.translate:-e.translate})}function a(){if(e.params.cssMode)return;const{touchEventsData:d,touches:u}=e;d.velocities.length===0&&d.velocities.push({position:u[e.isHorizontal()?"startX":"startY"],time:d.touchStartTime}),d.velocities.push({position:u[e.isHorizontal()?"currentX":"currentY"],time:ut()})}function r(d){let{currentPos:u}=d;if(e.params.cssMode)return;const{params:c,wrapperEl:f,rtlTranslate:m,snapGrid:h,touchEventsData:w}=e,P=ut()-w.touchStartTime;if(u<-e.minTranslate()){e.slideTo(e.activeIndex);return}if(u>-e.maxTranslate()){e.slides.length<h.length?e.slideTo(h.length-1):e.slideTo(e.slides.length-1);return}if(c.freeMode.momentum){if(w.velocities.length>1){const k=w.velocities.pop(),S=w.velocities.pop(),s=k.position-S.position,E=k.time-S.time;e.velocity=s/E,e.velocity/=2,Math.abs(e.velocity)<c.freeMode.minimumVelocity&&(e.velocity=0),(E>150||ut()-k.time>300)&&(e.velocity=0)}else e.velocity=0;e.velocity*=c.freeMode.momentumVelocityRatio,w.velocities.length=0;let v=1e3*c.freeMode.momentumRatio;const x=e.velocity*v;let b=e.translate+x;m&&(b=-b);let A=!1,C;const g=Math.abs(e.velocity)*20*c.freeMode.momentumBounceRatio;let M;if(b<e.maxTranslate())c.freeMode.momentumBounce?(b+e.maxTranslate()<-g&&(b=e.maxTranslate()-g),C=e.maxTranslate(),A=!0,w.allowMomentumBounce=!0):b=e.maxTranslate(),c.loop&&c.centeredSlides&&(M=!0);else if(b>e.minTranslate())c.freeMode.momentumBounce?(b-e.minTranslate()>g&&(b=e.minTranslate()+g),C=e.minTranslate(),A=!0,w.allowMomentumBounce=!0):b=e.minTranslate(),c.loop&&c.centeredSlides&&(M=!0);else if(c.freeMode.sticky){let k;for(let S=0;S<h.length;S+=1)if(h[S]>-b){k=S;break}Math.abs(h[k]-b)<Math.abs(h[k-1]-b)||e.swipeDirection==="next"?b=h[k]:b=h[k-1],b=-b}if(M&&l("transitionEnd",()=>{e.loopFix()}),e.velocity!==0){if(m?v=Math.abs((-b-e.translate)/e.velocity):v=Math.abs((b-e.translate)/e.velocity),c.freeMode.sticky){const k=Math.abs((m?-b:b)-e.translate),S=e.slidesSizesGrid[e.activeIndex];k<S?v=c.speed:k<2*S?v=c.speed*1.5:v=c.speed*2.5}}else if(c.freeMode.sticky){e.slideToClosest();return}c.freeMode.momentumBounce&&A?(e.updateProgress(C),e.setTransition(v),e.setTranslate(b),e.transitionStart(!0,e.swipeDirection),e.animating=!0,Si(f,()=>{!e||e.destroyed||!w.allowMomentumBounce||(n("momentumBounce"),e.setTransition(c.speed),setTimeout(()=>{e.setTranslate(C),Si(f,()=>{!e||e.destroyed||e.transitionEnd()})},0))})):e.velocity?(n("_freeModeNoMomentumRelease"),e.updateProgress(b),e.setTransition(v),e.setTranslate(b),e.transitionStart(!0,e.swipeDirection),e.animating||(e.animating=!0,Si(f,()=>{!e||e.destroyed||e.transitionEnd()}))):e.updateProgress(b),e.updateActiveIndex(),e.updateSlidesClasses()}else if(c.freeMode.sticky){e.slideToClosest();return}else c.freeMode&&n("_freeModeNoMomentumRelease");(!c.freeMode.momentum||P>=c.longSwipesMs)&&(n("_freeModeStaticRelease"),e.updateProgress(),e.updateActiveIndex(),e.updateSlidesClasses())}Object.assign(e,{freeMode:{onTouchStart:o,onTouchMove:a,onTouchEnd:r}})}let Ti;function Vo(){const t=ot(),e=gt();return{smoothScroll:e.documentElement&&e.documentElement.style&&"scrollBehavior"in e.documentElement.style,touch:!!("ontouchstart"in t||t.DocumentTouch&&e instanceof t.DocumentTouch)}}function pn(){return Ti||(Ti=Vo()),Ti}let Ai;function zo(t){let{userAgent:e}=t===void 0?{}:t;const i=pn(),n=ot(),l=n.navigator.platform,o=e||n.navigator.userAgent,a={ios:!1,android:!1},r=n.screen.width,d=n.screen.height,u=o.match(/(Android);?[\s\/]+([\d.]+)?/);let c=o.match(/(iPad).*OS\s([\d_]+)/);const f=o.match(/(iPod)(.*OS\s([\d_]+))?/),m=!c&&o.match(/(iPhone\sOS|iOS)\s([\d_]+)/),h=l==="Win32";let w=l==="MacIntel";const y=["1024x1366","1366x1024","834x1194","1194x834","834x1112","1112x834","768x1024","1024x768","820x1180","1180x820","810x1080","1080x810"];return!c&&w&&i.touch&&y.indexOf(`${r}x${d}`)>=0&&(c=o.match(/(Version)\/([\d.]+)/),c||(c=[0,1,"13_0_0"]),w=!1),u&&!h&&(a.os="android",a.android=!0),(c||m||f)&&(a.os="ios",a.ios=!0),a}function mn(t){return t===void 0&&(t={}),Ai||(Ai=zo(t)),Ai}let Ei;function Ho(){const t=ot(),e=mn();let i=!1;function n(){const r=t.navigator.userAgent.toLowerCase();return r.indexOf("safari")>=0&&r.indexOf("chrome")<0&&r.indexOf("android")<0}if(n()){const r=String(t.navigator.userAgent);if(r.includes("Version/")){const[d,u]=r.split("Version/")[1].split(" ")[0].split(".").map(c=>Number(c));i=d<16||d===16&&u<2}}const l=/(iPhone|iPod|iPad).*AppleWebKit(?!.*Safari)/i.test(t.navigator.userAgent),o=n(),a=o||l&&e.ios;return{isSafari:i||o,needPerspectiveFix:i,need3dFix:a,isWebView:l}}function Uo(){return Ei||(Ei=Ho()),Ei}function Go(t){let{swiper:e,on:i,emit:n}=t;const l=ot();let o=null,a=null;const r=()=>{!e||e.destroyed||!e.initialized||(n("beforeResize"),n("resize"))},d=()=>{!e||e.destroyed||!e.initialized||(o=new ResizeObserver(f=>{a=l.requestAnimationFrame(()=>{const{width:m,height:h}=e;let w=m,y=h;f.forEach(P=>{let{contentBoxSize:v,contentRect:x,target:b}=P;b&&b!==e.el||(w=x?x.width:(v[0]||v).inlineSize,y=x?x.height:(v[0]||v).blockSize)}),(w!==m||y!==h)&&r()})}),o.observe(e.el))},u=()=>{a&&l.cancelAnimationFrame(a),o&&o.unobserve&&e.el&&(o.unobserve(e.el),o=null)},c=()=>{!e||e.destroyed||!e.initialized||n("orientationchange")};i("init",()=>{if(e.params.resizeObserver&&typeof l.ResizeObserver<"u"){d();return}l.addEventListener("resize",r),l.addEventListener("orientationchange",c)}),i("destroy",()=>{u(),l.removeEventListener("resize",r),l.removeEventListener("orientationchange",c)})}function Wo(t){let{swiper:e,extendParams:i,on:n,emit:l}=t;const o=[],a=ot(),r=function(c,f){f===void 0&&(f={});const m=a.MutationObserver||a.WebkitMutationObserver,h=new m(w=>{if(e.__preventObserver__)return;if(w.length===1){l("observerUpdate",w[0]);return}const y=function(){l("observerUpdate",w[0])};a.requestAnimationFrame?a.requestAnimationFrame(y):a.setTimeout(y,0)});h.observe(c,{attributes:typeof f.attributes>"u"?!0:f.attributes,childList:typeof f.childList>"u"?!0:f.childList,characterData:typeof f.characterData>"u"?!0:f.characterData}),o.push(h)},d=()=>{if(e.params.observer){if(e.params.observeParents){const c=un(e.hostEl);for(let f=0;f<c.length;f+=1)r(c[f])}r(e.hostEl,{childList:e.params.observeSlideChildren}),r(e.wrapperEl,{attributes:!1})}},u=()=>{o.forEach(c=>{c.disconnect()}),o.splice(0,o.length)};i({observer:!1,observeParents:!1,observeSlideChildren:!1}),n("init",d),n("destroy",u)}var Yo={on(t,e,i){const n=this;if(!n.eventsListeners||n.destroyed||typeof e!="function")return n;const l=i?"unshift":"push";return t.split(" ").forEach(o=>{n.eventsListeners[o]||(n.eventsListeners[o]=[]),n.eventsListeners[o][l](e)}),n},once(t,e,i){const n=this;if(!n.eventsListeners||n.destroyed||typeof e!="function")return n;function l(){n.off(t,l),l.__emitterProxy&&delete l.__emitterProxy;for(var o=arguments.length,a=new Array(o),r=0;r<o;r++)a[r]=arguments[r];e.apply(n,a)}return l.__emitterProxy=e,n.on(t,l,i)},onAny(t,e){const i=this;if(!i.eventsListeners||i.destroyed||typeof t!="function")return i;const n=e?"unshift":"push";return i.eventsAnyListeners.indexOf(t)<0&&i.eventsAnyListeners[n](t),i},offAny(t){const e=this;if(!e.eventsListeners||e.destroyed||!e.eventsAnyListeners)return e;const i=e.eventsAnyListeners.indexOf(t);return i>=0&&e.eventsAnyListeners.splice(i,1),e},off(t,e){const i=this;return!i.eventsListeners||i.destroyed||!i.eventsListeners||t.split(" ").forEach(n=>{typeof e>"u"?i.eventsListeners[n]=[]:i.eventsListeners[n]&&i.eventsListeners[n].forEach((l,o)=>{(l===e||l.__emitterProxy&&l.__emitterProxy===e)&&i.eventsListeners[n].splice(o,1)})}),i},emit(){const t=this;if(!t.eventsListeners||t.destroyed||!t.eventsListeners)return t;let e,i,n;for(var l=arguments.length,o=new Array(l),a=0;a<l;a++)o[a]=arguments[a];return typeof o[0]=="string"||Array.isArray(o[0])?(e=o[0],i=o.slice(1,o.length),n=t):(e=o[0].events,i=o[0].data,n=o[0].context||t),i.unshift(n),(Array.isArray(e)?e:e.split(" ")).forEach(d=>{t.eventsAnyListeners&&t.eventsAnyListeners.length&&t.eventsAnyListeners.forEach(u=>{u.apply(n,[d,...i])}),t.eventsListeners&&t.eventsListeners[d]&&t.eventsListeners[d].forEach(u=>{u.apply(n,i)})}),t}};function Xo(){const t=this;let e,i;const n=t.el;typeof t.params.width<"u"&&t.params.width!==null?e=t.params.width:e=n.clientWidth,typeof t.params.height<"u"&&t.params.height!==null?i=t.params.height:i=n.clientHeight,!(e===0&&t.isHorizontal()||i===0&&t.isVertical())&&(e=e-parseInt(Ct(n,"padding-left")||0,10)-parseInt(Ct(n,"padding-right")||0,10),i=i-parseInt(Ct(n,"padding-top")||0,10)-parseInt(Ct(n,"padding-bottom")||0,10),Number.isNaN(e)&&(e=0),Number.isNaN(i)&&(i=0),Object.assign(t,{width:e,height:i,size:t.isHorizontal()?e:i}))}function Jo(){const t=this;function e(s,E){return parseFloat(s.getPropertyValue(t.getDirectionLabel(E))||0)}const i=t.params,{wrapperEl:n,slidesEl:l,size:o,rtlTranslate:a,wrongRTL:r}=t,d=t.virtual&&i.virtual.enabled,u=d?t.virtual.slides.length:t.slides.length,c=yt(l,`.${t.params.slideClass}, swiper-slide`),f=d?t.virtual.slides.length:c.length;let m=[];const h=[],w=[];let y=i.slidesOffsetBefore;typeof y=="function"&&(y=i.slidesOffsetBefore.call(t));let P=i.slidesOffsetAfter;typeof P=="function"&&(P=i.slidesOffsetAfter.call(t));const v=t.snapGrid.length,x=t.slidesGrid.length;let b=i.spaceBetween,A=-y,C=0,g=0;if(typeof o>"u")return;typeof b=="string"&&b.indexOf("%")>=0?b=parseFloat(b.replace("%",""))/100*o:typeof b=="string"&&(b=parseFloat(b)),t.virtualSize=-b,c.forEach(s=>{a?s.style.marginLeft="":s.style.marginRight="",s.style.marginBottom="",s.style.marginTop=""}),i.centeredSlides&&i.cssMode&&(Zt(n,"--swiper-centered-offset-before",""),Zt(n,"--swiper-centered-offset-after",""));const M=i.grid&&i.grid.rows>1&&t.grid;M?t.grid.initSlides(c):t.grid&&t.grid.unsetSlides();let k;const S=i.slidesPerView==="auto"&&i.breakpoints&&Object.keys(i.breakpoints).filter(s=>typeof i.breakpoints[s].slidesPerView<"u").length>0;for(let s=0;s<f;s+=1){k=0;let E;if(c[s]&&(E=c[s]),M&&t.grid.updateSlide(s,E,c),!(c[s]&&Ct(E,"display")==="none")){if(i.slidesPerView==="auto"){S&&(c[s].style[t.getDirectionLabel("width")]="");const T=getComputedStyle(E),_=E.style.transform,D=E.style.webkitTransform;if(_&&(E.style.transform="none"),D&&(E.style.webkitTransform="none"),i.roundLengths)k=t.isHorizontal()?xi(E,"width",!0):xi(E,"height",!0);else{const O=e(T,"width"),j=e(T,"padding-left"),H=e(T,"padding-right"),F=e(T,"margin-left"),B=e(T,"margin-right"),R=T.getPropertyValue("box-sizing");if(R&&R==="border-box")k=O+F+B;else{const{clientWidth:Z,offsetWidth:G}=E;k=O+j+H+F+B+(G-Z)}}_&&(E.style.transform=_),D&&(E.style.webkitTransform=D),i.roundLengths&&(k=Math.floor(k))}else k=(o-(i.slidesPerView-1)*b)/i.slidesPerView,i.roundLengths&&(k=Math.floor(k)),c[s]&&(c[s].style[t.getDirectionLabel("width")]=`${k}px`);c[s]&&(c[s].swiperSlideSize=k),w.push(k),i.centeredSlides?(A=A+k/2+C/2+b,C===0&&s!==0&&(A=A-o/2-b),s===0&&(A=A-o/2-b),Math.abs(A)<1/1e3&&(A=0),i.roundLengths&&(A=Math.floor(A)),g%i.slidesPerGroup===0&&m.push(A),h.push(A)):(i.roundLengths&&(A=Math.floor(A)),(g-Math.min(t.params.slidesPerGroupSkip,g))%t.params.slidesPerGroup===0&&m.push(A),h.push(A),A=A+k+b),t.virtualSize+=k+b,C=k,g+=1}}if(t.virtualSize=Math.max(t.virtualSize,o)+P,a&&r&&(i.effect==="slide"||i.effect==="coverflow")&&(n.style.width=`${t.virtualSize+b}px`),i.setWrapperSize&&(n.style[t.getDirectionLabel("width")]=`${t.virtualSize+b}px`),M&&t.grid.updateWrapperSize(k,m),!i.centeredSlides){const s=[];for(let E=0;E<m.length;E+=1){let T=m[E];i.roundLengths&&(T=Math.floor(T)),m[E]<=t.virtualSize-o&&s.push(T)}m=s,Math.floor(t.virtualSize-o)-Math.floor(m[m.length-1])>1&&m.push(t.virtualSize-o)}if(d&&i.loop){const s=w[0]+b;if(i.slidesPerGroup>1){const E=Math.ceil((t.virtual.slidesBefore+t.virtual.slidesAfter)/i.slidesPerGroup),T=s*i.slidesPerGroup;for(let _=0;_<E;_+=1)m.push(m[m.length-1]+T)}for(let E=0;E<t.virtual.slidesBefore+t.virtual.slidesAfter;E+=1)i.slidesPerGroup===1&&m.push(m[m.length-1]+s),h.push(h[h.length-1]+s),t.virtualSize+=s}if(m.length===0&&(m=[0]),b!==0){const s=t.isHorizontal()&&a?"marginLeft":t.getDirectionLabel("marginRight");c.filter((E,T)=>!i.cssMode||i.loop?!0:T!==c.length-1).forEach(E=>{E.style[s]=`${b}px`})}if(i.centeredSlides&&i.centeredSlidesBounds){let s=0;w.forEach(T=>{s+=T+(b||0)}),s-=b;const E=s-o;m=m.map(T=>T<=0?-y:T>E?E+P:T)}if(i.centerInsufficientSlides){let s=0;w.forEach(T=>{s+=T+(b||0)}),s-=b;const E=(i.slidesOffsetBefore||0)+(i.slidesOffsetAfter||0);if(s+E<o){const T=(o-s-E)/2;m.forEach((_,D)=>{m[D]=_-T}),h.forEach((_,D)=>{h[D]=_+T})}}if(Object.assign(t,{slides:c,snapGrid:m,slidesGrid:h,slidesSizesGrid:w}),i.centeredSlides&&i.cssMode&&!i.centeredSlidesBounds){Zt(n,"--swiper-centered-offset-before",`${-m[0]}px`),Zt(n,"--swiper-centered-offset-after",`${t.size/2-w[w.length-1]/2}px`);const s=-t.snapGrid[0],E=-t.slidesGrid[0];t.snapGrid=t.snapGrid.map(T=>T+s),t.slidesGrid=t.slidesGrid.map(T=>T+E)}if(f!==u&&t.emit("slidesLengthChange"),m.length!==v&&(t.params.watchOverflow&&t.checkOverflow(),t.emit("snapGridLengthChange")),h.length!==x&&t.emit("slidesGridLengthChange"),i.watchSlidesProgress&&t.updateSlidesOffset(),t.emit("slidesUpdated"),!d&&!i.cssMode&&(i.effect==="slide"||i.effect==="fade")){const s=`${i.containerModifierClass}backface-hidden`,E=t.el.classList.contains(s);f<=i.maxBackfaceHiddenSlides?E||t.el.classList.add(s):E&&t.el.classList.remove(s)}}function qo(t){const e=this,i=[],n=e.virtual&&e.params.virtual.enabled;let l=0,o;typeof t=="number"?e.setTransition(t):t===!0&&e.setTransition(e.params.speed);const a=r=>n?e.slides[e.getSlideIndexByData(r)]:e.slides[r];if(e.params.slidesPerView!=="auto"&&e.params.slidesPerView>1)if(e.params.centeredSlides)(e.visibleSlides||[]).forEach(r=>{i.push(r)});else for(o=0;o<Math.ceil(e.params.slidesPerView);o+=1){const r=e.activeIndex+o;if(r>e.slides.length&&!n)break;i.push(a(r))}else i.push(a(e.activeIndex));for(o=0;o<i.length;o+=1)if(typeof i[o]<"u"){const r=i[o].offsetHeight;l=r>l?r:l}(l||l===0)&&(e.wrapperEl.style.height=`${l}px`)}function Ko(){const t=this,e=t.slides,i=t.isElement?t.isHorizontal()?t.wrapperEl.offsetLeft:t.wrapperEl.offsetTop:0;for(let n=0;n<e.length;n+=1)e[n].swiperSlideOffset=(t.isHorizontal()?e[n].offsetLeft:e[n].offsetTop)-i-t.cssOverflowAdjustment()}const fn=(t,e,i)=>{e&&!t.classList.contains(i)?t.classList.add(i):!e&&t.classList.contains(i)&&t.classList.remove(i)};function Zo(t){t===void 0&&(t=this&&this.translate||0);const e=this,i=e.params,{slides:n,rtlTranslate:l,snapGrid:o}=e;if(n.length===0)return;typeof n[0].swiperSlideOffset>"u"&&e.updateSlidesOffset();let a=-t;l&&(a=t),e.visibleSlidesIndexes=[],e.visibleSlides=[];let r=i.spaceBetween;typeof r=="string"&&r.indexOf("%")>=0?r=parseFloat(r.replace("%",""))/100*e.size:typeof r=="string"&&(r=parseFloat(r));for(let d=0;d<n.length;d+=1){const u=n[d];let c=u.swiperSlideOffset;i.cssMode&&i.centeredSlides&&(c-=n[0].swiperSlideOffset);const f=(a+(i.centeredSlides?e.minTranslate():0)-c)/(u.swiperSlideSize+r),m=(a-o[0]+(i.centeredSlides?e.minTranslate():0)-c)/(u.swiperSlideSize+r),h=-(a-c),w=h+e.slidesSizesGrid[d],y=h>=0&&h<=e.size-e.slidesSizesGrid[d],P=h>=0&&h<e.size-1||w>1&&w<=e.size||h<=0&&w>=e.size;P&&(e.visibleSlides.push(u),e.visibleSlidesIndexes.push(d)),fn(u,P,i.slideVisibleClass),fn(u,y,i.slideFullyVisibleClass),u.progress=l?-f:f,u.originalProgress=l?-m:m}}function Qo(t){const e=this;if(typeof t>"u"){const c=e.rtlTranslate?-1:1;t=e&&e.translate&&e.translate*c||0}const i=e.params,n=e.maxTranslate()-e.minTranslate();let{progress:l,isBeginning:o,isEnd:a,progressLoop:r}=e;const d=o,u=a;if(n===0)l=0,o=!0,a=!0;else{l=(t-e.minTranslate())/n;const c=Math.abs(t-e.minTranslate())<1,f=Math.abs(t-e.maxTranslate())<1;o=c||l<=0,a=f||l>=1,c&&(l=0),f&&(l=1)}if(i.loop){const c=e.getSlideIndexByData(0),f=e.getSlideIndexByData(e.slides.length-1),m=e.slidesGrid[c],h=e.slidesGrid[f],w=e.slidesGrid[e.slidesGrid.length-1],y=Math.abs(t);y>=m?r=(y-m)/w:r=(y+w-h)/w,r>1&&(r-=1)}Object.assign(e,{progress:l,progressLoop:r,isBeginning:o,isEnd:a}),(i.watchSlidesProgress||i.centeredSlides&&i.autoHeight)&&e.updateSlidesProgress(t),o&&!d&&e.emit("reachBeginning toEdge"),a&&!u&&e.emit("reachEnd toEdge"),(d&&!o||u&&!a)&&e.emit("fromEdge"),e.emit("progress",l)}const Ii=(t,e,i)=>{e&&!t.classList.contains(i)?t.classList.add(i):!e&&t.classList.contains(i)&&t.classList.remove(i)};function $o(){const t=this,{slides:e,params:i,slidesEl:n,activeIndex:l}=t,o=t.virtual&&i.virtual.enabled,a=t.grid&&i.grid&&i.grid.rows>1,r=f=>yt(n,`.${i.slideClass}${f}, swiper-slide${f}`)[0];let d,u,c;if(o)if(i.loop){let f=l-t.virtual.slidesBefore;f<0&&(f=t.virtual.slides.length+f),f>=t.virtual.slides.length&&(f-=t.virtual.slides.length),d=r(`[data-swiper-slide-index="${f}"]`)}else d=r(`[data-swiper-slide-index="${l}"]`);else a?(d=e.filter(f=>f.column===l)[0],c=e.filter(f=>f.column===l+1)[0],u=e.filter(f=>f.column===l-1)[0]):d=e[l];d&&(a||(c=Bo(d,`.${i.slideClass}, swiper-slide`)[0],i.loop&&!c&&(c=e[0]),u=Ro(d,`.${i.slideClass}, swiper-slide`)[0],i.loop&&!u===0&&(u=e[e.length-1]))),e.forEach(f=>{Ii(f,f===d,i.slideActiveClass),Ii(f,f===c,i.slideNextClass),Ii(f,f===u,i.slidePrevClass)}),t.emitSlidesClasses()}const ii=(t,e)=>{if(!t||t.destroyed||!t.params)return;const i=()=>t.isElement?"swiper-slide":`.${t.params.slideClass}`,n=e.closest(i());if(n){let l=n.querySelector(`.${t.params.lazyPreloaderClass}`);!l&&t.isElement&&(n.shadowRoot?l=n.shadowRoot.querySelector(`.${t.params.lazyPreloaderClass}`):requestAnimationFrame(()=>{n.shadowRoot&&(l=n.shadowRoot.querySelector(`.${t.params.lazyPreloaderClass}`),l&&l.remove())})),l&&l.remove()}},Ci=(t,e)=>{if(!t.slides[e])return;const i=t.slides[e].querySelector('[loading="lazy"]');i&&i.removeAttribute("loading")},ki=t=>{if(!t||t.destroyed||!t.params)return;let e=t.params.lazyPreloadPrevNext;const i=t.slides.length;if(!i||!e||e<0)return;e=Math.min(e,i);const n=t.params.slidesPerView==="auto"?t.slidesPerViewDynamic():Math.ceil(t.params.slidesPerView),l=t.activeIndex;if(t.params.grid&&t.params.grid.rows>1){const a=l,r=[a-e];r.push(...Array.from({length:e}).map((d,u)=>a+n+u)),t.slides.forEach((d,u)=>{r.includes(d.column)&&Ci(t,u)});return}const o=l+n-1;if(t.params.rewind||t.params.loop)for(let a=l-e;a<=o+e;a+=1){const r=(a%i+i)%i;(r<l||r>o)&&Ci(t,r)}else for(let a=Math.max(l-e,0);a<=Math.min(o+e,i-1);a+=1)a!==l&&(a>o||a<l)&&Ci(t,a)};function el(t){const{slidesGrid:e,params:i}=t,n=t.rtlTranslate?t.translate:-t.translate;let l;for(let o=0;o<e.length;o+=1)typeof e[o+1]<"u"?n>=e[o]&&n<e[o+1]-(e[o+1]-e[o])/2?l=o:n>=e[o]&&n<e[o+1]&&(l=o+1):n>=e[o]&&(l=o);return i.normalizeSlideIndex&&(l<0||typeof l>"u")&&(l=0),l}function tl(t){const e=this,i=e.rtlTranslate?e.translate:-e.translate,{snapGrid:n,params:l,activeIndex:o,realIndex:a,snapIndex:r}=e;let d=t,u;const c=h=>{let w=h-e.virtual.slidesBefore;return w<0&&(w=e.virtual.slides.length+w),w>=e.virtual.slides.length&&(w-=e.virtual.slides.length),w};if(typeof d>"u"&&(d=el(e)),n.indexOf(i)>=0)u=n.indexOf(i);else{const h=Math.min(l.slidesPerGroupSkip,d);u=h+Math.floor((d-h)/l.slidesPerGroup)}if(u>=n.length&&(u=n.length-1),d===o&&!e.params.loop){u!==r&&(e.snapIndex=u,e.emit("snapIndexChange"));return}if(d===o&&e.params.loop&&e.virtual&&e.params.virtual.enabled){e.realIndex=c(d);return}const f=e.grid&&l.grid&&l.grid.rows>1;let m;if(e.virtual&&l.virtual.enabled&&l.loop)m=c(d);else if(f){const h=e.slides.filter(y=>y.column===d)[0];let w=parseInt(h.getAttribute("data-swiper-slide-index"),10);Number.isNaN(w)&&(w=Math.max(e.slides.indexOf(h),0)),m=Math.floor(w/l.grid.rows)}else if(e.slides[d]){const h=e.slides[d].getAttribute("data-swiper-slide-index");h?m=parseInt(h,10):m=d}else m=d;Object.assign(e,{previousSnapIndex:r,snapIndex:u,previousRealIndex:a,realIndex:m,previousIndex:o,activeIndex:d}),e.initialized&&ki(e),e.emit("activeIndexChange"),e.emit("snapIndexChange"),(e.initialized||e.params.runCallbacksOnInit)&&(a!==m&&e.emit("realIndexChange"),e.emit("slideChange"))}function il(t,e){const i=this,n=i.params;let l=t.closest(`.${n.slideClass}, swiper-slide`);!l&&i.isElement&&e&&e.length>1&&e.includes(t)&&[...e.slice(e.indexOf(t)+1,e.length)].forEach(r=>{!l&&r.matches&&r.matches(`.${n.slideClass}, swiper-slide`)&&(l=r)});let o=!1,a;if(l){for(let r=0;r<i.slides.length;r+=1)if(i.slides[r]===l){o=!0,a=r;break}}if(l&&o)i.clickedSlide=l,i.virtual&&i.params.virtual.enabled?i.clickedIndex=parseInt(l.getAttribute("data-swiper-slide-index"),10):i.clickedIndex=a;else{i.clickedSlide=void 0,i.clickedIndex=void 0;return}n.slideToClickedSlide&&i.clickedIndex!==void 0&&i.clickedIndex!==i.activeIndex&&i.slideToClickedSlide()}var nl={updateSize:Xo,updateSlides:Jo,updateAutoHeight:qo,updateSlidesOffset:Ko,updateSlidesProgress:Zo,updateProgress:Qo,updateSlidesClasses:$o,updateActiveIndex:tl,updateClickedSlide:il};function ol(t){t===void 0&&(t=this.isHorizontal()?"x":"y");const e=this,{params:i,rtlTranslate:n,translate:l,wrapperEl:o}=e;if(i.virtualTranslate)return n?-l:l;if(i.cssMode)return l;let a=Oo(o,t);return a+=e.cssOverflowAdjustment(),n&&(a=-a),a||0}function ll(t,e){const i=this,{rtlTranslate:n,params:l,wrapperEl:o,progress:a}=i;let r=0,d=0;const u=0;i.isHorizontal()?r=n?-t:t:d=t,l.roundLengths&&(r=Math.floor(r),d=Math.floor(d)),i.previousTranslate=i.translate,i.translate=i.isHorizontal()?r:d,l.cssMode?o[i.isHorizontal()?"scrollLeft":"scrollTop"]=i.isHorizontal()?-r:-d:l.virtualTranslate||(i.isHorizontal()?r-=i.cssOverflowAdjustment():d-=i.cssOverflowAdjustment(),o.style.transform=`translate3d(${r}px, ${d}px, ${u}px)`);let c;const f=i.maxTranslate()-i.minTranslate();f===0?c=0:c=(t-i.minTranslate())/f,c!==a&&i.updateProgress(t),i.emit("setTranslate",i.translate,e)}function dl(){return-this.snapGrid[0]}function al(){return-this.snapGrid[this.snapGrid.length-1]}function rl(t,e,i,n,l){t===void 0&&(t=0),e===void 0&&(e=this.params.speed),i===void 0&&(i=!0),n===void 0&&(n=!0);const o=this,{params:a,wrapperEl:r}=o;if(o.animating&&a.preventInteractionOnTransition)return!1;const d=o.minTranslate(),u=o.maxTranslate();let c;if(n&&t>d?c=d:n&&t<u?c=u:c=t,o.updateProgress(c),a.cssMode){const f=o.isHorizontal();if(e===0)r[f?"scrollLeft":"scrollTop"]=-c;else{if(!o.support.smoothScroll)return cn({swiper:o,targetPosition:-c,side:f?"left":"top"}),!0;r.scrollTo({[f?"left":"top"]:-c,behavior:"smooth"})}return!0}return e===0?(o.setTransition(0),o.setTranslate(c),i&&(o.emit("beforeTransitionStart",e,l),o.emit("transitionEnd"))):(o.setTransition(e),o.setTranslate(c),i&&(o.emit("beforeTransitionStart",e,l),o.emit("transitionStart")),o.animating||(o.animating=!0,o.onTranslateToWrapperTransitionEnd||(o.onTranslateToWrapperTransitionEnd=function(m){!o||o.destroyed||m.target===this&&(o.wrapperEl.removeEventListener("transitionend",o.onTranslateToWrapperTransitionEnd),o.onTranslateToWrapperTransitionEnd=null,delete o.onTranslateToWrapperTransitionEnd,o.animating=!1,i&&o.emit("transitionEnd"))}),o.wrapperEl.addEventListener("transitionend",o.onTranslateToWrapperTransitionEnd))),!0}var sl={getTranslate:ol,setTranslate:ll,minTranslate:dl,maxTranslate:al,translateTo:rl};function cl(t,e){const i=this;i.params.cssMode||(i.wrapperEl.style.transitionDuration=`${t}ms`,i.wrapperEl.style.transitionDelay=t===0?"0ms":""),i.emit("setTransition",t,e)}function hn(t){let{swiper:e,runCallbacks:i,direction:n,step:l}=t;const{activeIndex:o,previousIndex:a}=e;let r=n;if(r||(o>a?r="next":o<a?r="prev":r="reset"),e.emit(`transition${l}`),i&&o!==a){if(r==="reset"){e.emit(`slideResetTransition${l}`);return}e.emit(`slideChangeTransition${l}`),r==="next"?e.emit(`slideNextTransition${l}`):e.emit(`slidePrevTransition${l}`)}}function ul(t,e){t===void 0&&(t=!0);const i=this,{params:n}=i;n.cssMode||(n.autoHeight&&i.updateAutoHeight(),hn({swiper:i,runCallbacks:t,direction:e,step:"Start"}))}function vl(t,e){t===void 0&&(t=!0);const i=this,{params:n}=i;i.animating=!1,!n.cssMode&&(i.setTransition(0),hn({swiper:i,runCallbacks:t,direction:e,step:"End"}))}var pl={setTransition:cl,transitionStart:ul,transitionEnd:vl};function ml(t,e,i,n,l){t===void 0&&(t=0),i===void 0&&(i=!0),typeof t=="string"&&(t=parseInt(t,10));const o=this;let a=t;a<0&&(a=0);const{params:r,snapGrid:d,slidesGrid:u,previousIndex:c,activeIndex:f,rtlTranslate:m,wrapperEl:h,enabled:w}=o;if(!w&&!n&&!l||o.destroyed||o.animating&&r.preventInteractionOnTransition)return!1;typeof e>"u"&&(e=o.params.speed);const y=Math.min(o.params.slidesPerGroupSkip,a);let P=y+Math.floor((a-y)/o.params.slidesPerGroup);P>=d.length&&(P=d.length-1);const v=-d[P];if(r.normalizeSlideIndex)for(let b=0;b<u.length;b+=1){const A=-Math.floor(v*100),C=Math.floor(u[b]*100),g=Math.floor(u[b+1]*100);typeof u[b+1]<"u"?A>=C&&A<g-(g-C)/2?a=b:A>=C&&A<g&&(a=b+1):A>=C&&(a=b)}if(o.initialized&&a!==f&&(!o.allowSlideNext&&(m?v>o.translate&&v>o.minTranslate():v<o.translate&&v<o.minTranslate())||!o.allowSlidePrev&&v>o.translate&&v>o.maxTranslate()&&(f||0)!==a))return!1;a!==(c||0)&&i&&o.emit("beforeSlideChangeStart"),o.updateProgress(v);let x;if(a>f?x="next":a<f?x="prev":x="reset",m&&-v===o.translate||!m&&v===o.translate)return o.updateActiveIndex(a),r.autoHeight&&o.updateAutoHeight(),o.updateSlidesClasses(),r.effect!=="slide"&&o.setTranslate(v),x!=="reset"&&(o.transitionStart(i,x),o.transitionEnd(i,x)),!1;if(r.cssMode){const b=o.isHorizontal(),A=m?v:-v;if(e===0){const C=o.virtual&&o.params.virtual.enabled;C&&(o.wrapperEl.style.scrollSnapType="none",o._immediateVirtual=!0),C&&!o._cssModeVirtualInitialSet&&o.params.initialSlide>0?(o._cssModeVirtualInitialSet=!0,requestAnimationFrame(()=>{h[b?"scrollLeft":"scrollTop"]=A})):h[b?"scrollLeft":"scrollTop"]=A,C&&requestAnimationFrame(()=>{o.wrapperEl.style.scrollSnapType="",o._immediateVirtual=!1})}else{if(!o.support.smoothScroll)return cn({swiper:o,targetPosition:A,side:b?"left":"top"}),!0;h.scrollTo({[b?"left":"top"]:A,behavior:"smooth"})}return!0}return o.setTransition(e),o.setTranslate(v),o.updateActiveIndex(a),o.updateSlidesClasses(),o.emit("beforeTransitionStart",e,n),o.transitionStart(i,x),e===0?o.transitionEnd(i,x):o.animating||(o.animating=!0,o.onSlideToWrapperTransitionEnd||(o.onSlideToWrapperTransitionEnd=function(A){!o||o.destroyed||A.target===this&&(o.wrapperEl.removeEventListener("transitionend",o.onSlideToWrapperTransitionEnd),o.onSlideToWrapperTransitionEnd=null,delete o.onSlideToWrapperTransitionEnd,o.transitionEnd(i,x))}),o.wrapperEl.addEventListener("transitionend",o.onSlideToWrapperTransitionEnd)),!0}function fl(t,e,i,n){t===void 0&&(t=0),i===void 0&&(i=!0),typeof t=="string"&&(t=parseInt(t,10));const l=this;if(l.destroyed)return;typeof e>"u"&&(e=l.params.speed);const o=l.grid&&l.params.grid&&l.params.grid.rows>1;let a=t;if(l.params.loop)if(l.virtual&&l.params.virtual.enabled)a=a+l.virtual.slidesBefore;else{let r;if(o){const m=a*l.params.grid.rows;r=l.slides.filter(h=>h.getAttribute("data-swiper-slide-index")*1===m)[0].column}else r=l.getSlideIndexByData(a);const d=o?Math.ceil(l.slides.length/l.params.grid.rows):l.slides.length,{centeredSlides:u}=l.params;let c=l.params.slidesPerView;c==="auto"?c=l.slidesPerViewDynamic():(c=Math.ceil(parseFloat(l.params.slidesPerView,10)),u&&c%2===0&&(c=c+1));let f=d-r<c;if(u&&(f=f||r<Math.ceil(c/2)),n&&u&&l.params.slidesPerView!=="auto"&&!o&&(f=!1),f){const m=u?r<l.activeIndex?"prev":"next":r-l.activeIndex-1<l.params.slidesPerView?"next":"prev";l.loopFix({direction:m,slideTo:!0,activeSlideIndex:m==="next"?r+1:r-d+1,slideRealIndex:m==="next"?l.realIndex:void 0})}if(o){const m=a*l.params.grid.rows;a=l.slides.filter(h=>h.getAttribute("data-swiper-slide-index")*1===m)[0].column}else a=l.getSlideIndexByData(a)}return requestAnimationFrame(()=>{l.slideTo(a,e,i,n)}),l}function hl(t,e,i){e===void 0&&(e=!0);const n=this,{enabled:l,params:o,animating:a}=n;if(!l||n.destroyed)return n;typeof t>"u"&&(t=n.params.speed);let r=o.slidesPerGroup;o.slidesPerView==="auto"&&o.slidesPerGroup===1&&o.slidesPerGroupAuto&&(r=Math.max(n.slidesPerViewDynamic("current",!0),1));const d=n.activeIndex<o.slidesPerGroupSkip?1:r,u=n.virtual&&o.virtual.enabled;if(o.loop){if(a&&!u&&o.loopPreventsSliding)return!1;if(n.loopFix({direction:"next"}),n._clientLeft=n.wrapperEl.clientLeft,n.activeIndex===n.slides.length-1&&o.cssMode)return requestAnimationFrame(()=>{n.slideTo(n.activeIndex+d,t,e,i)}),!0}return o.rewind&&n.isEnd?n.slideTo(0,t,e,i):n.slideTo(n.activeIndex+d,t,e,i)}function gl(t,e,i){e===void 0&&(e=!0);const n=this,{params:l,snapGrid:o,slidesGrid:a,rtlTranslate:r,enabled:d,animating:u}=n;if(!d||n.destroyed)return n;typeof t>"u"&&(t=n.params.speed);const c=n.virtual&&l.virtual.enabled;if(l.loop){if(u&&!c&&l.loopPreventsSliding)return!1;n.loopFix({direction:"prev"}),n._clientLeft=n.wrapperEl.clientLeft}const f=r?n.translate:-n.translate;function m(v){return v<0?-Math.floor(Math.abs(v)):Math.floor(v)}const h=m(f),w=o.map(v=>m(v));let y=o[w.indexOf(h)-1];if(typeof y>"u"&&l.cssMode){let v;o.forEach((x,b)=>{h>=x&&(v=b)}),typeof v<"u"&&(y=o[v>0?v-1:v])}let P=0;if(typeof y<"u"&&(P=a.indexOf(y),P<0&&(P=n.activeIndex-1),l.slidesPerView==="auto"&&l.slidesPerGroup===1&&l.slidesPerGroupAuto&&(P=P-n.slidesPerViewDynamic("previous",!0)+1,P=Math.max(P,0))),l.rewind&&n.isBeginning){const v=n.params.virtual&&n.params.virtual.enabled&&n.virtual?n.virtual.slides.length-1:n.slides.length-1;return n.slideTo(v,t,e,i)}else if(l.loop&&n.activeIndex===0&&l.cssMode)return requestAnimationFrame(()=>{n.slideTo(P,t,e,i)}),!0;return n.slideTo(P,t,e,i)}function bl(t,e,i){e===void 0&&(e=!0);const n=this;if(!n.destroyed)return typeof t>"u"&&(t=n.params.speed),n.slideTo(n.activeIndex,t,e,i)}function yl(t,e,i,n){e===void 0&&(e=!0),n===void 0&&(n=.5);const l=this;if(l.destroyed)return;typeof t>"u"&&(t=l.params.speed);let o=l.activeIndex;const a=Math.min(l.params.slidesPerGroupSkip,o),r=a+Math.floor((o-a)/l.params.slidesPerGroup),d=l.rtlTranslate?l.translate:-l.translate;if(d>=l.snapGrid[r]){const u=l.snapGrid[r],c=l.snapGrid[r+1];d-u>(c-u)*n&&(o+=l.params.slidesPerGroup)}else{const u=l.snapGrid[r-1],c=l.snapGrid[r];d-u<=(c-u)*n&&(o-=l.params.slidesPerGroup)}return o=Math.max(o,0),o=Math.min(o,l.slidesGrid.length-1),l.slideTo(o,t,e,i)}function wl(){const t=this;if(t.destroyed)return;const{params:e,slidesEl:i}=t,n=e.slidesPerView==="auto"?t.slidesPerViewDynamic():e.slidesPerView;let l=t.clickedIndex,o;const a=t.isElement?"swiper-slide":`.${e.slideClass}`;if(e.loop){if(t.animating)return;o=parseInt(t.clickedSlide.getAttribute("data-swiper-slide-index"),10),e.centeredSlides?l<t.loopedSlides-n/2||l>t.slides.length-t.loopedSlides+n/2?(t.loopFix(),l=t.getSlideIndex(yt(i,`${a}[data-swiper-slide-index="${o}"]`)[0]),Dt(()=>{t.slideTo(l)})):t.slideTo(l):l>t.slides.length-n?(t.loopFix(),l=t.getSlideIndex(yt(i,`${a}[data-swiper-slide-index="${o}"]`)[0]),Dt(()=>{t.slideTo(l)})):t.slideTo(l)}else t.slideTo(l)}var Sl={slideTo:ml,slideToLoop:fl,slideNext:hl,slidePrev:gl,slideReset:bl,slideToClosest:yl,slideToClickedSlide:wl};function xl(t){const e=this,{params:i,slidesEl:n}=e;if(!i.loop||e.virtual&&e.params.virtual.enabled)return;const l=()=>{yt(n,`.${i.slideClass}, swiper-slide`).forEach((f,m)=>{f.setAttribute("data-swiper-slide-index",m)})},o=e.grid&&i.grid&&i.grid.rows>1,a=i.slidesPerGroup*(o?i.grid.rows:1),r=e.slides.length%a!==0,d=o&&e.slides.length%i.grid.rows!==0,u=c=>{for(let f=0;f<c;f+=1){const m=e.isElement?Vt("swiper-slide",[i.slideBlankClass]):Vt("div",[i.slideClass,i.slideBlankClass]);e.slidesEl.append(m)}};if(r){if(i.loopAddBlankSlides){const c=a-e.slides.length%a;u(c),e.recalcSlides(),e.updateSlides()}else Qt("Swiper Loop Warning: The number of slides is not even to slidesPerGroup, loop mode may not function properly. You need to add more slides (or make duplicates, or empty slides)");l()}else if(d){if(i.loopAddBlankSlides){const c=i.grid.rows-e.slides.length%i.grid.rows;u(c),e.recalcSlides(),e.updateSlides()}else Qt("Swiper Loop Warning: The number of slides is not even to grid.rows, loop mode may not function properly. You need to add more slides (or make duplicates, or empty slides)");l()}else l();e.loopFix({slideRealIndex:t,direction:i.centeredSlides?void 0:"next"})}function Tl(t){let{slideRealIndex:e,slideTo:i=!0,direction:n,setTranslate:l,activeSlideIndex:o,byController:a,byMousewheel:r}=t===void 0?{}:t;const d=this;if(!d.params.loop)return;d.emit("beforeLoopFix");const{slides:u,allowSlidePrev:c,allowSlideNext:f,slidesEl:m,params:h}=d,{centeredSlides:w}=h;if(d.allowSlidePrev=!0,d.allowSlideNext=!0,d.virtual&&h.virtual.enabled){i&&(!h.centeredSlides&&d.snapIndex===0?d.slideTo(d.virtual.slides.length,0,!1,!0):h.centeredSlides&&d.snapIndex<h.slidesPerView?d.slideTo(d.virtual.slides.length+d.snapIndex,0,!1,!0):d.snapIndex===d.snapGrid.length-1&&d.slideTo(d.virtual.slidesBefore,0,!1,!0)),d.allowSlidePrev=c,d.allowSlideNext=f,d.emit("loopFix");return}let y=h.slidesPerView;y==="auto"?y=d.slidesPerViewDynamic():(y=Math.ceil(parseFloat(h.slidesPerView,10)),w&&y%2===0&&(y=y+1));const P=h.slidesPerGroupAuto?y:h.slidesPerGroup;let v=P;v%P!==0&&(v+=P-v%P),v+=h.loopAdditionalSlides,d.loopedSlides=v;const x=d.grid&&h.grid&&h.grid.rows>1;u.length<y+v?Qt("Swiper Loop Warning: The number of slides is not enough for loop mode, it will be disabled and not function properly. You need to add more slides (or make duplicates) or lower the values of slidesPerView and slidesPerGroup parameters"):x&&h.grid.fill==="row"&&Qt("Swiper Loop Warning: Loop mode is not compatible with grid.fill = `row`");const b=[],A=[];let C=d.activeIndex;typeof o>"u"?o=d.getSlideIndex(u.filter(_=>_.classList.contains(h.slideActiveClass))[0]):C=o;const g=n==="next"||!n,M=n==="prev"||!n;let k=0,S=0;const s=x?Math.ceil(u.length/h.grid.rows):u.length,T=(x?u[o].column:o)+(w&&typeof l>"u"?-y/2+.5:0);if(T<v){k=Math.max(v-T,P);for(let _=0;_<v-T;_+=1){const D=_-Math.floor(_/s)*s;if(x){const O=s-D-1;for(let j=u.length-1;j>=0;j-=1)u[j].column===O&&b.push(j)}else b.push(s-D-1)}}else if(T+y>s-v){S=Math.max(T-(s-v*2),P);for(let _=0;_<S;_+=1){const D=_-Math.floor(_/s)*s;x?u.forEach((O,j)=>{O.column===D&&A.push(j)}):A.push(D)}}if(d.__preventObserver__=!0,requestAnimationFrame(()=>{d.__preventObserver__=!1}),M&&b.forEach(_=>{u[_].swiperLoopMoveDOM=!0,m.prepend(u[_]),u[_].swiperLoopMoveDOM=!1}),g&&A.forEach(_=>{u[_].swiperLoopMoveDOM=!0,m.append(u[_]),u[_].swiperLoopMoveDOM=!1}),d.recalcSlides(),h.slidesPerView==="auto"?d.updateSlides():x&&(b.length>0&&M||A.length>0&&g)&&d.slides.forEach((_,D)=>{d.grid.updateSlide(D,_,d.slides)}),h.watchSlidesProgress&&d.updateSlidesOffset(),i){if(b.length>0&&M){if(typeof e>"u"){const _=d.slidesGrid[C],O=d.slidesGrid[C+k]-_;r?d.setTranslate(d.translate-O):(d.slideTo(C+Math.ceil(k),0,!1,!0),l&&(d.touchEventsData.startTranslate=d.touchEventsData.startTranslate-O,d.touchEventsData.currentTranslate=d.touchEventsData.currentTranslate-O))}else if(l){const _=x?b.length/h.grid.rows:b.length;d.slideTo(d.activeIndex+_,0,!1,!0),d.touchEventsData.currentTranslate=d.translate}}else if(A.length>0&&g)if(typeof e>"u"){const _=d.slidesGrid[C],O=d.slidesGrid[C-S]-_;r?d.setTranslate(d.translate-O):(d.slideTo(C-S,0,!1,!0),l&&(d.touchEventsData.startTranslate=d.touchEventsData.startTranslate-O,d.touchEventsData.currentTranslate=d.touchEventsData.currentTranslate-O))}else{const _=x?A.length/h.grid.rows:A.length;d.slideTo(d.activeIndex-_,0,!1,!0)}}if(d.allowSlidePrev=c,d.allowSlideNext=f,d.controller&&d.controller.control&&!a){const _={slideRealIndex:e,direction:n,setTranslate:l,activeSlideIndex:o,byController:!0};Array.isArray(d.controller.control)?d.controller.control.forEach(D=>{!D.destroyed&&D.params.loop&&D.loopFix({..._,slideTo:D.params.slidesPerView===h.slidesPerView?i:!1})}):d.controller.control instanceof d.constructor&&d.controller.control.params.loop&&d.controller.control.loopFix({..._,slideTo:d.controller.control.params.slidesPerView===h.slidesPerView?i:!1})}d.emit("loopFix")}function Al(){const t=this,{params:e,slidesEl:i}=t;if(!e.loop||t.virtual&&t.params.virtual.enabled)return;t.recalcSlides();const n=[];t.slides.forEach(l=>{const o=typeof l.swiperSlideIndex>"u"?l.getAttribute("data-swiper-slide-index")*1:l.swiperSlideIndex;n[o]=l}),t.slides.forEach(l=>{l.removeAttribute("data-swiper-slide-index")}),n.forEach(l=>{i.append(l)}),t.recalcSlides(),t.slideTo(t.realIndex,0)}var El={loopCreate:xl,loopFix:Tl,loopDestroy:Al};function Il(t){const e=this;if(!e.params.simulateTouch||e.params.watchOverflow&&e.isLocked||e.params.cssMode)return;const i=e.params.touchEventsTarget==="container"?e.el:e.wrapperEl;e.isElement&&(e.__preventObserver__=!0),i.style.cursor="move",i.style.cursor=t?"grabbing":"grab",e.isElement&&requestAnimationFrame(()=>{e.__preventObserver__=!1})}function Cl(){const t=this;t.params.watchOverflow&&t.isLocked||t.params.cssMode||(t.isElement&&(t.__preventObserver__=!0),t[t.params.touchEventsTarget==="container"?"el":"wrapperEl"].style.cursor="",t.isElement&&requestAnimationFrame(()=>{t.__preventObserver__=!1}))}var kl={setGrabCursor:Il,unsetGrabCursor:Cl};function _l(t,e){e===void 0&&(e=this);function i(n){if(!n||n===gt()||n===ot())return null;n.assignedSlot&&(n=n.assignedSlot);const l=n.closest(t);return!l&&!n.getRootNode?null:l||i(n.getRootNode().host)}return i(e)}function gn(t,e,i){const n=ot(),{params:l}=t,o=l.edgeSwipeDetection,a=l.edgeSwipeThreshold;return o&&(i<=a||i>=n.innerWidth-a)?o==="prevent"?(e.preventDefault(),!0):!1:!0}function Pl(t){const e=this,i=gt();let n=t;n.originalEvent&&(n=n.originalEvent);const l=e.touchEventsData;if(n.type==="pointerdown"){if(l.pointerId!==null&&l.pointerId!==n.pointerId)return;l.pointerId=n.pointerId}else n.type==="touchstart"&&n.targetTouches.length===1&&(l.touchId=n.targetTouches[0].identifier);if(n.type==="touchstart"){gn(e,n,n.targetTouches[0].pageX);return}const{params:o,touches:a,enabled:r}=e;if(!r||!o.simulateTouch&&n.pointerType==="mouse"||e.animating&&o.preventInteractionOnTransition)return;!e.animating&&o.cssMode&&o.loop&&e.loopFix();let d=n.target;if(o.touchEventsTarget==="wrapper"&&!e.wrapperEl.contains(d)||"which"in n&&n.which===3||"button"in n&&n.button>0||l.isTouched&&l.isMoved)return;const u=!!o.noSwipingClass&&o.noSwipingClass!=="",c=n.composedPath?n.composedPath():n.path;u&&n.target&&n.target.shadowRoot&&c&&(d=c[0]);const f=o.noSwipingSelector?o.noSwipingSelector:`.${o.noSwipingClass}`,m=!!(n.target&&n.target.shadowRoot);if(o.noSwiping&&(m?_l(f,d):d.closest(f))){e.allowClick=!0;return}if(o.swipeHandler&&!d.closest(o.swipeHandler))return;a.currentX=n.pageX,a.currentY=n.pageY;const h=a.currentX,w=a.currentY;if(!gn(e,n,h))return;Object.assign(l,{isTouched:!0,isMoved:!1,allowTouchCallbacks:!0,isScrolling:void 0,startMoving:void 0}),a.startX=h,a.startY=w,l.touchStartTime=ut(),e.allowClick=!0,e.updateSize(),e.swipeDirection=void 0,o.threshold>0&&(l.allowThresholdMove=!1);let y=!0;d.matches(l.focusableElements)&&(y=!1,d.nodeName==="SELECT"&&(l.isTouched=!1)),i.activeElement&&i.activeElement.matches(l.focusableElements)&&i.activeElement!==d&&i.activeElement.blur();const P=y&&e.allowTouchMove&&o.touchStartPreventDefault;(o.touchStartForcePreventDefault||P)&&!d.isContentEditable&&n.preventDefault(),o.freeMode&&o.freeMode.enabled&&e.freeMode&&e.animating&&!o.cssMode&&e.freeMode.onTouchStart(),e.emit("touchStart",n)}function Dl(t){const e=gt(),i=this,n=i.touchEventsData,{params:l,touches:o,rtlTranslate:a,enabled:r}=i;if(!r||!l.simulateTouch&&t.pointerType==="mouse")return;let d=t;if(d.originalEvent&&(d=d.originalEvent),d.type==="pointermove"&&(n.touchId!==null||d.pointerId!==n.pointerId))return;let u;if(d.type==="touchmove"){if(u=[...d.changedTouches].filter(g=>g.identifier===n.touchId)[0],!u||u.identifier!==n.touchId)return}else u=d;if(!n.isTouched){n.startMoving&&n.isScrolling&&i.emit("touchMoveOpposite",d);return}const c=u.pageX,f=u.pageY;if(d.preventedByNestedSwiper){o.startX=c,o.startY=f;return}if(!i.allowTouchMove){d.target.matches(n.focusableElements)||(i.allowClick=!1),n.isTouched&&(Object.assign(o,{startX:c,startY:f,currentX:c,currentY:f}),n.touchStartTime=ut());return}if(l.touchReleaseOnEdges&&!l.loop){if(i.isVertical()){if(f<o.startY&&i.translate<=i.maxTranslate()||f>o.startY&&i.translate>=i.minTranslate()){n.isTouched=!1,n.isMoved=!1;return}}else if(c<o.startX&&i.translate<=i.maxTranslate()||c>o.startX&&i.translate>=i.minTranslate())return}if(e.activeElement&&d.target===e.activeElement&&d.target.matches(n.focusableElements)){n.isMoved=!0,i.allowClick=!1;return}n.allowTouchCallbacks&&i.emit("touchMove",d),o.previousX=o.currentX,o.previousY=o.currentY,o.currentX=c,o.currentY=f;const m=o.currentX-o.startX,h=o.currentY-o.startY;if(i.params.threshold&&Math.sqrt(m**2+h**2)<i.params.threshold)return;if(typeof n.isScrolling>"u"){let g;i.isHorizontal()&&o.currentY===o.startY||i.isVertical()&&o.currentX===o.startX?n.isScrolling=!1:m*m+h*h>=25&&(g=Math.atan2(Math.abs(h),Math.abs(m))*180/Math.PI,n.isScrolling=i.isHorizontal()?g>l.touchAngle:90-g>l.touchAngle)}if(n.isScrolling&&i.emit("touchMoveOpposite",d),typeof n.startMoving>"u"&&(o.currentX!==o.startX||o.currentY!==o.startY)&&(n.startMoving=!0),n.isScrolling||d.type==="touchmove"&&n.preventTouchMoveFromPointerMove){n.isTouched=!1;return}if(!n.startMoving)return;i.allowClick=!1,!l.cssMode&&d.cancelable&&d.preventDefault(),l.touchMoveStopPropagation&&!l.nested&&d.stopPropagation();let w=i.isHorizontal()?m:h,y=i.isHorizontal()?o.currentX-o.previousX:o.currentY-o.previousY;l.oneWayMovement&&(w=Math.abs(w)*(a?1:-1),y=Math.abs(y)*(a?1:-1)),o.diff=w,w*=l.touchRatio,a&&(w=-w,y=-y);const P=i.touchesDirection;i.swipeDirection=w>0?"prev":"next",i.touchesDirection=y>0?"prev":"next";const v=i.params.loop&&!l.cssMode,x=i.touchesDirection==="next"&&i.allowSlideNext||i.touchesDirection==="prev"&&i.allowSlidePrev;if(!n.isMoved){if(v&&x&&i.loopFix({direction:i.swipeDirection}),n.startTranslate=i.getTranslate(),i.setTransition(0),i.animating){const g=new window.CustomEvent("transitionend",{bubbles:!0,cancelable:!0,detail:{bySwiperTouchMove:!0}});i.wrapperEl.dispatchEvent(g)}n.allowMomentumBounce=!1,l.grabCursor&&(i.allowSlideNext===!0||i.allowSlidePrev===!0)&&i.setGrabCursor(!0),i.emit("sliderFirstMove",d)}let b;if(new Date().getTime(),n.isMoved&&n.allowThresholdMove&&P!==i.touchesDirection&&v&&x&&Math.abs(w)>=1){Object.assign(o,{startX:c,startY:f,currentX:c,currentY:f,startTranslate:n.currentTranslate}),n.loopSwapReset=!0,n.startTranslate=n.currentTranslate;return}i.emit("sliderMove",d),n.isMoved=!0,n.currentTranslate=w+n.startTranslate;let A=!0,C=l.resistanceRatio;if(l.touchReleaseOnEdges&&(C=0),w>0?(v&&x&&!b&&n.allowThresholdMove&&n.currentTranslate>(l.centeredSlides?i.minTranslate()-i.slidesSizesGrid[i.activeIndex+1]:i.minTranslate())&&i.loopFix({direction:"prev",setTranslate:!0,activeSlideIndex:0}),n.currentTranslate>i.minTranslate()&&(A=!1,l.resistance&&(n.currentTranslate=i.minTranslate()-1+(-i.minTranslate()+n.startTranslate+w)**C))):w<0&&(v&&x&&!b&&n.allowThresholdMove&&n.currentTranslate<(l.centeredSlides?i.maxTranslate()+i.slidesSizesGrid[i.slidesSizesGrid.length-1]:i.maxTranslate())&&i.loopFix({direction:"next",setTranslate:!0,activeSlideIndex:i.slides.length-(l.slidesPerView==="auto"?i.slidesPerViewDynamic():Math.ceil(parseFloat(l.slidesPerView,10)))}),n.currentTranslate<i.maxTranslate()&&(A=!1,l.resistance&&(n.currentTranslate=i.maxTranslate()+1-(i.maxTranslate()-n.startTranslate-w)**C))),A&&(d.preventedByNestedSwiper=!0),!i.allowSlideNext&&i.swipeDirection==="next"&&n.currentTranslate<n.startTranslate&&(n.currentTranslate=n.startTranslate),!i.allowSlidePrev&&i.swipeDirection==="prev"&&n.currentTranslate>n.startTranslate&&(n.currentTranslate=n.startTranslate),!i.allowSlidePrev&&!i.allowSlideNext&&(n.currentTranslate=n.startTranslate),l.threshold>0)if(Math.abs(w)>l.threshold||n.allowThresholdMove){if(!n.allowThresholdMove){n.allowThresholdMove=!0,o.startX=o.currentX,o.startY=o.currentY,n.currentTranslate=n.startTranslate,o.diff=i.isHorizontal()?o.currentX-o.startX:o.currentY-o.startY;return}}else{n.currentTranslate=n.startTranslate;return}!l.followFinger||l.cssMode||((l.freeMode&&l.freeMode.enabled&&i.freeMode||l.watchSlidesProgress)&&(i.updateActiveIndex(),i.updateSlidesClasses()),l.freeMode&&l.freeMode.enabled&&i.freeMode&&i.freeMode.onTouchMove(),i.updateProgress(n.currentTranslate),i.setTranslate(n.currentTranslate))}function Ol(t){const e=this,i=e.touchEventsData;let n=t;n.originalEvent&&(n=n.originalEvent);let l;if(n.type==="touchend"||n.type==="touchcancel"){if(l=[...n.changedTouches].filter(C=>C.identifier===i.touchId)[0],!l||l.identifier!==i.touchId)return}else{if(i.touchId!==null||n.pointerId!==i.pointerId)return;l=n}if(["pointercancel","pointerout","pointerleave","contextmenu"].includes(n.type)&&!(["pointercancel","contextmenu"].includes(n.type)&&(e.browser.isSafari||e.browser.isWebView)))return;i.pointerId=null,i.touchId=null;const{params:a,touches:r,rtlTranslate:d,slidesGrid:u,enabled:c}=e;if(!c||!a.simulateTouch&&n.pointerType==="mouse")return;if(i.allowTouchCallbacks&&e.emit("touchEnd",n),i.allowTouchCallbacks=!1,!i.isTouched){i.isMoved&&a.grabCursor&&e.setGrabCursor(!1),i.isMoved=!1,i.startMoving=!1;return}a.grabCursor&&i.isMoved&&i.isTouched&&(e.allowSlideNext===!0||e.allowSlidePrev===!0)&&e.setGrabCursor(!1);const f=ut(),m=f-i.touchStartTime;if(e.allowClick){const C=n.path||n.composedPath&&n.composedPath();e.updateClickedSlide(C&&C[0]||n.target,C),e.emit("tap click",n),m<300&&f-i.lastClickTime<300&&e.emit("doubleTap doubleClick",n)}if(i.lastClickTime=ut(),Dt(()=>{e.destroyed||(e.allowClick=!0)}),!i.isTouched||!i.isMoved||!e.swipeDirection||r.diff===0&&!i.loopSwapReset||i.currentTranslate===i.startTranslate&&!i.loopSwapReset){i.isTouched=!1,i.isMoved=!1,i.startMoving=!1;return}i.isTouched=!1,i.isMoved=!1,i.startMoving=!1;let h;if(a.followFinger?h=d?e.translate:-e.translate:h=-i.currentTranslate,a.cssMode)return;if(a.freeMode&&a.freeMode.enabled){e.freeMode.onTouchEnd({currentPos:h});return}const w=h>=-e.maxTranslate()&&!e.params.loop;let y=0,P=e.slidesSizesGrid[0];for(let C=0;C<u.length;C+=C<a.slidesPerGroupSkip?1:a.slidesPerGroup){const g=C<a.slidesPerGroupSkip-1?1:a.slidesPerGroup;typeof u[C+g]<"u"?(w||h>=u[C]&&h<u[C+g])&&(y=C,P=u[C+g]-u[C]):(w||h>=u[C])&&(y=C,P=u[u.length-1]-u[u.length-2])}let v=null,x=null;a.rewind&&(e.isBeginning?x=a.virtual&&a.virtual.enabled&&e.virtual?e.virtual.slides.length-1:e.slides.length-1:e.isEnd&&(v=0));const b=(h-u[y])/P,A=y<a.slidesPerGroupSkip-1?1:a.slidesPerGroup;if(m>a.longSwipesMs){if(!a.longSwipes){e.slideTo(e.activeIndex);return}e.swipeDirection==="next"&&(b>=a.longSwipesRatio?e.slideTo(a.rewind&&e.isEnd?v:y+A):e.slideTo(y)),e.swipeDirection==="prev"&&(b>1-a.longSwipesRatio?e.slideTo(y+A):x!==null&&b<0&&Math.abs(b)>a.longSwipesRatio?e.slideTo(x):e.slideTo(y))}else{if(!a.shortSwipes){e.slideTo(e.activeIndex);return}e.navigation&&(n.target===e.navigation.nextEl||n.target===e.navigation.prevEl)?n.target===e.navigation.nextEl?e.slideTo(y+A):e.slideTo(y):(e.swipeDirection==="next"&&e.slideTo(v!==null?v:y+A),e.swipeDirection==="prev"&&e.slideTo(x!==null?x:y))}}function bn(){const t=this,{params:e,el:i}=t;if(i&&i.offsetWidth===0)return;e.breakpoints&&t.setBreakpoint();const{allowSlideNext:n,allowSlidePrev:l,snapGrid:o}=t,a=t.virtual&&t.params.virtual.enabled;t.allowSlideNext=!0,t.allowSlidePrev=!0,t.updateSize(),t.updateSlides(),t.updateSlidesClasses();const r=a&&e.loop;(e.slidesPerView==="auto"||e.slidesPerView>1)&&t.isEnd&&!t.isBeginning&&!t.params.centeredSlides&&!r?t.slideTo(t.slides.length-1,0,!1,!0):t.params.loop&&!a?t.slideToLoop(t.realIndex,0,!1,!0):t.slideTo(t.activeIndex,0,!1,!0),t.autoplay&&t.autoplay.running&&t.autoplay.paused&&(clearTimeout(t.autoplay.resizeTimeout),t.autoplay.resizeTimeout=setTimeout(()=>{t.autoplay&&t.autoplay.running&&t.autoplay.paused&&t.autoplay.resume()},500)),t.allowSlidePrev=l,t.allowSlideNext=n,t.params.watchOverflow&&o!==t.snapGrid&&t.checkOverflow()}function Ml(t){const e=this;e.enabled&&(e.allowClick||(e.params.preventClicks&&t.preventDefault(),e.params.preventClicksPropagation&&e.animating&&(t.stopPropagation(),t.stopImmediatePropagation())))}function Ll(){const t=this,{wrapperEl:e,rtlTranslate:i,enabled:n}=t;if(!n)return;t.previousTranslate=t.translate,t.isHorizontal()?t.translate=-e.scrollLeft:t.translate=-e.scrollTop,t.translate===0&&(t.translate=0),t.updateActiveIndex(),t.updateSlidesClasses();let l;const o=t.maxTranslate()-t.minTranslate();o===0?l=0:l=(t.translate-t.minTranslate())/o,l!==t.progress&&t.updateProgress(i?-t.translate:t.translate),t.emit("setTranslate",t.translate,!1)}function Rl(t){const e=this;ii(e,t.target),!(e.params.cssMode||e.params.slidesPerView!=="auto"&&!e.params.autoHeight)&&e.update()}function Bl(){const t=this;t.documentTouchHandlerProceeded||(t.documentTouchHandlerProceeded=!0,t.params.touchReleaseOnEdges&&(t.el.style.touchAction="auto"))}const yn=(t,e)=>{const i=gt(),{params:n,el:l,wrapperEl:o,device:a}=t,r=!!n.nested,d=e==="on"?"addEventListener":"removeEventListener",u=e;!l||typeof l=="string"||(i[d]("touchstart",t.onDocumentTouchStart,{passive:!1,capture:r}),l[d]("touchstart",t.onTouchStart,{passive:!1}),l[d]("pointerdown",t.onTouchStart,{passive:!1}),i[d]("touchmove",t.onTouchMove,{passive:!1,capture:r}),i[d]("pointermove",t.onTouchMove,{passive:!1,capture:r}),i[d]("touchend",t.onTouchEnd,{passive:!0}),i[d]("pointerup",t.onTouchEnd,{passive:!0}),i[d]("pointercancel",t.onTouchEnd,{passive:!0}),i[d]("touchcancel",t.onTouchEnd,{passive:!0}),i[d]("pointerout",t.onTouchEnd,{passive:!0}),i[d]("pointerleave",t.onTouchEnd,{passive:!0}),i[d]("contextmenu",t.onTouchEnd,{passive:!0}),(n.preventClicks||n.preventClicksPropagation)&&l[d]("click",t.onClick,!0),n.cssMode&&o[d]("scroll",t.onScroll),n.updateOnWindowResize?t[u](a.ios||a.android?"resize orientationchange observerUpdate":"resize observerUpdate",bn,!0):t[u]("observerUpdate",bn,!0),l[d]("load",t.onLoad,{capture:!0}))};function Fl(){const t=this,{params:e}=t;t.onTouchStart=Pl.bind(t),t.onTouchMove=Dl.bind(t),t.onTouchEnd=Ol.bind(t),t.onDocumentTouchStart=Bl.bind(t),e.cssMode&&(t.onScroll=Ll.bind(t)),t.onClick=Ml.bind(t),t.onLoad=Rl.bind(t),yn(t,"on")}function Nl(){yn(this,"off")}var jl={attachEvents:Fl,detachEvents:Nl};const wn=(t,e)=>t.grid&&e.grid&&e.grid.rows>1;function Vl(){const t=this,{realIndex:e,initialized:i,params:n,el:l}=t,o=n.breakpoints;if(!o||o&&Object.keys(o).length===0)return;const a=t.getBreakpoint(o,t.params.breakpointsBase,t.el);if(!a||t.currentBreakpoint===a)return;const d=(a in o?o[a]:void 0)||t.originalParams,u=wn(t,n),c=wn(t,d),f=t.params.grabCursor,m=d.grabCursor,h=n.enabled;u&&!c?(l.classList.remove(`${n.containerModifierClass}grid`,`${n.containerModifierClass}grid-column`),t.emitContainerClasses()):!u&&c&&(l.classList.add(`${n.containerModifierClass}grid`),(d.grid.fill&&d.grid.fill==="column"||!d.grid.fill&&n.grid.fill==="column")&&l.classList.add(`${n.containerModifierClass}grid-column`),t.emitContainerClasses()),f&&!m?t.unsetGrabCursor():!f&&m&&t.setGrabCursor(),["navigation","pagination","scrollbar"].forEach(b=>{if(typeof d[b]>"u")return;const A=n[b]&&n[b].enabled,C=d[b]&&d[b].enabled;A&&!C&&t[b].disable(),!A&&C&&t[b].enable()});const w=d.direction&&d.direction!==n.direction,y=n.loop&&(d.slidesPerView!==n.slidesPerView||w),P=n.loop;w&&i&&t.changeDirection(),rt(t.params,d);const v=t.params.enabled,x=t.params.loop;Object.assign(t,{allowTouchMove:t.params.allowTouchMove,allowSlideNext:t.params.allowSlideNext,allowSlidePrev:t.params.allowSlidePrev}),h&&!v?t.disable():!h&&v&&t.enable(),t.currentBreakpoint=a,t.emit("_beforeBreakpoint",d),i&&(y?(t.loopDestroy(),t.loopCreate(e),t.updateSlides()):!P&&x?(t.loopCreate(e),t.updateSlides()):P&&!x&&t.loopDestroy()),t.emit("breakpoint",d)}function zl(t,e,i){if(e===void 0&&(e="window"),!t||e==="container"&&!i)return;let n=!1;const l=ot(),o=e==="window"?l.innerHeight:i.clientHeight,a=Object.keys(t).map(r=>{if(typeof r=="string"&&r.indexOf("@")===0){const d=parseFloat(r.substr(1));return{value:o*d,point:r}}return{value:r,point:r}});a.sort((r,d)=>parseInt(r.value,10)-parseInt(d.value,10));for(let r=0;r<a.length;r+=1){const{point:d,value:u}=a[r];e==="window"?l.matchMedia(`(min-width: ${u}px)`).matches&&(n=d):u<=i.clientWidth&&(n=d)}return n||"max"}var Hl={setBreakpoint:Vl,getBreakpoint:zl};function Ul(t,e){const i=[];return t.forEach(n=>{typeof n=="object"?Object.keys(n).forEach(l=>{n[l]&&i.push(e+l)}):typeof n=="string"&&i.push(e+n)}),i}function Gl(){const t=this,{classNames:e,params:i,rtl:n,el:l,device:o}=t,a=Ul(["initialized",i.direction,{"free-mode":t.params.freeMode&&i.freeMode.enabled},{autoheight:i.autoHeight},{rtl:n},{grid:i.grid&&i.grid.rows>1},{"grid-column":i.grid&&i.grid.rows>1&&i.grid.fill==="column"},{android:o.android},{ios:o.ios},{"css-mode":i.cssMode},{centered:i.cssMode&&i.centeredSlides},{"watch-progress":i.watchSlidesProgress}],i.containerModifierClass);e.push(...a),l.classList.add(...e),t.emitContainerClasses()}function Wl(){const t=this,{el:e,classNames:i}=t;!e||typeof e=="string"||(e.classList.remove(...i),t.emitContainerClasses())}var Yl={addClasses:Gl,removeClasses:Wl};function Xl(){const t=this,{isLocked:e,params:i}=t,{slidesOffsetBefore:n}=i;if(n){const l=t.slides.length-1,o=t.slidesGrid[l]+t.slidesSizesGrid[l]+n*2;t.isLocked=t.size>o}else t.isLocked=t.snapGrid.length===1;i.allowSlideNext===!0&&(t.allowSlideNext=!t.isLocked),i.allowSlidePrev===!0&&(t.allowSlidePrev=!t.isLocked),e&&e!==t.isLocked&&(t.isEnd=!1),e!==t.isLocked&&t.emit(t.isLocked?"lock":"unlock")}var Jl={checkOverflow:Xl},_i={init:!0,direction:"horizontal",oneWayMovement:!1,swiperElementNodeName:"SWIPER-CONTAINER",touchEventsTarget:"wrapper",initialSlide:0,speed:300,cssMode:!1,updateOnWindowResize:!0,resizeObserver:!0,nested:!1,createElements:!1,eventsPrefix:"swiper",enabled:!0,focusableElements:"input, select, option, textarea, button, video, label",width:null,height:null,preventInteractionOnTransition:!1,userAgent:null,url:null,edgeSwipeDetection:!1,edgeSwipeThreshold:20,autoHeight:!1,setWrapperSize:!1,virtualTranslate:!1,effect:"slide",breakpoints:void 0,breakpointsBase:"window",spaceBetween:0,slidesPerView:1,slidesPerGroup:1,slidesPerGroupSkip:0,slidesPerGroupAuto:!1,centeredSlides:!1,centeredSlidesBounds:!1,slidesOffsetBefore:0,slidesOffsetAfter:0,normalizeSlideIndex:!0,centerInsufficientSlides:!1,watchOverflow:!0,roundLengths:!1,touchRatio:1,touchAngle:45,simulateTouch:!0,shortSwipes:!0,longSwipes:!0,longSwipesRatio:.5,longSwipesMs:300,followFinger:!0,allowTouchMove:!0,threshold:5,touchMoveStopPropagation:!1,touchStartPreventDefault:!0,touchStartForcePreventDefault:!1,touchReleaseOnEdges:!1,uniqueNavElements:!0,resistance:!0,resistanceRatio:.85,watchSlidesProgress:!1,grabCursor:!1,preventClicks:!0,preventClicksPropagation:!0,slideToClickedSlide:!1,loop:!1,loopAddBlankSlides:!0,loopAdditionalSlides:0,loopPreventsSliding:!0,rewind:!1,allowSlidePrev:!0,allowSlideNext:!0,swipeHandler:null,noSwiping:!0,noSwipingClass:"swiper-no-swiping",noSwipingSelector:null,passiveListeners:!0,maxBackfaceHiddenSlides:10,containerModifierClass:"swiper-",slideClass:"swiper-slide",slideBlankClass:"swiper-slide-blank",slideActiveClass:"swiper-slide-active",slideVisibleClass:"swiper-slide-visible",slideFullyVisibleClass:"swiper-slide-fully-visible",slideNextClass:"swiper-slide-next",slidePrevClass:"swiper-slide-prev",wrapperClass:"swiper-wrapper",lazyPreloaderClass:"swiper-lazy-preloader",lazyPreloadPrevNext:0,runCallbacksOnInit:!0,_emitClasses:!1};function ql(t,e){return function(n){n===void 0&&(n={});const l=Object.keys(n)[0],o=n[l];if(typeof o!="object"||o===null){rt(e,n);return}if(t[l]===!0&&(t[l]={enabled:!0}),l==="navigation"&&t[l]&&t[l].enabled&&!t[l].prevEl&&!t[l].nextEl&&(t[l].auto=!0),["pagination","scrollbar"].indexOf(l)>=0&&t[l]&&t[l].enabled&&!t[l].el&&(t[l].auto=!0),!(l in t&&"enabled"in o)){rt(e,n);return}typeof t[l]=="object"&&!("enabled"in t[l])&&(t[l].enabled=!0),t[l]||(t[l]={enabled:!1}),rt(e,n)}}const Pi={eventsEmitter:Yo,update:nl,translate:sl,transition:pl,slide:Sl,loop:El,grabCursor:kl,events:jl,breakpoints:Hl,checkOverflow:Jl,classes:Yl},Di={};let Oi=class Et{constructor(){let e,i;for(var n=arguments.length,l=new Array(n),o=0;o<n;o++)l[o]=arguments[o];l.length===1&&l[0].constructor&&Object.prototype.toString.call(l[0]).slice(8,-1)==="Object"?i=l[0]:[e,i]=l,i||(i={}),i=rt({},i),e&&!i.el&&(i.el=e);const a=gt();if(i.el&&typeof i.el=="string"&&a.querySelectorAll(i.el).length>1){const c=[];return a.querySelectorAll(i.el).forEach(f=>{const m=rt({},i,{el:f});c.push(new Et(m))}),c}const r=this;r.__swiper__=!0,r.support=pn(),r.device=mn({userAgent:i.userAgent}),r.browser=Uo(),r.eventsListeners={},r.eventsAnyListeners=[],r.modules=[...r.__modules__],i.modules&&Array.isArray(i.modules)&&r.modules.push(...i.modules);const d={};r.modules.forEach(c=>{c({params:i,swiper:r,extendParams:ql(i,d),on:r.on.bind(r),once:r.once.bind(r),off:r.off.bind(r),emit:r.emit.bind(r)})});const u=rt({},_i,d);return r.params=rt({},u,Di,i),r.originalParams=rt({},r.params),r.passedParams=rt({},i),r.params&&r.params.on&&Object.keys(r.params.on).forEach(c=>{r.on(c,r.params.on[c])}),r.params&&r.params.onAny&&r.onAny(r.params.onAny),Object.assign(r,{enabled:r.params.enabled,el:e,classNames:[],slides:[],slidesGrid:[],snapGrid:[],slidesSizesGrid:[],isHorizontal(){return r.params.direction==="horizontal"},isVertical(){return r.params.direction==="vertical"},activeIndex:0,realIndex:0,isBeginning:!0,isEnd:!1,translate:0,previousTranslate:0,progress:0,velocity:0,animating:!1,cssOverflowAdjustment(){return Math.trunc(this.translate/2**23)*2**23},allowSlideNext:r.params.allowSlideNext,allowSlidePrev:r.params.allowSlidePrev,touchEventsData:{isTouched:void 0,isMoved:void 0,allowTouchCallbacks:void 0,touchStartTime:void 0,isScrolling:void 0,currentTranslate:void 0,startTranslate:void 0,allowThresholdMove:void 0,focusableElements:r.params.focusableElements,lastClickTime:0,clickTimeout:void 0,velocities:[],allowMomentumBounce:void 0,startMoving:void 0,pointerId:null,touchId:null},allowClick:!0,allowTouchMove:r.params.allowTouchMove,touches:{startX:0,startY:0,currentX:0,currentY:0,diff:0},imagesToLoad:[],imagesLoaded:0}),r.emit("_swiper"),r.params.init&&r.init(),r}getDirectionLabel(e){return this.isHorizontal()?e:{width:"height","margin-top":"margin-left","margin-bottom ":"margin-right","margin-left":"margin-top","margin-right":"margin-bottom","padding-left":"padding-top","padding-right":"padding-bottom",marginRight:"marginBottom"}[e]}getSlideIndex(e){const{slidesEl:i,params:n}=this,l=yt(i,`.${n.slideClass}, swiper-slide`),o=$t(l[0]);return $t(e)-o}getSlideIndexByData(e){return this.getSlideIndex(this.slides.filter(i=>i.getAttribute("data-swiper-slide-index")*1===e)[0])}recalcSlides(){const e=this,{slidesEl:i,params:n}=e;e.slides=yt(i,`.${n.slideClass}, swiper-slide`)}enable(){const e=this;e.enabled||(e.enabled=!0,e.params.grabCursor&&e.setGrabCursor(),e.emit("enable"))}disable(){const e=this;e.enabled&&(e.enabled=!1,e.params.grabCursor&&e.unsetGrabCursor(),e.emit("disable"))}setProgress(e,i){const n=this;e=Math.min(Math.max(e,0),1);const l=n.minTranslate(),a=(n.maxTranslate()-l)*e+l;n.translateTo(a,typeof i>"u"?0:i),n.updateActiveIndex(),n.updateSlidesClasses()}emitContainerClasses(){const e=this;if(!e.params._emitClasses||!e.el)return;const i=e.el.className.split(" ").filter(n=>n.indexOf("swiper")===0||n.indexOf(e.params.containerModifierClass)===0);e.emit("_containerClasses",i.join(" "))}getSlideClasses(e){const i=this;return i.destroyed?"":e.className.split(" ").filter(n=>n.indexOf("swiper-slide")===0||n.indexOf(i.params.slideClass)===0).join(" ")}emitSlidesClasses(){const e=this;if(!e.params._emitClasses||!e.el)return;const i=[];e.slides.forEach(n=>{const l=e.getSlideClasses(n);i.push({slideEl:n,classNames:l}),e.emit("_slideClass",n,l)}),e.emit("_slideClasses",i)}slidesPerViewDynamic(e,i){e===void 0&&(e="current"),i===void 0&&(i=!1);const n=this,{params:l,slides:o,slidesGrid:a,slidesSizesGrid:r,size:d,activeIndex:u}=n;let c=1;if(typeof l.slidesPerView=="number")return l.slidesPerView;if(l.centeredSlides){let f=o[u]?Math.ceil(o[u].swiperSlideSize):0,m;for(let h=u+1;h<o.length;h+=1)o[h]&&!m&&(f+=Math.ceil(o[h].swiperSlideSize),c+=1,f>d&&(m=!0));for(let h=u-1;h>=0;h-=1)o[h]&&!m&&(f+=o[h].swiperSlideSize,c+=1,f>d&&(m=!0))}else if(e==="current")for(let f=u+1;f<o.length;f+=1)(i?a[f]+r[f]-a[u]<d:a[f]-a[u]<d)&&(c+=1);else for(let f=u-1;f>=0;f-=1)a[u]-a[f]<d&&(c+=1);return c}update(){const e=this;if(!e||e.destroyed)return;const{snapGrid:i,params:n}=e;n.breakpoints&&e.setBreakpoint(),[...e.el.querySelectorAll('[loading="lazy"]')].forEach(a=>{a.complete&&ii(e,a)}),e.updateSize(),e.updateSlides(),e.updateProgress(),e.updateSlidesClasses();function l(){const a=e.rtlTranslate?e.translate*-1:e.translate,r=Math.min(Math.max(a,e.maxTranslate()),e.minTranslate());e.setTranslate(r),e.updateActiveIndex(),e.updateSlidesClasses()}let o;if(n.freeMode&&n.freeMode.enabled&&!n.cssMode)l(),n.autoHeight&&e.updateAutoHeight();else{if((n.slidesPerView==="auto"||n.slidesPerView>1)&&e.isEnd&&!n.centeredSlides){const a=e.virtual&&n.virtual.enabled?e.virtual.slides:e.slides;o=e.slideTo(a.length-1,0,!1,!0)}else o=e.slideTo(e.activeIndex,0,!1,!0);o||l()}n.watchOverflow&&i!==e.snapGrid&&e.checkOverflow(),e.emit("update")}changeDirection(e,i){i===void 0&&(i=!0);const n=this,l=n.params.direction;return e||(e=l==="horizontal"?"vertical":"horizontal"),e===l||e!=="horizontal"&&e!=="vertical"||(n.el.classList.remove(`${n.params.containerModifierClass}${l}`),n.el.classList.add(`${n.params.containerModifierClass}${e}`),n.emitContainerClasses(),n.params.direction=e,n.slides.forEach(o=>{e==="vertical"?o.style.width="":o.style.height=""}),n.emit("changeDirection"),i&&n.update()),n}changeLanguageDirection(e){const i=this;i.rtl&&e==="rtl"||!i.rtl&&e==="ltr"||(i.rtl=e==="rtl",i.rtlTranslate=i.params.direction==="horizontal"&&i.rtl,i.rtl?(i.el.classList.add(`${i.params.containerModifierClass}rtl`),i.el.dir="rtl"):(i.el.classList.remove(`${i.params.containerModifierClass}rtl`),i.el.dir="ltr"),i.update())}mount(e){const i=this;if(i.mounted)return!0;let n=e||i.params.el;if(typeof n=="string"&&(n=document.querySelector(n)),!n)return!1;n.swiper=i,n.parentNode&&n.parentNode.host&&n.parentNode.host.nodeName===i.params.swiperElementNodeName.toUpperCase()&&(i.isElement=!0);const l=()=>`.${(i.params.wrapperClass||"").trim().split(" ").join(".")}`;let a=n&&n.shadowRoot&&n.shadowRoot.querySelector?n.shadowRoot.querySelector(l()):yt(n,l())[0];return!a&&i.params.createElements&&(a=Vt("div",i.params.wrapperClass),n.append(a),yt(n,`.${i.params.slideClass}`).forEach(r=>{a.append(r)})),Object.assign(i,{el:n,wrapperEl:a,slidesEl:i.isElement&&!n.parentNode.host.slideSlots?n.parentNode.host:a,hostEl:i.isElement?n.parentNode.host:n,mounted:!0,rtl:n.dir.toLowerCase()==="rtl"||Ct(n,"direction")==="rtl",rtlTranslate:i.params.direction==="horizontal"&&(n.dir.toLowerCase()==="rtl"||Ct(n,"direction")==="rtl"),wrongRTL:Ct(a,"display")==="-webkit-box"}),!0}init(e){const i=this;if(i.initialized||i.mount(e)===!1)return i;i.emit("beforeInit"),i.params.breakpoints&&i.setBreakpoint(),i.addClasses(),i.updateSize(),i.updateSlides(),i.params.watchOverflow&&i.checkOverflow(),i.params.grabCursor&&i.enabled&&i.setGrabCursor(),i.params.loop&&i.virtual&&i.params.virtual.enabled?i.slideTo(i.params.initialSlide+i.virtual.slidesBefore,0,i.params.runCallbacksOnInit,!1,!0):i.slideTo(i.params.initialSlide,0,i.params.runCallbacksOnInit,!1,!0),i.params.loop&&i.loopCreate(),i.attachEvents();const l=[...i.el.querySelectorAll('[loading="lazy"]')];return i.isElement&&l.push(...i.hostEl.querySelectorAll('[loading="lazy"]')),l.forEach(o=>{o.complete?ii(i,o):o.addEventListener("load",a=>{ii(i,a.target)})}),ki(i),i.initialized=!0,ki(i),i.emit("init"),i.emit("afterInit"),i}destroy(e,i){e===void 0&&(e=!0),i===void 0&&(i=!0);const n=this,{params:l,el:o,wrapperEl:a,slides:r}=n;return typeof n.params>"u"||n.destroyed||(n.emit("beforeDestroy"),n.initialized=!1,n.detachEvents(),l.loop&&n.loopDestroy(),i&&(n.removeClasses(),o&&typeof o!="string"&&o.removeAttribute("style"),a&&a.removeAttribute("style"),r&&r.length&&r.forEach(d=>{d.classList.remove(l.slideVisibleClass,l.slideFullyVisibleClass,l.slideActiveClass,l.slideNextClass,l.slidePrevClass),d.removeAttribute("style"),d.removeAttribute("data-swiper-slide-index")})),n.emit("destroy"),Object.keys(n.eventsListeners).forEach(d=>{n.off(d)}),e!==!1&&(n.el&&typeof n.el!="string"&&(n.el.swiper=null),Po(n)),n.destroyed=!0),null}static extendDefaults(e){rt(Di,e)}static get extendedDefaults(){return Di}static get defaults(){return _i}static installModule(e){Et.prototype.__modules__||(Et.prototype.__modules__=[]);const i=Et.prototype.__modules__;typeof e=="function"&&i.indexOf(e)<0&&i.push(e)}static use(e){return Array.isArray(e)?(e.forEach(i=>Et.installModule(i)),Et):(Et.installModule(e),Et)}};Object.keys(Pi).forEach(t=>{Object.keys(Pi[t]).forEach(e=>{Oi.prototype[e]=Pi[t][e]})}),Oi.use([Go,Wo]);const Sn=["eventsPrefix","injectStyles","injectStylesUrls","modules","init","_direction","oneWayMovement","swiperElementNodeName","touchEventsTarget","initialSlide","_speed","cssMode","updateOnWindowResize","resizeObserver","nested","focusableElements","_enabled","_width","_height","preventInteractionOnTransition","userAgent","url","_edgeSwipeDetection","_edgeSwipeThreshold","_freeMode","_autoHeight","setWrapperSize","virtualTranslate","_effect","breakpoints","breakpointsBase","_spaceBetween","_slidesPerView","maxBackfaceHiddenSlides","_grid","_slidesPerGroup","_slidesPerGroupSkip","_slidesPerGroupAuto","_centeredSlides","_centeredSlidesBounds","_slidesOffsetBefore","_slidesOffsetAfter","normalizeSlideIndex","_centerInsufficientSlides","_watchOverflow","roundLengths","touchRatio","touchAngle","simulateTouch","_shortSwipes","_longSwipes","longSwipesRatio","longSwipesMs","_followFinger","allowTouchMove","_threshold","touchMoveStopPropagation","touchStartPreventDefault","touchStartForcePreventDefault","touchReleaseOnEdges","uniqueNavElements","_resistance","_resistanceRatio","_watchSlidesProgress","_grabCursor","preventClicks","preventClicksPropagation","_slideToClickedSlide","_loop","loopAdditionalSlides","loopAddBlankSlides","loopPreventsSliding","_rewind","_allowSlidePrev","_allowSlideNext","_swipeHandler","_noSwiping","noSwipingClass","noSwipingSelector","passiveListeners","containerModifierClass","slideClass","slideActiveClass","slideVisibleClass","slideFullyVisibleClass","slideNextClass","slidePrevClass","slideBlankClass","wrapperClass","lazyPreloaderClass","lazyPreloadPrevNext","runCallbacksOnInit","observer","observeParents","observeSlideChildren","a11y","_autoplay","_controller","coverflowEffect","cubeEffect","fadeEffect","flipEffect","creativeEffect","cardsEffect","hashNavigation","history","keyboard","mousewheel","_navigation","_pagination","parallax","_scrollbar","_thumbs","virtual","zoom","control"];function _t(t){return typeof t=="object"&&t!==null&&t.constructor&&Object.prototype.toString.call(t).slice(8,-1)==="Object"&&!t.__swiper__}function Mt(t,e){const i=["__proto__","constructor","prototype"];Object.keys(e).filter(n=>i.indexOf(n)<0).forEach(n=>{typeof t[n]>"u"?t[n]=e[n]:_t(e[n])&&_t(t[n])&&Object.keys(e[n]).length>0?e[n].__swiper__?t[n]=e[n]:Mt(t[n],e[n]):t[n]=e[n]})}function xn(t){return t===void 0&&(t={}),t.navigation&&typeof t.navigation.nextEl>"u"&&typeof t.navigation.prevEl>"u"}function Tn(t){return t===void 0&&(t={}),t.pagination&&typeof t.pagination.el>"u"}function An(t){return t===void 0&&(t={}),t.scrollbar&&typeof t.scrollbar.el>"u"}function En(t){t===void 0&&(t="");const e=t.split(" ").map(n=>n.trim()).filter(n=>!!n),i=[];return e.forEach(n=>{i.indexOf(n)<0&&i.push(n)}),i.join(" ")}function Kl(t){return t===void 0&&(t=""),t?t.includes("swiper-wrapper")?t:`swiper-wrapper ${t}`:"swiper-wrapper"}function Zl(t){let{swiper:e,slides:i,passedParams:n,changedParams:l,nextEl:o,prevEl:a,scrollbarEl:r,paginationEl:d}=t;const u=l.filter(S=>S!=="children"&&S!=="direction"&&S!=="wrapperClass"),{params:c,pagination:f,navigation:m,scrollbar:h,virtual:w,thumbs:y}=e;let P,v,x,b,A,C,g,M;l.includes("thumbs")&&n.thumbs&&n.thumbs.swiper&&c.thumbs&&!c.thumbs.swiper&&(P=!0),l.includes("controller")&&n.controller&&n.controller.control&&c.controller&&!c.controller.control&&(v=!0),l.includes("pagination")&&n.pagination&&(n.pagination.el||d)&&(c.pagination||c.pagination===!1)&&f&&!f.el&&(x=!0),l.includes("scrollbar")&&n.scrollbar&&(n.scrollbar.el||r)&&(c.scrollbar||c.scrollbar===!1)&&h&&!h.el&&(b=!0),l.includes("navigation")&&n.navigation&&(n.navigation.prevEl||a)&&(n.navigation.nextEl||o)&&(c.navigation||c.navigation===!1)&&m&&!m.prevEl&&!m.nextEl&&(A=!0);const k=S=>{e[S]&&(e[S].destroy(),S==="navigation"?(e.isElement&&(e[S].prevEl.remove(),e[S].nextEl.remove()),c[S].prevEl=void 0,c[S].nextEl=void 0,e[S].prevEl=void 0,e[S].nextEl=void 0):(e.isElement&&e[S].el.remove(),c[S].el=void 0,e[S].el=void 0))};l.includes("loop")&&e.isElement&&(c.loop&&!n.loop?C=!0:!c.loop&&n.loop?g=!0:M=!0),u.forEach(S=>{if(_t(c[S])&&_t(n[S]))Object.assign(c[S],n[S]),(S==="navigation"||S==="pagination"||S==="scrollbar")&&"enabled"in n[S]&&!n[S].enabled&&k(S);else{const s=n[S];(s===!0||s===!1)&&(S==="navigation"||S==="pagination"||S==="scrollbar")?s===!1&&k(S):c[S]=n[S]}}),u.includes("controller")&&!v&&e.controller&&e.controller.control&&c.controller&&c.controller.control&&(e.controller.control=c.controller.control),l.includes("children")&&i&&w&&c.virtual.enabled?(w.slides=i,w.update(!0)):l.includes("virtual")&&w&&c.virtual.enabled&&(i&&(w.slides=i),w.update(!0)),l.includes("children")&&i&&c.loop&&(M=!0),P&&y.init()&&y.update(!0),v&&(e.controller.control=c.controller.control),x&&(e.isElement&&(!d||typeof d=="string")&&(d=document.createElement("div"),d.classList.add("swiper-pagination"),d.part.add("pagination"),e.el.appendChild(d)),d&&(c.pagination.el=d),f.init(),f.render(),f.update()),b&&(e.isElement&&(!r||typeof r=="string")&&(r=document.createElement("div"),r.classList.add("swiper-scrollbar"),r.part.add("scrollbar"),e.el.appendChild(r)),r&&(c.scrollbar.el=r),h.init(),h.updateSize(),h.setTranslate()),A&&(e.isElement&&((!o||typeof o=="string")&&(o=document.createElement("div"),o.classList.add("swiper-button-next"),o.innerHTML=e.hostEl.constructor.nextButtonSvg,o.part.add("button-next"),e.el.appendChild(o)),(!a||typeof a=="string")&&(a=document.createElement("div"),a.classList.add("swiper-button-prev"),a.innerHTML=e.hostEl.constructor.prevButtonSvg,a.part.add("button-prev"),e.el.appendChild(a))),o&&(c.navigation.nextEl=o),a&&(c.navigation.prevEl=a),m.init(),m.update()),l.includes("allowSlideNext")&&(e.allowSlideNext=n.allowSlideNext),l.includes("allowSlidePrev")&&(e.allowSlidePrev=n.allowSlidePrev),l.includes("direction")&&e.changeDirection(n.direction,!1),(C||M)&&e.loopDestroy(),(g||M)&&e.loopCreate(),e.update()}function Ql(t,e){t===void 0&&(t={}),e===void 0&&(e=!0);const i={on:{}},n={},l={};Mt(i,_i),i._emitClasses=!0,i.init=!1;const o={},a=Sn.map(d=>d.replace(/_/,"")),r=Object.assign({},t);return Object.keys(r).forEach(d=>{typeof t[d]>"u"||(a.indexOf(d)>=0?_t(t[d])?(i[d]={},l[d]={},Mt(i[d],t[d]),Mt(l[d],t[d])):(i[d]=t[d],l[d]=t[d]):d.search(/on[A-Z]/)===0&&typeof t[d]=="function"?e?n[`${d[2].toLowerCase()}${d.substr(3)}`]=t[d]:i.on[`${d[2].toLowerCase()}${d.substr(3)}`]=t[d]:o[d]=t[d])}),["navigation","pagination","scrollbar"].forEach(d=>{i[d]===!0&&(i[d]={}),i[d]===!1&&delete i[d]}),{params:i,passedParams:l,rest:o,events:n}}function $l(t,e){let{el:i,nextEl:n,prevEl:l,paginationEl:o,scrollbarEl:a,swiper:r}=t;xn(e)&&n&&l&&(r.params.navigation.nextEl=n,r.originalParams.navigation.nextEl=n,r.params.navigation.prevEl=l,r.originalParams.navigation.prevEl=l),Tn(e)&&o&&(r.params.pagination.el=o,r.originalParams.pagination.el=o),An(e)&&a&&(r.params.scrollbar.el=a,r.originalParams.scrollbar.el=a),r.init(i)}function ed(t,e,i,n,l){const o=[];if(!e)return o;const a=d=>{o.indexOf(d)<0&&o.push(d)};if(i&&n){const d=n.map(l),u=i.map(l);d.join("")!==u.join("")&&a("children"),n.length!==i.length&&a("children")}return Sn.filter(d=>d[0]==="_").map(d=>d.replace(/_/,"")).forEach(d=>{if(d in t&&d in e)if(_t(t[d])&&_t(e[d])){const u=Object.keys(t[d]),c=Object.keys(e[d]);u.length!==c.length?a(d):(u.forEach(f=>{t[d][f]!==e[d][f]&&a(d)}),c.forEach(f=>{t[d][f]!==e[d][f]&&a(d)}))}else t[d]!==e[d]&&a(d)}),o}const td=t=>{!t||t.destroyed||!t.params.virtual||t.params.virtual&&!t.params.virtual.enabled||(t.updateSlides(),t.updateProgress(),t.updateSlidesClasses(),t.parallax&&t.params.parallax&&t.params.parallax.enabled&&t.parallax.setTranslate())};function ni(){return ni=Object.assign?Object.assign.bind():function(t){for(var e=1;e<arguments.length;e++){var i=arguments[e];for(var n in i)Object.prototype.hasOwnProperty.call(i,n)&&(t[n]=i[n])}return t},ni.apply(this,arguments)}function In(t){return t.type&&t.type.displayName&&t.type.displayName.includes("SwiperSlide")}function Cn(t){const e=[];return p.Children.toArray(t).forEach(i=>{In(i)?e.push(i):i.props&&i.props.children&&Cn(i.props.children).forEach(n=>e.push(n))}),e}function id(t){const e=[],i={"container-start":[],"container-end":[],"wrapper-start":[],"wrapper-end":[]};return p.Children.toArray(t).forEach(n=>{if(In(n))e.push(n);else if(n.props&&n.props.slot&&i[n.props.slot])i[n.props.slot].push(n);else if(n.props&&n.props.children){const l=Cn(n.props.children);l.length>0?l.forEach(o=>e.push(o)):i["container-end"].push(n)}else i["container-end"].push(n)}),{slides:e,slots:i}}function nd(t,e,i){if(!i)return null;const n=c=>{let f=c;return c<0?f=e.length+c:f>=e.length&&(f=f-e.length),f},l=t.isHorizontal()?{[t.rtlTranslate?"right":"left"]:`${i.offset}px`}:{top:`${i.offset}px`},{from:o,to:a}=i,r=t.params.loop?-e.length:0,d=t.params.loop?e.length*2:e.length,u=[];for(let c=r;c<d;c+=1)c>=o&&c<=a&&u.push(e[n(c)]);return u.map((c,f)=>p.cloneElement(c,{swiper:t,style:l,key:c.props.virtualIndex||c.key||`slide-${f}`}))}function zt(t,e){return typeof window>"u"?be(t,e):qn(t,e)}const Mi=jt(null),kn=()=>Nt(Mi),od=jt(null),Pt=Yt(function(t,e){let{className:i,tag:n="div",wrapperTag:l="div",children:o,onSwiper:a,...r}=t===void 0?{}:t,d=!1;const[u,c]=$("swiper"),[f,m]=$(null),[h,w]=$(!1),y=ge(!1),P=ge(null),v=ge(null),x=ge(null),b=ge(null),A=ge(null),C=ge(null),g=ge(null),M=ge(null),{params:k,passedParams:S,rest:s,events:E}=Ql(r),{slides:T,slots:_}=id(o),D=()=>{w(!h)};Object.assign(k.on,{_containerClasses(B,R){c(R)}});const O=()=>{Object.assign(k.on,E),d=!0;const B={...k};if(delete B.wrapperClass,v.current=new Oi(B),v.current.virtual&&v.current.params.virtual.enabled){v.current.virtual.slides=T;const R={cache:!1,slides:T,renderExternal:m,renderExternalUpdate:!1};Mt(v.current.params.virtual,R),Mt(v.current.originalParams.virtual,R)}};P.current||O(),v.current&&v.current.on("_beforeBreakpoint",D);const j=()=>{d||!E||!v.current||Object.keys(E).forEach(B=>{v.current.on(B,E[B])})},H=()=>{!E||!v.current||Object.keys(E).forEach(B=>{v.current.off(B,E[B])})};be(()=>()=>{v.current&&v.current.off("_beforeBreakpoint",D)}),be(()=>{!y.current&&v.current&&(v.current.emitSlidesClasses(),y.current=!0)}),zt(()=>{if(e&&(e.current=P.current),!!P.current)return v.current.destroyed&&O(),$l({el:P.current,nextEl:A.current,prevEl:C.current,paginationEl:g.current,scrollbarEl:M.current,swiper:v.current},k),a&&!v.current.destroyed&&a(v.current),()=>{v.current&&!v.current.destroyed&&v.current.destroy(!0,!1)}},[]),zt(()=>{j();const B=ed(S,x.current,T,b.current,R=>R.key);return x.current=S,b.current=T,B.length&&v.current&&!v.current.destroyed&&Zl({swiper:v.current,slides:T,passedParams:S,changedParams:B,nextEl:A.current,prevEl:C.current,scrollbarEl:M.current,paginationEl:g.current}),()=>{H()}}),zt(()=>{td(v.current)},[f]);function F(){return k.virtual?nd(v.current,T,f):T.map((B,R)=>p.cloneElement(B,{swiper:v.current,swiperSlideIndex:R}))}return p.createElement(n,ni({ref:P,className:En(`${u}${i?` ${i}`:""}`)},s),p.createElement(od.Provider,{value:v.current},_["container-start"],p.createElement(l,{className:Kl(k.wrapperClass)},_["wrapper-start"],F(),_["wrapper-end"]),xn(k)&&p.createElement(p.Fragment,null,p.createElement("div",{ref:C,className:"swiper-button-prev"}),p.createElement("div",{ref:A,className:"swiper-button-next"})),An(k)&&p.createElement("div",{ref:M,className:"swiper-scrollbar"}),Tn(k)&&p.createElement("div",{ref:g,className:"swiper-pagination"}),_["container-end"]))});Pt.displayName="Swiper";const bt=Yt(function(t,e){let{tag:i="div",children:n,className:l="",swiper:o,zoom:a,lazy:r,virtualIndex:d,swiperSlideIndex:u,...c}=t===void 0?{}:t;const f=ge(null),[m,h]=$("swiper-slide"),[w,y]=$(!1);function P(A,C,g){C===f.current&&h(g)}zt(()=>{if(typeof u<"u"&&(f.current.swiperSlideIndex=u),e&&(e.current=f.current),!(!f.current||!o)){if(o.destroyed){m!=="swiper-slide"&&h("swiper-slide");return}return o.on("_slideClass",P),()=>{o&&o.off("_slideClass",P)}}}),zt(()=>{o&&f.current&&!o.destroyed&&h(o.getSlideClasses(f.current))},[o]);const v={isActive:m.indexOf("swiper-slide-active")>=0,isVisible:m.indexOf("swiper-slide-visible")>=0,isPrev:m.indexOf("swiper-slide-prev")>=0,isNext:m.indexOf("swiper-slide-next")>=0},x=()=>typeof n=="function"?n(v):n,b=()=>{y(!0)};return p.createElement(i,ni({ref:f,className:En(`${m}${l?` ${l}`:""}`),"data-swiper-slide-index":d,onLoad:b},c),a&&p.createElement(Mi.Provider,{value:v},p.createElement("div",{className:"swiper-zoom-container","data-swiper-zoom":typeof a=="number"?a:void 0},x(),r&&!w&&p.createElement("div",{className:"swiper-lazy-preloader"}))),!a&&p.createElement(Mi.Provider,{value:v},x(),r&&!w&&p.createElement("div",{className:"swiper-lazy-preloader"})))});bt.displayName="SwiperSlide";const ld="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAjhJREFUWEfFlztOw0AQhmeWiJ4CCmpQ5DiRQsIJyAWg5A0lR0AIChDiCJS8ER0cADgBeRSxt4CCDgkaKiq8i+zYeWx2413HEWmiJJv9v535Z2aN8M8vFPT9z3zETD0aAUChUJjwvPFHAJhBhB3Hqd6OAsK2yyucwykAvP38eJX398Z3AJDLlVYR8ToU9Rhj25TWr9KEsKy5dULIGQCMtfZly45TvwsAstm56UwG6wA4FUFwzrdctxZBDcWSy5XWEPG8I84/GcMipdWPtgcsaz5PCHtKG0IuTiqUvjT9U/WYMG2IOPE+AP+LtCB0xKUAAyA2Xbd2o2OG0NQXvTnvhL17D7EPtH9TRCIWwkRcGYGIQgYBABuqPuHXOQBc6pw80lBGwBQiiXhsBHQhkoprA6iM6acjhDQKu5YJZW6XeOI3XJdpvfsdTu52VfXEekD8owQiXGIubpSCbhDbLu8DwKEAd+A41SOdPpE4BS0viFOtvV2iKWqUgn5x/tmS70xR01GuDSCKc86/OCcLgTyyZ0ScDGNhFAktAJV4NFJ9YyaFiAWIE+9uVkkgBgLoig8DMWAa9ro9ynkUdlW5maZDCmB6clmz0k1HH4Cs1Ezbq2p2yEpUuBOKTSZZex00RUWIrltxuuK6EOGDSbGIOPZicpMx6fny650377qNRgBgWeVFQuA+6UjVgREhGIMlSqsPUQqIbZdOOIdZQmCv2axRnU1N1+TzJYsxOEaEV8ep7frPZ7Gd0FTEdP0ft0/kMNdg0eoAAAAASUVORK5CYII=",dd=({visible:t,onClose:e,children:i,modalStyle:n,padding:l,popup:o,schema:a,fullHeight:r=window.innerHeight,isFullScreen:d=!1})=>{var u,c,f,m,h,w,y,P,v,x,b,A,C,g,M,k,S,s,E,T,_;const D=ge(null),O=ge(null),j=ge(null),H=ge(null),F=r*.2,B=d?r:r*.8,[R,Z]=$(F),[G,ne]=$(!1),q=ge(null),{globalConfig:K,popupDetailData:V}=Oe(),{schema:pe}=ft();be(()=>{const ae=document.getElementById("sxp-render"),oe=document.getElementById("pb-modal");oe?q.current=oe:(q.current=document.createElement("div"),q.current.setAttribute("id","pb-modal"),ae?.appendChild(q.current))},[]);const me=ue(()=>o?.id&&o?.id!==""||t,[t,o]),X=ue(()=>{var ae,oe,Te;const Ie=a??pe;return(Te=(oe=(ae=Ie?.sxpPageConf)===null||ae===void 0?void 0:ae.globalConfig)===null||oe===void 0?void 0:oe.popupList)===null||Te===void 0?void 0:Te.find(_e=>_e?.id===o?.id)},[o,a,pe]),Q=ue(()=>{var ae,oe;return((oe=(ae=X?.item)===null||ae===void 0?void 0:ae.event)===null||oe===void 0?void 0:oe.isScrollFullScreen)||!1},[X]);if(be(()=>{me?ne(!0):setTimeout(()=>{ne(!1),Z(F)},o?.duration)},[me,o]),!q.current)return null;const le=mi(()=>{e?.()},300),ie=ae=>{D.current=ae.touches[0],O.current=ae.touches[0],j.current=!0},de=ae=>{requestAnimationFrame(()=>{var oe;if(j.current&&((oe=H?.current)===null||oe===void 0?void 0:oe.scrollTop)===0){const Te=ae.touches[0].clientY,Ie=ae.touches[0].clientX,Be=D.current.clientY-Te;D.current=ae.touches[0];const _e=Te-O.current.clientY,He=Ie-O.current.clientX;if(Math.abs(He)>Math.abs(_e))return;const Ve=R-Be;Ve>0&&Z(Ve)}})},re=ae=>{var oe;if(j.current&&((oe=H?.current)===null||oe===void 0?void 0:oe.scrollTop)===0){const Te=ae.changedTouches[0].clientY-O.current.clientY,Ie=ae.changedTouches[0].clientX-O.current.clientX;if(Math.abs(Ie)>Math.abs(Te))return;const Be=O.current.clientY-D.current.clientY;Be>0?Z(0):R<F&&Be<0?Z(F):R>=F&&Be<0&&e?.()}j.current=!1};return Ui.createPortal(p.createElement(p.Fragment,null,G&&p.createElement("div",{className:"modal-bg",style:Object.assign({display:"flex",backgroundColor:me?"rgba(0, 0, 0, 0.7)":"rgba(0, 0, 0, 0)"},n),onClick:le},p.createElement("div",{style:{position:"relative",left:`${(m=(f=(c=(u=X?.item)===null||u===void 0?void 0:u.props)===null||c===void 0?void 0:c.popupBg)===null||f===void 0?void 0:f.horizontalMargin)!==null&&m!==void 0?m:0}px`,right:`${(P=(y=(w=(h=X?.item)===null||h===void 0?void 0:h.props)===null||w===void 0?void 0:w.popupBg)===null||y===void 0?void 0:y.horizontalMargin)!==null&&P!==void 0?P:0}px`,bottom:`${(A=(b=(x=(v=X?.item)===null||v===void 0?void 0:v.props)===null||x===void 0?void 0:x.popupBg)===null||b===void 0?void 0:b.bottomMargin)!==null&&A!==void 0?A:0}px`,overflow:"hidden",width:`calc(100% - ${((k=(M=(g=(C=X?.item)===null||C===void 0?void 0:C.props)===null||g===void 0?void 0:g.popupBg)===null||M===void 0?void 0:M.horizontalMargin)!==null&&k!==void 0?k:0)*2}px)`,height:"100%"}},p.createElement("div",Object.assign({className:`modal-container ${me?"modal-popIn":"modal-popOut"}`,style:Object.assign({padding:l,animationDuration:((S=o?.duration)!==null&&S!==void 0?S:0)/1e3+"s"},Q&&{transform:`translateY(${R}px)`}),onClick:ae=>{ae.stopPropagation(),ae.preventDefault()}},Q&&{onTouchMove:de,onTouchStart:ie,onTouchEnd:re}),p.createElement("div",{onClick:e,className:"modal-icon-wrapper"},p.createElement("img",{src:(s=K?.popupCloseIcon)!==null&&s!==void 0?s:ld,alt:"close",className:"modal-icon"})),p.createElement("div",{ref:H,style:{height:(Q?r:B)-((_=(T=(E=X?.item)===null||E===void 0?void 0:E.props)===null||T===void 0?void 0:T.popupBg)===null||_===void 0?void 0:_.bottomMargin),overflow:Q&&R<=0||!Q?"auto":"hidden"}},i))))),q.current)};var Lt=Ce(dd);const ad=(t="",e)=>{if(/[\u4e00-\u9fa5]+/.test(t))return t.slice(0,54);const n=t.split(" "),l=[];for(let a=0;a<n.length&&(l.push(n[a]),!(l.join(" ").length>=e));a++);return(l.length>1&&l.length<n.length?l.slice(0,l.length-1):l).join(" ")+" "},rd=({text:t,maxStr:e=108,style:i,className:n,onClick:l,foldText:o,unfoldText:a,isPost:r,onChange:d})=>{const[u,c]=$(!1),[f,m]=$(!1),h=Number(i?.lineClamp||2),w=ge(null),y=ge(null),P=we(()=>{c(!u)},[u,d]);return ue(()=>!u&&t.length>e?ad(t,e)+"...":t,[t,e,u]),be(()=>{var v,x;((v=y?.current)===null||v===void 0?void 0:v.offsetHeight)>((x=w?.current)===null||x===void 0?void 0:x.offsetHeight)&&r?m(!0):m(!1),y.current.style.display="none"},[r]),p.createElement("div",{className:n,style:Object.assign(Object.assign({},i),{transform:"translate3d(0px, 0px, 0px)"}),hidden:!t||t===""},p.createElement("div",{ref:w,style:{overflow:"hidden",WebkitLineClamp:!r||u?"":h,textOverflow:"ellipsis",display:"-webkit-box",WebkitBoxOrient:"vertical",wordBreak:"break-word"},dangerouslySetInnerHTML:{__html:xe(t?.replace(/\n/g,"</br>"),i)}}),p.createElement("div",{ref:y,dangerouslySetInnerHTML:{__html:xe(t?.replace(/\n/g,"</br>"),i)}}),t&&r&&f&&p.createElement("span",{style:{textDecoration:"underline",cursor:"pointer"},onClick:l??P,dangerouslySetInnerHTML:{__html:xe(u?a||"show less":o||"show more",i)}}))};var oi=Ce(rd);const sd=Yt((t,e)=>{const{src:i,onLoad:n,style:l,className:o,loading:a,alt:r="image"}=t,[d,u]=$(),c=ge(null),[f,m]=$(!1);return Hi(e,()=>({setSrc:h=>{h&&u(h)}})),be(()=>{i&&u(i)},[i]),be(()=>{const h=()=>{i&&!f&&c.current&&(c.current.src="",c.current.src=i)};return ht.on(at.PAGE_DID_SHOW,h),()=>{ht.off(at.PAGE_DID_SHOW,h)}},[i,f]),p.createElement(p.Fragment,null,!f&&p.createElement("div",{style:{width:"100%",height:"100%",zIndex:1,backgroundColor:"#fff"}}),d?.includes(".avif")?p.createElement("picture",null,p.createElement("source",{type:"image/avif",srcSet:d}),p.createElement("source",{type:"image/webp",srcSet:`${d}?imageMogr2/format/webp`}),p.createElement("source",{type:"image/jpeg",srcSet:`${d}?imageMogr2/format/jpg`}),p.createElement("img",{ref:c,className:o,src:d,style:Object.assign({},l),loading:a,onLoad:h=>{m(!0),n?.(h.target)},alt:r})):p.createElement("img",{ref:c,className:o,src:d,style:Object.assign({},l),loading:a,onLoad:h=>{m(!0),n?.(h.target)},alt:r}))});var lt=Ce(sd);const cd=({children:t,isPadding:e=!0,style:i,enableSlideActive:n=!1})=>{const l=ge(),{popupDetailData:o}=Oe();return be(()=>{var a,r;n&&((a=l?.current)===null||a===void 0||a.swiper.slideTo((r=o?.multiCheckIndex)!==null&&r!==void 0?r:0))},[o,n]),p.createElement(Pt,{ref:l,direction:"horizontal",slidesPerView:"auto",freeMode:!0,mousewheel:!0,modules:[jo,No,Fo],style:Object.assign({padding:e?"0 12px 0 20px":0},i)},t)};var Ht=Ce(cd);const ud=({products:t,data:e,defImg:i,style:n,onCLick:l,popupDetailData:o,check:a})=>{var r;const{productView:d}=et(),{popupCurTimeRef:u}=Oe(),c=(f,m)=>{if(a===m)return;const h=t?.[a];d(o,h,h?.bindCta,u.current,o?.index),l?.(m)};return p.createElement(p.Fragment,null,e?.open&&(t&&t?.length>1||!o)&&p.createElement(Ht,{enableSlideActive:!0,isPadding:!1,style:Object.assign(Object.assign({},n),e?.style)},(r=o?t:[0,1,2,3])===null||r===void 0?void 0:r.map((f,m)=>{var h,w,y;return p.createElement(p.Fragment,null,f?.bindCta?p.createElement(bt,{className:Ee({width:"50px",height:"50px",marginRight:"10px"}),onClick:()=>{c(f,m)},key:m},p.createElement(lt,{style:{height:"100%",width:"100%",objectFit:"cover",display:"block",objectPosition:`50% ${e?.translateY?e?.translateY+50:50}%`,border:a===m?"1px solid #000":"1px solid #f2f2f2",boxSizing:"border-box"},src:(y=(h=f?.cover)!==null&&h!==void 0?h:(w=f?.homePage)===null||w===void 0?void 0:w[0])!==null&&y!==void 0?y:i})):null)})))};var _n=Ce(ud);const vd=t=>{var e,i,n,l,o,a,r,d,u,c,f,m,h,w,y,P,v,x,b,A,C,g,M,k,S,s,E,T,_,{content:D,style:O,bgImg:j,onClick:H,schema:F,isDefault:B,bottom_image:R,tipText:Z,isPost:G,viewTime:ne,rec:q,swiper:K,commodityStyles:V,buttonStyle:pe,index:me,commodityGroup:X,popupBg:Q,iframeIcon:le,commodityImgRatio:ie}=t,de=Ze(t,["content","style","bgImg","onClick","schema","isDefault","bottom_image","tipText","isPost","viewTime","rec","swiper","commodityStyles","buttonStyle","index","commodityGroup","popupBg","iframeIcon","commodityImgRatio"]);const{sxpParameter:re,popupDetailData:ae,isPreview:oe,bffFbReport:Te,popupCurTimeRef:Ie,checkCommodityIndexRef:Be}=Oe(),{jumpToWeb:_e,productView:He}=et(),Ve=ge(null),[U,ye]=$(!1),[Pe,fe]=$(!1),[Ne,je]=$((e=ae?.multiCheckIndex)!==null&&e!==void 0?e:0),Ae=ge(),z=G?q:ae;let L=G?z?.product:(n=(i=z?.video)===null||i===void 0?void 0:i.bindProduct)!==null&&n!==void 0?n:(o=(l=z?.video)===null||l===void 0?void 0:l.bindProducts)===null||o===void 0?void 0:o[0],Fe=G?(a=z?.product)===null||a===void 0?void 0:a.bindCta:(u=(d=(r=z?.video)===null||r===void 0?void 0:r.bindProduct)===null||d===void 0?void 0:d.bindCta)!==null&&u!==void 0?u:(m=(f=(c=z?.video)===null||c===void 0?void 0:c.bindProducts)===null||f===void 0?void 0:f[0])===null||m===void 0?void 0:m.bindCta;const st=G?me:ae?.index;if(!G&&X?.open&&(!((h=z?.video)===null||h===void 0)&&h.bindProducts)&&((y=(w=z?.video)===null||w===void 0?void 0:w.bindProducts)===null||y===void 0?void 0:y.length)>0){Be.current=Ne;const N=(P=z?.video)===null||P===void 0?void 0:P.bindProducts[Ne];L=N,Fe=N?.bindCta}const kt=()=>{L?.link&&(_e(z,L,Fe,st),G||He(z,L,Fe,ne||Ve.current,st),window.location.href=window.getJointUtmLink(L.link))};be(()=>{G||Te?.({eventName:"ProductView"})},[G,Te]),be(()=>{const N=()=>{Ve.current=new Date};return N(),window.addEventListener("pageshow",N),()=>{window.removeEventListener("pageshow",N)}},[]);const J=ue(()=>{var N,Y,te,ve,he,ee,ce;const ke=((N=V?.price)===null||N===void 0?void 0:N.enableFormattedPrice)===void 0||((Y=V?.price)===null||Y===void 0?void 0:Y.enableFormattedPrice);return L?.currency&&L?.price?`${(he=(ve=(te=L?.currency)===null||te===void 0?void 0:te.split("-")[1])===null||ve===void 0?void 0:ve.toUpperCase())!==null&&he!==void 0?he:""}${ke?(ce=(ee=L?.price)===null||ee===void 0?void 0:ee.toLocaleString("zh",{minimumFractionDigits:0}))!==null&&ce!==void 0?ce:"":L?.price}`:"$7,000"},[L?.price,L?.currency,(v=V?.price)===null||v===void 0?void 0:v.enableFormattedPrice]),W=(oe?375:(x=O?.width)!==null&&x!==void 0?x:window.innerWidth)-((b=Q?.horizontalMargin)!==null&&b!==void 0?b:0)*2,Se=ie?W*(ie.h/ie.w):W,De=({isPost:N})=>{var Y,te,ve,he;return p.createElement("div",null,p.createElement("div",{className:"pb-commondity-content-collection",style:Re(V?.collection),hidden:!!L&&(!L?.collection||L?.collection===""),dangerouslySetInnerHTML:{__html:xe((Y=L?.collection)!==null&&Y!==void 0?Y:"Tiffany Lock",V?.collection)}}),p.createElement("div",{className:"pb-commondity-content-title",style:Re(V?.title),hidden:!!L&&!L?.title,dangerouslySetInnerHTML:{__html:xe((te=L?.title)!==null&&te!==void 0?te:"Pendant in Yellow Gold with Diamonds, Medium",V?.title)}}),p.createElement("div",{className:"pb-commondity-content-price",style:Re(V?.price),hidden:!!L&&!L?.price,dangerouslySetInnerHTML:{__html:xe(J,V?.price)}}),p.createElement("div",{hidden:!!L&&!L?.taxInfo,style:Re(V?.taxInfo),dangerouslySetInnerHTML:{__html:xe((ve=L?.taxInfo)!==null&&ve!==void 0?ve:"\u7A0E\u8D39",V?.taxInfo)}}),p.createElement("div",{hidden:!!L&&(!L?.info||L?.info==="")},p.createElement(oi,{foldText:Z?.foldText,unfoldText:Z?.unfoldText,onClick:()=>ye(!0),isPost:N,text:(he=L?.info)!==null&&he!==void 0?he:`The design inspiration of Tiffany Lock series comes from the power of connection and inclusiveness, and the
|
2
2
|
bold and avant-garde visual design interprets the emotional bond connecting my heart. The Tiffany Lock
|
3
3
|
collection is unisex and is inspired by the padlock pattern found in the Tiffany Antique Collection. This
|
4
4
|
necklace features a stylish and eye-catching oval clasp chain decorated with a lock pattern. Crafted from
|
5
|
-
18-karat gold, this necklace is embellished with hand-set diamonds.`,maxStr:79,className:"pb-commondity-content-info",style:_?.info})))},Ve=()=>{var ve,Ne;return m.createElement(m.Fragment,null,(E||V?.link)&&m.createElement("button",{"aria-label":(ve=Ee?.enTitle)!==null&&ve!==void 0?ve:"Purchase on Website",onClick:X,className:"pb-commondity-btn",style:R},m.createElement("span",{dangerouslySetInnerHTML:{__html:fe((Ne=Ee?.enTitle)!==null&&Ne!==void 0?Ne:"Purchase on Website",R)}})))},ae=ue(ve=>ve?.lineClamp?Object.assign(Object.assign({},ve),{overflow:"hidden",WebkitLineClamp:ve?.lineClamp,textOverflow:"ellipsis",display:"-webkit-box",webkitBoxOrient:"vertical"}):ve,[]),ze=ue(ve=>{me.current=new Date,z(ve),Te.current=ve},[]),Fe=ue(()=>{var ve,Ne,Xe;if(!D)return m.createElement(bn,{products:(ve=$?.video)===null||ve===void 0?void 0:ve.bindProducts,data:j,defImg:(Xe=(Ne=H?.bottom_image)!==null&&Ne!==void 0?Ne:b)!==null&&Xe!==void 0?Xe:"",style:{padding:"0 19px"},onCLick:ze,popupDetailData:Z,check:Q})},[Q]);return m.createElement(m.Fragment,null,m.createElement("div",Object.assign({className:xe(Object.assign({},L))},q),V&&((x=V?.homePage)===null||x===void 0?void 0:x.length)>0&&m.createElement("div",{style:{position:"relative"}},m.createElement(kt,{height:ie,modules:[Zt,$t],pagination:{clickable:!0,bulletActiveClass:"swipe-item-active-bullet",clickableClass:F?.dotsAlign==="left"?"commondityDetail-swiper-clickable-left":"commondityDetail-swiper-clickable-center"},loop:!0,autoplay:{delay:F?.delay*1e3}},m.createElement(m.Fragment,null,(y=V?.homePage)===null||y===void 0?void 0:y.map(ve=>{var Ne;return m.createElement(bt,{key:ve},m.createElement("div",{style:{overflow:"hidden",width:ie,height:ie}},m.createElement(lt,{style:{height:"100%",width:"100%",objectFit:"cover",display:"block",objectPosition:`50% ${F?.translateY?F?.translateY+50:50}%`},src:(Ne=ve??H?.bottom_image)!==null&&Ne!==void 0?Ne:b})))})))),!(!((A=V?.homePage)===null||A===void 0)&&A.length)&&m.createElement("div",{className:xe({position:"relative",height:0,width:"100%",paddingBottom:"100%",overflow:"hidden"})},m.createElement("img",{className:xe({position:"absolute",left:0,top:0,objectFit:"cover",width:"100%"}),src:(k=H?.bottom_image)!==null&&k!==void 0?k:b,alt:"pdp image"})),Fe(),m.createElement("div",{className:"pb-commondity-content"},Oe({isPost:D}))),Ve(),m.createElement(jt,{visible:J,onClose:()=>Ae(!1)},m.createElement("div",{style:{paddingBottom:"80px"}},Oe({isPost:!1})),Ve()),m.createElement(jt,{visible:pe,padding:0,isFullScreen:!0,onClose:()=>he(!1)},m.createElement("iframe",{src:"https://rimowa.threedium.co.uk/product-experience/latest/?sku=92573974&lang=en",style:{width:"100%",height:"calc(100% - 40px)",marginTop:"40px"}})))};var $l=Ie(Zl),ea=[{title:"\u6ED1\u52A8\u4E8B\u4EF6",child:[{type:"Switch",label:"\u6ED1\u52A8\u94FA\u6EE1\u5168\u5C4F",name:["isScrollFullScreen"]}]}];const ta=et($l,{displayName:"\u5546\u54C1\u8BE6\u60C5",icon:"",category:"popup",type:"CommodityDetail",related:{settingRender:mo,interactionRender:ea},defaulSetting:{props:{swiper:{dotsAlign:"center",delay:3},commodityStyles:{price:{color:"#000",fontSize:18,marginTop:24,marginBottom:10},title:{color:"#000",fontSize:23},collection:{fontSize:12,color:"#000",marginBottom:14},info:{color:"gray",fontSize:12},taxInfo:{color:"#000",fontSize:13,textAlign:"left",marginBottom:"10px"}},buttonStyle:{backgroundColor:"#000",fontSize:12,height:45,fontWeight:"bold",textAlign:"center",color:"rgba(255, 255, 255, 0.9)"}},style:{}},w:100,h:40,sort:1});var ia=[{title:"\u70B9\u51FB\u4E8B\u4EF6",child:[{type:"link",name:"onClick"}]}],na=[{title:"",child:[{type:"Media",label:"\u56FE\u6807",name:["props","icon"],mediaType:"Image"},{type:"TextArea",label:"\u5185\u5BB9",name:["props","content"]},{type:"Group",label:"\u5185\u5BB9\u5B57\u4F53",child:[{type:"Select",name:["props","contentStyle","fontFamily-cn"],bottomText:"\u4E2D\u6587\u5B57\u4F53"},{type:"Select",name:["props","contentStyle","fontFamily-en"],bottomText:"\u82F1\u6587/\u5176\u4ED6\u5B57\u4F53"}]},{type:"Group",label:"",child:[{type:"Color",name:["props","contentStyle","color"],initialValue:"#000"},{type:"Number",name:["props","contentStyle","fontSize"],addonAfter:"px",initialValue:14}]},{label:"\u5185\u5BB9\u5B57\u4F53\u95F4\u8DDD",type:"TextSpace",name:["props","contentStyle"]},{type:"Group",label:"\u63D0\u4EA4\u6309\u94AE\u5B57\u4F53",child:[{type:"Select",name:["props","submitButtonStyle","fontFamily-cn"],bottomText:"\u4E2D\u6587\u5B57\u4F53"},{type:"Select",name:["props","submitButtonStyle","fontFamily-en"],bottomText:"\u82F1\u6587/\u5176\u4ED6\u5B57\u4F53"}]},{type:"Group",label:"",child:[{type:"Color",name:["props","submitButtonStyle","color"],initialValue:"#fff"},{type:"Number",name:["props","submitButtonStyle","fontSize"],addonAfter:"px",initialValue:12}]},{label:"\u63D0\u4EA4\u6309\u94AE\u95F4\u8DDD",type:"TextSpace",name:["props","submitButtonStyle"]},{type:"TextStyle",name:["props","submitButtonStyle"]},{type:"TextAlign",name:["props","submitButtonStyle"]},{label:"\u63D0\u4EA4\u6309\u94AE\u989C\u8272",type:"Color",name:["props","submitButtonStyle","backgroundColor"],initialValue:"#000"}]}],yn="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAABHBJREFUeF7lmzuoFkcYhp/TihdIl0JBESubSCCCih4NXgJeUphCjyKmEEVtLRSjooWtShILRRJtgpCoeLzgLUZBQbTwAoooqLWoCWIXeZdd3bP++8/st7OX33+ac2Dn8r3Pvzv7zcy7A9RT5gDjgQnx3/T/iuA58Cz+m/7/StXhDVQ0gATOBhYCi4GxxnHeAKeAs8DfMSBjV52bhQTwBbApFj4YNMqPnV0GrgL7gJchxggFQMI3A5NDBOXRx+MYwn6Pul2rlAWwMv7VvykbiLH9TUAQjhnbYwUwA9gKLLIOHLjdGWAPcL1ovxYAG4G9wKiig1Vc/y2wBThQZJyiAA4Ba4sM0EDdw8CPvuMWAXAb+Mq344br3QGm+cTgC+B/n85aWMepz1kBOBknMy3U5wxJSdSSbrVcAPR+V9LRy0X5SW6+0A3AMuDPXlaeiv174K9OWvIAfA1cAMZ9JgBeA98Ct7J68gAMtyjJCfUbKFn6zgeA0tujoUZtWT9D2bS50x1wA2gqt6+al9YO09ODZAF8DrO+C+KIt0IagNbzIlTXktYVaKfr9+PNkSklchMtpXWHR/sJaQA7gJ8sUdXURuJ/AB7E4/0BLDeOvROQ3hEA/gFmGjusullWfDKeFcI1YFYawETgSdUqjP3niS8LYRLwNHkE1gM/GwOssplLfBkIG4BfEgBKE5dWqcTQt694da1td22YFikngGUJgH+B0UVaV1y3iHiFYpnA/wPGCICFXpX66xCfxD8oAKuA3wIpegToHW0tdYpXjKsFQLu7u60Rx+3exSCPG29HdVO3eI25TQB+BdaVAKCMSneRVpBJKfpMNiFesR4UgNOdlomeQF4AWj3quCpbfCE0JV7xDgvAXWCqp+B0tYfACkC7xXnFBaFJ8Yr5ngC8Mu78KHnS4+MqeRCaFq+4X5cB8MnmQoE7oQ3iPwCwPgJWEdZ2rjvNcj16BMpMghYxWsElS1pX0K45xNXedT2aBMu+BotCcAVlfZX69puuF70GQyRCoSFU/csnEKJEKFQqHApCXeIFIUqFQy6GykKoU7wARIuh6HVQwsmVffasEOoWLwfauASADkKU0oYqRSHULV465SsaSgAoqfk9lPq4H18ITYhXiJr7jiYAZGyUUzN0cUFoSrx0yrX6PH0ucEmTQmgCXdb5TYrX/uFcaa3rYCR7JzQpXro1vg5HRgCo+mhMEOT3/RKQYaGpkns0poD6+nA0+UX6+nhcEPreICEIfW2REQCZoc+30A9snTjlI57fyUzdzSYnU3RpP7414sDtNLl3NFG7jJK9YI52sepqnnYBUOe9ZJLOwnCapn0AqNO+NksnVHvJNO00SSeifO+ApH4vZIpdzdHZZ6QoALWXifqI8TTJNWGVua5drTV5pui8ji0A1JfM1Lta5CeWD3h7JzO0i6gVQNJv3342lwXbtx9OpkFoP0ET0LwKDZcyOF5s46ez2TtCxkt9OL0gBmJ1oMnJJcHnYo/wU9czXfR62TnAd7zWfj7/HrAAAKDnDZ8VAAAAAElFTkSuQmCC";const oa=t=>{var e;if(!t||typeof t!="object")return null;const{mode:i,link:n,file:l,src:o}=t;switch(i){case 2:return n||null;case 3:return o||null;default:return l&&l.length>0?(e=l[0])===null||e===void 0?void 0:e.url:null}},la=t=>{var{content:e,btnText:i,style:n,icon:l,isPopup:o,isExternalLink:r,onClose:s,onClick:a,submitButtonStyle:u,contentStyle:d}=t,f=Je(t,["content","btnText","style","icon","isPopup","isExternalLink","onClose","onClick","submitButtonStyle","contentStyle"]);const{popupDetailData:v}=Pe(),{jumpToWeb:h}=$e(),w=typeof l=="string"?l:oa(l),T=()=>{var C,p,x;if(r){const y=v,A=(C=y?.video)===null||C===void 0?void 0:C.bindProduct,k=(x=(p=y?.video)===null||p===void 0?void 0:p.bindProduct)===null||x===void 0?void 0:x.bindCta,g=v?.index;h(y,A,k,g)}o||s?.(),a?.()};return m.createElement("div",Object.assign({className:`pb-prompt ${xe(Object.assign({},n))}`},f),m.createElement("div",{className:"pb-prompt-icon"},m.createElement("img",{width:"100%",src:w??yn,alt:"success image"})),m.createElement("div",{className:"pb-prompt-content",style:d,dangerouslySetInnerHTML:{__html:fe(e,d)}}),m.createElement("button",{"aria-label":i,className:"pb-prompt-btn",style:u,onClick:T,dangerouslySetInnerHTML:{__html:fe(i,u)}}))};var aa=Ie(la);const ra=et(aa,{displayName:"\u63D0\u4EA4\u6210\u529F",icon:"",category:"popup",type:"Prompt",related:{settingRender:na,bindableProps:[],interactionRender:ia},defaulSetting:{props:{icon:yn,content:"You have successfully completed the appointment!",btnText:"OK"},style:{}},w:100,h:40,sort:3});var sa=[{title:"\u5546\u54C1\u56FE\u7247",child:[{type:"Radius",label:"\u8F6E\u64AD\u6307\u793A\u5668",options:[{label:"\u5C45\u5DE6",value:"left"},{label:"\u5C45\u4E2D",value:"center"}],name:["props","swiper","dotsAlign"]},{type:"Number",name:["props","swiper","delay"],addonAfter:"s"},{type:"Group",child:[{label:"\u5C45\u4E2D\u5782\u76F4\u504F\u79FB",type:"Number",name:["props","swiper","translateY"],min:-1e3,addonAfter:"%",initialValue:0}]}]},{title:"\u591A\u5546\u54C1\u5207\u6362\u5668",child:[{type:"Switch",name:["props","commodityGroup","open"],label:"\u5FEB\u901F\u5207\u6362\u5F00\u5173"},{type:"Group",child:[{label:"\u5C45\u4E2D\u5782\u76F4\u504F\u79FB",type:"Number",name:["props","commodityGroup","translateY"],min:-1e3,addonAfter:"%",initialValue:0}]},{type:"Group",child:[{label:"\u4E0A\u8FB9\u8DDD",name:["props","commodityGroup","style","marginTop"],type:"Number",addonAfter:"px",initialValue:20},{label:"\u4E0B\u8FB9\u8DDD",name:["props","commodityGroup","style","marginBottom"],type:"Number",addonAfter:"px"}]}]},{title:"\u5546\u54C1\u6587\u672C",child:[{name:["props","commodityStyles"],type:"SelectLinkage",child:[{label:"\u5B57\u6BB5",type:"Select",options:[{label:"\u5546\u54C1\u540D\u79F0",value:"title"},{label:"\u7CFB\u5217\u540D\u79F0",value:"collection"},{label:"\u4EF7\u683C",value:"price"},{label:"\u7A0E\u8D39\u8BF4\u660E",value:"taxInfo"},{label:"\u5546\u54C1\u63CF\u8FF0",value:"info"}],name:["props","commodityStyles","field"],initialValue:"title"},{type:"Group",label:"\u6807\u9898\u5B57\u4F53",child:[{type:"Select",name:["fontFamily-cn"],bottomText:"\u4E2D\u6587\u5B57\u4F53"},{type:"Select",name:["fontFamily-en"],bottomText:"\u82F1\u6587/\u5176\u4ED6\u5B57\u4F53"}]},{type:"Group",label:"",child:[{type:"Color",name:["color"]},{type:"Number",addonAfter:"px",name:["fontSize"]}]},{label:"\u6807\u9898\u6837\u5F0F",type:"TextStyle"},{label:"\u6807\u9898\u5BF9\u9F50",type:"TextAlign"},{label:"\u9ED8\u8BA4\u884C\u6570",type:"Number",name:["lineClamp"]},{label:"\u95F4\u8DDD",type:"TextSpace"}]}]},{title:"\u8D2D\u4E70\u6309\u94AE\u6837\u5F0F",child:[{type:"Color",label:"\u80CC\u666F\u8272",name:["props","buttonStyle","backgroundColor"],initialValue:"#000"},{type:"Group",label:"\u5C3A\u5BF8",child:[{type:"Number",name:["props","buttonStyle","height"],addonAfter:"H"}]},{type:"Group",label:"\u5706\u89D2",child:[{type:"Slider",name:["props","buttonStyle","borderRadius"],max:100},{type:"Number",name:["props","buttonStyle","borderRadius"],addonAfter:"px",max:100}]},{type:"TextMargin",name:["props","buttonStyle"]},{type:"Group",label:"\u5B57\u4F53",child:[{type:"Select",name:["props","buttonStyle","fontFamily-cn"],bottomText:"\u4E2D\u6587\u5B57\u4F53"},{type:"Select",name:["props","buttonStyle","fontFamily-en"],bottomText:"\u82F1\u6587/\u5176\u4ED6\u5B57\u4F53"}]},{type:"Group",label:"",child:[{type:"Color",name:["props","buttonStyle","color"],initialValue:"#fff"},{type:"Number",name:["props","buttonStyle","fontSize"],addonAfter:"px"}]},{type:"TextStyle",name:["props","buttonStyle"]},{type:"TextAlign",name:["props","buttonStyle"]},{label:"\u95F4\u8DDD",type:"TextSpace",name:["props","buttonStyle"]}]}];const da=t=>{var e,i,n,l,o,r,s,a,u,d,f,v,h,w,T,C,p,x,y,A,k,g,L,M,S,{style:c,isDefault:E,rec:b,viewTime:I,isPost:D,bottom_image:P,tipText:N,swiper:F,commodityStyles:_,buttonStyle:R,index:B,commodityGroup:j}=t,q=Je(t,["style","isDefault","rec","viewTime","isPost","bottom_image","tipText","swiper","commodityStyles","buttonStyle","index","commodityGroup"]);W(!0);const{sxpParameter:H,popupCurTimeRef:Z,popupDetailData:le,isPreview:be,bffFbReport:me,checkCommodityIndexRef:Te}=Pe(),{jumpToWeb:ye,productView:ee}=$e();W(!1),W(!1),W(!0);const[G,J]=W(!1),Ae=re(null),[pe,he]=W((e=le?.multiCheckIndex)!==null&&e!==void 0?e:0),Q=D?b:le;let z=D?Q?.product:(n=(i=Q?.video)===null||i===void 0?void 0:i.bindProduct)!==null&&n!==void 0?n:(o=(l=Q?.video)===null||l===void 0?void 0:l.bindProducts)===null||o===void 0?void 0:o[0],$=D?(r=Q?.product)===null||r===void 0?void 0:r.bindCta:(u=(a=(s=Q?.video)===null||s===void 0?void 0:s.bindProduct)===null||a===void 0?void 0:a.bindCta)!==null&&u!==void 0?u:(v=(f=(d=Q?.video)===null||d===void 0?void 0:d.bindProducts)===null||f===void 0?void 0:f[0])===null||v===void 0?void 0:v.bindCta;const V=D?B:le?.index;if(!D&&j?.open&&(!((h=Q?.video)===null||h===void 0)&&h.bindProducts)&&((T=(w=Q?.video)===null||w===void 0?void 0:w.bindProducts)===null||T===void 0?void 0:T.length)>0){Te.current=pe;const ae=(C=Q?.video)===null||C===void 0?void 0:C.bindProducts[pe];z=ae,$=ae?.bindCta}const Ee=()=>{z?.link&&(ye(Q,z,$,V),D||ee(Q,z,$,I||Ae.current,V),window.location.href=window.getJointUtmLink(z.link))};se(()=>{D||me?.({eventName:"ProductView"})},[D,me]),se(()=>{const ae=()=>{Ae.current=new Date};return ae(),window.addEventListener("pageshow",ae),()=>{window.removeEventListener("pageshow",ae)}},[]);const oe=ne(()=>{var ae,ze,Fe,ve,Ne;return z?.currency&&z?.price?`${(Fe=(ze=(ae=z?.currency)===null||ae===void 0?void 0:ae.split("-")[1])===null||ze===void 0?void 0:ze.toUpperCase())!==null&&Fe!==void 0?Fe:""}${(Ne=(ve=z?.price)===null||ve===void 0?void 0:ve.toLocaleString("zh",{minimumFractionDigits:0}))!==null&&Ne!==void 0?Ne:""}`:"\xA3102,300.00"},[z?.price,z?.currency]),X=be?375:(p=c?.width)!==null&&p!==void 0?p:window.innerWidth,K=({isPost:ae})=>m.createElement("div",{hidden:!!z&&(!z?.info||z?.info==="")},m.createElement(ii,{isPost:ae,onClick:()=>J(!0),className:"pb-commondityDiroNew-info",style:_?.info,foldText:N?.foldText,unfoldText:N?.unfoldText,text:z?.info||`Unveiled at the Spring-Summer 2023 fashion show, the Dior Toujours bag is distinguished by a casual and practical design. Crafted in black calfskin with Macrocannage topstitching, it showcases a spacious interior compartment with a matching pouch to organize essentials. Its leather strap closure keeps items secure while the D of the CD Lock closure twists to adjust the sides and enhance the bag's silhouette. The leather handles can be adjusted using the small notches in order to be able to carry the large bag by hand or wear it over the shoulder. CD Lock and strap closures D.I.O.R. charms Removable interior pouch Adjustable leather handles Dust bag included
|
6
|
-
Made in Italy`})),ie=ue(ae=>ae?.lineClamp?Object.assign(Object.assign({},ae),{overflow:"hidden",WebkitLineClamp:ae?.lineClamp,textOverflow:"ellipsis",display:"-webkit-box",webkitBoxOrient:"vertical"}):ae,[]),Oe=ue(ae=>{Z.current=new Date,he(ae),Te.current=ae},[]),Ve=ue(()=>{var ae,ze,Fe;if(!D)return m.createElement(bn,{products:(ae=Q?.video)===null||ae===void 0?void 0:ae.bindProducts,data:j,defImg:(Fe=(ze=H?.bottom_image)!==null&&ze!==void 0?ze:P)!==null&&Fe!==void 0?Fe:"",style:{padding:"0 19px"},onCLick:Oe,popupDetailData:le,check:pe})},[pe]);return m.createElement("div",{className:"pb-commondityDiroNew"},m.createElement("div",Object.assign({className:xe(Object.assign(Object.assign({},c),{transform:"translate3d(0px, 0px, 0px)"}))},q),z&&((x=z?.homePage)===null||x===void 0?void 0:x.length)>0&&m.createElement(kt,{height:X,modules:[Zt,$t],pagination:{clickable:!0,bulletActiveClass:"commondityDiroNew-swipe-item-active-bullet",clickableClass:F?.dotsAlign==="left"?"commondityDiroNew-swiper-clickable-left":"commondityDiroNew-swiper-clickable-center"},loop:!0,autoplay:{delay:F?.delay*1e3}},(y=z?.homePage)===null||y===void 0?void 0:y.map(ae=>{var ze;return m.createElement(bt,{key:ae},m.createElement("div",{style:{overflow:"hidden",width:X,height:X}},m.createElement(lt,{style:{height:"100%",width:"100%",objectFit:"cover",display:"block",objectPosition:`50% ${F?.translateY?F?.translateY+50:50}%`},src:(ze=ae??H?.bottom_image)!==null&&ze!==void 0?ze:P})))})),!(!((A=z?.homePage)===null||A===void 0)&&A.length)&&m.createElement("div",{className:xe({position:"relative",height:0,width:"100%",paddingBottom:"100%",overflow:"hidden"})},m.createElement("img",{className:xe({position:"absolute",left:0,top:0,objectFit:"cover",width:"100%"}),src:(k=H?.bottom_image)!==null&&k!==void 0?k:P,alt:"pdp image"})),Ve(),m.createElement("div",{className:"pb-commondityDiroNew-content"},m.createElement("div",{className:"pb-commondityDiroNew-content-top"},m.createElement("div",{className:"pb-commondityDiroNew-content-top-left"},m.createElement("div",{className:"pb-commondityDiroNew-content-top-left-title",style:ie(_?.title),dangerouslySetInnerHTML:{__html:fe((g=z?.title)!==null&&g!==void 0?g:"Large Dior Toujours BagLarge",_?.title)}}),m.createElement("div",{className:"pb-commondityDiroNew-content-collection",hidden:!!z&&(!z?.collection||z?.collection===""),style:ie(_?.collection),dangerouslySetInnerHTML:{__html:fe(z?.collection||"Black Macrocannage CalfskinLarge",_?.collection)}})),m.createElement("div",{className:"pb-commondityDiroNew-content-top-right"},m.createElement("div",{className:"pb-commondityDiroNew-content-top-right-price",hidden:!!z&&!z?.price,style:ie(_?.price),dangerouslySetInnerHTML:{__html:fe(oe,_?.price)}}),m.createElement("div",{className:"pb-commondityDiroNew-content-top-right-price",hidden:!!z&&!z?.taxInfo,style:ie(_?.taxInfo),dangerouslySetInnerHTML:{__html:fe((L=z?.taxInfo)!==null&&L!==void 0?L:"\u7A0E\u8D39",_?.taxInfo)}}))),(!z||z?.link)&&m.createElement("button",{"aria-label":(M=$?.enTitle)!==null&&M!==void 0?M:"Shop now",onClick:Ee,className:"pb-commondityDiroNew-btn",style:R},m.createElement("span",{dangerouslySetInnerHTML:{__html:fe((S=$?.enTitle)!==null&&S!==void 0?S:"Shop now",R)}})),K({isPost:D}))),m.createElement(jt,{visible:G,onClose:()=>J(!1)},K({isPost:!1})))};var ca=Ie(da),ua=[{title:"\u6ED1\u52A8\u4E8B\u4EF6",child:[{type:"Switch",label:"\u6ED1\u52A8\u94FA\u6EE1\u5168\u5C4F",name:["isScrollFullScreen"]}]}];const pa=et(ca,{displayName:"\u5546\u54C1\u8BE6\u60C5",icon:"",category:"popup",type:"CommodityDetailDiroNew",related:{settingRender:sa,interactionRender:ua},defaulSetting:{props:{swiper:{dotsAlign:"left",delay:3},commodityStyles:{price:{color:"#000",fontWeight:"bold",fontSize:13},title:{color:"#000",fontSize:13},collection:{color:"#757575",fontSize:13},info:{color:"#757575",fontSize:13},taxInfo:{color:"#000",fontWeight:"bold",fontSize:13,textAlign:"right"}},buttonStyle:{backgroundColor:"#000",fontSize:12,height:52,fontWeight:"bold",textAlign:"center",color:"#fff",borderRadius:25,marginTop:16,marginBottom:16}},style:{}},w:100,h:40,sort:1});var va=[{title:"\u5546\u54C1\u56FE\u7247",child:[{type:"Group",label:"\u5C3A\u5BF8",child:[{type:"Number",name:["props","commodityPicture","width"],addonAfter:"W"},{type:"Number",name:["props","commodityPicture","height"],addonAfter:"H"}]},{type:"Group",label:"\u5706\u89D2",child:[{type:"Slider",name:["props","commodityPicture","borderRadius"],max:100},{type:"Number",name:["props","commodityPicture","borderRadius"],addonAfter:"px",max:100}]},{type:"Number",label:"\u4E0E\u53F3\u4FA7\u8FB9\u8DDD",addonAfter:"px",name:["props","commodityPicture","marginRight"]},{label:"\u5C45\u4E2D\u5782\u76F4\u504F\u79FB",type:"Number",name:["props","translateY"],min:-1e3,addonAfter:"%",initialValue:0}]},{title:"\u5546\u54C1\u6587\u672C",child:[{name:["props","commodityStyles"],type:"SelectLinkage",child:[{label:"\u5B57\u6BB5",type:"Select",options:[{label:"\u5546\u54C1\u540D\u79F0",value:"title"},{label:"\u7CFB\u5217\u540D\u79F0",value:"collection"},{label:"\u4EF7\u683C",value:"price"}],name:["props","commodityStyles","field"],initialValue:"title"},{type:"Group",label:"\u6807\u9898\u5B57\u4F53",child:[{type:"Select",name:["fontFamily-cn"],bottomText:"\u4E2D\u6587\u5B57\u4F53"},{type:"Select",name:["fontFamily-en"],bottomText:"\u82F1\u6587/\u5176\u4ED6\u5B57\u4F53"}]},{type:"Group",label:"",child:[{type:"Color",name:["color"]},{type:"Number",addonAfter:"px",name:["fontSize"]}]},{label:"\u6807\u9898\u6837\u5F0F",type:"TextStyle"},{label:"\u6807\u9898\u5BF9\u9F50",type:"TextAlign"},{label:"\u95F4\u8DDD",type:"TextSpace"}]}]},{title:"\u6309\u94AE\u6837\u5F0F",child:[{type:"Color",label:"\u80CC\u666F\u8272",name:["props","buttonStyle","backgroundColor"]},{type:"Group",label:"\u5C3A\u5BF8",child:[{type:"Number",name:["props","buttonStyle","width"],addonAfter:"W"},{type:"Number",name:["props","buttonStyle","height"],addonAfter:"H"}]},{type:"Group",label:"\u5706\u89D2",child:[{type:"Slider",name:["props","buttonStyle","borderRadius"],max:100},{type:"Number",name:["props","buttonStyle","borderRadius"],addonAfter:"px",max:100}]},{type:"TextSpace",name:["props","buttonStyle"]},{type:"Group",label:"\u5B57\u4F53",child:[{type:"Select",name:["props","buttonStyle","fontFamily-cn"],bottomText:"\u4E2D\u6587\u5B57\u4F53"},{type:"Select",name:["props","buttonStyle","fontFamily-en"],bottomText:"\u82F1\u6587/\u5176\u4ED6\u5B57\u4F53"}]},{type:"Group",label:"",child:[{type:"Color",name:["props","buttonStyle","color"]},{type:"Number",addonAfter:"px",name:["props","buttonStyle","fontSize"]}]},{label:"\u6837\u5F0F",type:"TextStyle",name:["props","buttonStyle"]},{label:"\u5BF9\u9F50",type:"TextAlign",name:["props","buttonStyle"]}]}];function wn(t){const e=re(null),[i,n]=W(!1);return se(()=>{e.current=new IntersectionObserver(([l])=>{n(l.isIntersecting)})},[]),se(()=>{var l;return t?.current&&((l=e?.current)===null||l===void 0||l.observe(t?.current)),()=>{var o;(o=e?.current)===null||o===void 0||o.disconnect()}},[t]),i}const ma=({src:t,rec:e,item:i,index:n,style:l,translateY:o,imgStyle:r,enableEventReport:s=!0})=>{const a=re(null),u=wn(a),{ctaEvent:d}=Pe();return se(()=>{u&&t&&a?.current&&s&&d?.({eventSubject:"ctaExposure",eventDescription:"The cta was shown to the user"},e,i,n)},[u,t,a,e,d,i,n,s]),ne(()=>t?.includes(".avif")?t:`${t}?imrquality/rquality/20`,[t]),m.createElement("div",{className:xe(Object.assign({overflow:"hidden",flexShrink:0,backgroundColor:"#f2f2f2"},r))},m.createElement("div",{ref:a,hidden:!t,className:xe({width:"100%",height:"100%"})},m.createElement(lt,{className:xe(Object.assign({width:"100%",objectFit:"cover",height:"100%",display:"block",objectPosition:`50% ${o?o+50:50}%`},l)),src:t})))};var St=Ie(ma);const fa=t=>{var e,i,{style:n,isDefault:l,rec:o,viewTime:r,isPost:s,bottom_image:a,commodityStyles:u,buttonStyle:d,translateY:f=0,commodityPicture:v,isExternalLink:h,onClick:w}=t,T=Je(t,["style","isDefault","rec","viewTime","isPost","bottom_image","commodityStyles","buttonStyle","translateY","commodityPicture","isExternalLink","onClick"]);const{sxpParameter:C,popupDetailData:p,setPopupDetailData:x,ctaEvent:y}=Pe(),{jumpToWeb:A}=$e(),{popup:k}=ft(),g=s?o:p,L=(i=(e=g?.video)===null||e===void 0?void 0:e.bindProducts)!==null&&i!==void 0?i:[null,null,null,null],M=p?.index,S=ue(E=>{var b,I,D,P,N;return E?.currency&&E?.price?`${(D=(I=(b=E?.currency)===null||b===void 0?void 0:b.split("-")[1])===null||I===void 0?void 0:I.toUpperCase())!==null&&D!==void 0?D:""}${(N=(P=E?.price)===null||P===void 0?void 0:P.toLocaleString("zh",{minimumFractionDigits:0}))!==null&&N!==void 0?N:""}`:"$7,000"},[]),c=Lt((E,b)=>{y?.({eventSubject:"clickCta",eventDescription:"User clicked the CTA"},g,E,M),x?.(Object.assign(Object.assign({},g),{video:Object.assign(Object.assign({},g?.video),{bindProduct:E}),index:M,multiCheckIndex:b})),h?E?.link&&(A(g,E,E.bindCta,M),window.location.href=window.getJointUtmLink(E.link)):w?.()},k?.duration);return m.createElement("div",{className:xe(Object.assign(Object.assign({},n),{display:"flex",flexDirection:"column",gap:"10px",padding:"0 20px",marginTop:"50px",boxSizing:"border-box"}))},L?.map((E,b)=>{var I,D,P,N,F,_,R,B,j,q;return m.createElement(m.Fragment,null,g&&!E?.bindCta?null:m.createElement("div",Object.assign({key:b},T,{className:xe({display:"flex"}),onClick:()=>c(E,b)}),m.createElement(St,{src:(N=(P=(I=E?.cover)!==null&&I!==void 0?I:(D=E?.homePage)===null||D===void 0?void 0:D[0])!==null&&P!==void 0?P:C?.bottom_image)!==null&&N!==void 0?N:a,rec:g,item:E,index:b,translateY:f,imgStyle:v,enableEventReport:!1}),m.createElement("div",{style:{width:`calc(100% - ${(F=v?.width)!==null&&F!==void 0?F:0}px - ${(_=v?.marginRight)!==null&&_!==void 0?_:0}px)`,display:"flex",flexDirection:"column",justifyContent:"space-between"}},m.createElement("div",null,m.createElement("div",{className:"one-line-ellipsis",style:u?.title,hidden:!!E&&!E?.title,dangerouslySetInnerHTML:{__html:fe((R=E?.title)!==null&&R!==void 0?R:"Pendant in Yellow Gold with Diamonds, Medium",u?.title)}}),m.createElement("div",{className:"two-line-ellipsis",style:u?.collection,hidden:!!E&&(!E?.collection||E?.collection===""),dangerouslySetInnerHTML:{__html:fe((B=E?.collection)!==null&&B!==void 0?B:"Tiffany Lock",u?.collection)}})),m.createElement("div",{className:xe({display:"flex",alignItems:"flex-end",justifyContent:"space-between",width:"100%",overflow:"hidden"})},m.createElement("div",null,m.createElement("div",{style:u?.price,hidden:!!E&&!E?.price,dangerouslySetInnerHTML:{__html:fe(S(E),u?.price)}})),m.createElement("div",{className:"one-line-ellipsis",style:Object.assign(Object.assign({},d),{padding:"0 15px"}),dangerouslySetInnerHTML:{__html:fe((q=(j=E?.bindCta)===null||j===void 0?void 0:j.enTitle)!==null&&q!==void 0?q:"Shop Now",d)}})))))}))};var ha=Ie(fa),ga=[{title:"\u70B9\u51FB\u4E8B\u4EF6",child:[{type:"link",name:"onClick"}]}];const ba=et(ha,{displayName:"\u5546\u54C1\u5217\u8868",icon:"",category:"popup",type:"CommodityList",related:{settingRender:va,interactionRender:ga},defaulSetting:{props:{commodityPicture:{width:100,height:100,marginRight:10},commodityStyles:{price:{color:"#000",fontWeight:"bold",fontSize:14},title:{color:"#000",fontSize:14},collection:{color:"#757575",fontSize:12}},buttonStyle:{backgroundColor:"#000",fontSize:12,height:30,width:100,textAlign:"center",color:"#fff",lineHeight:2.5}},style:{}},w:100,h:40,sort:1});var pt=[{title:"\u4E3B\u9898\u6837\u5F0F",child:[{type:"Group",label:"\u5C3A\u5BF8",child:[{type:"Number",name:["style","width"],addonAfter:"W"},{type:"Number",name:["style","height"],addonAfter:"H"}]},{type:"Group",label:"\u5706\u89D2",child:[{type:"Slider",name:["style","borderRadius"],max:100},{type:"Number",name:["style","borderRadius"],addonAfter:"px",max:100}]},{type:"Color",label:"\u80CC\u666F\u8272",name:["style","backgroundColor"]},{label:"\u5185\u8FB9\u8DDD",type:"Number",name:["style","padding"],addonAfter:"px"},{label:"\u4E0EPost\u63CF\u8FF0\u8FB9\u8DDD",type:"Number",name:["style","marginBottom"],addonAfter:"px"}]},{title:"\u5546\u54C1\u56FE\u7247",child:[{type:"Group",label:"\u5C3A\u5BF8",child:[{type:"Number",name:["props","ctaTempStyles","img","width"],addonAfter:"W"},{type:"Number",name:["props","ctaTempStyles","img","height"],addonAfter:"H"}]},{type:"Group",label:"\u5706\u89D2",child:[{type:"Slider",name:["props","ctaTempStyles","img","borderRadius"],max:100},{type:"Number",name:["props","ctaTempStyles","img","borderRadius"],addonAfter:"px",max:100}]},{type:"Number",label:"\u4E0E\u53F3\u4FA7\u8FB9\u8DDD",addonAfter:"px",name:["props","ctaTempStyles","img","marginRight"]},{label:"\u5C45\u4E2D\u5782\u76F4\u504F\u79FB",type:"Number",name:["props","translateY"],min:-1e3,addonAfter:"%",initialValue:0}]},{title:"\u5546\u54C1\u6807\u9898\u6587\u672C",type:"commodityTitle",child:[{type:"Group",label:"\u5B57\u4F53",child:[{type:"Select",name:["props","ctaTempStyles","title","fontFamily-cn"],bottomText:"\u4E2D\u6587\u5B57\u4F53"},{type:"Select",name:["props","ctaTempStyles","title","fontFamily-en"],bottomText:"\u82F1\u6587/\u5176\u4ED6\u5B57\u4F53"}]},{type:"Group",label:"",child:[{type:"Color",name:["props","ctaTempStyles","title","color"]},{type:"Number",addonAfter:"px",name:["props","ctaTempStyles","title","fontSize"]}]},{label:"\u6837\u5F0F",type:"TextStyle",name:["props","ctaTempStyles","title"]},{label:"\u5BF9\u9F50",type:"TextAlign",name:["props","ctaTempStyles","title"]},{label:"\u95F4\u8DDD",type:"TextSpace",name:["props","ctaTempStyles","title"]}]},{title:"CTA\u6807\u9898",child:[{type:"Group",label:"\u5C3A\u5BF8",child:[{type:"Number",name:["props","ctaTempStyles","ctaTitle","width"],addonAfter:"W"},{type:"Number",name:["props","ctaTempStyles","ctaTitle","height"],addonAfter:"H"}]},{type:"Group",label:"\u5706\u89D2",child:[{type:"Slider",name:["props","ctaTempStyles","ctaTitle","borderRadius"],max:100},{type:"Number",name:["props","ctaTempStyles","ctaTitle","borderRadius"],addonAfter:"px",max:100}]},{type:"Color",label:"\u80CC\u666F\u8272",name:["props","ctaTempStyles","ctaTitle","backgroundColor"]},{type:"Group",label:"\u5B57\u4F53",child:[{type:"Select",name:["props","ctaTempStyles","ctaTitle","fontFamily-cn"],bottomText:"\u4E2D\u6587\u5B57\u4F53"},{type:"Select",name:["props","ctaTempStyles","ctaTitle","fontFamily-en"],bottomText:"\u82F1\u6587/\u5176\u4ED6\u5B57\u4F53"}]},{type:"Group",label:"",child:[{type:"Color",name:["props","ctaTempStyles","ctaTitle","color"]},{type:"Number",addonAfter:"px",name:["props","ctaTempStyles","ctaTitle","fontSize"]}]},{label:"\u6837\u5F0F",type:"TextStyle",name:["props","ctaTempStyles","ctaTitle"]},{label:"\u5BF9\u9F50",type:"TextAlign",name:["props","ctaTempStyles","ctaTitle"]},{label:"\u95F4\u8DDD",type:"TextSpace",name:["props","ctaTempStyles","ctaTitle"]}]}],ya=[{title:"\u70B9\u51FB\u4E8B\u4EF6",child:[{type:"link",name:"onClick"}]}];const wa=t=>{var{rec:e,children:i,className:n,onClick:l,style:o,isExternalLink:r=!1,index:s}=t;Je(t,["rec","children","className","onClick","style","isExternalLink","index"]);const a=re(null),{popup:u}=ft(),{setPopupDetailData:d,ctaEvent:f}=Pe(),{jumpToWeb:v}=$e(),h=Lt(()=>{var w,T,C,p,x,y,A,k;const g=(T=(w=e?.video)===null||w===void 0?void 0:w.bindProduct)!==null&&T!==void 0?T:e?.video;if(f?.({eventSubject:"clickCta",eventDescription:"User clicked the CTA"},e,g,s),d?.(Object.assign(Object.assign({},e),{index:s})),r){if(!((p=(C=e?.video)===null||C===void 0?void 0:C.bindProduct)===null||p===void 0)&&p.link){const L=(x=e?.video)===null||x===void 0?void 0:x.bindCta,M=(y=e?.video)===null||y===void 0?void 0:y.bindProduct;v(e,M,L,s),window.location.href=window.getJointUtmLink((k=(A=e?.video)===null||A===void 0?void 0:A.bindProduct)===null||k===void 0?void 0:k.link)}}else l?.()},u?.duration);return m.createElement("div",{ref:a,className:n,style:o,onClick:h},i)};var zt=Ie(wa),Sa={"tow-line-ellipsis":"index-module_tow-line-ellipsis__3bKKx"};const Ta=t=>{var e,i,n,l,o,r,s,a,u,d,f,{content:v,style:h,bgImg:w,recData:T,bottom_image:C,ctaTempStyles:p,isExternalLink:x,translateY:y=0,index:A}=t,k=Je(t,["content","style","bgImg","recData","bottom_image","ctaTempStyles","isExternalLink","translateY","index"]);const{sxpParameter:g}=Pe(),L=(e=T?.video)===null||e===void 0?void 0:e.bindProduct,M=(o=(l=(i=L?.cover)!==null&&i!==void 0?i:(n=L?.homePage)===null||n===void 0?void 0:n[0])!==null&&l!==void 0?l:g?.bottom_image)!==null&&o!==void 0?o:C;return m.createElement(zt,Object.assign({isExternalLink:x,rec:T,className:xe(Object.assign({},h)),style:{display:"flex"},index:A},k),m.createElement(St,{src:M,rec:T,item:(s=(r=T?.video)===null||r===void 0?void 0:r.bindProduct)!==null&&s!==void 0?s:T?.video,index:A,translateY:y,imgStyle:p?.img}),m.createElement("div",{className:xe({color:"#fff",display:"flex",flexDirection:"column",justifyContent:"space-between",width:"100%",overflow:"hidden"})},m.createElement("div",{className:Sa["tow-line-ellipsis"],style:p?.title,dangerouslySetInnerHTML:{__html:fe((a=L?.title)!==null&&a!==void 0?a:"Product Name",p?.title)}}),m.createElement("div",{className:xe(Object.assign({padding:"0 7px",textOverflow:"ellipsis",overflow:"hidden",whiteSpace:"nowrap",lineHeight:((u=p?.ctaTitle)===null||u===void 0?void 0:u.height)+"px"},p?.ctaTitle)),dangerouslySetInnerHTML:{__html:fe((f=(d=L?.bindCta)===null||d===void 0?void 0:d.enTitle)!==null&&f!==void 0?f:"Shop Now",p?.ctaTitle)}})))};var xa=Ie(Ta);const Aa=et(xa,{displayName:"\u63A8\u8350\u5355\u5546\u54C1-\u900F\u660E\u5E95",icon:"",category:"template",type:"Commodity",related:{interactionRender:ya,bindableProps:[],settingRender:pt},defaulSetting:{props:{ctaTempStyles:{img:{borderRadius:3,width:60,height:60,marginRight:8},title:{fontSize:12,color:"#fff",textAlign:"left"},ctaTitle:{fontSize:10,color:"#fff",textAlign:"center",width:130,height:20,backgroundColor:"rgba(0,0,0,.5)"}}},style:{padding:7,width:236,height:74,borderRadius:3,backgroundColor:"rgba(0,0,0,.3)",marginBottom:8}},w:100,h:40,sort:1});var Ea=[{title:"\u70B9\u51FB\u4E8B\u4EF6",child:[{type:"link",name:"onClick"}]}];const Ca=t=>{var e,i,n,l,o,r,{content:s,style:a,bgImg:u,recData:d,bottom_image:f,ctaTempStyles:v,isExternalLink:h,index:w}=t,T=Je(t,["content","style","bgImg","recData","bottom_image","ctaTempStyles","isExternalLink","index"]);const{sxpParameter:C}=Pe(),p=(e=d?.video)===null||e===void 0?void 0:e.bindCta,x=(n=(i=p?.icon)!==null&&i!==void 0?i:C?.bottom_image)!==null&&n!==void 0?n:f;return m.createElement(zt,Object.assign({isExternalLink:h,rec:d,className:xe(Object.assign({alignItems:"center"},a)),style:{display:"flex"},index:w},T),m.createElement(St,{src:x,rec:d,item:(o=(l=d?.video)===null||l===void 0?void 0:l.bindProduct)!==null&&o!==void 0?o:d?.video,index:w,imgStyle:v?.img}),m.createElement("div",{className:xe(Object.assign({overflow:"hidden",textOverflow:"ellipsis"},v?.ctaTitle)),dangerouslySetInnerHTML:{__html:fe((r=p?.enTitle)!==null&&r!==void 0?r:"Product Name",v?.ctaTitle)}}))};var Ia=Ie(Ca);const ka=et(Ia,{displayName:"\u9884\u7EA6\u8868\u5355",icon:"",category:"template",type:"Appoint",related:{interactionRender:Ea,settingRender:pt?.filter(t=>t.type!=="commodityTitle"),bindableProps:[]},defaulSetting:{props:{ctaTempStyles:{img:{borderRadius:3,width:30,height:30,marginRight:8},ctaTitle:{fontSize:12,color:"#fff",textAlign:"left",width:130,height:20}}},style:{padding:7,width:236,height:44,borderRadius:3,backgroundColor:"rgba(0,0,0,.3)",marginBottom:8}},w:100,h:40,sort:6});var _a=[{title:"\u81EA\u5B9A\u4E49\u6807\u9898",child:[{type:"Switch",label:"\u81EA\u5B9A\u4E49\u6807\u9898\u5F00\u5173",name:["props","customTitle","display"]},{type:"Text",label:"\u6807\u9898\u6587\u6848",name:["props","customTitle","text"]},{type:"Group",label:"\u5C3A\u5BF8",child:[{type:"Number",name:["props","customTitle","style","width"],addonAfter:"W"},{type:"Number",name:["props","customTitle","style","height"],addonAfter:"H"}]},{type:"Group",label:"\u5706\u89D2",child:[{type:"Slider",name:["props","customTitle","style","borderRadius"],max:100},{type:"Number",name:["props","customTitle","style","borderRadius"],addonAfter:"px",max:100}]},{type:"Color",label:"\u80CC\u666F\u8272",name:["props","customTitle","style","backgroundColor"]},{type:"Group",label:"\u5B57\u4F53",child:[{type:"Select",name:["props","customTitle","style","fontFamily-cn"],bottomText:"\u4E2D\u6587\u5B57\u4F53"},{type:"Select",name:["props","customTitle","style","fontFamily-en"],bottomText:"\u82F1\u6587/\u5176\u4ED6\u5B57\u4F53"}]},{type:"Group",label:"",child:[{type:"Color",name:["props","customTitle","style","color"]},{type:"Number",addonAfter:"px",name:["props","customTitle","style","fontSize"]}]},{label:"\u6837\u5F0F",type:"TextStyle",name:["props","customTitle","style"]},{label:"\u5BF9\u9F50",type:"TextAlign",name:["props","customTitle","style"]},{label:"\u95F4\u8DDD",type:"TextSpace",name:["props","customTitle","style"]},{label:"\u4E0A\u8FB9\u8DDD",type:"Number",name:["props","customTitle","style","marginTop"],addonAfter:"px"}]}],Sn={"tow-line-ellipsis":"index-module_tow-line-ellipsis__nkBlU","one-line-ellipsis":"index-module_one-line-ellipsis__buFw1"};const Pa=t=>{var e,i,n,l,o,r,s,a,{content:u,style:d,bgImg:f,recData:v,bottom_image:h,ctaTempStyles:w,index:T,customTitle:C}=t,p=Je(t,["content","style","bgImg","recData","bottom_image","ctaTempStyles","index","customTitle"]);const{sxpParameter:x,bffEventReport:y}=Pe(),{jumpToWeb:A}=$e(),k=(e=v?.video)===null||e===void 0?void 0:e.bindCta,g=(i=v?.video)===null||i===void 0?void 0:i.bindProduct,L=()=>{k?.link&&(A(v,g,k,T),window.location.href=window.getJointUtmLink(k.link))},M=(l=(n=k?.icon)!==null&&n!==void 0?n:x?.bottom_image)!==null&&l!==void 0?l:h;return m.createElement(zt,Object.assign({index:T,rec:v,className:xe(Object.assign({alignItems:"center"},d)),style:{display:"flex"}},p,{onClick:L}),m.createElement(St,{src:M,rec:v,item:(r=(o=v?.video)===null||o===void 0?void 0:o.bindProduct)!==null&&r!==void 0?r:v?.video,index:T,imgStyle:w?.img}),m.createElement("div",{className:xe({display:"flex",alignItems:"center",width:"100%",overflow:"hidden"})},m.createElement("div",null,m.createElement("div",{className:Sn["tow-line-ellipsis"],style:w?.ctaTitle,dangerouslySetInnerHTML:{__html:fe((s=k?.enTitle)!==null&&s!==void 0?s:"Product Name",w?.ctaTitle)}}),C?.display&&m.createElement("div",{style:Object.assign(Object.assign({},C?.style),{lineHeight:((a=C?.style)===null||a===void 0?void 0:a.height)+"px"}),className:Sn["one-line-ellipsis"],dangerouslySetInnerHTML:{__html:fe(C?.text,C?.style)}}))))};var Da=Ie(Pa),Ei;const Oa=et(Da,{displayName:"\u8DF3\u8F6C\u6307\u5F15",icon:"",category:"template",type:"Link",related:{settingRender:(Ei=pt?.filter(t=>t.type!=="commodityTitle"))===null||Ei===void 0?void 0:Ei.concat(_a),bindableProps:[]},defaulSetting:{props:{ctaTempStyles:{img:{borderRadius:3,width:60,height:60,marginRight:8},ctaTitle:{fontSize:12,color:"#fff",textAlign:"left",width:130,height:20}},customTitle:{style:{textAlign:"left",textDecoration:"underline",fontWeight:"bold",width:130,height:20,fontSize:12,color:"#000"},text:"\u63A2\u7D22\u66F4\u591A"}},style:{padding:7,width:236,height:74,borderRadius:3,backgroundColor:"rgba(0,0,0,.3)",marginBottom:8}},w:100,h:40,sort:5});var Ma=[{title:"\u70B9\u51FB\u4E8B\u4EF6",child:[{type:"link",name:"onClick"}]}],La={"tow-line-ellipsis":"index-module_tow-line-ellipsis__yyHVb"};const Ra=t=>{var e,i,n,l,o,r,s,a,u,d,f,{content:v,style:h,bgImg:w,recData:T,bottom_image:C,ctaTempStyles:p,isExternalLink:x,translateY:y=0,index:A}=t,k=Je(t,["content","style","bgImg","recData","bottom_image","ctaTempStyles","isExternalLink","translateY","index"]);const{sxpParameter:g}=Pe(),L=(e=T?.video)===null||e===void 0?void 0:e.bindProduct,M=(o=(l=(i=L?.cover)!==null&&i!==void 0?i:(n=L?.homePage)===null||n===void 0?void 0:n[0])!==null&&l!==void 0?l:g?.bottom_image)!==null&&o!==void 0?o:C;return m.createElement(zt,Object.assign({isExternalLink:x,rec:T,className:xe(Object.assign({},h)),style:{display:"flex"},index:A},k),m.createElement(St,{src:M,rec:T,item:(s=(r=T?.video)===null||r===void 0?void 0:r.bindProduct)!==null&&s!==void 0?s:T?.video,index:A,translateY:y,imgStyle:p?.img}),m.createElement("div",{className:xe({color:"#fff",display:"flex",flexDirection:"column",justifyContent:"space-between",width:"100%",overflow:"hidden"})},m.createElement("div",{className:La["tow-line-ellipsis"],style:p?.title,dangerouslySetInnerHTML:{__html:fe((a=L?.title)!==null&&a!==void 0?a:"Product Name",p?.title)}}),m.createElement("div",{className:xe(Object.assign({padding:"0 7px",textOverflow:"ellipsis",overflow:"hidden",borderRadius:"25px",whiteSpace:"nowrap",lineHeight:((u=p?.ctaTitle)===null||u===void 0?void 0:u.height)+"px"},p?.ctaTitle)),dangerouslySetInnerHTML:{__html:fe((f=(d=L?.bindCta)===null||d===void 0?void 0:d.enTitle)!==null&&f!==void 0?f:"Shop Now",p?.ctaTitle)}})))};var Na=Ie(Ra);const Ba=et(Na,{displayName:"\u63A8\u8350\u5355\u5546\u54C1-\u767D\u5E95\u5706\u89D2\u6309\u94AE",icon:"",category:"template",type:"CommodityDiro",related:{interactionRender:Ma,settingRender:pt,bindableProps:[]},defaulSetting:{props:{ctaTempStyles:{img:{borderRadius:3,width:60,height:60,marginRight:8},title:{fontSize:12,color:"#000",textAlign:"left"},ctaTitle:{fontSize:10,color:"#fff",textAlign:"center",width:80,height:20,backgroundColor:"rgba(0,0,0,1)"}}},style:{padding:7,width:236,height:74,borderRadius:3,backgroundColor:"#fff",marginBottom:8}},w:100,h:40,sort:2});var Fa=[{title:"\u70B9\u51FB\u4E8B\u4EF6",child:[{type:"link",name:"onClick"}]}],ja={"tow-line-ellipsis":"index-module_tow-line-ellipsis__I-yCC"};const Va=t=>{var e,i,n,l,o,r,s,a,u,d,{content:f,style:v,bgImg:h,recData:w,bottom_image:T,ctaTempStyles:C,isExternalLink:p,translateY:x=0,index:y}=t,A=Je(t,["content","style","bgImg","recData","bottom_image","ctaTempStyles","isExternalLink","translateY","index"]);const{sxpParameter:k}=Pe(),g=(e=w?.video)===null||e===void 0?void 0:e.bindProduct,L=(o=(l=(i=g?.cover)!==null&&i!==void 0?i:(n=g?.homePage)===null||n===void 0?void 0:n[0])!==null&&l!==void 0?l:k?.bottom_image)!==null&&o!==void 0?o:T;return m.createElement(zt,Object.assign({isExternalLink:p,rec:w,className:xe(Object.assign({},v)),style:{display:"flex"},index:y},A),m.createElement(St,{src:L,rec:w,item:(s=(r=w?.video)===null||r===void 0?void 0:r.bindProduct)!==null&&s!==void 0?s:w?.video,index:y,translateY:x,imgStyle:C?.img}),m.createElement("div",{className:xe({color:"#fff",display:"flex",flexDirection:"column",justifyContent:"center",width:"100%",overflow:"hidden"})},m.createElement("div",{className:ja["tow-line-ellipsis"],style:C?.title,dangerouslySetInnerHTML:{__html:fe((a=g?.title)!==null&&a!==void 0?a:"Product Name",C?.title)}}),m.createElement("div",{className:xe(Object.assign({textOverflow:"ellipsis",overflow:"hidden",whiteSpace:"nowrap"},C?.ctaTitle)),dangerouslySetInnerHTML:{__html:fe((d=(u=g?.bindCta)===null||u===void 0?void 0:u.enTitle)!==null&&d!==void 0?d:"Shop Now",C?.ctaTitle)}})))};var za=Ie(Va);const Ha=et(za,{displayName:"\u63A8\u8350\u5355\u5546\u54C1-\u767D\u5E95\u4E0B\u5212\u7EBF\u6309\u94AE",icon:"",category:"template",type:"CommodityDiroNew",related:{interactionRender:Fa,bindableProps:[],settingRender:pt},defaulSetting:{props:{ctaTempStyles:{img:{borderRadius:8,width:78,height:78,marginRight:16},title:{fontSize:13,color:"#000",textAlign:"left"},ctaTitle:{textDecoration:"underline",fontSize:14,fontWeight:"bold",color:"#000",textAlign:"left",width:150,height:20}}},style:{borderRadius:4,width:260,height:86,padding:4,backgroundColor:"rgba(255,255,255,0.75)",marginBottom:8}},w:100,h:40,sort:2});var Ga=[{title:"\u70B9\u51FB\u4E8B\u4EF6",child:[{type:"link",name:"onClick"}]}],Ua={"two-line-ellipsis":"index-module_two-line-ellipsis__SFQwJ"};const Wa=t=>{var e,i,{content:n,style:l,bgImg:o,recData:r,onClick:s,bottom_image:a,ctaTempStyles:u,isExternalLink:d,index:f,translateY:v=0}=t,h=Je(t,["content","style","bgImg","recData","onClick","bottom_image","ctaTempStyles","isExternalLink","index","translateY"]);const{ctaEvent:w,setPopupDetailData:T,sxpParameter:C}=Pe(),{popup:p}=ft(),{jumpToWeb:x}=$e(),[y,A]=W((i=(e=r?.video)===null||e===void 0?void 0:e.bindProducts)!==null&&i!==void 0?i:[1,2]),k=Lt((g,L)=>{w?.({eventSubject:"clickCta",eventDescription:"User clicked the CTA"},r,g,f),T?.(Object.assign(Object.assign({},r),{video:Object.assign(Object.assign({},r?.video),{bindProduct:g}),index:f,multiCheckIndex:L})),d?g?.link&&(x(r,g,g.bindCta,f),window.location.href=window.getJointUtmLink(g.link)):s?.()},p?.duration);return m.createElement(Vt,{isPadding:!!r},y?.map((g,L)=>{var M,S,c,E,b,I,D,P;return m.createElement(m.Fragment,null,r&&!g?.bindCta?null:m.createElement(bt,Object.assign({key:L,className:xe(Object.assign(Object.assign({},l),{display:"flex",flexShrink:0,marginLeft:0,marginRight:"8px"}))},h,{onClick:()=>k(g,L)}),m.createElement(St,{src:(E=(c=(M=g?.cover)!==null&&M!==void 0?M:(S=g?.homePage)===null||S===void 0?void 0:S[0])!==null&&c!==void 0?c:C?.bottom_image)!==null&&E!==void 0?E:a,rec:r,item:g,index:L,translateY:v,imgStyle:u?.img}),m.createElement("div",{className:xe({color:"#000",display:"flex",flexDirection:"column",justifyContent:"space-between",width:"100%",overflow:"hidden"})},m.createElement("div",{className:Ua["two-line-ellipsis"],style:u?.title,dangerouslySetInnerHTML:{__html:fe((b=g?.title)!==null&&b!==void 0?b:"Product Name",u?.title)}}),m.createElement("div",{className:xe(Object.assign({padding:"0 7px",textOverflow:"ellipsis",overflow:"hidden",borderRadius:"25px",whiteSpace:"nowrap",lineHeight:((I=u?.ctaTitle)===null||I===void 0?void 0:I.height)+"px"},u?.ctaTitle)),dangerouslySetInnerHTML:{__html:fe((P=(D=g?.bindCta)===null||D===void 0?void 0:D.enTitle)!==null&&P!==void 0?P:"Shop Now",u?.ctaTitle)}}))))}))};var Ya=Ie(Wa);const Xa=et(Ya,{displayName:"\u63A8\u8350\u591A\u5546\u54C1-\u767D\u5E95\u5706\u89D2\u6309\u94AE",icon:"",category:"template",type:"MultiCommodityDiro",related:{interactionRender:Ga,bindableProps:[],settingRender:pt},defaulSetting:{props:{ctaTempStyles:{img:{borderRadius:3,width:60,height:60,marginRight:8},title:{fontSize:12,color:"#000",textAlign:"left"},ctaTitle:{fontSize:10,color:"#fff",textAlign:"center",width:80,height:20,backgroundColor:"rgba(0,0,0,1)"}}},style:{padding:7,width:236,height:74,borderRadius:3,backgroundColor:"#fff",marginBottom:8}},w:100,h:40,sort:4});var qa=[{title:"\u70B9\u51FB\u4E8B\u4EF6",child:[{type:"link",name:"onClick"}]}],Ja={"two-line-ellipsis":"index-module_two-line-ellipsis__mdzn0"};const Ka=t=>{var e,i,{content:n,style:l,bgImg:o,recData:r,onClick:s,bottom_image:a,ctaTempStyles:u,isExternalLink:d,index:f,translateY:v=0}=t,h=Je(t,["content","style","bgImg","recData","onClick","bottom_image","ctaTempStyles","isExternalLink","index","translateY"]);const{sxpParameter:w}=Pe(),{ctaEvent:T,setPopupDetailData:C}=Pe(),{popup:p}=ft(),[x,y]=W((i=(e=r?.video)===null||e===void 0?void 0:e.bindProducts)!==null&&i!==void 0?i:[1,2]),{jumpToWeb:A}=$e(),k=Lt((g,L)=>{T?.({eventSubject:"clickCta",eventDescription:"User clicked the CTA"},r,g,f),C?.(Object.assign(Object.assign({},r),{video:Object.assign(Object.assign({},r?.video),{bindProduct:g}),index:f,multiCheckIndex:L})),d?g?.link&&(A(r,g,g.bindCta,f),window.location.href=window.getJointUtmLink(g.link)):s?.()},p?.duration);return m.createElement(Vt,{isPadding:!!r},x?.map((g,L)=>{var M,S,c,E,b,I,D,P;return m.createElement(m.Fragment,null,r&&!g?.bindCta?null:m.createElement(bt,Object.assign({key:L,className:xe(Object.assign(Object.assign({},l),{display:"flex",flexShrink:0,marginLeft:0,marginRight:"8px"}))},h,{onClick:()=>k(g,L)}),m.createElement(St,{src:(E=(c=(M=g?.cover)!==null&&M!==void 0?M:(S=g?.homePage)===null||S===void 0?void 0:S[0])!==null&&c!==void 0?c:w?.bottom_image)!==null&&E!==void 0?E:a,rec:r,item:g,index:L,translateY:v,imgStyle:u?.img}),m.createElement("div",{className:xe({color:"#fff",display:"flex",flexDirection:"column",justifyContent:"space-between",width:"100%",overflow:"hidden"})},m.createElement("div",{className:Ja["two-line-ellipsis"],style:u?.title,dangerouslySetInnerHTML:{__html:fe((b=g?.title)!==null&&b!==void 0?b:"Product Name",u?.title)}}),m.createElement("div",{className:xe(Object.assign({padding:"0 7px",textOverflow:"ellipsis",overflow:"hidden",whiteSpace:"nowrap",lineHeight:((I=u?.ctaTitle)===null||I===void 0?void 0:I.height)+"px"},u?.ctaTitle)),dangerouslySetInnerHTML:{__html:fe((P=(D=g?.bindCta)===null||D===void 0?void 0:D.enTitle)!==null&&P!==void 0?P:"Shop Now",u?.ctaTitle)}}))))}))};var Qa=Ie(Ka);const Za=et(Qa,{displayName:"\u63A8\u8350\u591A\u5546\u54C1-\u900F\u660E\u5E95",icon:"",category:"template",type:"MultiCommodity",related:{interactionRender:qa,settingRender:pt,bindableProps:[]},defaulSetting:{props:{ctaTempStyles:{img:{borderRadius:3,width:60,height:60,marginRight:8},title:{fontSize:12,color:"#fff",textAlign:"left"},ctaTitle:{fontSize:10,color:"#fff",textAlign:"center",width:130,height:20,backgroundColor:"rgba(0,0,0,.5)"}}},style:{padding:7,width:236,height:74,borderRadius:3,backgroundColor:"rgba(0,0,0,.3)",marginBottom:8}},w:100,h:40,sort:3});var $a=[{title:"\u70B9\u51FB\u4E8B\u4EF6",child:[{type:"link",name:"onClick"}]}],er={"tow-line-ellipsis":"index-module_tow-line-ellipsis__fselR"};const tr=t=>{var e,i,{content:n,style:l,bgImg:o,recData:r,onClick:s,bottom_image:a,ctaTempStyles:u,isExternalLink:d,index:f,translateY:v=0}=t,h=Je(t,["content","style","bgImg","recData","onClick","bottom_image","ctaTempStyles","isExternalLink","index","translateY"]);const{ctaEvent:w,setPopupDetailData:T,sxpParameter:C}=Pe(),{popup:p}=ft(),{jumpToWeb:x}=$e(),[y,A]=W((i=(e=r?.video)===null||e===void 0?void 0:e.bindProducts)!==null&&i!==void 0?i:[1,2]),k=Lt((g,L)=>{w?.({eventSubject:"clickCta",eventDescription:"User clicked the CTA"},r,g,f),T?.(Object.assign(Object.assign({},r),{video:Object.assign(Object.assign({},r?.video),{bindProduct:g}),index:f,multiCheckIndex:L})),d?g?.link&&(x(r,g,g.bindCta,f),window.location.href=window.getJointUtmLink(g.link)):s?.()},p?.duration);return m.createElement(Vt,{isPadding:!!r},y?.map((g,L)=>{var M,S,c,E,b,I,D;return m.createElement(m.Fragment,null,r&&!g?.bindCta?null:m.createElement(bt,Object.assign({key:L,className:xe(Object.assign(Object.assign({},l),{display:"flex",flexShrink:0,marginLeft:0,marginRight:"8px"}))},h,{onClick:()=>k(g,L)}),m.createElement(St,{src:(E=(c=(M=g?.cover)!==null&&M!==void 0?M:(S=g?.homePage)===null||S===void 0?void 0:S[0])!==null&&c!==void 0?c:C?.bottom_image)!==null&&E!==void 0?E:a,rec:r,item:g,index:L,translateY:v,imgStyle:u?.img}),m.createElement("div",{className:xe({color:"#fff",display:"flex",flexDirection:"column",justifyContent:"center",width:"100%",overflow:"hidden",lineHeight:"20px"})},m.createElement("div",{className:er["tow-line-ellipsis"],style:u?.title,dangerouslySetInnerHTML:{__html:fe((b=g?.title)!==null&&b!==void 0?b:"Product Name",u?.title)}}),m.createElement("div",{className:xe(Object.assign({textOverflow:"ellipsis",overflow:"hidden",whiteSpace:"nowrap"},u?.ctaTitle)),dangerouslySetInnerHTML:{__html:fe((D=(I=g?.bindCta)===null||I===void 0?void 0:I.enTitle)!==null&&D!==void 0?D:"Shop Now",u?.ctaTitle)}}))))}))};var ir=Ie(tr);const nr=et(ir,{displayName:"\u63A8\u8350\u591A\u5546\u54C1-\u767D\u5E95\u4E0B\u5212\u7EBF\u6309\u94AE",icon:"",category:"template",type:"MultiCommodityDiroNew",related:{interactionRender:$a,bindableProps:[],settingRender:pt},defaulSetting:{props:{ctaTempStyles:{img:{borderRadius:8,width:78,height:78,marginRight:16},title:{fontSize:12,color:"#000",textAlign:"left"},ctaTitle:{textDecoration:"underline",fontSize:12,fontWeight:"bold",color:"#000",textAlign:"left",width:150,height:20}}},style:{borderRadius:4,width:260,height:86,padding:4,backgroundColor:"rgba(255,255,255,0.75)",marginBottom:8}},w:100,h:40,sort:4});var or=[{title:"Banner",child:[{type:"Switch",label:"Banner\u56FE\u5F00\u5173",name:["props","showBanner"]}]},{title:"\u5361\u7247\u6837\u5F0F",child:[{type:"Number",label:"\u4E0A\u4E0B\u8FB9\u8DDD",name:["props","space"],addonAfter:"px"},{type:"Switch",label:"\u56FA\u5B9A\u5BBD\u9AD8",name:["props","openFixedSize"],initialValue:!0}]},{title:"\u6587\u672C\u8BBE\u7F6E",child:[{name:["props","textStyles"],type:"SelectLinkage",child:[{label:"\u5B57\u6BB5",type:"Select",options:[{label:"hashtag\u6807\u9898",value:"hashTagTitle"},{label:"hashtag\u63CF\u8FF0",value:"hashTagDesc"},{label:"hashtag\u63CF\u8FF0\u8D85\u94FE",value:"hashTagLink"},{label:"\u6807\u9898",value:"title"},{label:"\u4EF7\u683C",value:"price"}],name:["props","textStyles","field"],initialValue:"title"},{type:"Group",label:"\u6807\u9898\u5B57\u4F53",child:[{type:"Select",name:["fontFamily-cn"],bottomText:"\u4E2D\u6587\u5B57\u4F53"},{type:"Select",name:["fontFamily-en"],bottomText:"\u82F1\u6587/\u5176\u4ED6\u5B57\u4F53"}]},{type:"Group",label:"",child:[{type:"Color",name:["color"]},{type:"Number",addonAfter:"px",name:["fontSize"]}]},{label:"\u6807\u9898\u6837\u5F0F",type:"TextStyle"},{label:"\u6807\u9898\u5BF9\u9F50",type:"TextAlign"},{label:"\u95F4\u8DDD",type:"TextSpace"}]}]},{title:"\u6309\u94AE\u6837\u5F0F",child:[{type:"Color",label:"\u80CC\u666F\u8272",name:["props","buttonStyle","backgroundColor"],initialValue:"#000"},{type:"Group",label:"\u5C3A\u5BF8",child:[{type:"Number",name:["props","buttonStyle","height"],addonAfter:"H"}]},{type:"Group",label:"\u5706\u89D2",child:[{type:"Slider",name:["props","buttonStyle","borderRadius"],max:100},{type:"Number",name:["props","buttonStyle","borderRadius"],addonAfter:"px",max:100}]},{type:"TextPadding",name:["props","buttonBgStyle"]},{type:"Group",label:"\u5B57\u4F53",child:[{type:"Select",name:["props","buttonStyle","fontFamily-cn"],bottomText:"\u4E2D\u6587\u5B57\u4F53"},{type:"Select",name:["props","buttonStyle","fontFamily-en"],bottomText:"\u82F1\u6587/\u5176\u4ED6\u5B57\u4F53"}]},{type:"Group",label:"",child:[{type:"Color",name:["props","buttonStyle","color"],initialValue:"#fff"},{type:"Number",name:["props","buttonStyle","fontSize"],addonAfter:"px"}]},{type:"TextStyle",name:["props","buttonStyle"]},{type:"TextAlign",name:["props","buttonStyle"]},{label:"\u95F4\u8DDD",type:"TextSpace",name:["props","buttonStyle"]}]},{title:"\u6309\u94AE\u80CC\u666F\u6837\u5F0F",child:[{type:"Color",label:"\u80CC\u666F\u8272",name:["props","buttonBgStyle","backgroundColor"],initialValue:"#fff"},{type:"Group",label:"\u5C3A\u5BF8",child:[{type:"Number",name:["props","buttonBgStyle","height"],addonAfter:"H"}]}]}];const lr=({icon:t,styles:e,textStyle:i,onClose:n})=>{var l;const{waterFallData:o,setOpenHashtag:r}=Pe();return m.createElement("div",{className:"clc-sxp-nav",style:e},m.createElement("img",{className:"clc-sxp-nav-left",src:t,alt:"back button",onClick:n}),m.createElement("div",{className:"clc-sxp-nav-title",style:Object.assign(Object.assign({},i),{paddingLeft:i?.textAlign==="left"?"35px":0}),dangerouslySetInnerHTML:{__html:fe(`#${(l=o?.hashTag)!==null&&l!==void 0?l:"\u6807\u9898"}`,i)}}))};var Tn=Ie(lr),ar=null,rr="3d989325-e7d6-4a74-8a97-98febdf5b567",sr=null,dr=null,cr={info:"The dior toujours bag is distinguished by a casual and practical design. Fully embroidered with black textured tweed, it is accented by a blend of threads displaying the cannage motif.",link:"www.baidu.com",linkTitle:null,linkType:"WEB"},ur=[{position:"0",isCollected:null,video:{itemId:"VIDEOY2BMu1710323630175",title:"A symbol of excellence, the Dior Toujours bag is reinterpreted in an unprecedented version. For the Dior spring-summer 2024 ready-to-wear collection, this exceptional accessory, dreamed up by Maria Grazia Chiuri, is dressed in irresistible crinkled leather featuring the iconic macrocannage motif. A new emblem of the virtuoso, perpetually reinvented savoir-faire of the Dior Ateliers.",tags:["Dior Toujours Bag","Casual","Leather Strap","Handbags"],weight:null,traceInfo:"VECTOReVssi1704360966770:VIDEO:VIDEOY2BMu1710323630175:default:3::branch:Handbags:0",bindCta:null,bindProduct:{itemId:"M2821SNIOM900",title:"Medium Dior Toujours Bag Black Macrocannage Crinkled Leather",tags:["Medium","Black","Women","Handbags","Bucket Bag"],weight:null,traceInfo:"VECTOReVssi1704360966770:PRODUCT:M2821SNIOM900:default:3::branch:Handbags:0",bindCta:{itemId:"CTAzgoPn1709005149328",title:"\u7ACB\u5373\u8D2D\u4E70",tags:[],weight:null,traceInfo:"VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:0",enTitle:"Shop now",icon:"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",link:null,linkTitle:null,linkType:null,menuCategoryId:"65966478d19caa37afe3603f"},homePage:["https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsy6AN0OWw3rj8Luw3RTSP9n2kDLq1710497237677.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fszTc3uEUrtppdN9QVVU2XBnaaaBY1710497237986.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsKbBMTRa0tTTX661wu7DzLw9OP0r1710497237980.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsOYHlYCwgzalxzmIJcsZmIsJ2L3g1710497237145.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsKJqNVm1ZBlrgZ8XLC0YAaO6ws2F1710497237650.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsm2VoVancBQ20nDHceESUPNLyrUy1710497238312.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs2B5YYmv8OztP3d9rlM2a9KmYswl1710497237339.jpg"],collection:"Et\xE9 2024",link:"https://www.dior.com/en_us/fashion/products/M1296ZRIW_M828-medium-dior-book-tote-ecru-and-blue-dior-oblique-embroidery-36-x-27.5-x-16.5-cm",linkTitle:null,linkType:"WEB",info:"The dior toujours bag is distinguished by a casual and practical design. Crafted in black crinkled calfskin with macrocannage topstitching, it showcases a spacious interior compartment with a matching pouch to organize the essentials. Its leather strap closure keeps items secure while the d of the cd lock closure twists to adjust the sides and enhance the bag's silhouette.",price:4400,currency:"USD-$"},bindProducts:[],cover:"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fswbY3wT0hCmrYkrqDzFKnHb3NMux1710323481052.png",url:"https://dior-sxp-cdn.chatlabs.net/prod/sound/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fs3Ifqv7fk2Tn9nPtwOTO2YjxAuRO1710323470472.mp4",imgUrls:null,hashTags:["Dior Toujours Bag","Casual","Leather Strap","Handbags"]},product:null,cta:null},{position:"1",isCollected:null,video:{itemId:"VIDEO6JCOb1710323364018",title:"Maria grazia chiuri's hallmark dior book tote offers an original take on elegance. Unveiled at the cruise 2024 fashion show, the refined style showcases the iconic blue dior oblique embroidery and calfskin. Designed to keep all the daily essentials organized, the interior is equipped with a zipped pocket and patch pockets.",tags:["Handbags","Manufacturing Craftsmanship","Dior Book Tote"],weight:null,traceInfo:"VECTOReVssi1704360966770:VIDEO:VIDEO6JCOb1710323364018:default:3::branch:Handbags:1",bindCta:null,bindProduct:{itemId:"M1296ZRIWM828",title:"Medium Dior Book Tote",tags:["Maria Grazia Chiuri","Hand","Shoulder","Handbags","Blue","Women"],weight:null,traceInfo:"VECTOReVssi1704360966770:PRODUCT:M1296ZRIWM828:default:3::branch:Handbags:1",bindCta:{itemId:"CTAzgoPn1709005149328",title:"\u7ACB\u5373\u8D2D\u4E70",tags:[],weight:null,traceInfo:"VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:1",enTitle:"Shop now",icon:"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",link:null,linkTitle:null,linkType:null,menuCategoryId:"65966478d19caa37afe3603f"},homePage:["https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fs69g46K9wPCwi5VRAP2QAgRHM0Pc1709696901624.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsAIliGV0ZJP8MNa8DECYtwsK4ker1709696900761.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsMJ4JfZ0Vhzq6H71NdIPg6YozbIz1709696897845.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsWXI06zGOmACXn9wD3EegRLkB7dg1709696911033.jpg"],collection:"Et\xE9 2024",link:"https://www.dior.com/en_us/fashion/products/M1296ZRIW_M828-medium-dior-book-tote-ecru-and-blue-dior-oblique-embroidery-36-x-27.5-x-16.5-cm",linkTitle:null,linkType:"WEB",info:"Introduced by Maria Grazia Chiuri, Creative Director of Christian Dior, the Dior Book Tote has become a staple of the Dior aesthetic. Designed to hold all the daily essentials, the style is fully embroidered with the ecru and blue Dior Oblique motif. Adorned with the Christian Dior Paris signature on the front, the medium tote exemplifies the House's signature savoir-faire and may be carried by hand or worn over the shoulder.",price:3350,currency:"USD-$"},bindProducts:[],cover:"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsAHlkdbqYj5F84o2faRzU1E3AvG11710323339209.png",url:"https://dior-sxp-cdn.chatlabs.net/prod/sound/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fs7KIGk2IB0MsoDL1ANWB1Mb2hqu41710323314146.mp4",imgUrls:null,hashTags:["Handbags","Dior Book Tote"]},product:null,cta:null},{position:"2",isCollected:null,video:null,product:{itemId:"M2820OTKVM911",title:"Large Dior Toujours Bag Black Cannage Tweed",tags:["Black","Women","Handbags","Bucket Bag","Dior Toujours Bag"],weight:null,traceInfo:"VECTOReVssi1704360966770:PRODUCT:M2820OTKVM911:default:3::branch:Handbags:2",bindCta:{itemId:"CTAzgoPn1709005149328",title:"\u7ACB\u5373\u8D2D\u4E70",tags:[],weight:null,traceInfo:"VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:2",enTitle:"Shop now",icon:"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",link:null,linkTitle:null,linkType:null,menuCategoryId:"65966478d19caa37afe3603f"},homePage:["https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240312/fsJTjyFchOFEJSTRYxXvL2XPU1dP61710238469418.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240319/fstdFA1dFT55QjtQPU2qHNENo5peF1710836061716.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240319/fs9xf8AlIApbHezVL3BsxjUGIrN231710836061181.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240312/fs9iZ20MjLAPkXmFKvD8HzhLaBJ671710238470272.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240312/fsSSodev3wicDfE1DYNWPQVeRjErt1710238464035.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240312/fs3YAOuN6Pd9NFvH1Rdooj6eLI18S1710238465296.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240312/fsBwIEp6OzI49isvHgiKD0cPSFtrD1710238459007.jpg"],collection:"Et\xE9 2024",link:"https://www.dior.com/en_us/fashion/products/M2820OTKV_M911-large-dior-toujours-bag",linkTitle:null,linkType:"WEB",info:"The dior toujours bag is distinguished by a casual and practical design. Fully embroidered with black textured tweed, it is accented by a blend of threads displaying the cannage motif. It showcases a spacious interior compartment with a matching pouch to organize the essentials, while a leather strap closure keeps items secure and the d of the cd lock closure twists to adjust the sides and enhance the bag's silhouette.",price:4200,currency:"USD-$"},cta:null},{position:"3",isCollected:null,video:{itemId:"VIDEOOL1qU1709616182569",title:"Maria grazia chiuri brings a fresh update to the iconic saddle bag. Crafted in black grained calfskin, the legendary design features a saddle flap with a d stirrup clasp on a magnetic strap, as well as an antique gold-finish metal cd signature on either side of the strap. Equipped with a thin, adjustable and removable shoulder strap, the saddle bag may be carried by hand, worn over the shoulder or crossbody.. Saddle bag with strap Black grained calfskin",tags:["Maria Grazia Chiuri","Saddle Bags","Removable Shoulder Strap","Shoulder","Crossbody","Cross-body & Shoulder Bags","Handbags"],weight:null,traceInfo:"VECTOReVssi1704360966770:VIDEO:VIDEOOL1qU1709616182569:default:3::branch:Handbags:3",bindCta:null,bindProduct:{itemId:"M0455CBAAM900",title:"Saddle Bag with Strap",tags:["Saddle Bags","Handbags","Maria Grazia Chiuri"],weight:null,traceInfo:"VECTOReVssi1704360966770:PRODUCT:M0455CBAAM900:default:3::branch:Handbags:3",bindCta:{itemId:"CTAzgoPn1709005149328",title:"\u7ACB\u5373\u8D2D\u4E70",tags:[],weight:null,traceInfo:"VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:3",enTitle:"Shop now",icon:"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",link:null,linkTitle:null,linkType:null,menuCategoryId:"65966478d19caa37afe3603f"},homePage:["https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsiwfgnCrVBGcGPh6gaFsvbYBIpxX1709285334896.png","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsXpilTgUS4u4oFWr0hUew8DQITi11709285353202.png","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsWxJm6YIeRYmDtDoB5WtYMjRX8bm1709285366208.png","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsj69PxKh1SAZ6p0902FbBT0vg2at1709285373714.png","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fs78nKueByU2cNulReOw8gJ1ZsieF1709285412981.png","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsmAEriTIohZAUMUE6gUCWvXwbbRE1709285429332.png"],collection:"Et\xE9 2024",link:"https://www.dior.com/en_us/fashion/products/M0455CBAA_M900-saddle-bag-with-strap-black-grained-calfskin?objectID=M0455CBAA_M900&query=M0455CBAAM900&queryID=c171c63e69d6d109953e2de631718496",linkTitle:null,linkType:"WEB",info:"Maria Grazia Chiuri brings a fresh update to the iconic Saddle bag. Crafted in black grained calfskin, the legendary design features a Saddle flap with a D stirrup clasp on a magnetic strap, as well as an antique gold-finish metal CD signature on either side of the strap. Equipped with a thin, adjustable and removable shoulder strap, the Saddle bag may be carried by hand, worn over the shoulder or crossbody.",price:4400,currency:"USD-$"},bindProducts:[],cover:null,url:null,imgUrls:["https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fsvbBN3IRfwctVIhdqgq3doWmhbb21710399187965.jpg"],hashTags:["Maria Grazia Chiuri","Saddle Bags","Handbags"]},product:null,cta:null},{position:"4",isCollected:null,video:null,product:{itemId:"S5909CTZQM928",title:"Saddle Shoulder Pouch Blue Dior Oblique Jacquard ",tags:["Saddle Bags","Handbags","Small-Leather-Goods","Small","Mini Bags"],weight:null,traceInfo:"VECTOReVssi1704360966770:PRODUCT:S5909CTZQM928:default:3::branch:Handbags:4",bindCta:{itemId:"CTAzgoPn1709005149328",title:"\u7ACB\u5373\u8D2D\u4E70",tags:[],weight:null,traceInfo:"VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:4",enTitle:"Shop now",icon:"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",link:null,linkTitle:null,linkType:null,menuCategoryId:"65966478d19caa37afe3603f"},homePage:["https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fs34CpwKJOyjEDgoHypoLYakF8oR31710316280669.png","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsLOSOEf9pmz7wKnFaifWNw3TZ7Gy1710316287874.png","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsWHmVcrzHKKj6EfhfnQkxYIOt20a1710316295683.png","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fslyBNMyQwjpjY4EKzyrqzTMlOGRQ1710316313161.png"],collection:"Et\xE9 2024",link:"https://www.dior.com/en_us/fashion/products/S5909CTZQ",linkTitle:null,linkType:"WEB",info:null,price:4900,currency:"USD-$"},cta:null},{position:"5",isCollected:null,video:{itemId:"VIDEOrZguC1710324513737",title:"Introduced by Maria Grazia Chiuri, Creative Director of Christian Dior, the Dior Book Tote has become a staple of the Dior aesthetic. Designed to hold all the daily essentials, the style is fully embroidered with the ecru and blue Dior Oblique motif. Adorned with the Christian Dior Paris signature on the front, the medium tote exemplifies the House's signature savoir-faire and may be carried by hand or worn over the shoulder.",tags:["Handbags","Dior Book Tote"],weight:null,traceInfo:"VECTOReVssi1704360966770:VIDEO:VIDEOrZguC1710324513737:default:3::branch:Handbags:5",bindCta:null,bindProduct:{itemId:"M1296ZRIWM828",title:"Medium Dior Book Tote",tags:["Maria Grazia Chiuri","Hand","Shoulder","Handbags","Blue","Women"],weight:null,traceInfo:"VECTOReVssi1704360966770:PRODUCT:M1296ZRIWM828:default:3::branch:Handbags:5",bindCta:{itemId:"CTAzgoPn1709005149328",title:"\u7ACB\u5373\u8D2D\u4E70",tags:[],weight:null,traceInfo:"VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:5",enTitle:"Shop now",icon:"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",link:null,linkTitle:null,linkType:null,menuCategoryId:"65966478d19caa37afe3603f"},homePage:["https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fs69g46K9wPCwi5VRAP2QAgRHM0Pc1709696901624.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsAIliGV0ZJP8MNa8DECYtwsK4ker1709696900761.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsMJ4JfZ0Vhzq6H71NdIPg6YozbIz1709696897845.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsWXI06zGOmACXn9wD3EegRLkB7dg1709696911033.jpg"],collection:"Et\xE9 2024",link:"https://www.dior.com/en_us/fashion/products/M1296ZRIW_M828-medium-dior-book-tote-ecru-and-blue-dior-oblique-embroidery-36-x-27.5-x-16.5-cm",linkTitle:null,linkType:"WEB",info:"Introduced by Maria Grazia Chiuri, Creative Director of Christian Dior, the Dior Book Tote has become a staple of the Dior aesthetic. Designed to hold all the daily essentials, the style is fully embroidered with the ecru and blue Dior Oblique motif. Adorned with the Christian Dior Paris signature on the front, the medium tote exemplifies the House's signature savoir-faire and may be carried by hand or worn over the shoulder.",price:3350,currency:"USD-$"},bindProducts:[],cover:"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fstXNWStczbY8HbIKEqMwfCkv5CI51710324494939.png",url:"https://dior-sxp-cdn.chatlabs.net/prod/sound/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsOqu34FxaJTdascLcj6DHoYIIAs01710324439851.mp4",imgUrls:null,hashTags:["Handbags","Dior Book Tote"]},product:null,cta:null},{position:"6",isCollected:null,video:null,product:{itemId:"M1296ZRIWM828",title:"Medium Dior Book Tote",tags:["Maria Grazia Chiuri","Hand","Shoulder","Handbags","Blue","Women"],weight:null,traceInfo:"VECTOReVssi1704360966770:PRODUCT:M1296ZRIWM828:default:3::branch:Handbags:6",bindCta:{itemId:"CTAzgoPn1709005149328",title:"\u7ACB\u5373\u8D2D\u4E70",tags:[],weight:null,traceInfo:"VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:6",enTitle:"Shop now",icon:"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",link:null,linkTitle:null,linkType:null,menuCategoryId:"65966478d19caa37afe3603f"},homePage:["https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fs69g46K9wPCwi5VRAP2QAgRHM0Pc1709696901624.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsAIliGV0ZJP8MNa8DECYtwsK4ker1709696900761.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsMJ4JfZ0Vhzq6H71NdIPg6YozbIz1709696897845.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsWXI06zGOmACXn9wD3EegRLkB7dg1709696911033.jpg"],collection:"Et\xE9 2024",link:"https://www.dior.com/en_us/fashion/products/M1296ZRIW_M828-medium-dior-book-tote-ecru-and-blue-dior-oblique-embroidery-36-x-27.5-x-16.5-cm",linkTitle:null,linkType:"WEB",info:"Introduced by Maria Grazia Chiuri, Creative Director of Christian Dior, the Dior Book Tote has become a staple of the Dior aesthetic. Designed to hold all the daily essentials, the style is fully embroidered with the ecru and blue Dior Oblique motif. Adorned with the Christian Dior Paris signature on the front, the medium tote exemplifies the House's signature savoir-faire and may be carried by hand or worn over the shoulder.",price:3350,currency:"USD-$"},cta:null},{position:"7",isCollected:null,video:{itemId:"VIDEOEtr621710300614047",title:"Unveiled at the spring-summer 2023 fashion show, the dior toujours bag is distinguished by a casual and practical design. Crafted in black calfskin with macrocannage topstitching, it showcases a spacious interior compartment with a matching pouch to organize essentials. Its leather strap closure keeps items secure while the d of the cd lock closure twists to adjust the sides and enhance the bag's silhouette. T",tags:["Handbags","Leather Strap","Spring-Summer 2024 Fashion Show","Backstage","Dior Toujours Bag"],weight:null,traceInfo:"VECTOReVssi1704360966770:VIDEO:VIDEOEtr621710300614047:default:3::branch:Handbags:7",bindCta:null,bindProduct:null,bindProducts:[],cover:"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fshkOldZwfsSqTgvxHJzNBwS66ySc1710300910103.jpg",url:null,imgUrls:["https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fsryDXTtPWXjYFWoSUEBUi48RHZCh1710398617300.jpg"],hashTags:["Backstage","Handbags","Spring-Summer 2024 Fashion Show","Dior Toujours Bag"]},product:null,cta:null},{position:"8",isCollected:null,video:{itemId:"VIDEOO8Zjt1709616802987",title:"Introduced by Maria Grazia Chiuri, Creative Director of Christian Dior, the Dior Book Tote has become a staple of the Dior aesthetic. Designed to hold all the daily essentials, the style is fully embroidered with the ecru and blue Dior Oblique motif. Adorned with the Christian Dior Paris signature on the front, the medium tote exemplifies the House's signature savoir-faire and may be carried by hand or worn over the shoulder.",tags:["Blue","Medium","Shoulder","Hand","Handbags","Dior Book Tote"],weight:null,traceInfo:"VECTOReVssi1704360966770:VIDEO:VIDEOO8Zjt1709616802987:default:3::branch:Handbags:8",bindCta:null,bindProduct:{itemId:"M1296ZRIWM828",title:"Medium Dior Book Tote",tags:["Maria Grazia Chiuri","Hand","Shoulder","Handbags","Blue","Women"],weight:null,traceInfo:"VECTOReVssi1704360966770:PRODUCT:M1296ZRIWM828:default:3::branch:Handbags:8",bindCta:{itemId:"CTAzgoPn1709005149328",title:"\u7ACB\u5373\u8D2D\u4E70",tags:[],weight:null,traceInfo:"VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:8",enTitle:"Shop now",icon:"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",link:null,linkTitle:null,linkType:null,menuCategoryId:"65966478d19caa37afe3603f"},homePage:["https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fs69g46K9wPCwi5VRAP2QAgRHM0Pc1709696901624.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsAIliGV0ZJP8MNa8DECYtwsK4ker1709696900761.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsMJ4JfZ0Vhzq6H71NdIPg6YozbIz1709696897845.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsWXI06zGOmACXn9wD3EegRLkB7dg1709696911033.jpg"],collection:"Et\xE9 2024",link:"https://www.dior.com/en_us/fashion/products/M1296ZRIW_M828-medium-dior-book-tote-ecru-and-blue-dior-oblique-embroidery-36-x-27.5-x-16.5-cm",linkTitle:null,linkType:"WEB",info:"Introduced by Maria Grazia Chiuri, Creative Director of Christian Dior, the Dior Book Tote has become a staple of the Dior aesthetic. Designed to hold all the daily essentials, the style is fully embroidered with the ecru and blue Dior Oblique motif. Adorned with the Christian Dior Paris signature on the front, the medium tote exemplifies the House's signature savoir-faire and may be carried by hand or worn over the shoulder.",price:3350,currency:"USD-$"},bindProducts:[],cover:"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240305/fsmS72zfInwmblYTnuYzRuZKAOlhr1709616742898.jpg",url:null,imgUrls:["https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fsU2gDw28XFd1nOAqlUjb1r1h6mpT1710400349981.jpg"],hashTags:["Dior Book Tote","Handbags"]},product:null,cta:null},{position:"9",isCollected:null,video:null,product:{itemId:"M2821SNIOM900",title:"Medium Dior Toujours Bag Black Macrocannage Crinkled Leather",tags:["Medium","Black","Women","Handbags","Bucket Bag"],weight:null,traceInfo:"VECTOReVssi1704360966770:PRODUCT:M2821SNIOM900:default:3::branch:Handbags:9",bindCta:{itemId:"CTAzgoPn1709005149328",title:"\u7ACB\u5373\u8D2D\u4E70",tags:[],weight:null,traceInfo:"VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:9",enTitle:"Shop now",icon:"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",link:null,linkTitle:null,linkType:null,menuCategoryId:"65966478d19caa37afe3603f"},homePage:["https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsy6AN0OWw3rj8Luw3RTSP9n2kDLq1710497237677.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fszTc3uEUrtppdN9QVVU2XBnaaaBY1710497237986.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsKbBMTRa0tTTX661wu7DzLw9OP0r1710497237980.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsOYHlYCwgzalxzmIJcsZmIsJ2L3g1710497237145.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsKJqNVm1ZBlrgZ8XLC0YAaO6ws2F1710497237650.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsm2VoVancBQ20nDHceESUPNLyrUy1710497238312.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs2B5YYmv8OztP3d9rlM2a9KmYswl1710497237339.jpg"],collection:"Et\xE9 2024",link:"https://www.dior.com/en_us/fashion/products/M1296ZRIW_M828-medium-dior-book-tote-ecru-and-blue-dior-oblique-embroidery-36-x-27.5-x-16.5-cm",linkTitle:null,linkType:"WEB",info:"The dior toujours bag is distinguished by a casual and practical design. Crafted in black crinkled calfskin with macrocannage topstitching, it showcases a spacious interior compartment with a matching pouch to organize the essentials. Its leather strap closure keeps items secure while the d of the cd lock closure twists to adjust the sides and enhance the bag's silhouette.",price:4400,currency:"USD-$"},cta:null},{position:"10",isCollected:null,video:{itemId:"VIDEOesZlV1710323980494",title:"The lady dior bag embodies dior's vision of elegance and beauty. Sleek and refined, the timeless style demonstrates the house's exceptional savoir-faire. The black patent-to-matte gradient lambskin style is embellished with iconic cannage topstitching, while the ultra-matte metal d.i.o.r. Charms lend a modern touch. Featuring a thin, removable leather shoulder strap, the medium lady dior bag can be carried by hand or worn crossbody.",tags:["Lady Dior","Removable Shoulder Strap","Medium","Handbags","Crossbody"],weight:null,traceInfo:"VECTOReVssi1704360966770:VIDEO:VIDEOesZlV1710323980494:default:3::branch:Handbags:10",bindCta:null,bindProduct:{itemId:"M0565SDBRM900",title:"Medium Lady Dior Bag",tags:["Women","Black","Handbags","Hand","Lady Dior","Crossbody"],weight:null,traceInfo:"VECTOReVssi1704360966770:PRODUCT:M0565SDBRM900:default:3::branch:Handbags:10",bindCta:{itemId:"CTAzgoPn1709005149328",title:"\u7ACB\u5373\u8D2D\u4E70",tags:[],weight:null,traceInfo:"VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:10",enTitle:"Shop now",icon:"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",link:null,linkTitle:null,linkType:null,menuCategoryId:"65966478d19caa37afe3603f"},homePage:["https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsnyiCm9oirbXLqmqY7231O8O2Yhb1710498970982.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fskwIRRKCtuw9cb9btuubt2D5bXfB1710498970676.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsqXFTCyhxspeYCD3uo4UiuN5vQ7w1710498970671.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs8rDRSKJmWUNI42MjrMWVlI0D9Fz1710498970729.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsca9Cjqo3WMJVU0OL0OjQo8xOoMx1710498972076.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsjl1bxi56X0QrKwfvl8YocBVJ2N81710498971352.jpg"],collection:null,link:"https://www.dior.com/en_us/fashion/products/M0565SDBR_M900-medium-lady-dior-bag-black-patent-to-matte-gradient-cannage-lambskin?objectID=M0565SDBR_M900&query=M0565SDBRM900&queryID=14cc52b35774a9a42e78fd9ba199860e",linkTitle:null,linkType:"WEB",info:"The Lady Dior bag embodies Dior's vision of elegance and beauty. Sleek and refined, the timeless style demonstrates the House's exceptional savoir-faire. The black patent-to-matte gradient lambskin style is embellished with iconic Cannage topstitching, while the ultra-matte metal D.I.O.R. charms lend a modern touch. Featuring a thin, removable leather shoulder strap, the medium Lady Dior bag can be carried by hand or worn crossbody.",price:7100,currency:"USD-$"},bindProducts:[],cover:"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsiwMQ88zO5Xdnl939krMyBMbz7Js1710323763013.png",url:"https://dior-sxp-cdn.chatlabs.net/prod/sound/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsxyS8nr7nn0LMe7EqOt3ETXqLu7d1710323753073.mp4",imgUrls:null,hashTags:["Lady Dior","Handbags"]},product:null,cta:null},{position:"11",isCollected:null,video:{itemId:"VIDEOdvsXq1710324342942",title:"New for summer 2024, the lady d-sire my abcdior bag draws inspiration from the signature elegance of the lady dior design. Reimagined with a casual style for an urban look, the lightweight black grained bull leather feels soft to the touch yet offers excellent durability. The medium bag is embellished with pale gold-finish metal d.i.o.r. Charms that highlight the silhouette.",tags:["Summer 2024","Lady Dior","Casual","Lightweight","Medium","Handbags"],weight:null,traceInfo:"VECTOReVssi1704360966770:VIDEO:VIDEOdvsXq1710324342942:default:3::branch:Handbags:11",bindCta:null,bindProduct:{itemId:"M1151OTRLM900",title:"Medium Lady D-Sire My ABCDior Bag",tags:["Handbags","Summer 2024","Lady Dior","Black","Medium","Women","Lady D-Sire"],weight:null,traceInfo:"VECTOReVssi1704360966770:PRODUCT:M1151OTRLM900:default:3::branch:Handbags:11",bindCta:{itemId:"CTAzgoPn1709005149328",title:"\u7ACB\u5373\u8D2D\u4E70",tags:[],weight:null,traceInfo:"VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:11",enTitle:"Shop now",icon:"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",link:null,linkTitle:null,linkType:null,menuCategoryId:"65966478d19caa37afe3603f"},homePage:["https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsBvqPYhaE9Ct1JzBd4gm8g9YOiAZ1710499102900.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs6sf9nB7WpJuLNIZT3c8O8Fmf3Gu1710499102936.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsSxYBxyVx2yRrUgEaYmarWhlUbk41710499102531.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsyhykK1B7W9613MAfipfIuE1foim1710499102345.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs6FXJdaXib8lP0NPloe1XQGpoiKc1710499103268.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsCRx7T4ejNvgKNensH6LT4dPt6251710499103615.jpg"],collection:null,link:"https://www.dior.com/en_us/fashion/products/M1151OTRL_M900-medium-lady-d-sire-my-abcdior-bag-black-bull-leather?objectID=M1151OTRL_M900&query=M1151OTRLM900&queryID=e82938220687c425c75277a7c526b932",linkTitle:null,linkType:"WEB",info:"New for Summer 2024, the Lady D-Sire My ABCDior bag draws inspiration from the signature elegance of the Lady Dior design. Reimagined with a casual style for an urban look, the lightweight black grained bull leather feels soft to the touch yet offers excellent durability. The medium bag is embellished with pale gold-finish metal D.I.O.R. charms that highlight the silhouette. Showcasing a shoulder strap that can be personalized by adding symbolic badges, the unique bag can be carried by hand or w",price:6100,currency:"USD-$"},bindProducts:[],cover:"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsOsdUSXr57U5Twhhkv17th3yHqBJ1710324292456.png",url:"https://dior-sxp-cdn.chatlabs.net/prod/sound/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsZyr3slVtlsParX6D0DqsM0QEx8d1710324283147.mp4",imgUrls:null,hashTags:["Summer 2024","Lady Dior","Handbags"]},product:null,cta:null},{position:"12",isCollected:null,video:{itemId:"VIDEOy76Fr1710324746846",title:"Maria grazia chiuri brings a fresh update to the iconic saddle bag. Crafted in black grained calfskin, the legendary design features a saddle flap with a d stirrup clasp on a magnetic strap, as well as an antique gold-finish metal cd signature on either side of the strap. Equipped with a thin, adjustable and removable shoulder strap, the saddle bag may be carried by hand, worn over the shoulder or crossbody.. Saddle bag with strap Black grained calfskin",tags:["Maria Grazia Chiuri","Saddle Bags","Removable Shoulder Strap","Hand","Shoulder","Crossbody","Handbags"],weight:null,traceInfo:"VECTOReVssi1704360966770:VIDEO:VIDEOy76Fr1710324746846:default:3::branch:Handbags:12",bindCta:null,bindProduct:{itemId:"M0455CBAAM900",title:"Saddle Bag with Strap",tags:["Saddle Bags","Handbags","Maria Grazia Chiuri"],weight:null,traceInfo:"VECTOReVssi1704360966770:PRODUCT:M0455CBAAM900:default:3::branch:Handbags:12",bindCta:{itemId:"CTAzgoPn1709005149328",title:"\u7ACB\u5373\u8D2D\u4E70",tags:[],weight:null,traceInfo:"VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:12",enTitle:"Shop now",icon:"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",link:null,linkTitle:null,linkType:null,menuCategoryId:"65966478d19caa37afe3603f"},homePage:["https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsiwfgnCrVBGcGPh6gaFsvbYBIpxX1709285334896.png","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsXpilTgUS4u4oFWr0hUew8DQITi11709285353202.png","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsWxJm6YIeRYmDtDoB5WtYMjRX8bm1709285366208.png","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsj69PxKh1SAZ6p0902FbBT0vg2at1709285373714.png","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fs78nKueByU2cNulReOw8gJ1ZsieF1709285412981.png","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsmAEriTIohZAUMUE6gUCWvXwbbRE1709285429332.png"],collection:"Et\xE9 2024",link:"https://www.dior.com/en_us/fashion/products/M0455CBAA_M900-saddle-bag-with-strap-black-grained-calfskin?objectID=M0455CBAA_M900&query=M0455CBAAM900&queryID=c171c63e69d6d109953e2de631718496",linkTitle:null,linkType:"WEB",info:"Maria Grazia Chiuri brings a fresh update to the iconic Saddle bag. Crafted in black grained calfskin, the legendary design features a Saddle flap with a D stirrup clasp on a magnetic strap, as well as an antique gold-finish metal CD signature on either side of the strap. Equipped with a thin, adjustable and removable shoulder strap, the Saddle bag may be carried by hand, worn over the shoulder or crossbody.",price:4400,currency:"USD-$"},bindProducts:[],cover:"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsqwogfFahvNml7vmATxwfKLcNlh91710324602536.png",url:"https://dior-sxp-cdn.chatlabs.net/prod/sound/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsVRd4z4V8UScNc7Wc96xv4xDVByb1710324589932.mp4",imgUrls:null,hashTags:["Maria Grazia Chiuri","Saddle Bags","Handbags"]},product:null,cta:null},{position:"13",isCollected:null,video:{itemId:"VIDEOvqhF71709609258469",title:"The lady dior bag embodies dior's vision of elegance and beauty. Sleek and refined, the timeless style demonstrates the house's exceptional savoir-faire. The black patent-to-matte gradient lambskin style is embellished with iconic cannage topstitching, while the ultra-matte metal d.i.o.r. Charms lend a modern touch. Featuring a thin, removable leather shoulder strap, the medium lady dior bag can be carried by hand or worn crossbody.",tags:["Thin","Removable Shoulder Strap","Medium","Lady Dior","Crossbody","Handbags","Cross-body & Shoulder Bags"],weight:null,traceInfo:"VECTOReVssi1704360966770:VIDEO:VIDEOvqhF71709609258469:default:3::branch:Handbags:13",bindCta:null,bindProduct:{itemId:"M0565SDBRM900",title:"Medium Lady Dior Bag",tags:["Women","Black","Handbags","Hand","Lady Dior","Crossbody"],weight:null,traceInfo:"VECTOReVssi1704360966770:PRODUCT:M0565SDBRM900:default:3::branch:Handbags:13",bindCta:{itemId:"CTAzgoPn1709005149328",title:"\u7ACB\u5373\u8D2D\u4E70",tags:[],weight:null,traceInfo:"VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:13",enTitle:"Shop now",icon:"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",link:null,linkTitle:null,linkType:null,menuCategoryId:"65966478d19caa37afe3603f"},homePage:["https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsnyiCm9oirbXLqmqY7231O8O2Yhb1710498970982.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fskwIRRKCtuw9cb9btuubt2D5bXfB1710498970676.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsqXFTCyhxspeYCD3uo4UiuN5vQ7w1710498970671.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs8rDRSKJmWUNI42MjrMWVlI0D9Fz1710498970729.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsca9Cjqo3WMJVU0OL0OjQo8xOoMx1710498972076.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsjl1bxi56X0QrKwfvl8YocBVJ2N81710498971352.jpg"],collection:null,link:"https://www.dior.com/en_us/fashion/products/M0565SDBR_M900-medium-lady-dior-bag-black-patent-to-matte-gradient-cannage-lambskin?objectID=M0565SDBR_M900&query=M0565SDBRM900&queryID=14cc52b35774a9a42e78fd9ba199860e",linkTitle:null,linkType:"WEB",info:"The Lady Dior bag embodies Dior's vision of elegance and beauty. Sleek and refined, the timeless style demonstrates the House's exceptional savoir-faire. The black patent-to-matte gradient lambskin style is embellished with iconic Cannage topstitching, while the ultra-matte metal D.I.O.R. charms lend a modern touch. Featuring a thin, removable leather shoulder strap, the medium Lady Dior bag can be carried by hand or worn crossbody.",price:7100,currency:"USD-$"},bindProducts:[],cover:"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240305/fsHmNyOcNdgB9Y8aIFYWCHlEZVl4x1709608981919.jpg",url:null,imgUrls:["https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fslhMX6mwCM4i5XFY6dpcMZdPocYv1710398865153.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fsJQCe9rZmsEjuIUpdck9Hs2gpNU81710398856427.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fsnHUJufSHptF88bNsyUGmSSKYH4A1710398855734.jpg"],hashTags:["Lady Dior","Handbags"]},product:null,cta:null},{position:"14",isCollected:null,video:null,product:{itemId:"M0455CBAAM900",title:"Saddle Bag with Strap",tags:["Saddle Bags","Handbags","Maria Grazia Chiuri"],weight:null,traceInfo:"VECTOReVssi1704360966770:PRODUCT:M0455CBAAM900:default:3::branch:Handbags:14",bindCta:{itemId:"CTAzgoPn1709005149328",title:"\u7ACB\u5373\u8D2D\u4E70",tags:[],weight:null,traceInfo:"VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:14",enTitle:"Shop now",icon:"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",link:null,linkTitle:null,linkType:null,menuCategoryId:"65966478d19caa37afe3603f"},homePage:["https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsiwfgnCrVBGcGPh6gaFsvbYBIpxX1709285334896.png","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsXpilTgUS4u4oFWr0hUew8DQITi11709285353202.png","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsWxJm6YIeRYmDtDoB5WtYMjRX8bm1709285366208.png","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsj69PxKh1SAZ6p0902FbBT0vg2at1709285373714.png","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fs78nKueByU2cNulReOw8gJ1ZsieF1709285412981.png","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsmAEriTIohZAUMUE6gUCWvXwbbRE1709285429332.png"],collection:"Et\xE9 2024",link:"https://www.dior.com/en_us/fashion/products/M0455CBAA_M900-saddle-bag-with-strap-black-grained-calfskin?objectID=M0455CBAA_M900&query=M0455CBAAM900&queryID=c171c63e69d6d109953e2de631718496",linkTitle:null,linkType:"WEB",info:"Maria Grazia Chiuri brings a fresh update to the iconic Saddle bag. Crafted in black grained calfskin, the legendary design features a Saddle flap with a D stirrup clasp on a magnetic strap, as well as an antique gold-finish metal CD signature on either side of the strap. Equipped with a thin, adjustable and removable shoulder strap, the Saddle bag may be carried by hand, worn over the shoulder or crossbody.",price:4400,currency:"USD-$"},cta:null},{position:"15",isCollected:null,video:{itemId:"VIDEO693hq1709628690318",title:"New for the summer 2024 season, the dior caro top handle camera bag is a sophisticated and practical design. Crafted in black calfskin, the small model is elevated by the originality of the macrocannage stitching's quilted effect. The bag features a zip closure and an antique gold-tone metal cd signature.",tags:["Ready-To-Wear","Handbags","Signature Hardware Design","Monogram/Logo Print","Calfskin Leather","Summer 2024","Black"],weight:null,traceInfo:"VECTOReVssi1704360966770:VIDEO:VIDEO693hq1709628690318:default:3::branch:Handbags:15",bindCta:null,bindProduct:{itemId:"M3352UBHMM900",title:"Small Dior Caro Top Handle Camera Bag Black Macrocannage Calfskin ",tags:["Summer 2024","Black","Women","Handbags","Dior Caro"],weight:null,traceInfo:"VECTOReVssi1704360966770:PRODUCT:M3352UBHMM900:default:3::branch:Handbags:15",bindCta:{itemId:"CTAzgoPn1709005149328",title:"\u7ACB\u5373\u8D2D\u4E70",tags:[],weight:null,traceInfo:"VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:15",enTitle:"Shop now",icon:"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",link:null,linkTitle:null,linkType:null,menuCategoryId:"65966478d19caa37afe3603f"},homePage:["https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsx3wufMP9P6ovvCrXL58eVVA61gI1710499528917.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs82a414vXXhbgMXsw3Zm8TWyDMvI1710499528543.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsJaZoFhur3jfMEciQdk5GMV8O2un1710499528346.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fstO8CRKfBzpJUmAMyCDHDo23ji9N1710499528346.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsagaUiox7KECRhbPn6MScg3s4Nwd1710499528602.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsBsyFADiYBLWHaAIQfNRsgweVOWj1710499529947.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsqJEwfvOLpXQ6nQt76o92XdLwzs11710499529939.jpg"],collection:"Et\xE9 2024",link:"https://www.dior.com/en_us/fashion/products/M3352UBHM_M900",linkTitle:null,linkType:"WEB",info:"New for the Summer 2024 season, the Dior Caro Top Handle Camera bag is a sophisticated and practical design. Crafted in black calfskin, the small model is elevated by the originality of the Macrocannage stitching's quilted effect. The bag features a zip closure and an antique gold-tone metal CD signature. ",price:3350,currency:"USD-$"},bindProducts:[],cover:"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240305/fsZhMDVzP6kuh9Qt86c11whAMglMU1709628656988.jpg",url:null,imgUrls:["https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fsWrEKA6oRWUmOY14D1POTJjgiks51710401973577.jpg"],hashTags:["Ready-To-Wear"]},product:null,cta:null},{position:"16",isCollected:null,video:{itemId:"VIDEO2rUuG1709617832960",title:"The dior toujours bag is distinguished by a casual and practical design. Crafted in black crinkled calfskin with macrocannage topstitching, it showcases a spacious interior compartment with a matching pouch to organize the essentials. Its leather strap closure keeps items secure while the d of the cd lock closure twists to adjust the sides and enhance the bag's silhouette.",tags:["Dior Toujours Bag","Casual","Leather Strap","Handbags"],weight:null,traceInfo:"VECTOReVssi1704360966770:VIDEO:VIDEO2rUuG1709617832960:default:3::branch:Handbags:16",bindCta:null,bindProduct:{itemId:"M2821SNIOM900",title:"Medium Dior Toujours Bag Black Macrocannage Crinkled Leather",tags:["Medium","Black","Women","Handbags","Bucket Bag"],weight:null,traceInfo:"VECTOReVssi1704360966770:PRODUCT:M2821SNIOM900:default:3::branch:Handbags:16",bindCta:{itemId:"CTAzgoPn1709005149328",title:"\u7ACB\u5373\u8D2D\u4E70",tags:[],weight:null,traceInfo:"VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:16",enTitle:"Shop now",icon:"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",link:null,linkTitle:null,linkType:null,menuCategoryId:"65966478d19caa37afe3603f"},homePage:["https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsy6AN0OWw3rj8Luw3RTSP9n2kDLq1710497237677.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fszTc3uEUrtppdN9QVVU2XBnaaaBY1710497237986.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsKbBMTRa0tTTX661wu7DzLw9OP0r1710497237980.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsOYHlYCwgzalxzmIJcsZmIsJ2L3g1710497237145.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsKJqNVm1ZBlrgZ8XLC0YAaO6ws2F1710497237650.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsm2VoVancBQ20nDHceESUPNLyrUy1710497238312.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs2B5YYmv8OztP3d9rlM2a9KmYswl1710497237339.jpg"],collection:"Et\xE9 2024",link:"https://www.dior.com/en_us/fashion/products/M1296ZRIW_M828-medium-dior-book-tote-ecru-and-blue-dior-oblique-embroidery-36-x-27.5-x-16.5-cm",linkTitle:null,linkType:"WEB",info:"The dior toujours bag is distinguished by a casual and practical design. Crafted in black crinkled calfskin with macrocannage topstitching, it showcases a spacious interior compartment with a matching pouch to organize the essentials. Its leather strap closure keeps items secure while the d of the cd lock closure twists to adjust the sides and enhance the bag's silhouette.",price:4400,currency:"USD-$"},bindProducts:[],cover:"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240305/fs0BUtn8TYp4l8gWsg5WD9Ht8AP7R1709617796077.jpg",url:null,imgUrls:["https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fsmecPfhI3OtZwJmKAXLv8scBSSdK1710399333565.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fsfsWBLxbC36B7Pm7Ae1uL98EmoaH1710399333017.jpg"],hashTags:["Handbags","Dior Toujours Bag"]},product:null,cta:null},{position:"17",isCollected:null,video:{itemId:"VIDEOGZGZI1709629679782",title:"The Lady Dior bag embodies Dior's vision of elegance and beauty. Sleek and refined, the timeless white and navy blue calfskin style offers a new take on the iconic House motif with this season's signature Toile de Jouy Soleil, layering suns and crescent moons into a floral design representing the four seasons. A",tags:["Handbags"],weight:null,traceInfo:"VECTOReVssi1704360966770:VIDEO:VIDEOGZGZI1709629679782:default:3::branch:Handbags:17",bindCta:null,bindProduct:{itemId:"M0565OZEDM928",title:"Medium Lady Dior Bag",tags:["Lady Dior","Medium","Handbags","Crossbody"],weight:null,traceInfo:"VECTOReVssi1704360966770:PRODUCT:M0565OZEDM928:default:3::branch:Handbags:17",bindCta:{itemId:"CTAzgoPn1709005149328",title:"\u7ACB\u5373\u8D2D\u4E70",tags:[],weight:null,traceInfo:"VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:17",enTitle:"Shop now",icon:"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",link:null,linkTitle:null,linkType:null,menuCategoryId:"65966478d19caa37afe3603f"},homePage:["https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsbVwOx4grEmqCNmvOnKpIS0vTPPc1710499656033.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240319/fsJrpY9R8uGenvzM7NnzI4lPMCF8g1710836215790.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240319/fsYQG9gipUNt6UbzFPXTwLTNgj5BF1710836214937.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240319/fsqPEXjWl7l3wPAxJIZbnnhZPXDCw1710836216838.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsNHlPmAsNYPsGDJ5w0G213wJkwFf1710499654946.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs8dAObnEoAYe1V6pwJOGTs4vCBJO1710499655963.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsJpaBPC8OxQ4aYwxsMcqZpGtPWnq1710499655730.jpg"],collection:"Et\xE9 2024",link:"https://www.dior.com/en_us/fashion/products/M0565OZED_M928",linkTitle:null,linkType:"WEB",info:"The Lady Dior bag embodies Dior's vision of elegance and beauty. Sleek and refined, the timeless white and navy blue calfskin style offers a new take on the iconic House motif with this season's signature Toile de Jouy Soleil, layering suns and crescent moons into a floral design representing the four seasons. Accented by pale gold-finish metal D.I.O.R. charms illuminating the silhouette and featuring a thin, removable leather shoulder strap, the medium Lady Dior bag can be carried by hand or wo",price:6500,currency:"USD-$"},bindProducts:[],cover:"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240305/fsG1IT2gcB5iabcTL89Xs9bRHISMb1709629659698.jpg",url:null,imgUrls:["https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fsJB1txgzSsQLBBJSTzqGI40BvLkr1710399454552.jpg"],hashTags:["Handbags"]},product:null,cta:null},{position:"18",isCollected:null,video:{itemId:"VIDEOC2IMa1710324169054",title:"The lady dior bag embodies dior's vision of elegance and beauty. Sleek and refined, the timeless style demonstrates the house's exceptional savoir-faire. The black patent-to-matte gradient lambskin style is embellished with iconic cannage topstitching, while the ultra-matte metal d.i.o.r. Charms lend a modern touch. Featuring a thin, removable leather shoulder strap, the medium lady dior bag can be carried by hand or worn crossbody.",tags:["Lady Dior","Removable Shoulder Strap","Medium","Handbags","Crossbody"],weight:null,traceInfo:"VECTOReVssi1704360966770:VIDEO:VIDEOC2IMa1710324169054:default:3::branch:Handbags:18",bindCta:null,bindProduct:{itemId:"M0565SDBRM900",title:"Medium Lady Dior Bag",tags:["Women","Black","Handbags","Hand","Lady Dior","Crossbody"],weight:null,traceInfo:"VECTOReVssi1704360966770:PRODUCT:M0565SDBRM900:default:3::branch:Handbags:18",bindCta:{itemId:"CTAzgoPn1709005149328",title:"\u7ACB\u5373\u8D2D\u4E70",tags:[],weight:null,traceInfo:"VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:18",enTitle:"Shop now",icon:"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",link:null,linkTitle:null,linkType:null,menuCategoryId:"65966478d19caa37afe3603f"},homePage:["https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsnyiCm9oirbXLqmqY7231O8O2Yhb1710498970982.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fskwIRRKCtuw9cb9btuubt2D5bXfB1710498970676.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsqXFTCyhxspeYCD3uo4UiuN5vQ7w1710498970671.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs8rDRSKJmWUNI42MjrMWVlI0D9Fz1710498970729.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsca9Cjqo3WMJVU0OL0OjQo8xOoMx1710498972076.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsjl1bxi56X0QrKwfvl8YocBVJ2N81710498971352.jpg"],collection:null,link:"https://www.dior.com/en_us/fashion/products/M0565SDBR_M900-medium-lady-dior-bag-black-patent-to-matte-gradient-cannage-lambskin?objectID=M0565SDBR_M900&query=M0565SDBRM900&queryID=14cc52b35774a9a42e78fd9ba199860e",linkTitle:null,linkType:"WEB",info:"The Lady Dior bag embodies Dior's vision of elegance and beauty. Sleek and refined, the timeless style demonstrates the House's exceptional savoir-faire. The black patent-to-matte gradient lambskin style is embellished with iconic Cannage topstitching, while the ultra-matte metal D.I.O.R. charms lend a modern touch. Featuring a thin, removable leather shoulder strap, the medium Lady Dior bag can be carried by hand or worn crossbody.",price:7100,currency:"USD-$"},bindProducts:[],cover:"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsuF6sqlC9LCBLTgxHwMRinXwB6bF1710324135846.png",url:"https://dior-sxp-cdn.chatlabs.net/prod/sound/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsFwNsGElWR2SXQ2tWwHkaiqMZN5H1710324095954.mp4",imgUrls:null,hashTags:["Lady Dior","Handbags"]},product:null,cta:null},{position:"19",isCollected:null,video:null,product:{itemId:"M0565OZEDM928",title:"Medium Lady Dior Bag",tags:["Lady Dior","Medium","Handbags","Crossbody"],weight:null,traceInfo:"VECTOReVssi1704360966770:PRODUCT:M0565OZEDM928:default:3::branch:Handbags:19",bindCta:{itemId:"CTAzgoPn1709005149328",title:"\u7ACB\u5373\u8D2D\u4E70",tags:[],weight:null,traceInfo:"VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:19",enTitle:"Shop now",icon:"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",link:null,linkTitle:null,linkType:null,menuCategoryId:"65966478d19caa37afe3603f"},homePage:["https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsbVwOx4grEmqCNmvOnKpIS0vTPPc1710499656033.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240319/fsJrpY9R8uGenvzM7NnzI4lPMCF8g1710836215790.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240319/fsYQG9gipUNt6UbzFPXTwLTNgj5BF1710836214937.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240319/fsqPEXjWl7l3wPAxJIZbnnhZPXDCw1710836216838.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsNHlPmAsNYPsGDJ5w0G213wJkwFf1710499654946.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs8dAObnEoAYe1V6pwJOGTs4vCBJO1710499655963.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsJpaBPC8OxQ4aYwxsMcqZpGtPWnq1710499655730.jpg"],collection:"Et\xE9 2024",link:"https://www.dior.com/en_us/fashion/products/M0565OZED_M928",linkTitle:null,linkType:"WEB",info:"The Lady Dior bag embodies Dior's vision of elegance and beauty. Sleek and refined, the timeless white and navy blue calfskin style offers a new take on the iconic House motif with this season's signature Toile de Jouy Soleil, layering suns and crescent moons into a floral design representing the four seasons. Accented by pale gold-finish metal D.I.O.R. charms illuminating the silhouette and featuring a thin, removable leather shoulder strap, the medium Lady Dior bag can be carried by hand or wo",price:6500,currency:"USD-$"},cta:null}],pr="Handbags",xn={productUserId:ar,requestId:rr,channel:sr,rtc:dr,tag:cr,recList:ur,hashTag:pr};const vr=t=>{const{rec:e,style:i={},sizeChange:n=()=>{},unitWidth:l,index:o,showBorder:r,list:s,reportTagsView:a,textStyles:u,space:d}=t,{swiperRef:f,setRtcList:v,setOpenHashtag:h,sxpParameter:w}=Pe(),[T,C]=W(!1);W(!1),W({height:1,width:1});const p=re(null),x=re(null);re(null),re(null);const[y,A]=W(""),k=ne(()=>{var b,I,D,P,N,F,_,R,B,j;return!((b=e?.video)===null||b===void 0)&&b.cover?(I=e?.video)===null||I===void 0?void 0:I.cover:!((P=(D=e?.video)===null||D===void 0?void 0:D.imgUrls)===null||P===void 0)&&P.length?(F=(N=e?.video)===null||N===void 0?void 0:N.imgUrls)===null||F===void 0?void 0:F[0]:!((R=(_=e?.product)===null||_===void 0?void 0:_.homePage)===null||R===void 0)&&R.length?(j=(B=e?.product)===null||B===void 0?void 0:B.homePage)===null||j===void 0?void 0:j[0]:w?.bottom_image||""},[e,w?.bottom_image]),g=ne(()=>{var b,I;return((b=e?.product)===null||b===void 0?void 0:b.title)||((I=e?.video)===null||I===void 0?void 0:I.title)||null},[e]),L=ne(()=>{var b;return i.transform?Number((b=i.transform)===null||b===void 0?void 0:b.substring(i.transform.indexOf(",",0)+1,i.transform.length-3)):void 0},[i]);ne(()=>L===void 0?!1:L<=r,[L,r]);const M=ne(()=>{var b,I,D,P,N,F,_,R,B;return!((b=e?.product)===null||b===void 0)&&b.currency&&(!((I=e?.product)===null||I===void 0)&&I.price)?`${(F=(N=(P=(D=e?.product)===null||D===void 0?void 0:D.currency)===null||P===void 0?void 0:P.split("-")[1])===null||N===void 0?void 0:N.toUpperCase())!==null&&F!==void 0?F:""}${(B=(R=(_=e?.product)===null||_===void 0?void 0:_.price)===null||R===void 0?void 0:R.toLocaleString("zh",{minimumFractionDigits:0}))!==null&&B!==void 0?B:""}`:null},[e]);se(()=>{if(p.current===null||k==="")return;let b=null;T&&y?b=y:b=k,b&&p.current.setSrc(b)},[k,T,y]);const S=re(),c=ue(b=>{setTimeout(()=>{var I;const D=(I=S?.current)===null||I===void 0?void 0:I.offsetHeight;n(D+56+d,o)},0)},[d,n,o,l,S]),E=()=>{a(),v?.(s),setTimeout(()=>{var b;(b=f?.current)===null||b===void 0||b.swiper.slideTo(o,0,!1),h?.(!1)},0)};return m.createElement("div",{ref:x,style:Object.assign({},i),className:"waterFallList-content-listItem",key:o,onClick:E},m.createElement("div",{className:"waterFallList-content-listItem-picture",ref:S},m.createElement(lt,{loading:"lazy",className:"waterFallList-content-listItem-picture-img",onLoad:c,ref:p})),m.createElement("div",{className:"waterFallList-content-listItem-info"},m.createElement("div",{className:`waterFallList-content-listItem-info-title ${M?"waterFallList-content-listItem-info-nowrap":""}`,style:Object.assign({},u?.title),dangerouslySetInnerHTML:{__html:fe(g,u?.title)}}),m.createElement("div",{className:"waterFallList-content-listItem-info-price",hidden:!M,style:u.price,dangerouslySetInnerHTML:{__html:fe(M,u?.price)}})))};function mr(t){var e,i,n,l,o,r,s,a,u,d,f,v,h,w,T,C,p,x,y,A,k,g,{reportTagsView:L,showBanner:M}=t,S=Je(t,["reportTagsView","showBanner"]);const{waterFallData:c,getRecommendVideos:E,hashTagSize:b,loadingImage:I,isOpenHashTag:D}=Pe(),P=re(null),[N,F]=W(0),[_,R]=W(),B=re(null),[j,q]=W([]),H=re(),Z=[170,230,300],[le,be]=W(!1),[me,Te]=W([]),ye=re(),ee=ue((oe,X)=>Math.floor(Math.random()*(X-oe+1))+oe,[]),G=re([]),[J,Ae]=W({width:0}),pe=ne(()=>{const oe=J.width||0;return oe>=1200?6:oe>=768&&oe<=1199?4:2},[J]),he=ne(()=>J.width/pe-2,[pe,J]),Q=ue(()=>{var oe;const X=(oe=H.current)!==null&&oe!==void 0?oe:[],K=[];for(let ie=0;ie<me?.length;ie++){const Oe=Math.floor(ie/pe),Ve=ie%pe+1;let ae=0,ze=9999999999;if(Oe===0)K[ie]=ie;else{for(let Fe=0;Fe<K.length;Fe++)G.current[K[Fe]].top+G.current[K[Fe]].height<ze&&(ae=Fe,ze=G.current[K[Fe]].top+G.current[K[Fe]].height);K[ae]=ie}G.current[ie]===void 0&&(G.current[ie]={}),Oe===0?(Ve===1?G.current[ie].left=0:G.current[ie].left=G.current[ie-1].left+he+4,G.current[ie].top=0):(G.current[ie].left=G.current[ae].left,G.current[ie].top=ze),G.current[ie].height=G.current[ie].height||Z[ee(0,2)],X[ie]={transform:`translate(${G.current[ie].left}px,${G.current[ie].top}px)`,width:`${he}px`,height:G.current[ie].height}}return q([...X]),[...X]},[he,pe,Z,ee,me]),z=ue((oe,X)=>{G.current[X]===void 0&&(G.current[X]={}),G.current[X].height=oe,H.current=Q()},[Q]);se(()=>{H.current=Q()},[he,pe,me]),se(()=>{var oe,X;if(be(!0),c&&E?.({hashTag:c?.hashTag,"itemFilter.itemId":c?.itemId,"itemFilter.itemType":c?.itemType,defaultSize:b,maxSize:b}).then(K=>{var ie,Oe;R(K),Te((Oe=(ie=K?.recList)===null||ie===void 0?void 0:ie.filter(Ve=>Ve?.video!==null||Ve?.product!==null))!==null&&Oe!==void 0?Oe:[]),be(!1)}),D){const K=xn;R(K),Te((X=(oe=K?.recList)===null||oe===void 0?void 0:oe.filter(ie=>ie?.video!==null||ie?.product!==null))!==null&&X!==void 0?X:[]),be(!1)}},[c,E,b,D]);const $=ue(()=>{B.current!==null&&Ae({width:B.current.getBoundingClientRect().width})},[]);se(()=>{if(B.current===null)return;const oe=new ResizeObserver(X=>{$()});return oe.observe(B.current),()=>{oe.disconnect()}},[$]),ue(()=>{be(!0),c&&E?.({hashTag:c?.hashTag,"itemFilter.itemId":c?.itemId,"itemFilter.itemType":c?.itemType}).then(oe=>{var X,K;Te(me?.concat((K=(X=oe?.recList)===null||X===void 0?void 0:X.filter(ie=>!ie?.video))!==null&&K!==void 0?K:[])),be(!1)})},[c,E,me]);const V=ue(()=>{F(P.current.scrollTop)},[]);se(()=>{var oe;return(oe=P?.current)===null||oe===void 0||oe.addEventListener("scroll",V),()=>{var X;(X=P?.current)===null||X===void 0||X.removeEventListener("scroll",V)}},[V,P]);const Ee=()=>{var oe,X;!((oe=_?.tag)===null||oe===void 0)&&oe.link&&(L(),window.location.href=window.getJointUtmLink((X=_?.tag)===null||X===void 0?void 0:X.link))};return m.createElement(m.Fragment,null,le?m.createElement("div",{style:{height:"100%",width:"100%",display:"flex",justifyContent:"center",alignItems:"center"}},m.createElement("img",{width:64,height:64,src:I,alt:"loading...",style:{objectFit:"contain"}})):m.createElement("div",{className:"waterFallList",ref:B},m.createElement("div",{className:"waterFallList-scroll",ref:P},M&&((e=_?.tag)===null||e===void 0?void 0:e.picture)&&m.createElement("div",{onClick:Ee},m.createElement(lt,{className:xe({width:"100%",objectFit:"cover",marginBottom:"20px"}),src:(i=_?.tag)===null||i===void 0?void 0:i.picture})),m.createElement("div",{className:"waterFallList-info",style:(n=S?.textStyles)===null||n===void 0?void 0:n.hashTagDesc,dangerouslySetInnerHTML:{__html:fe((l=_?.tag)===null||l===void 0?void 0:l.info,(o=S?.textStyles)===null||o===void 0?void 0:o.hashTagDesc)}}),m.createElement("div",{hidden:!(!((r=_?.tag)===null||r===void 0)&&r.link),className:"waterFallList-collection",style:Object.assign({},(s=S?.textStyles)===null||s===void 0?void 0:s.hashTagLink),onClick:Ee,dangerouslySetInnerHTML:{__html:fe(((a=_?.tag)===null||a===void 0?void 0:a.linkTitle)||"Shop the collection",(u=S?.textStyles)===null||u===void 0?void 0:u.hashTagLink)}}),m.createElement("div",{className:"waterFallList-content"},me?.map((oe,X)=>{var K;return m.createElement(vr,Object.assign({key:X,index:X,rec:oe,list:me,showBorder:N+((K=P?.current)===null||K===void 0?void 0:K.clientHeight),style:j[X],sizeChange:z,unitWidth:he,reportTagsView:L},S))}),m.createElement("div",{hidden:!(!((d=_?.tag)===null||d===void 0)&&d.link),style:{position:"absolute",width:"100%",transform:`translate(0px,${(T=((v=G?.current[((f=G?.current)===null||f===void 0?void 0:f.length)-1])===null||v===void 0?void 0:v.top)+((w=G?.current[((h=G?.current)===null||h===void 0?void 0:h.length)-1])===null||w===void 0?void 0:w.height))!==null&&T!==void 0?T:0}px)`,height:!((C=_?.tag)===null||C===void 0)&&C.link?((p=ye?.current)===null||p===void 0?void 0:p.offsetHeight)||((x=S?.buttonBgStyle)===null||x===void 0?void 0:x.height)||"100px":0}}))),m.createElement("div",{className:"waterFallList-bottom",hidden:!(!((y=_?.tag)===null||y===void 0)&&y.link),style:S?.buttonBgStyle}),m.createElement("div",{ref:ye,hidden:!(!((A=_?.tag)===null||A===void 0)&&A.link),className:"waterFallList-btn-wrap",style:Object.assign(Object.assign({},S?.buttonBgStyle),{height:"auto",backgroundColor:"transparent"})},m.createElement("button",{"aria-label":((k=_?.tag)===null||k===void 0?void 0:k.linkTitle)||"Shop the collection",className:"waterFallList-btn",style:S?.buttonStyle,onClick:Ee,dangerouslySetInnerHTML:{__html:fe(((g=_?.tag)===null||g===void 0?void 0:g.linkTitle)||"Shop the collection",S?.buttonStyle)}}))))}var fr="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAaZJREFUeF7t2jFKBEEQRuG3mSJeQTARURDMTL2EqXfwAnoKD6FHMDEzNVIw2tzQC2gFggyDrExX1V92T7wz9PumFnqbXdH5teq8nwEwJqBzgfEVKDYAW8Ae8NZq3ZUm4Aa4AnaBR+C8BUIVAIu/ngSfAs9LESoAWLgB/LzWwP7SeLtfHWAu3tZ9Adz/dwD3eOUJCIlXBQiLVwQIjVcDCI9XAkiJVwFIi1cASI3PBpjb3jbd5GyyUcraCUrEZ02ATHwGgFR8NIBcfCSAZHwUgGx8BIB0vDeAfLwnQIl4L4Ay8R4ApeJbA2wD78DOZA/e7ABzk739Xz/T8rfAIfA6WYCd3BqA7NUSwCKfgLNKCK0BjoC7rzP74yoIrQGsuxSCB0ApBC+AMgieACUQvAHkESIApBGiAGQRIgEkEaIB5BAyAKQQsgBkEDIBJBCyAdIRFABSEVQA0hCUAFIQ1ADCERQBQhFUAcIQlAFCENQBfkOwg9eXpeftFQDmEOzv8ifARy8A3wiXwAHwANwujbf7q0xAi9bZZwwAN9oiDx4TUORFuS2z+wn4BAiAaEHnKChjAAAAAElFTkSuQmCC";const hr=t=>{const{rec:e,index:i,list:n,reportTagsView:l,textStyles:o,space:r}=t,{swiperRef:s,setRtcList:a,setOpenHashtag:u,bffEventReport:d,sxpParameter:f}=Pe(),[v,h]=W(!1),w=re(null),T=re(null),C=re(null),p=re(null),[x,y]=W(""),A=ne(()=>{var S,c,E,b,I,D,P,N,F,_;return!((S=e?.video)===null||S===void 0)&&S.cover?(c=e?.video)===null||c===void 0?void 0:c.cover:!((b=(E=e?.video)===null||E===void 0?void 0:E.imgUrls)===null||b===void 0)&&b.length?(D=(I=e?.video)===null||I===void 0?void 0:I.imgUrls)===null||D===void 0?void 0:D[0]:!((N=(P=e?.product)===null||P===void 0?void 0:P.homePage)===null||N===void 0)&&N.length?(_=(F=e?.product)===null||F===void 0?void 0:F.homePage)===null||_===void 0?void 0:_[0]:f?.bottom_image||""},[e,f?.bottom_image]),k=ne(()=>{var S,c;return((S=e?.product)===null||S===void 0?void 0:S.title)||((c=e?.video)===null||c===void 0?void 0:c.title)||null},[e]),g=ne(()=>{var S,c,E,b,I,D,P,N,F;return!((S=e?.product)===null||S===void 0)&&S.currency&&(!((c=e?.product)===null||c===void 0)&&c.price)?`${(D=(I=(b=(E=e?.product)===null||E===void 0?void 0:E.currency)===null||b===void 0?void 0:b.split("-")[1])===null||I===void 0?void 0:I.toUpperCase())!==null&&D!==void 0?D:""}${(F=(N=(P=e?.product)===null||P===void 0?void 0:P.price)===null||N===void 0?void 0:N.toLocaleString("zh",{minimumFractionDigits:0}))!==null&&F!==void 0?F:""}`:null},[e]);se(()=>{const S=new IntersectionObserver(c=>{c.forEach(E=>{if(E.isIntersecting){if(T.current===null||A==="")return;v&&x?w.current.setSrc(x):w.current.setSrc(A),S.unobserve(T.current)}})});return S.observe(T.current),()=>{S.disconnect()}},[A,v,x]);const L=(S,c,E)=>{const b=S/c;return E/b};se(()=>{const S=C?.current;S===null||A===""||!v||(S.src=A,S.currentTime=1,S.crossOrigin="anonymous",S.onloadeddata=()=>{const c=p?.current;if(!c)return;const E=c.getContext("2d"),b=window?.innerWidth/2,I=L(S.videoWidth,S.videoHeight,b);c.height=I,c.width=b,E?.drawImage(S,0,0,c.width,c.height),y(c.toDataURL()),S.remove(),c.remove()})},[A,v]);const M=()=>{l(),a?.(n),setTimeout(()=>{var S;(S=s?.current)===null||S===void 0||S.swiper.slideTo(i,0,!1),u?.(!1)},0)};return m.createElement("div",{ref:T,className:"list-content-listItem",key:i,onClick:M,style:{marginBottom:r}},m.createElement("div",{className:"list-content-listItem-picture"},v&&m.createElement("div",{style:{display:"none"}},m.createElement("video",{ref:C,crossOrigin:"anonymous",className:"list-content-listItem-picture-img"}),m.createElement("canvas",{ref:p})),m.createElement(lt,{loading:"lazy",className:"list-content-listItem-picture-img",ref:w})),m.createElement("div",{className:"list-content-listItem-info"},m.createElement("div",{className:`list-content-listItem-info-title ${g?"list-content-listItem-info-nowrap":""}`,style:o?.title,dangerouslySetInnerHTML:{__html:fe(k,o?.title)}}),m.createElement("div",{className:"list-content-listItem-info-price",style:o?.price,hidden:!g,dangerouslySetInnerHTML:{__html:fe(g,o?.price)}})))};function gr(t){var e,i,n,l,o,r,s,a,u,d,f,v,h,w,T,C,p,{reportTagsView:x,showBanner:y}=t,A=Je(t,["reportTagsView","showBanner"]);const{waterFallData:k,getRecommendVideos:g,hashTagSize:L,loadingImage:M,isOpenHashTag:S}=Pe(),[c,E]=W(),[b,I]=W(),[D,P]=W(!1),N=re(null),[F,_]=W(!1);ue(()=>{F||(_(!0),k&&g?.({hashTag:k?.hashTag,"itemFilter.itemId":k?.itemId,"itemFilter.itemType":k?.itemType}).then(B=>{var j;E(c?.concat((j=B?.recList)!==null&&j!==void 0?j:[])),_(!1)}))},[k,g,c,F]),se(()=>{var B,j;if(P(!0),k&&g?.({hashTag:k?.hashTag,"itemFilter.itemId":k?.itemId,"itemFilter.itemType":k?.itemType,defaultSize:L,maxSize:L}).then(q=>{var H,Z;I(q),E((Z=(H=q?.recList)===null||H===void 0?void 0:H.filter(le=>le?.video!==null||le?.product!==null))!==null&&Z!==void 0?Z:[]),P(!1)}),S){const q=xn;I(q),E((j=(B=q?.recList)===null||B===void 0?void 0:B.filter(H=>H?.video!==null||H?.product!==null))!==null&&j!==void 0?j:[]),P(!1)}},[k,g,L,S]);const R=()=>{var B,j;!((B=b?.tag)===null||B===void 0)&&B.link&&(x(),window.location.href=window.getJointUtmLink((j=b?.tag)===null||j===void 0?void 0:j.link))};return m.createElement(m.Fragment,null,D?m.createElement("div",{style:{height:"100%",width:"100%",display:"flex",justifyContent:"center",alignItems:"center"}},m.createElement("img",{width:64,height:64,src:M,alt:"loading...",style:{objectFit:"contain"}})):m.createElement("div",{className:"list"},m.createElement("div",{className:"list-scroll",ref:N},y&&((e=b?.tag)===null||e===void 0?void 0:e.picture)&&m.createElement("div",{onClick:R},m.createElement(lt,{className:xe({width:"100%",objectFit:"cover",marginBottom:"20px"}),src:(i=b?.tag)===null||i===void 0?void 0:i.picture})),m.createElement("div",{className:"list-info",style:(n=A?.textStyles)===null||n===void 0?void 0:n.hashTagDesc,dangerouslySetInnerHTML:{__html:fe((l=b?.tag)===null||l===void 0?void 0:l.info,(o=A?.textStyles)===null||o===void 0?void 0:o.hashTagDesc)}}),m.createElement("div",{hidden:!(!((r=b?.tag)===null||r===void 0)&&r.link),className:"list-collection",onClick:R,style:Object.assign(Object.assign({},(s=A?.textStyles)===null||s===void 0?void 0:s.hashTagLink),{marginBottom:A?.space}),dangerouslySetInnerHTML:{__html:fe(((a=b?.tag)===null||a===void 0?void 0:a.linkTitle)||"Shop the collection",(u=A?.textStyles)===null||u===void 0?void 0:u.hashTagLink)}}),m.createElement("div",{className:"list-content"},c?.map((B,j)=>m.createElement(hr,Object.assign({key:j,index:j,rec:B,list:c,reportTagsView:x},A)))),m.createElement("div",{hidden:!F,style:{textAlign:"center"}},"loading..."),m.createElement("div",{hidden:!(!((d=b?.tag)===null||d===void 0)&&d.link),style:{height:!((f=b?.tag)===null||f===void 0)&&f.link?((v=A?.buttonBgStyle)===null||v===void 0?void 0:v.height)||((h=A?.buttonStyle)===null||h===void 0?void 0:h.height)||"100px":0}})),m.createElement("div",{className:"list-bottom",hidden:!(!((w=b?.tag)===null||w===void 0)&&w.link),style:A?.buttonBgStyle}),m.createElement("div",{hidden:!(!((T=b?.tag)===null||T===void 0)&&T.link),className:"list-btn-wrap",style:Object.assign(Object.assign({},A?.buttonBgStyle),{height:"auto",backgroundColor:"transparent"})},m.createElement("button",{"aria-label":((C=b?.tag)===null||C===void 0?void 0:C.linkTitle)||"Shop the collection",className:"list-btn",style:A?.buttonStyle,onClick:R,dangerouslySetInnerHTML:{__html:fe(((p=b?.tag)===null||p===void 0?void 0:p.linkTitle)||"Shop the collection",A?.buttonStyle)}}))))}const br=t=>{var e;const{waterFallData:i,setOpenHashtag:n,openHashtag:l,swiperRef:o,setWaterFallData:r,cacheRtcList:s,setRtcList:a,cacheActiveIndex:u,rtcList:d,setCacheRtcList:f,setIsFromHashtag:v,isFromHashtag:h,bffEventReport:w,themeTag:T,selectTag:C}=Pe(),{backMainFeed:p}=$e();re(null);const x=re(null),[y,A]=W();se(()=>{const S=document.getElementById("sxp-render"),c=document.getElementById("water-fall");c?x.current=c:(x.current=document.createElement("div"),x.current.setAttribute("id","water-fall"),S?.appendChild(x.current))},[]);const k=()=>{const S=Pi(d,s);!S&&s&&s?.length&&a?.(s),p("branch",C,void 0,i?.hashTag),M(),r?.(void 0),v?.(!1),setTimeout(()=>{var c,E;S||(E=(c=o?.current)===null||c===void 0?void 0:c.swiper)===null||E===void 0||E.slideTo(u,0,!1),n?.(!1)},0)},[g,L]=W();se(()=>{i&&L(i)},[i]);const M=ue(()=>{var S,c,E,b,I,D;const P=g?.rec;if(!P)return;let N="";h?N="hashTagPage":!((S=P?.video)===null||S===void 0)&&S.url?N="videoPage":!((E=(c=P?.video)===null||c===void 0?void 0:c.imgUrls)===null||E===void 0)&&E.length&&(N="imagePage"),w?.({eventInfo:{contentId:(b=P?.video)===null||b===void 0?void 0:b.itemId,position:u+"",contentTags:JSON.stringify((I=P?.video)===null||I===void 0?void 0:I.tags),traceInfo:(D=P?.video)===null||D===void 0?void 0:D.traceInfo,hashTags:JSON.stringify([g?.hashTag]),fromKName:N,fromKPage:location?.href,timeOnSite:Math.floor((new Date-y)/1e3)+"",eventSubject:"clickTagsViewContents",eventDescription:"User click tags view contents"}})},[g,w,y,h,u]);return se(()=>{l&&A(new Date)},[l]),se(()=>{const S=()=>{A(new Date)};return window.addEventListener("pageshow",S),()=>{window.removeEventListener("pageshow",S)}},[]),x.current?Mi.createPortal(m.createElement("div",{className:"waterfall",style:{display:l?"block":"none"}},m.createElement(Tn,{icon:fr,styles:{top:"32px"},textStyle:(e=t?.textStyles)===null||e===void 0?void 0:e.hashTagTitle,onClose:k}),t?.openFixedSize===!0||t?.openFixedSize===void 0?m.createElement(gr,Object.assign({reportTagsView:M},t)):m.createElement(mr,Object.assign({reportTagsView:M},t))),x.current):null};var An=Ie(br);const yr=t=>m.createElement(An,Object.assign({},t));var wr=Ie(yr);const Sr=et(wr,{displayName:"",icon:"",category:"base",type:"HashTag",related:{settingRender:or,bindableProps:[]},defaulSetting:{props:{lineClamp:1,space:40,textStyles:{hashTagTitle:{fontSize:16,color:"#000",textAlign:"center"},hashTagDesc:{fontSize:12,textAlign:"center",color:"#000"},hashTagLink:{textAlign:"center",color:"#757575",fontSize:12,textDecoration:"underline"},title:{fontSize:12,color:"#000"},price:{fontSize:12,fontWeight:"bold",color:"#000"}},buttonStyle:{backgroundColor:"#000",fontSize:12,height:52,fontWeight:"bold",textAlign:"center",color:"#fff",borderRadius:25},buttonBgStyle:{backgroundColor:"#fff",height:52,paddingTop:20,paddingLeft:20,paddingRight:20,paddingBottom:20}}},w:100,h:40,sort:2});var Tr=[{title:"\u534F\u8BAE\u8BE6\u60C5",child:[{type:"Switch",label:"\u5FC5\u987B\u540C\u610F\u7528\u6237\u534F\u8BAE",name:["props","privacy_necessity"],extra:"\u5F53\u65B0\u7528\u6237\u8FDB\u5165\u9875\u9762\u65F6\uFF0C\u4F1A\u51FA\u73B0\u7528\u6237\u534F\u8BAE\u5F39\u7A97\uFF0C\u7528\u6237\u9700\u8981\u5148\u540C\u610F\u534F\u8BAE\u540E\u624D\u80FD\u8BBF\u95EE\u5185\u5BB9\u3002"},{type:"Text",label:"\u5F39\u7A97\u6807\u9898",name:["props","privacy_title"]},{type:"TextArea",label:"\u7528\u6237\u534F\u8BAE\u5F39\u7A97\u5185\u5BB9",name:["props","privacy_context"]},{type:"Group",label:"\u9690\u79C1\u653F\u7B56",child:[{type:"Text",name:["props","privacy_policy_title"]},{type:"Text",name:["props","privacy_policy_url"],addonBefore:"https://"}],extra:"\u5F53\u7528\u6237\u70B9\u51FB\u66F4\u591A\u4FE1\u606F\u6309\u94AE\u65F6\uFF0C\u5C06\u4F1A\u8DF3\u8F6C\u81F3\u8BBE\u7F6E\u7684\u94FE\u63A5\u67E5\u770B\u653F\u7B56\u5185\u5BB9"}]}];const En=t=>m.createElement(En,Object.assign({},t));var xr=Ie(En);const Ar=et(xr,{displayName:"Consent",icon:"",category:"base",type:"Consent",related:{settingRender:Tr},defaulSetting:{props:{},style:{}},w:100,h:40,sort:1});var Er=[{title:"\u4E3B\u9898\u6837\u5F0F",child:[{type:"Group",label:"\u5C3A\u5BF8",child:[{type:"Number",name:["style","width"],addonAfter:"W"},{type:"Number",name:["style","height"],addonAfter:"H"}]},{type:"Group",label:"\u5706\u89D2",child:[{type:"Slider",name:["style","borderRadius"],max:100},{type:"Number",name:["style","borderRadius"],addonAfter:"px",max:100}]},{type:"Color",label:"\u80CC\u666F\u8272",name:["style","backgroundColor"]},{type:"TextMargin",name:["style"],label:"\u4E0A\u4E0B\u8FB9\u8DDD",direction:"vertical"},{type:"TextPadding",name:["style"],label:"\u5185\u8FB9\u8DDD",direction:"horizontal"}]},{title:"CTA\u6807\u9898",child:[{type:"Group",label:"\u5B57\u4F53",child:[{type:"Select",name:["props","ctaTempStyles","ctaTitle","fontFamily-cn"],bottomText:"\u4E2D\u6587\u5B57\u4F53"},{type:"Select",name:["props","ctaTempStyles","ctaTitle","fontFamily-en"],bottomText:"\u82F1\u6587/\u5176\u4ED6\u5B57\u4F53"}]},{type:"Group",label:"",child:[{type:"Color",name:["props","ctaTempStyles","ctaTitle","color"]},{type:"Number",addonAfter:"px",name:["props","ctaTempStyles","ctaTitle","fontSize"]}]},{label:"\u6837\u5F0F",type:"TextStyle",name:["props","ctaTempStyles","ctaTitle"]},{label:"\u5BF9\u9F50",type:"TextAlign",name:["props","ctaTempStyles","ctaTitle"]},{type:"TextSpace",name:["props","ctaTempStyles","ctaTitle"]}]}],Cn={"animated-button":"index-module_animated-button__lqTbg",gradientCover:"index-module_gradientCover__5iUag","one-line-ellipsis":"index-module_one-line-ellipsis__HutE0","two-line-ellipsis":"index-module_two-line-ellipsis__c8gRJ"};const Cr=t=>{var e,i,n,l,o,r,s,a,u,d,{style:f,recData:v,ctaTempStyles:h,index:w,event:T,onClick:C,isExternalLink:p=!1}=t,x=Je(t,["style","recData","ctaTempStyles","index","event","onClick","isExternalLink"]);const{ctaEvent:y,setPopupDetailData:A}=Pe(),{jumpToWeb:k}=$e(),[g,L]=W(!1),M=re(null),S=wn(M),c=((n=(i=(e=v?.video)===null||e===void 0?void 0:e.bindProducts)===null||i===void 0?void 0:i[0])===null||n===void 0?void 0:n.bindCta)||((o=(l=v?.video)===null||l===void 0?void 0:l.bindProduct)===null||o===void 0?void 0:o.bindCta)||((r=v?.video)===null||r===void 0?void 0:r.bindCta),E=((a=(s=v?.video)===null||s===void 0?void 0:s.bindProducts)===null||a===void 0?void 0:a[0])||((u=v?.video)===null||u===void 0?void 0:u.bindProduct),b=()=>{var N,F,_,R;const B=((F=(N=v?.video)===null||N===void 0?void 0:N.bindProducts)===null||F===void 0?void 0:F[0])||((_=v?.video)===null||_===void 0?void 0:_.bindProduct)||v?.video;if(y?.({eventSubject:"clickCta",eventDescription:"User clicked the CTA"},v,B,w),A?.(Object.assign(Object.assign({},v),{index:w})),p){const j=E?.link||((R=B?.bindCta)===null||R===void 0?void 0:R.link);j&&(k(v,E,c,w),window.location.href=window.getJointUtmLink(j))}else C?.()},I=c?.enTitle||"\u67E5\u770B\u8BE6\u60C5",D=ne(()=>{var N,F;const _=T?.animation;if(_){const{delay:R,duration:B,backgroundColor:j}=_;return{":after":{animationDelay:`${(N=R/1e3)!==null&&N!==void 0?N:0}s`,animationDuration:`${(F=B/1e3)!==null&&F!==void 0?F:0}s`,backgroundColor:`${j??"transparent"}`}}}},[T?.animation]);se(()=>{var N,F,_;S&&M?.current&&y?.({eventSubject:"ctaExposure",eventDescription:"The cta was shown to the user"},v,((F=(N=v?.video)===null||N===void 0?void 0:N.bindProducts)===null||F===void 0?void 0:F[0])||((_=v?.video)===null||_===void 0?void 0:_.bindProduct)||v?.video,w)},[S]),se(()=>{L(!!S)},[S]);const P=ne(()=>g?Cn["animated-button"]:null,[g]);return m.createElement("div",Object.assign({ref:M,style:Object.assign(Object.assign(Object.assign({},f),h?.ctaTitle),{lineHeight:`${(d=f?.height)!==null&&d!==void 0?d:0}px`})},x,{className:`${P} ${xe(D)} ${Cn["one-line-ellipsis"]}`,onClick:b,dangerouslySetInnerHTML:{__html:fe(I,h?.ctaTitle)}}))};var Ir=Ie(Cr),kr=[{title:"\u70B9\u51FB\u4E8B\u4EF6",child:[{type:"link",name:"onClick"}]},{title:"\u52A8\u753B\u6548\u679C",child:[{type:"Color",name:["animation","backgroundColor"],label:"\u52A8\u753B\u989C\u8272"},{type:"Select",name:["animation","name"],label:"\u52A8\u753B",options:[{label:"\u9ED8\u8BA4",value:1}],fieldProps:{style:{width:"100%"}}},{type:"Number",label:"\u52A8\u753B\u542F\u52A8\u65F6\u95F4",name:["animation","delay"],addonAfter:"ms"},{type:"Number",label:"\u52A8\u753B\u6301\u7EED\u65F6\u95F4",name:["animation","duration"],addonAfter:"ms"}]}];const _r=et(Ir,{displayName:"\u7EAF\u8272\u52A8\u6548CTA",icon:"",category:"cta",type:"AniLink",related:{settingRender:Er,bindableProps:[],interactionRender:kr},defaulSetting:{props:{ctaTempStyles:{ctaTitle:{fontSize:15,color:"#fff",textAlign:"center"}},event:{animation:{backgroundColor:"#F40082",name:1,delay:1e3,duration:2e3}}},style:{width:236,height:44,borderRadius:3,backgroundColor:"rgba(0,0,0,.3)",paddingLeft:7,paddingRight:7}},w:100,h:40,sort:1});var Pr=[{title:"\u4E3B\u9898\u6837\u5F0F",child:[{type:"Group",label:"\u5C3A\u5BF8",child:[{type:"Number",name:["style","width"],addonAfter:"W"},{type:"Number",name:["style","height"],addonAfter:"H"}]},{type:"Group",label:"\u5706\u89D2",child:[{type:"Slider",name:["style","borderRadius"],max:100},{type:"Number",name:["style","borderRadius"],addonAfter:"px",max:100}]},{type:"Color",label:"\u80CC\u666F\u8272",name:["style","backgroundColor"]},{label:"\u5916\u8FB9\u8DDD",type:"Number",name:["style","margin"],addonAfter:"px"},{label:"\u5185\u8FB9\u8DDD",type:"Number",name:["style","padding"],addonAfter:"px"}]},{title:"\u5546\u54C1\u56FE\u7247",child:[{type:"Group",label:"\u5C3A\u5BF8",child:[{type:"Number",name:["props","ctaTempStyles","img","width"],addonAfter:"W"},{type:"Number",name:["props","ctaTempStyles","img","height"],addonAfter:"H"}]},{type:"Group",label:"\u5706\u89D2",child:[{type:"Slider",name:["props","ctaTempStyles","img","borderRadius"],max:100},{type:"Number",name:["props","ctaTempStyles","img","borderRadius"],addonAfter:"px",max:100}]},{type:"Number",label:"\u4E0E\u4E0B\u8FB9\u8FB9\u8DDD",addonAfter:"px",name:["props","ctaTempStyles","img","marginBottom"]},{label:"\u5C45\u4E2D\u5782\u76F4\u504F\u79FB",type:"Number",name:["props","translateY"],min:-1e3,addonAfter:"%",initialValue:0}]},{title:"\u5546\u54C1\u6807\u9898\u6587\u672C",type:"commodityTitle",child:[{type:"Group",label:"\u5B57\u4F53",child:[{type:"Select",name:["props","ctaTempStyles","title","fontFamily-cn"],bottomText:"\u4E2D\u6587\u5B57\u4F53"},{type:"Select",name:["props","ctaTempStyles","title","fontFamily-en"],bottomText:"\u82F1\u6587/\u5176\u4ED6\u5B57\u4F53"}]},{type:"Group",label:"",child:[{type:"Color",name:["props","ctaTempStyles","title","color"]},{type:"Number",addonAfter:"px",name:["props","ctaTempStyles","title","fontSize"]}]},{label:"\u6837\u5F0F",type:"TextStyle",name:["props","ctaTempStyles","title"]},{label:"\u5BF9\u9F50",type:"TextAlign",name:["props","ctaTempStyles","title"]},{label:"\u95F4\u8DDD",type:"TextSpace",name:["props","ctaTempStyles","title"]}]},{title:"CTA\u6807\u9898",child:[{type:"Group",label:"\u5C3A\u5BF8",child:[{type:"Number",name:["props","ctaTempStyles","ctaTitle","width"],addonAfter:"W"},{type:"Number",name:["props","ctaTempStyles","ctaTitle","height"],addonAfter:"H"}]},{type:"Group",label:"\u5706\u89D2",child:[{type:"Slider",name:["props","ctaTempStyles","ctaTitle","borderRadius"],max:100},{type:"Number",name:["props","ctaTempStyles","ctaTitle","borderRadius"],addonAfter:"px",max:100}]},{type:"TextSpace",name:["props","ctaTempStyles","ctaTitle"]},{type:"Color",label:"\u80CC\u666F\u8272",name:["props","ctaTempStyles","ctaTitle","backgroundColor"]},{type:"Group",label:"\u5B57\u4F53",child:[{type:"Select",name:["props","ctaTempStyles","ctaTitle","fontFamily-cn"],bottomText:"\u4E2D\u6587\u5B57\u4F53"},{type:"Select",name:["props","ctaTempStyles","ctaTitle","fontFamily-en"],bottomText:"\u82F1\u6587/\u5176\u4ED6\u5B57\u4F53"}]},{type:"Group",label:"",child:[{type:"Color",name:["props","ctaTempStyles","ctaTitle","color"]},{type:"Number",addonAfter:"px",name:["props","ctaTempStyles","ctaTitle","fontSize"]}]},{label:"\u6837\u5F0F",type:"TextStyle",name:["props","ctaTempStyles","ctaTitle"]},{label:"\u5BF9\u9F50",type:"TextAlign",name:["props","ctaTempStyles","ctaTitle"]}]}],Ot={aniLinkPopup:"index-module_aniLinkPopup__YT7kj","animated-fadeIn":"index-module_animated-fadeIn__8ZCbq",fadeIn:"index-module_fadeIn__2E-dk","animated-fadeOut":"index-module_animated-fadeOut__iK4oc",fadeOut:"index-module_fadeOut__MgevT","one-line-ellipsis":"index-module_one-line-ellipsis__NRiVV","two-line-ellipsis":"index-module_two-line-ellipsis__k-YGB","modal-icon-wrapper":"index-module_modal-icon-wrapper__tu3BY","modal-icon-wrapper-img":"index-module_modal-icon-wrapper-img__4b7qZ"};const Dr="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAjhJREFUWEfFlztOw0AQhmeWiJ4CCmpQ5DiRQsIJyAWg5A0lR0AIChDiCJS8ER0cADgBeRSxt4CCDgkaKiq8i+zYeWx2413HEWmiJJv9v535Z2aN8M8vFPT9z3zETD0aAUChUJjwvPFHAJhBhB3Hqd6OAsK2yyucwykAvP38eJX398Z3AJDLlVYR8ToU9Rhj25TWr9KEsKy5dULIGQCMtfZly45TvwsAstm56UwG6wA4FUFwzrdctxZBDcWSy5XWEPG8I84/GcMipdWPtgcsaz5PCHtKG0IuTiqUvjT9U/WYMG2IOPE+AP+LtCB0xKUAAyA2Xbd2o2OG0NQXvTnvhL17D7EPtH9TRCIWwkRcGYGIQgYBABuqPuHXOQBc6pw80lBGwBQiiXhsBHQhkoprA6iM6acjhDQKu5YJZW6XeOI3XJdpvfsdTu52VfXEekD8owQiXGIubpSCbhDbLu8DwKEAd+A41SOdPpE4BS0viFOtvV2iKWqUgn5x/tmS70xR01GuDSCKc86/OCcLgTyyZ0ScDGNhFAktAJV4NFJ9YyaFiAWIE+9uVkkgBgLoig8DMWAa9ro9ynkUdlW5maZDCmB6clmz0k1HH4Cs1Ezbq2p2yEpUuBOKTSZZex00RUWIrltxuuK6EOGDSbGIOPZicpMx6fny650377qNRgBgWeVFQuA+6UjVgREhGIMlSqsPUQqIbZdOOIdZQmCv2axRnU1N1+TzJYsxOEaEV8ep7frPZ7Gd0FTEdP0ft0/kMNdg0eoAAAAASUVORK5CYII=",Or=t=>{var e,i,n,l,o,r,s,a,u,d,f,v,h,w,T,C,p,x,y,A,k,g,L,M,{style:S,recData:c,ctaTempStyles:E,index:b,event:I,bottom_image:D,translateY:P,isTel:N,onClick:F,isExternalLink:_=!1,isActive:R}=t,B=Je(t,["style","recData","ctaTempStyles","index","event","bottom_image","translateY","isTel","onClick","isExternalLink","isActive"]);S==null||delete S.transform;const{sxpParameter:j,globalConfig:q,ctaEvent:H,setPopupDetailData:Z}=Pe(),{jumpToWeb:le}=$e(),[be,me]=W(!0),Te=((n=(i=(e=c?.video)===null||e===void 0?void 0:e.bindProducts)===null||i===void 0?void 0:i[0])===null||n===void 0?void 0:n.bindCta)||((o=(l=c?.video)===null||l===void 0?void 0:l.bindProduct)===null||o===void 0?void 0:o.bindCta)||((r=c?.video)===null||r===void 0?void 0:r.bindCta),ye=((a=(s=c?.video)===null||s===void 0?void 0:s.bindProducts)===null||a===void 0?void 0:a[0])||((u=c?.video)===null||u===void 0?void 0:u.bindProduct),ee=()=>{var Q,z,$,V;const Ee=((z=(Q=c?.video)===null||Q===void 0?void 0:Q.bindProducts)===null||z===void 0?void 0:z[0])||(($=c?.video)===null||$===void 0?void 0:$.bindProduct)||c?.video;if(H?.({eventSubject:"clickCta",eventDescription:"User clicked the CTA"},c,Ee,b),Z?.(Object.assign(Object.assign({},c),{index:b})),_){const oe=ye?.link||((V=Ee?.bindCta)===null||V===void 0?void 0:V.link);oe&&(le(c,ye,Te,b),window.location.href=window.getJointUtmLink(oe))}else F?.()},G=Te?.enTitle||"\u67E5\u770B\u8BE6\u60C5",J=ne(()=>{const Q=I?.animation;if(Q){const{delay:z,duration:$}=Q;return{animationDelay:`${z?z/1e3:0}s`,animationDuration:`${$?$/1e3:0}s`}}},[I?.animation]),Ae=(w=(h=(v=(d=ye?.cover)!==null&&d!==void 0?d:(f=ye?.homePage)===null||f===void 0?void 0:f[0])!==null&&v!==void 0?v:Te?.icon)!==null&&h!==void 0?h:j?.bottom_image)!==null&&w!==void 0?w:D,pe=Q=>{Q.stopPropagation(),me(!1)};se(()=>{me(!0)},[R]);const he=ne(()=>R&&be?Ot["animated-fadeIn"]:null,[R,be]);return m.createElement(m.Fragment,null,N?m.createElement("div",{style:{height:"40px",lineHeight:"40px",paddingLeft:"6px"}},"Cta Title"):m.createElement("div",Object.assign({},B,{className:`${xe(Object.assign(Object.assign({},S),{"--transY":`translateY(calc(100% + ${(T=S?.margin)!==null&&T!==void 0?T:0}px))`}))} ${Ot.aniLinkPopup} ${he} ${xe(J)}`,onClick:ee}),m.createElement("div",{onClick:pe,className:Ot["modal-icon-wrapper"],style:{padding:(C=S?.padding)!==null&&C!==void 0?C:0}},m.createElement("img",{src:(p=q?.popupCloseIcon)!==null&&p!==void 0?p:Dr,alt:"close",className:Ot["modal-icon-wrapper-img"]})),m.createElement(St,{src:Ae,rec:c,item:(g=(A=(y=(x=c?.video)===null||x===void 0?void 0:x.bindProducts)===null||y===void 0?void 0:y[0])!==null&&A!==void 0?A:(k=c?.video)===null||k===void 0?void 0:k.bindProduct)!==null&&g!==void 0?g:c?.video,index:b,translateY:P,imgStyle:E?.img}),(!c||ye?.title)&&m.createElement("div",{className:Ot["one-line-ellipsis"],style:E?.title,dangerouslySetInnerHTML:{__html:fe((L=ye?.title)!==null&&L!==void 0?L:"Product Name",E?.title)}}),m.createElement("div",{className:Ot["one-line-ellipsis"],style:Object.assign(Object.assign({},E?.ctaTitle),{lineHeight:((M=E?.ctaTitle)===null||M===void 0?void 0:M.height)+"px"}),dangerouslySetInnerHTML:{__html:fe(G,E?.ctaTitle)}})))};var Mr=Ie(Or),Lr=[{title:"\u70B9\u51FB\u4E8B\u4EF6",child:[{type:"link",name:"onClick"}]},{title:"\u52A8\u753B\u6548\u679C",child:[{type:"Select",name:["animation","name"],label:"\u52A8\u753B",options:[{label:"\u9ED8\u8BA4",value:1}],fieldProps:{style:{width:"100%"}}},{type:"Number",label:"\u52A8\u753B\u542F\u52A8\u65F6\u95F4",name:["animation","delay"],addonAfter:"ms"},{type:"Number",label:"\u52A8\u753B\u6301\u7EED\u65F6\u95F4",name:["animation","duration"],addonAfter:"ms"}]}];const Rr=et(Mr,{displayName:"\u7AD6\u7248\u5F39\u7A97CTA",icon:"",category:"cta",type:"AniLinkPopup",related:{settingRender:Pr,bindableProps:[],interactionRender:Lr},defaulSetting:{props:{ctaTempStyles:{img:{borderRadius:3,width:108,height:108,marginBottom:0},title:{fontSize:14,color:"#000",textAlign:"left",lineHeight:2.6},ctaTitle:{width:108,height:22,fontSize:12,color:"#fff",textAlign:"center",backgroundColor:"rgba(0,0,0,1)"}},event:{animation:{name:1,delay:1e3,duration:2e3}}},style:{width:120,height:185,borderRadius:3,backgroundColor:"rgba(255,255,255,1)",padding:7,margin:15}},w:100,h:40,sort:2});var Ci=Object.freeze({__proto__:null,AniLink:_r,AniLinkPopup:Rr,Appoint:ka,AppointForm:vo,Commodity:Aa,CommodityDetail:ta,CommodityDetailDiroNew:pa,CommodityDiro:Ba,CommodityDiroNew:Ha,CommodityList:ba,Consent:Ar,HashTag:Sr,Link:Oa,MultiCommodity:Za,MultiCommodityDiro:Xa,MultiCommodityDiroNew:nr,Prompt:ra});const Nr="/pb_static/f71266d2c64446c5ae6a5a7f5489cc0a.png",Br="/pb_static/f07900fe3f0f4ae188ea1611d4801a44.png",Fr=t=>{var e,{active:i,activeIcon:n,unActicveIcon:l,recData:o,position:r}=t,s=Je(t,["active","activeIcon","unActicveIcon","recData","position"]);const{mutateLike:a,mutateUnlike:u,bffEventReport:d,setCacheRtcList:f,cacheRtcList:v}=Pe(),[h,w]=W((e=v?.[r])===null||e===void 0?void 0:e.isCollected),T=ct(Br),C=ct(Nr),p=li(()=>nt(void 0,void 0,void 0,function*(){var x,y,A,k,g,L,M,S,c,E,b,I,D,P,N,F,_,R,B,j,q,H;if(h){w(!1);const Z=(A=yield u?.({videoItemId:(y=(x=o?.video)===null||x===void 0?void 0:x.itemId)!==null&&y!==void 0?y:""}))!==null&&A!==void 0?A:!1;if(d?.({eventInfo:{eventSubject:"favoriteContentCanceled",eventDescription:"This content was unfavorite by the user",contentId:(g=(k=o?.video)===null||k===void 0?void 0:k.itemId)!==null&&g!==void 0?g:"",contentName:(M=(L=o?.video)===null||L===void 0?void 0:L.title)!==null&&M!==void 0?M:"",contentTags:JSON.stringify((c=(S=o?.video)===null||S===void 0?void 0:S.tags)!==null&&c!==void 0?c:[]),position:r+"",contentFormat:!((E=o?.video)===null||E===void 0)&&E.url?"video":"image",traceInfo:(b=o?.video)===null||b===void 0?void 0:b.traceInfo}}),!Z)w(!0);else{const le=(I=v?.map((be,me)=>(me===r&&(be.isCollected=!1),be)))!==null&&I!==void 0?I:[];f?.(le)}}else{w(!0);const Z=(D=yield a?.({content:JSON.stringify(o)}))!==null&&D!==void 0?D:!1;if(d?.({eventInfo:{eventSubject:"favoriteContent",eventDescription:"This content was favorite by the user",contentId:(N=(P=o?.video)===null||P===void 0?void 0:P.itemId)!==null&&N!==void 0?N:"",contentName:(_=(F=o?.video)===null||F===void 0?void 0:F.title)!==null&&_!==void 0?_:"",contentTags:JSON.stringify((B=(R=o?.video)===null||R===void 0?void 0:R.tags)!==null&&B!==void 0?B:[]),position:r+"",contentFormat:!((j=o?.video)===null||j===void 0)&&j.url?"video":"image",traceInfo:(q=o?.video)===null||q===void 0?void 0:q.traceInfo}}),!Z)w(!1);else{const le=(H=v?.map((be,me)=>(me===r&&(be.isCollected=!0),be)))!==null&&H!==void 0?H:[];f?.(le)}}}),200);return m.createElement("button",Object.assign({},s,{"aria-label":"like",onClick:p}),m.createElement("img",{style:{width:"100%",height:"100%",objectFit:"contain"},src:h?n||T:l||C,alt:"icon"}))};var In=Ie(Fr),jr="data:image/gif;base64,R0lGODlhlgCWAPf/AAAAAICAgMzMzMzMzNXV1dXV1dXV1dfX19jOztjY2NvOztvb29zc3N/Pz9/V1d/f3+Pj4+bm5ubm5ujR0ejg4Ojo6Onp6erj4+rj4+rl5evr6+vr6+3k5O3t7e3t7e7u7u7u7u/v7/Dw8PDw8PHx8fHx8fHx8fLs7PLu7vLu7vLy8vPu7vPz8/Tp6fTx8fTx8fT09PT09PT09PXw8Pbx8fbz8/b29vb29vb29vb29vb29vf09Pf39/f39/f39/f39/f39/f39/f39/f39/f39/j09Pj09Pj19fj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pn29vn39/n5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fr09Pr4+Pr6+vr6+vr6+vr6+vr6+vr6+vr6+vr6+vr6+vr6+vr6+vv39/v39/v4+Pv5+fv5+fv6+vv7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/z4+Pz5+fz5+fz5+fz6+vz6+vz6+vz6+vz8/Pz8/Pz8/Pz8/Pz8/Pz8/Pz8/Pz8/Pz8/Pz8/Pz8/Pz8/Pz8/Pz8/Pz8/Pz8/Pz8/P36+v36+v36+v37+/37+/37+/37+/38/P38/P38/P38/P39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f78/P78/P78/P78/P7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v/V1f/39//4+P/6+v/7+//8/P/8/P/9/f/9/f/9/f/9/f/+/v/+/v/+/v/+/v///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////wD/ACH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAwBLACxFABcADwAMAIYAAACAgIDMzMzV1dXX19fYzs7Y2Njbzs7b29vc3Nzfz8/f1dXf39/j4+Pm5ubo0dHo4ODo6Ojp6enq4+Pq5eXr6+vt5OTt7e3u7u7v7+/w8PDx8fHy7Ozy7u7y8vLz7u7z8/P06en08fH09PT18PD28fH28/P29vb39PT39/f49PT49fX4+Pj59vb59/f5+fn69PT6+Pj6+vr79/f7+Pj7+fn7+vr7+/v8+Pj8+fn8+vr8/Pz9+vr9+/v9/Pz9/f3+/Pz+/v7/1dX/9/f/+Pj/+vr/+/v//Pz//f3//v7///8A/wD///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8IUgCXCNzxI8gOJQV3CFy4RIkMJTccQnQYZCGShAgNZiS45MfDiB8lglzSQyPGk0FCqpwY8iBKlyZFyly5xKRNmAJrzGQJcWFJmDB1MBQ4MwnDgAAAIfkECQQA/wAsRwAXAA8ADAAACFMA/wkslAhcqWKJsLkRyPAfODfgujyM+LAYQ4QGMR4sWGrhRIkQQVJcyFGjyYJrRqoU2aXYxowlS7L8SBNiIZg4XwqcGfIjw5g5G/6zUROcDYYBAQAh+QQJAwD/ACxIABcAEAAMAAAIWwD/CfzXqVSxRNgSlRrIEAm4LuDcPIz4sBNDcAYTYTy4MVEigRMlQhRJsYvAjB1TGuxio6RLkhJDaURJk+PCkDhHTvxXc6bNgzxh5ow40E3Pjm4Y/lszNKnAgAAAIfkECQMA/wAsSgAXABEADQAACGUA/wn856YLtkSlBioceAScG3BdHEJ0uLBLsUTgSl3MuLFUooESIz4UOfHhvzYYNabs2PFflJIwSUZcU0olx5U4SyEJyXNkyH84bwotFepfzJ4TB7IMqrGLwlIyeUZZuNAjR4UBAQAh+QQJBAD/ACxMABcAEgAOAAAIaAD/CRTYpdTAgwgFgusCzs1CcGvAJfwXBVypYoksYtSYqNjBhw4Zhmy4kJvAUhczpuTIEds/kSBjwiy4caXNmhhH6pRJEiVOlT8t/iM5kyhRk0NvAgX6cWfRKBNLLdXYZiLCiEhCHQwIACH5BAkDAP8ALE4AGAATAA4AAAhkAP8JBOcGXBeCxQQqXCiwWCJwpRxClMhwYMGDFwka1Kgw1MOIHyWCnBjlX8aTG1H+mxiyJUuIwTCmnCkTo8ibLkeurKmR58V/I4PinCgQpc+UC0vlxFlR4RqaBJtWLBixjcKAAAAh+QQJAwD/ACxQABgAFQAQAAAIcwD/CfyHBJwbcAMTKhwIrlSxRA0fIlyYEFwXgxYxXjxI0Y1DiB8jgnyocGPGgyZTTvwnMaTLlhLd/EOpsSZNmlBE6nw5EiIXmyeDpvzXcyfMkSxV3hRqcGBRnjoXrmG6lAtFgU9bXk2IbWmXrRQTdSmVMCAAIfkECQQA/wAsUgAZABgAEQAACIIA/wksBK5UsUTgBCpcyFBgKTfguoCDKBFiw4sIDWY8WLBYoYsK10ScOJIiyS7cQHbcyHIluE4NK5acKVPmQo4aXebcWcyNQJNAaZ4kieRfKZ4tkXYUODRozaYJ/2FTSpUjzJBCnQ7FqBOn10QgpWoFGlZhoq8uyy7MGlXtQpY+BQYEACH5BAkDAP8ALFQAGQAaABUAAAiVAP8J/FeoTbGBCBMqHNgFnBtwDR8unCiwU7FE4EpdzFisEMWESBxCFBlxJJKP/zZqxLiSI8uPD0vKJClyosubLXMWc6NwZkyaP2MmVEmUZVGXCEP6HBmU6ciBOo1KxbkRodOlWMElnBqVaqKFQK+GpdjlaNdSKMU2bYhSYCmvSNv+4xK2pNyBcO8i5NZUr8I1iU4ODAgAIfkECQMA/wAsVgAaAB0AGAAACKMA/wnE1gWcG3ACEypcyDAhuFLFEj0sVqihxYXgCh7UmJEbkosNsUGUOHIiSZALOao0mJElSoERTcosCdENyo0sV+LcCHJmTJo/I17U2XJn0ZYWSQZVylRmw2JEo+ZE2PAg0KZXqYY0KnUjN5BdlvpsivJoV6QoS40dW+wlkqlcc74UuBboXLpxd96lm7XkXrxmWXL5y1dsKcIOuSJW6IZmwoAAACH5BAkEAP8ALFgAGwAgAB0AAAi8AP8JLASuVLFCAhMqXMhwYTA34LqAg9iFW8OLDd0kKlhso8GNnTCK/EdxYkSTEiGObMjRY8eWHN2sVJjyZMmbEWcKfPkRZs+POnHWHIoS3EpsP3kqdblxZVGhT086TcrU58ujULNGtLgy0VKrVXXaHEu0pM5/pcCqPYskalmpZ9VSPSvQrVu6/+Qq7YLXLs4ofalaxZtXa8pihPVulJnYMGLCBAUbbENY4NuUlRNW/Vgqc8K3nhW24YgwYUAAIfkECQMA/wAsWgAcACIAIwAACNMA//07ws0NuC7gBCpcyLChQzfFEoErFRFcJ4cYM9oAZxBhR44JM4oUWJGiRJMTi40U+bHlQZBIVjpMebKkzUQqZSr0+NIlT4Q6SdYcSrNo0DU9k/4ECVQnyqc3jer0ybTqx6A4iUIlGvSfUqtfu/4rVXQrzVJikYBdelVs2agmxQpcu1auV7Nb7dL1aRcbXpt2vVJ1Gfit1sCCv7YMXMiwVLtswwbWehOxYqWI4QIOjDCyx5x2/0p0Y3nwwVCI72pO/S8K3TWs/1FOFFug2o+wBQYEACH5BAkDAP8ALFwAHQAiACsAAAjpAP8J7FQsEbhOAhMqXMiwIbgu4Nw8jAiuocWLiUoVBKfRoEY3F0MmhCiR5MSSIkNu7MhxZcFiKRuWpGiyZsWYClt6dLnTIM6RNIPOnPnzH0+dSFkWPcnUJtGfR1lK3ZjoZ1OhV4v+K5U06katSLA6naj1X9eeSMuKXVsW21S0Hcv+4zb0Ksq2b7vKNVt37N6zSUv97St0r9m8LKvK5bL2qVy4PGHuHVvTsNedhs1SpmgY8crMhB3LBdxR8N4ojR9mhozZsF2mhhNd5gj6NcTMpAtm3iwxcynWtHFvzrzVK3GBoY8PdBlFYEAAIfkECQQA/wAsXQAeACIANQAACP8A/wn8B64LODfgBipcyLChwCjgShVLFLGYG4cYGyIpeJAjQiQZQwqsSFFiyYkiMxpEuNIjx5QNJ5KcaTIhzIGlWHZsydPmTYI1g8qs+fNfT51IC3IrerIpTZlFj7rsWbTUU6cmSxXdmFSqwaJAh4ptCpZg1507y169qvZsUihqhWItVtbsVLQI664NWteuV3Br6rbZKzNR3b8sl9adS1Yv4oJ9xz7ta/BxX7k0++K92zcsY7qHN/PszLhi57tJL0uu2amz25eaMZvsbPlyaa2UUXPs0lk2VM2vefe9Ddqx6IO9V//WG5w04dOIk5c+/ZpLZ8+Zr3PlfP3f4KCGuw8HDAXRhsKAAAAh+QQJAwD/ACxfAB8AIAA/AAAI/wD/CRRYyk2ogQgTKlwocA24LuDcPGRIcWEicKWKXcyYqKLHfw4hShT5sNRHhhg1ptyo8mTCYiRjRnwIzuVANyo5rtxpU+DImTJ/9typs2hLl0iAKv0p1CXLp0SPnkzKlGZViEONQuVYbOjVpROz5hz7tOc/sEHBQTEbdWtXtl+rmj2rlejcs3Gtzm3TlufctDG53XVbdq7VwzHvko16FyLgmXfrFr2LVulduou5Nq488jLhlJcRL70sWaWby3mxUi7dcXPey5lzXj77uAvp2IlMUs7LxXPfjKEfn46Mu+Zu0Z0H/35rWPjtz6FT+y4dvPKawayZ9xQOjofiz7rnph82bpg1Ze53cUJXLP1uUuqXa89uQ3g2waD2EfIFnjAgACH5BAkDAP8ALGEAIQAeAEgAAAj/AP8JdJMIXKlihQQqXMiwoUJubsB1ARdxosOLDEMVPLixWEGMICtSlDjSIsiGUQx6VNnx48mFJEXKJPlSoZuVHFnqrDkwps+JInnqzEl0pdCZQH+CE1q0JctiR5Ui5flvKM6riaiW3DqVKVarVKsi5bpUa9OhncKSTQo0bCGrTrNSZbu2LFWnTYOppduV6teiYf9N5Osz8FmigesGTXzYaNiUYysG/of36mSphcM23pg4Mk3Gfz1OJpx0cmjOgQfX7TJ5c6nLnpFMrrxRb2LSFFuftqvVM+vAtFVexu1Gd3DYmH+HDV7K9t66UYzDhfpYMTgegXe/Duybt1fat60bRd4tt3dyw8ypU+2uvGbEzeE9hy222WBY4hKXa3de07rJu3CplBBVaySX23KbYYMcYZNRFuB2o63VoEJ4TbgQDyNhh1FAAAAh+QQJBAD/ACxjACIAHABQAAAI/wD/CfzXaQ24JwMTKlyosFgicKUclmJIUSE4N+C6XMwIrmJFhxBBRnzokSFGjSc3aiyZUOPIkA9fshTIMaVNjjPdiNwZE2TOmkBR4iyJ7aVRnsVYqlx6s8tMmFCPJnralGnGp1KjJqUa1OrMf1p7xuz01apQlF/bhIU6deZZsx2/ig0brOzbpl//8dSaF+xdoHmzGs2LrWrKvmtHTvz692zfuUcRN96YN9Hel2TzGh5aVrDDvpMx9r0s0k1ejZOdBiadaHHZzarlJt5qF67p1ZB95rV9tfJsybb7eia5G/bj37tDVx4e1y3vKHlZQ+wLuzlW1sl5405cvOvJ6Ll7amP2XvMrxuG0S5IX+rUYc9clQ/dmaTl8yNfr53uUPpKrfJal2CcTS9VhBAVLhcwWE4H5fVeSgCKFUlIUDXJGERIK3qeefCsByF8xbfgX3EwQtvWUcnmtgV1f/xjG4kA6icViQAAAIfkECQMA/wAsWwAkACQAVgAACP8A/wkcSJAgODfguJQqyLChw4FuiiUCV0oiuIcYHSI5CK4LR48ZQw60WHFiyYsiMXJD6JHlR5QpGxaiSLLmxJgNO7506RJnwYgmbdJMVMwnQZ46kXYxOhDbyac2mQrcmbTqUqlDs0KVOlUpVa7/tAottVAqFKotk4JtIzboxERg08p9Cfaf27ZFuVpFW3dszboe5yKtC/VuWbBeXXKp2zYrYLQf69ptXFHy3sFgC2uVnFinZc0lJQuuKrmUYZKHpQaGfDWz35uMO7fmejqo5dEtS7+GqVe25No0b0N2oxu4Zd91gVdmjPtgctAS83KNMhxclL7KOV/2zBg6XLDb0xKT3v29d3jCyqVLle2c6xrKEoOBb44QbDHv4NQbpc+dKdH04LG3mFS7hYYVe/UxZRp8sDGFIDhQSJWeSeuFF5l/DFIkn1EPgmTUhMFxaKFiPi2IX0WF+FSdYDidGFVM/LGYElkFvihSKTHu1GKNQaWI04ovrfFhhhW1wdSIOg1olItgrXTeZ0J1ItlAX035UyKzTRkQACH5BAkDAP8ALE8AJgAwAFgAAAj/AP8JHEiwoEGDPMC5Adcl2MGHECMe7FQsEbhSFcFJ3MhxIBeFDEF20dix5ME1GTFaVFnKpMuB3BaOlCmS5MuSK1PqTFTsZsmQNIMy9NmRYs6jFysS5Sh0JlBwUZZKTIpUZVKpU5vWXIg1ItWvVkt16voQytanM8k+LAR2J7hEag86nVsz7sGqO3vaJYj2bJe9Bd2G1QtY4Ei6QgsPHFxVsUC/Nbk4/tcW6eQokGVO/oc35+a+iR0zBrtZK83Po1VuRvx0s+CULSeDDvl3cuqK2D6bHjq581XZrNPafm1R9+zajn1j/Bxc4ebbxWXvRq5YOWHFx507Lgb9OuDmC6Nus1deOjtq4sAz2ywM/a3045OJ/1Y8XTt26A6xg1+/l7v82IXtR91e7S2HXX0DxvWfUoWp51R1lX1FX3YLQVGYdSsVVp9mgGF4UX52bRgSYGwV6B1ZIo4kWVyleIhRIXY5uFVcPLnIYFfFCDhjVwuZeFRXMpomVYQ+EhVkdmv45CORxbThExJHNrfUgtZNmaJf3EhlY2NYUTibWm5QSdWJUqWYJWBMWgSXY5AlKBpua272T0AAACH5BAkEAP8ALEQAKAA7AFcAAAj/AP8JHEiwoMGDCAkiAecGHJeEECNKjFiqWCJwFS9O3MgRYReG4D42/NixJMeMGC2mTGSyZUSQIkPCdEnT4EWUOC3W3PlP5kiYIKPwpJnzpsqKQ10W+8nUJ7ikLVdKxQk1atOYIquWLDT1qEqWWjliBfozbEejaFcGM7vR6diRbDd6TYs07kS3ZJ/apTh36t6XV4E+/Juwa1rCCd+6RZyQrlfGCPE2hWywS1+qlAsGLpuZoOGVnQkqjhl64OWjpUr/+ziaoep/RaW+zov1tWOjs1u7eR0b5ezNIW1/rltask/epzWqpj1T9e2UuZnvLl2st8ViqnXrpf48tWrgJJdbuQcb2jjp0uPBke8sPTj34dhLg3cduuH45dpVp/femUv7LqUlkhx05c03WGYDZlSgeSCF1p1K9THYkFCZcbVfZ/PBldmDN3GTWYYybQgfbpSByBpkCXoVCmT/kcWYgByCRlgx2r1FmH0povVXi5vZNeKIZkXBo4Q0cYHNfjl21QZNJg45Vk0xIknXWkxKaOVoPP0opV881ehkg0klKaVWTYLnYVhHinmZj2XKtAZiWkKYGTdXFSNkaQEBACH5BAkDAP8ALDkAKgBGAFUAAAj/AP8JHEiwoMGDCBMifALODbgnCiNKnEhxYKJSxRKBw5ioosePE4t1aQhupMMuIFOqHMhxY0aXHVfKrEjSZEmSUWbqVJhIY8ufxXYKNRjl5smaJIcqFQjU58tSnZYORXq0qlSha2BqbRnz6kybYJF63em0LMxgY2caXQs27cyncJ26lTkybFVwc1c23Zp35d2wKPuC3BoXr+CPdtkeBmkW6OKPbKkafjxx70/KFf+KxTyRcFnOExPbBC2xVOOnpUgrrCvZpGqFll++Tti65myEp+XeNhjZ6u6CsTX+Llj75HCCuV0eH9jb6HKmhVs+/1e85PTkGKc3d738YvSMQZeL3ibJ4/l3n9M1H33uMPjz7UmXBwfXdXj1wMdNe1a+XP3NNf3tx9F74zm0XDHzpXZcgdYdl8h5/Nnn30hcHAfhgBLCZ+Bw2Mk23IQkQTFcIQI+9aGGDe7WoU9o7QbieiqWqNts9yGFn2r6JVhMKLfV6BuOF8Y1G4N2qdZekJ+B5mNvKxXylo65qZQVYBPxUMyLGqbkxooydhlbGyphSeSSYa3UhpdIojljSiiOKWZN2MwEpZpe7kTmnf4NdeacfAq5lJtt1ubVlnTOWZ9XgI4J4GEIprnXoZiVwppmWXEWEAAh+QQJAwD/ACwwACwATwBTAAAI/wD/CRxIsKDBgwgTKlTIbc3ChxAjSkxYqFSxROAs8pjIsaNHbF3AuQEXcuRGjyhTIrSIkWXGYipjxkQikmTNkuBk6ux48WXLnqV2Co04EqdRcA6HKkXos6nLREujEoxys2rRnFKz/tzqM1hWqTavigXH5atUoGh/mo0a8ujYtUtdygUKV6nVsDbL1hXqNC3WvTqpjjUKWCjXuYV34nX7N3HKuYcdyxxcVXLMvlstq2SMM4pmlKUOAw362eNiq6U9Qm6auuNdwq0nilYbW+JpsbUlrnaZO+Lrm70hzn4Z/OHtsMUX7u6ZXOHvos0TDrcYnSlnkdUNFlueCGZ2gtdNfvUn6FfueIKUr54XOJL7+n/Hcb7nDg7q+uck35dH+z69zaTjrYGZT+/FV9N6pdBH2njh5Xeegt6Nh19Ien2XyHQXPeiffONhiNF5G9YERYcDmvddiNBZWCJQXmWHok0qQpjdhFV1Ud1+ooVSHY24NdedhwTqJmAX3MBlYHoTBXPYgkq1hyNmE3Gz4VA83jZRG0Ay2VGCT7o30ZBVtgVRg2Rix9GKWXappmiFeFTmi28eCSNKa6JpJ4S0oQSFnHH2+VqRMeF5Z527CQVnmIiOtNSPg6bpoVlcJMrnb3ttR+ilGLkh2aSHappaMZ1gylp0bf1GlWUBAQAh+QQJBAD/ACwpAC8AVgBQAAAI/wD/CRxIsKDBgwgTKlxosFOxROBKMZxIsaLFhOC6gHOTcWOxiyBDihTYqdTDiCcljlzJMqFGji87umlJs2bKmxAT1dwpshjMjTIzcuNJ1GIblBBNJn1YtOnEmFCBcnFKFSFOpCiraiWoMepPjlvDKsU6VmXYqkC9djy7lexVtlXVQoVbdandrHSdBlWbt6mbq2X7+t2bFpzgom7tHiYqF+hinoBTmn3MEgnhr5Rrln2buWXhrxk7t7y7WTTLyzJNr9x8V/XIz3tdiyR9U3ZI1C9tg2SNVfdF2HN9V6S9VHhF3BuNTyzGW+lH5Qsbc4wCfWHkpNUXgo6aXWFipN0RIv8HG95g85M6yxcEnlZ9wet43QvcXniN/Pnfld4XON7w/vPY3SddaPcBGJ977P20H3z6yZdgUPcR15t8a/QHhXyF5JeSfPRtJ5+EZQ2lXoeETdRGKW7YJ1qGBprEEDegdUZiVF1YR9xiDOK00IM19sXjZwyB+NBzZ7WoI0P9aYTEVsUM6BVFRiY1GU8cRQkeRT96uFOWl1kkJIgrafjlRdw4+WOP3pk5Y3IgBfOlmHBaeV4hK6mZJJd2ajQVS2/KmWOfRNKE56BrzigiT3H+mSiYVBV6p6N8haWon2PSlSehex3aFzaULhqRaI/eqaJsxTgEqF3YpJddV+xVyINgAQEAIfkECQMA/wAsIwAxAFwATgAACP8A/wkcSLCgwYMIEypcyHBgISgNI0qcSJEhuC7g3FzkVrGjx48GS5UqlgjcyJIgU6psWAqjRpcbV8qcOfCkSZI3E9HcqTLjRZ8wufAc2rGkzaPFiCqV+PMlUJ9LoypEahRnKalYDWJzyvVn1q8Dc4o9eRVsVo1dYXYx+7Wq25tsszadCzOuVKpj7UpN+1Rv1LFWSfpdqvapxsFKS709WhbxToyFuToeitfmZJ6G6V7euTjwZpp0DX+eWRnnaJmZ1Z5e2bnq6p6Rm75OWRrl7I+pgd7+2Bru7o6hJf+uWBvccIqxYUY5PjHwYuYT+TqFHlFjbeoNg8/FzrC4Tu4Kc7//BK/QOWDyCaX/XIP+YCjAbtsf1F5XPsFi3u0TTK5bv8BE5iHln0DieTVggM4NWGB9+vVmGUJrrJfUb+oxaNBiwexWCHx5HaTebBX2Z1AbHI60moNWhYIQfVB9FuJ0CBVn4mUoupbQgi0i9uJPayVUY05+KVZiYCqWx19aduEo3EIItjZhVjImGBGLfCEhFZXBUdRkiY3tZN2WVAF3JH2g7RjZR2CC2SVFQ9aYEpZjQtZQFEpSuVIwP0aZZ5qdFUJTnHUCauZTPdK056FtJjojUYE2OmhaHP2lp6J8lgjWo3A6alxclU6qJ2JcaCooXZFOho2nneL03WmZDsrecai+CrUqeJAVuFxcAQEAIfkECQMA/wAsHwA0AGAASwAACP8A/wkcSLCgwYMIEypcyPAgEnBrsDWcSLGiRYqlShVLBE5jl4sgQ4pMCK4LODclT4JDMrKly4puNHKU2bHYy5s4D3JRaRJlT3A5g+LcWHMm0VJCk7b0ybOp0qcgi0qlCbXqxJ9YeVrdutCo15pcwx5MybQsULFo/9FcS7RTWrRNzZp8C5etV7pis5rFG7bU17VI+W4lS7in4K12pR62Grfw4qp/j9p8/LRwXMpPE1PFnLQxVs5JIxsFLdRyWdJBNRNFndOzVtY3RYOF/dI0Wdoui6nmiLtlFNcoo/QemUh24OEh5TpFHnKq5ETMo+olHP3ibnDQq1cEXlJ7xefOvVP/VH5aPEOUu803tP1T/ULd4GlmLxgsovvpnwuyLST+usaCO8nlHXdzEZRedPE9VxCBzJVC3m0FGVeMG8hJyNuC+Kk03IPtGeTfZLBZ2NFYHGrIWok+IdSGc5GhJmIpoSSU4V6coZhSVyyGR1khObLV0IzULWajSR8x1MmLE/KVYGQxTsSeZ3QReNl3SF7IVSJLsiidlEyxVNWT5ImUpWbHBYXemAqOBCZ7rQ05ZUtoGifSmVUWhdOaQBLJEDi/uRlmTsHU+aGgcXaWJ5d4IppVkUoR6miPCXKl6KR+FsaNWNgMCumja9FV6aGVHhbnpqTaBeJhoCZaoouatkrUfLCpEZqol9W5MWpi7hGUUoa/4RUQACH5BAkEAP8ALBsANwBkAEgAAAj/AP8JHEiwoMGDCBMqXMhwYaJOxRJha0ixosWLGP+B6wLOzcaOGUOKHJkQW6mI4E4mSkmypcuLpTh6lPnxpc2bCFWmRKmyFM6fODt+nCm0C9CjLlfqXFoMqVORQ6PSfErVYiKeWFd2qsq1IdGvNbuKRbhTadaxaAvSXCs0rdt/Wcum9Pl2LEe2X+uiZWp2pd6xRQPP/Cu2r9yThLtKFZyYK1+5jasKlhqZqmGmlZ8uzpsZ6WOdnZFOXhv66GWspYFuHpoaZ7HPKFvfxBs1imybcZfSvd0SLFveLw+fBU5y9VTiI2GvTIR85OiiBt2gdNNcYW7UA4vhbVo9unGQAhN9/+5e0KNygrRlkh/43SPB68vXv4bPcqDvwOvTQx8YRbjh7srtpNZzg1VHYFjvndZXc/SpdFB74NgG3IHHFQSRggIChyFoCN0HFm8eRmVdgIi1Voh/hy1EYVulhUgaQyguxVxnG/IUSkP6fViZi/hRVKNZkZ1IIncUcZNjbYTxSBQXF4XyY1l1NYjVjRhB+CJaK3KWkZT/dXXVkw46dyRbRj2lXZastcTlYbvhFEqM8Nlk5XNyKrmZa2Dm1uZFcP6o2pgrlqnQnEoi1UmeiPapKFNUOgWonY8S+pGgTyU6pKXXjYUEmpF2Oho3bs2H6agx/rWGpJ7aCUVjwZB6qX9ERiCWKqo9plbKq7iiNOOEs+q3xnpw5drXnsAStGJ/EqIVEAAh+QQJAwD/ACwZADoAZgBFAAAI/wD/CRxIsKDBgwgTKlzIsOE/bF3AuQHnsKLFixgtgitVLNHGYl0yihxJciG4iBNRgkNSsqXLjB89cpRZ7KXNmwpV6pRIEadPnx1jCi31s6jNlDx3Gl1acmjQmUyjZtyJdKLUqxWfapVJFKvXhBGpnjz5tezBmU4TYTPLdmDStynbtqVJ96NctmOr5r1rFq3foHzLws1LNrDXun8NeyVMVTHWv3UdXx2sU7JUxFotR2UMVzNTyEI9G41CmWcU0UW3Du0qkBtS1CT1KhXoRnVI2BjTxhSIpDTui5z1ClQ9c+1vh6D9/islO+lxh6Xj/ouYvOPzhcQz/wtO+LrC5lUHZv/n6v3gxOqJCILfW74gd5UEi6Ev3P6f/PEb3a+PWF+g2MoFYUZXTe0lgh9HBnHzn3PtRTcWQgda512E6R0UloO3HYehRArNh+BxpQgYWkLMvcfTcfudaJKHweBWiG7KMbShVaKRtqB0DLUBo3aWiehXKBXd2J1kKb5mkY9PtagYkjTlJiR8gRU5FhcZccPkbnJdyVEhI5molxt4SYlSSRSOeJWHW7nkJWcsMQXSjOy5VKZfrOHkBjZo0oXTmv/ZRJqYnQGlJXEk7cikUXxu2FCiRTIVzKCQGirpX0BK9SSclwIaHlaR5jlphGb1pimjpOrEjVyfdjrnU4aNmimpUEgltqqqAhKoGReY5toclbjhOWuq+ZVX6oZr9Befp6BVaGxCcLYVEAAh+QQJAwD/ACwYAD0AZwBCAAAI/wD/CRxIsKDBgwgTKlzIsOFAcKWKJSrlsKLFixgtrgHXBZwbjuCeZBxJsuTCKBAlpkwEzqTLlyRBfuw4kxvMmzgVTlQZkWXPnECD/kM506PMlkKTvizlkydPN0qjljxKE2QXqVgx9lzJNatXh0ariv1KVifXrRHLqjVINazHtXAFonXKMi5ct0Vn2l3btG/KvWrb5gVcdq5fwmTxUiVYKuJVxEH9zhWIUixSyDcFy/zX0TA2zDB3Slb5T3NH0C6Jao7SmO5K1CZdo+WsuCrsknnb/pPNk+LtjGfp/ttoefDvi6aN7jbc9bhF5rNL5x7rvGLtsANH963ekHfTh8WPcv9nOB0vQe8QO41PuBG6xGAEyxtfzza8bYLY3LNMRL9gMf0QsSUfSP0RZB92Bmm3UjEF/gNgWgZxc6BeBV5XFBcIofcTfRpKlFBHE4ITxXoWipfQgwxyx1RwhylUyoD3OQejcgyxGJxzCkZX44wf/cYjRxUVYuNkqOXIUygWhRgjYpWVeNpFRn6HmJAoAqekUSPu9eOTGXET5WtwddhUG1NdSWFZTpoX25dbfZWImGC6lFx5WSo1p2A4wYmWb0B9hOJ2Od1pH05pyieUnq7xN5KfiAIqlKBpNgQpj1IFw2ajQ2K6IVZmTurplY95demomV66FhKFfpqqfTbFlZ+msOYviNiWq9b6ERSgxVpqqSnC1umv12FY3X+6PtigqjOu0aBBxXSiq6LLLmTVdRvBFRAAIfkECQQA/wAsFwBAAGgAPwAACP8A/wkcSLCgwYMIEypcyLAhQSTguoBz47CixYsYMRYCV6pYIo6JMoocSbKhm4gTUZ4sybLlyDYcPcb8WMqlzZsMVeqU2AWnz58CO9KUKRQb0KM2U0o8uTQi0qclh0qNCbVqxp1KJ1rdWlHozK9cwy7MylQpwY1CxYad6rWjwGJlmdZUWxVr3H+h2HqkW7UtUZn/4urkwvcp2Z0Q/Q4tjFTvULsqGR+FvDTR36khJeMspvhrKcFNJWrGGfpwlH+eL4++edmzwNKCV9sEnfWtY46yXaaWKpD23dwki8HW+bazV+AkjcvMjNq3U+QiD4cmeDst9Iut/RKknPL6RedLC2b/JzrXO8OTyhMFKwheq/mcw5sa3P2153uF6cEVOyi99n2E8Zl1UHUelfffQPm5xV+ATB1YUH9lEYbQeLw5+A+FMynEE4TP/cehfPhhqOB/BH7E0GfcrXRfeyrmlOB65pWIm0Mfdncdix02hJaI+yEnYymhXMQgcbnhKBpGP/Y42o4ERjckiJIZCQ5JwSTJnFo8DlVISSnqRJFaNf5WUpZgbWWZlUk9mRUSVXERZmSsWcmRgTehR6Z1OHU53GlJSSmmT3e2diVGpSRIoWFqtteQnmFWVSV9hsoZaWpbbpUoo34yah9XTEIaqKTjFfbmpaRKx41k2Eyq6qczjpZpqTjyKZkbq6s6piR0br46alYS3ucpqGxZuB2sKZ4q7EHFdELrcsdahNKQfAUEACH5BAkDAP8ALBcAQwBoADwAAAj/AP8JHEiwoMGDCBMqXMiwYcE24EolckixosWLF4u5AdcF3EYkGEOKHNkwUaKIxU6WSkmypcuRGzvG9AiOB0GVxV7q3Dmw40qcKoMJ5DYzJs+jJDnSlKnUzb9gQFFORErV4k+pWP8VbQquqleHS8PGLIT16sqvaBNGNVuMK1OZaeMWdCuWbVS5eP/ZxSrWbV65fd+uTYnyb9zBOOluNYxWcdNEhPdOZVx178+2W992pUw1SmCaUf6VjcySM1LSawVqXmz6aOawAlGXbX10NFCBr4vS1umYaWzLhHe/BH5y8mejwlse53jTttTkIyU6PzuwN03oInM3JVhItlnsGDcS/xdKUHvHNeAtWt9ocDrhLukdFiMOLmd785vjL1zt9yDirPol5IZ3pCG0HnMBGogfFwkReFuCBTn4XEId8cdUaBAKtJxvCtG3klMQSkcfQ6Xgxx6EJoIDRUPu4ZTgf9+BlaJ+KcJHEUQe2ocdjJGFYpGFfWFXY34V8eiicEYWhhE3QG6FIWcbhsVgSFC1OCFjIkq4UiFJNdnfX1Hq1pKWqOmYVo4PunSgZjZ6VYyXq/FE5lqlVIUNmlfutGZfT6o5pJinJWnZSFYS99We+LWJUIVhrpdWlXhGOmehxXAZF5ONwpnpplPiJeikkvJIGRKb/omoW9y0RumnrM4mnKmami66InSQtRqqbWZihymspSqlaICrBhtjhgRxcWqsqRKr0HygyjaZshX5ulyfeAUEACH5BAkDAP8ALBcARABoADsAAAj/AP8JdAOuCziCAhMqXMiwocOHECNKnNgwEbhSxSxipMixo8ePHAkaFHkQHMiTKFMmLLUG3BOFbS5mlKmxjcqbOCGumYkxUSmBBUuODLomp9GjT4QKLfavJ82nR6Pe5Ek10T+lJEVK3QqyWNagIjVWlcm1LEexaGWCXTvSrNuIbLE6nTvzrd2GdNNiZXu3b8K9Q7ukpevX72CqcbMW7psYbKKxThfbLZaXZjHASiW7jYKZYJSrlXtqNguZp8DAe0eX/YpaYGmNqrk+zTuwcdvYR22XdB26Lm6jvS1aBcpa6G+jnQsqPCzWzfGpzMn+Rf31ucriihMWen3xp/WTs6sy/1WIHex3kLoRLgyfdvh5iqWCX2yY3OB7jtT5VmRv+b5E+Rs1xE1+gfkHV3kGdfEQd6IZ2BCDGUGUYH0OLlQKgrtBBKBXFQpUSnSRSYShehWOCM5nEvFHmIMgmkZRfRneZ6KCHMW04X0tahSKRwSm9t2MJn2Uo3THDRngRwPC6BluSgbFBUrBGMnhaBCKVYhK6em3WJO3qVQlVH09JqV7N2WJGopmmYlVVF/OtZqKr22lJmu5AZndVm1ClhKcObo1p272QXQil53ZFSWfiG44ZnhX3pWknX/2COSThS2qaKIQjoYEoZBKahs3TF4qap6wHYdNp5xmCcV5YmJq6Wvj3SQXaaqoUdqhq7g6RVmHDHEx64ig8hoRZaQ+RaawHQXlKZqFBQQAIfkECQQA/wAsFwBBAGgAPgAACP8A/wnEVqpYInClBCpcyLChw4cQI0qcSNEhuC7g3FzMWKyix48gQ1ZEaJDkwYQiU6pcGXGjRowvM7KcSTNlwZMlb4KrybOnxIwug3bxSbSoQJxISRpdylMoUJhMo7LUSbWk1KsSuYTiwvCp15dYwzLEBnOjwqRVxaotVfXgUKcx3agVW7buzrYmd8692imn30Slvgrde1VwWS5o/RKWmhgnXJeLoz6GiVdnoshGi1U2WMywV8xF7cYFx+Nf3ragif49LVB00NQ+R9sVuJoq7J6n/wqU7XXNbZqTgdLefPD3TOLgLgv0DNb4SuYXFzY26TxlbcUKg2usLpJ33IWFrp//RMm9okbiwRh6h1x+pOuyDXMnbV8ROfmF0DHSz5r/4XSd+/knnlIOcfPeUwFatB5GXD00YEH3JfigQRFhdGBzCeYnXET2dZTgP/9ZNdGCG+63hnbgREGRfLntVwiLto1E4nblzRidR23AiJ1zIZ7EDUgXvmacjfqF1COBsB1ZkEpBwpcakTeKFIqSFC42IU6hsIRiWXLtpeF3M11pkodYJSLmTU01+dSPUhWjJpg8nZlThDydJ6dyPm1pGG5QwqkalUnhKRJbd1LHlJ4kDjUREl9qd1UwgOoYaYc4tRGWgY2+iaiee01aKKWnpUcYF5mW2udgoEmqKqj23WbqpppCLcHjp7QiRR+mp2o624er1orQh/HpqqFvwEZUTF+eJoKNoMV6ZKFh3ERBGmEBAQAh+QQJAwD/ACwXAD0AZwBCAAAI/wD/CRzYptDAgwgTKlzIsKHDhxAbIgHnBlwXihEzatzIMWOnYonAlQIJrlPHkyhTOpxY8WJLjCpjyuxIcmRIm+Bm6tzp8KVPi9h4Ch36T2TNo26IKpVpkWJTn0ujpnRz9CZJqVg5OnX51GLWrxGtijUKtmzDrlxdml2bEKfbq2zjFv2ZVm7csW/tskW7Fabesm/H/l2a6GMigwL70h08dGJabgLxHmUs1KhgvlAp68TcNLBlcIk0z/SMk25f0THTKs75OTBqlVVb/1P98/VUzhf/xXZr+2RF0iD/mc7cWyNup0WBhyy+UTnoxMO9Ms+4um7k1lWnQywl2erA4xW1P/+MrlZgod01TYpfuAa7WITk/a5HCD7nQfefQ88/WMp5qYTVnbbfQLShpVB3nw34TyLoeZcQNwVat1+AL3GxUING/TcfhjYxdFGEW61HYVcN+VdMUtohiNN49WkXX0VQPIRfXsUVMmNNEY3IVW9R1NdFRm3c6KBoKtYUjEYg1qbZi01xVORNRzL2JFkdJdlVFHrp2NePHYUyZYdxcXhUKCn5GOJaWhKHkphi6ZeVie8xZaVqXC5VzJyK7cRmaxoK9dueYO5k5k9YbsYkbUQBulufHBVjmJDuLTXocXU21OOhFEoVzJeKcsppG1lNiiemmJrlKaRwoloMW1ykKaqrEWY0meqsnZY0GDakvsokkbXS2t2qr0EI67CmiafqqTi5OZ+u4EGm4EHF+JrfsxF9GGB7PZoVEAAh+QQJAwD/ACwXADoAZgBFAAAI/wD/CRyIDcnAgwgTKlzIsKHDhxAbFgJXqlgicGsiatzIsWNEN+C6gAMpMorHkyhTNrxYkaVFcCpjyvQoUiTJkSG5zdzJkyHFly1/JupJtKjNkDiPFl26E6hTlkyjqrxJFanUqx2jCN3aEqvXiEirKv1KlmGnp1uHll2LMKlbkmzjDnRJ96dcuWHz2rwbN6jfl3zZvtUbeG3dv4XL6n2bmOzfuo2/Dj7aJbLXw04tY11MVfPVx1s97+Tyk8vAyW5Fq+wkttM/kKC7qkaJWS3lwbNPisVpGq3f3B65Zt7dGbhGzmH/FYsN2HhE5hcFoobrHOL0kAJr/3RT3aHvzP+Qj//tvpA40owCv7MsRV4hbPUHze9t3/Z21YPC66qlLxA6xbbywcTfP/YRhpB2LRXDn38VKVQgZfxdJ5JpCan3E3vkWSibQuIl1R02AYLEEIPFcOccgs0xFKKAwK0IhUP5CQfcRAxat+JsK1YGURsxIuYZiiwFo9GDuFmWI4sRAWlXYzRqqGBHRN4XmISMdRSMkhWZJJeTLoWCUodixUVlcShxGdpXiZi5YUpgLqZlVG3a1xSWQGFI1Ht07jdTnKjtNCZnRanpm50dLScoXUzxGaCODml1JHFScZNnj4dSilkhm0Wp6Kaa3kbhZZaGSuKkDa5F2qOc/kmZTniNKmqlvwUuBmKqqGpqWZqkwvqUatx0qiqVzmHj6rBA0UcrmAMeVMxZuV6kZ7IL1XTdm18FBAAh+QQJBAD/ACwXADcAZQBIAAAI/wD/CRz4r1AUgggTKlzIsKHDhxAdBusCzg04ihEzatzIEWKiUsUSgQMpskvHkyhTMqRokeVFcCpjyuRIcmRImx9n6ty5sOLLlj5N8hzKU2TNo8WIKpVJ0aXTikujosRJlWQpqVg3PgVqMavXiDeRGv1KtiHXny/LqkVoUSzOtXD/od0KM65atzXtrg3Kt6VetUbDCv5bdm5fwmTx3kT8te9cxl4DS7YJOathrpWxKhaZWapjp52jTkYaeunln6WVbgaXKPXQz3xdv94smyddl7V3Ch6dm6ObNqXWsD1NUXhviDwcDyy2+vjDNbtHthYI26/zhtUHjt59fWGp7SI7Uf+/7bO7wrNPl4Mfyc08wbbRSQ5Ef9j9+Op1/2FbLdQ88/hhEYQfRu6RZ512VUVnXiIABpaQgReZN2B+BDVo01XOWSifQsQFddyEXSm0GkjHrZcXQ/SdlVuKaDmU4GjByFbIi1U9BCKFmbEI2kNt0EhaZyaGFSNEEOJWmY6xZRSkUUMitiRlWt2IGJJA9ZdRME+C5IZd3/koWCgndYgeXDeylJKGuyX11YjcqSTmXNwggdWbW82E5mjtEQVfliHtROdnflJ52VB3+piSl0sq9SeSVjIURZnZLcUNn5QiailShcxZJKSCblrlV5WyGSqAanHB6aKoOpXnXqJeWihef2Ev0+mpnuKoF4Oj5vpWaLX2+tmqqZXS6rA3Tfehr0gaZ98/brwanbHLJvQShAeRFRAAIfkECQMA/wAsFwA1AGMASgAACP8A/wkcWAhcqWKJsA1cyLChw4cQI0qcSHFgKTfguoDDqLGix48gQ0ZMZBBhSZIiU6pc2ZDjxowvu3BjSbOmx5M4DyayybNnQ40ug4LzSZSnzpwmSxVdyjKmU5dMo4okebRqMalYPWoECjNo1q8SkVI1CbasQ65oX0Yxy3Zg0rdU28oVmlYuW4xWx+60W7arX6B8zebFGbgv3ZiFwepFmvjr36eNsw4+Ghnr07+VpS62mjnqY6+dl04mG7roZbSli25+m5ro566tfY4muTd2zdNObfMUe1K3zbRCfdeEm1M4zcOgjacsNnuocpW4oT6fylvndJGvuV53iJkh8apKtw//xJa39j/ksMX/y76Q+XeT5p+7X20+OkzxwP0upE94evPwA+WH2nT2ddQef9Yp955eDWWnlnEFvtTQf1cJhyBpLTmIkW/oafdQdazFVlBz8TEU4YapdYhYRG2ASFWJjV0Y10QCXtaZitJNJKNBwVQ24oIlecRNjUKtVRiOMHXxUTA7JigXkFYVEpKG3bF1IkxrLNckQhV+lQiUcK1EZVpKSjUmZCyBuRmAPuGlZm+3EcnebkgC19Obk7H5kZtbMujTmSpWFMWVRC7FTZ8uJkrham14JuejhEaao2aK4mnphWUhISmgnKI1k5WLVopoVYHVuSmkKBb25aiXIiVlZ1ycH3rqp6mR12qoMKZWDKpnIqFeqIOpB5FGsdLFzaBlBQQAIfkECQMA/wAsFwAyAGAATQAACP8A/wkc+O8JODfguhQjyLChw4cQI0qcSJFgp2KJwJXCCK6ix48gQzrkcjBhyS4dRapcyXIgx40ZYZZqSbPmRG4IUeY8abOnz4ExXwr9SZQmSp0md7opylSlRqFBMzad+hGp1ZJQqGqVCPNpVI1bwz48SXan2LMEv3bd2Akt2qNlk7pF67Vu17lnrypNiTcsVLt9xe69GngrwrVClxammrQx0sVUEX+FzHgwT8pN1Q7FzNRxWc5MJdcFXTSuVdJENQdF/dOzUtY+Rd+FbdP0Zdo0VT/FXdO1XN4tE/2dDXylbbPFjcvGmHyl3sbNVQ5/OTM6yDW+dVoHWWy51O0fjyf/BP9RN0zyFbOXRF9xekxu7Cdafh0/Ynf34BLVjygeZXwk4BzxUCF2QbUQeH859Nxp25kGH0P4nRede9UNBNd84yXXX0Pe7VZcKeYdyBCGjwFH4kEOFahWMLyF+F1D/a0HWxTq5fRQGyoWyJqLGoUC0YJxkXYichDxuBFnRooIUY3QQTakSRVxk6RieIGYI2JreMQkg27FuFOWH0WYoFgdSibSlmR1oVUxQM63kphqVfjTYXB61RKag/nkpWs11SkbS1fC2ROe6lFEKJBg9hRMkowG2uhGhZTW5qF7TnoVF1M96uemmm0F4JOWVtofNmc5amqZdbY1F6iisorQYpyeIAqnkoWF6mp2D5J2n6Y8qskbpSf6OiGqqskZ355RaBUQACH5BAkEAP8ALBcALwBdAFAAAAj/AP8JHDgwUaliXRIRXMiwocOHECNKnCgQXBdwbixyo8ixo8ePC8EdTCSyGEmQKFOq/GcRY8uMXTaunEnz4ciSJEfW3MmTi8uLMF3yHDrTJM6jpYgqBcktqNOWS6NyzGn0pk6pWB8+BfqyWNavDJFWNQq27ECuaH+aLetmLNWca8v+nBs0Lti3Yu1+vZjWqd6sYt8m/Su170twhLG6RZpY6ta5jZdmtOo2stLDhi0TpYxXM1G6mD0PxUtZNE/MdE3v5HxUdU3QaF3TJD1W9kzUfm2rZH1Tt0rYan2jpE1VOErcL42DTLT4pkLlHUs9rgu9Y2Cc1Tsa5pqdY/Oq3Smu/0EONPxE3mTNRwROXb1D4tjdOyQvVL7D7zll2l84Pfn+haWgR1IX/4XU30UFEgRfbwkKtF1wDeJX0mAJ8sUeOFE0+I+AJVVXSifFcBHRgfX5tlUwD11nFYq6FRLYcw1dyJ1sBz7kIocHubZgMW089OBTppGYEUQ75sSiZTdKSGGMPx5mmZAWeQWRkpX9VUqRHUpE31Nu6CVjahNR2RlbYsZH0ZaoIZEVQl/m1lGZVi3J02RwmnRck9udBmVfKtVJWkp0YsnZbXh+ORGahXZJUzCC+qmiowcVMlSiiLZZaXujPdropppmuRQSllIqKmzYfNUpjpA2t9aeobaaERR6pSLK6aCN+cTqrZjpZxk2qM4KnmyXVpqhcsX0ep19X44nVUAAACH5BAkDAP8ALBcALQBYAFIAAAj/AP8JHEiwELhSxRKBI8iwocOHECNKnPiwlBtwXcBdzEixo8ePIAkqRDgy4cKQKFOijIJRY8uNoVTKnBnxoEmSNhPR3Mnzpc+MF3kKVVkMp9GbQ5OCBPrTZZdiSqNSvEm1pNSrELltdMq1C9avDEuKzQm27D+WTNO6NAs2p1ucbMGq3XoxSlysbqq+vYuVK92WfK+OPRpYasa5LwtHfVsVm2KliJk+VqrX6OShfpteFnrxaEk3m3tG1hiap2e3pXdmTpua5mCqrWc2pRtb5mm4tVOudpo75WurvUPOThwc5G2TxUHu3pj842+bzT0Olxx9YqLKJnVWl2hx+sntNY9r/wcPcXRQ8hCxjyyF/uEa76DbNyyq/rt8gssB3xfJWOx+/ObZ9199pXTy30B/zXWgQNiIB854/+XH0YLP4fYfNwF6tSCBCS14WH48LOggQiImmNmC/TGGool/HWjQiFD9l+FarSHxkmPWpUhYaS/CJhF8Ptl1GYsCOsRNhVU9RmAbEwHJVHx8SUjaRByKFaNZ1yGpUEdOdtXWjMx1VOVb7EXV2ZgkSgfmT5gRORoSIKGpF4TCwfgbSl26iVGTa5qnUjBa6ihnoMcxOVOfUuqpqGY8ETqooI4mZeOiiFK6GjdSQaqpnZuC9V6leQIZ16OcilcYqKgWyVcppT4KZWihzg8oZG/0OToWndG1FGBSAQEAIfkECQMA/wAsFwAqAFIAVQAACP8A/wkcSHDgGnBICipcyLChw4cQGwZLBK5UsUTYImrcyJEjODfgunwMCa6jyZMmL1ZUaZEiypcwF44UCZJmyJg4Y1JsuXJnsZxATUYhWXPmx6BINfZcyjOp04ZEo9rs8rQqwWI8s7LsZLXrVKNFu1otxLKsT7FWwUo9ivapz7c92z4d+rUoSLlOmZotiRcpt7pRofRFqhVuqcFI1X5FHNRwWcZA7a51Azmn3rcZK8cEbFMzzr1ZPceUvFg0SpCFV1I2fXJyVNYnUzeFbVLxTNomHZ/F7ZEzW94aZasEvtF2TeIada9EHtE1TeYQhbuE7tD4TeoNlVvEDtX3au4KE4H/VkkVvELSRs0rvBxXPUHvfN0LHL/zsPx/6O3e/4eVfnz51pV3n3bFfOeecyPtx5929smXH1H7scdTIhE+KNJ+BIp3318B7udfS/eJBJ+A6kmnmnylWJgggCaWEsx9Aa6oXiESPubeiDKal+Fy6iEoWRTqTVTjWz3ieBxjbhzEQ0cf7tWXeG9xVZyRJCUklnPccNSkYQ0mhRp9HfnoXGIqgmTlRltKCNOQetVGpW8kMiSmdyeFsmOLaeIJ10tvxljmnCOdedKdeRaqnWV/9pmoYkH1R+ijbIbmJaCLVvpfUlBGauiQcnHhJ6UIIuaoppAayBioOK7Bm57sUYidiLYNBQXkSwEBACH5BAkEAP8ALBcAKABKAFcAAAj/AP8JHEiQYDE34Lp0KsiwocOHECNGLFUsETiKibBJ3MixY8Qu4BCCFMnNo8mTGyteVImxFMqXMAWGTDhzZMKYOD2y3GmRYs6fEWsKFRkSqNGGPXmutHi0qUCiUGkiROK06dKrGC9WPSq1q80uW40Wy0qWZbCwQL8OpYn2ZyGlZdv+XKvWjdycSfMuvYszitehfHFiVRoYJre6XaMUfllWr8vFKOkKhYzS8U7KJ0EiHonZ5OC8Zzt33DxTtE7LPU13jKpW9UaEjfe6Dkoa4eyJcFXeDsq65m6IqFf+fvgX6nCHsbMebyhZ5HKGwX0+J1hc6nSCyXVfl9nb+fZ/0Yt96P9XnfP3RLktJhrfne33z7K31wY3Pr3W72vKg1vzfaz98c3ddB58GL03X33RPXZde+ZdR6B22wXYRUnbhYfedodJ2J+F8unn3XTZJRUhg6U5GOJFoU0nYYnPFfKgiNPNZ9N1Fgr3XIYk2vZcMDUWuJyHXj1nX2PiHQekWmANNyRcCt52JF1ciZSiSUtGBxNsSiXpmYwrakkcly/x+OKYJ5ZZkUYvcZnjkwzG1GOVZOaGExQrrqlmcXOZ+eae9AFlZ51sCigWn3oSuNWdiNIVClqlFOooS4EFyiVVnT2q13ClaEZXMYp1FBAAIfkECQMA/wAsFwAmAEEAWQAACP8A/wkcSLAgD25uwHUpyLChw4cQIw4sVSwROIoWJWrcyFFgF3AJP4YE17GkyYFuKl5UifGky40iFYKUGfKlTYeJWOq0SPGmT4IzYwoF+fPnzpU8VRa9GbTpyIRLbyadivRi1JdPaWpdePVklKoYwXZ1udWpzLEmS4Vdy5IbWpNDs358W7LQUbZ0S5odyjXvRqpsE/nl+DUuzWKDN4I9mlgjN8MxozSWGFjs5Ih7m16OCFjnZogfIRP97HDxVGykHYqGmrrhXZatG8rVHJtgwsotaw8s+1Q3QdxKfQvMXFP4v85Jjf/jTVM58IzGiStUjnylcuYinb+GLlx6X9/Ve0bbX01SeM7qgrvPHnn9uXLyyrdbNb6+ufBiz8urx07dNNLx0sUXnnL1fbRGdPl9V5t3+ukWXnC6PeadcfLlplto0knmW37i6VZKgTN1xyFivjHIWm1t+IfXhSY22NqDydUmIYgJadhaMDD+Fxt2e9VW4U7ppcbjbEi09iNgpQhJnmE2Xnakf0E2NuSUSCSpURRu3BRKjiPmmKVNS7YY5oE2cflkfl++BIWYbM72k4pnHrkUjVPCF1WcZvI0Vph0DvWWWnjC2YZfdTJIZmMp5bmSgpeV8hEX0vFQUEAAACH5BAkDAP8ALBcAJAA3AFsAAAj/AP8JHEiwoEAe4NyAQ2KwocOHEB+WKpYI3MREpSJq3AixS0JwHhV2CcaxZMmLFimmTGSyZcePIUF+tOGyJkGUOFWWYmmzZsyfMBP2dJlIp9GKFzMONRlUZFNwS00eXUm1U1SOT4GKvMoR6VScXDc6HStza9iICnN6RXpWY9m3P7G1hVhMLdVSJOc+1AoXql6Hhb4a/fswa9AuhB2uvUsxccMofck6Nsh48eSC3PjGhHL5pmC2nQcadhp64OKcpQV61Cw0NTa7KFP/Y61Q9r/PFm2TBSobMuxibmRHfiu7E27bo0HaPj1YOG3bvysi3w1zeeWUyJ/Lju43dXLEspl7zc0+ejlunqVLUSctPLpt2t1L41aaen1Z2XWPC7cPPrX4lMF5B59sgf1XilX1DRdSe+ftp2B8nRlIUTGpZfYdfhKi19lqF6Y3H3Dp8feRd9xN5J2ItYVWyHWohQZfTKVliJ2L330URWfByDhRgJM9uFtnH1rW44tB3ehYkHcNWeOPhCEJ218+RrnaWTmy6KRKnfBok4UoSjniUjpeGRUSS3qp5VBWhlnRmT1h0yWRZxWlZmVzcWkmcVCWONVld/Z3WTHGGWjbQKVwmKJAAQEAIfkECQQA/wAsFwAiACsAWwAACP8A/wkcSLBgwWBrwBlcyLAhQzfFEoErVayQw4sYBXYB5wbcxo5dMoo0SFFiyYkRR6r86JFjy44qRZ6cGXFiopgXWep0uTEKzoY0TdYsWernwp0gebo0ajDR0KdCJXZiWlBp0qseqRKEijLqRK0Drb4cGxKsQK9Bv5r9hxVp1rVRusqduVYgWbFl1xZLOzNU3X9ud/4txJXm3394rR5GC/VwW8WH53I9DDhxRyiOCw+lbLklZcZCKW8MzJEz34jYRHem/E+zSdaPk7KWHJUzaZiZQYO7GTn228W0Uc6+zfq0xNm+8/7VTXG45eKuFXJOzpp5Meexq0dXvrbzxtnGWd+sln44elHKycGtMR0d+V2Q1YOXtL36MGHm5/+md8NeN3ez3pFXl3VOHcbNeP+BZd5eh43m3WHGocRfXaXsJyCAEZYSTG/vjfVXG/I99ReCSw0Yokkb1kUibmaFQmBX3a34m1YLRnUdWB2ShoSCL86Un1E5PshUjcExFWR6Pv3k4onBrWeUjIIx1WNjVCERIFYYEvmjVhZ+99eCFlHGxXOsCVRKUGUaBA4SNwoUEAAh+QQJAwD/ACwXACEAIABWAAAI/wD/CRxIsKDBYInAlSrGxaDDhwO7gHMDTiLFhhAzCnRTLOFCj8W6aIRoseJEkxRHOvyosGNLj21UEixJ86TEKDIFstzp8mOpnDUpBgWXkyfIowplDl0qM1HPp0h/yrRJVajNnFBfapWqsirKryJzRs3KVaXVs2Bz/qNodKvaf2C9hsXadmewt0upvnU6FuRbuGhrzhW7FerfKHHPFvtbGOnff3kp4nzLsW9SxoH1/rW88LHEyI+x1e2IzbPck4//ke2ZOrPV1I1fPk789XHl2LBdV0zNefFs0I9HJ8xNe7Da3rCB/xVOdLZu44RHJz/thvfqhImcF2/OWHjqyNzfXoe//Pc5uDWPizEnzvRx7+yMwT8uNL5U2Zzmq3cfD72refexsfQXN+D1N1J96v31GXW7vcVcZ+Vtl9JbAT6FmYThqdRGhX6pVSBqx3HYEl4MljSZSgiJ+FFOGNKUU4oPFlMIix9SZANW741IY4kTiZdjfCU+1glnd313WmoDjYUkQVDY5Ns/AQEAIfkECQMA/wAsFwAfACAATwAACP8A/wkcSLCgwYFtsLlZc7ChQ4Hg3IDrEhHcw4sDiyUCV0ojx2IYHVKUOHJixZAGO25U+XElSoIlY1akGOXlP5Y4Paos9VImyZkVbaDMuVKnTpQ+Tf4kCRIj0ZZQO4ZsA3Sp0oncQiYyWrQrx04oq16N+ZJr1KNhrSbtYtPrU54v1Ypl+zLKWbc2/42dm7fYW53B8q4FmreQ2Zx59cr9Sbft3ZaJ7Q6WmPgxy8T/JoOrmfevy8qLTWJ2axQzxcmYS3m2mFgz576kPycOTRGzXs+Y91rF7OawR9tzZ9qO/RE46tS+NwKnPdxy08rHE69ernti87/Gg7uxvTpRbtqsK/9hbSxYe3jYlm2D357Yb/LzNs2Td4wbunnMhomXAju7+sjc3X3nH3wo6fdbXtxoNh9K76nU2oASvfbSalL1p5l4DT73knwRJUbVdA8yN5pztmWmXYnBxOZdidWVOFAnXYUUEAAh+QQJBAD/ACwXAB4AIgBFAAAI/wD/CRxIsKBBglHAdQHn5qDDhwPdJAJXqtjEUokgahzIUGHHhW6wbYQY7KJFiidLjTzI46NLNx6RrCRY0aRNlIlUzvwH0iPMnj1lzqyJsyhRnSu5vPTJdOHQlFBvVoyyEuhSq11WHo1qFNxMqz+vcpuZiOvWi512Xr26818iqWbb/gtLt6lcuFLl1gWrUO4/o3HlNmXr96zRUH6V7nXp959ZqI2LLabbGC/OxkgG0y3WGJthoo15roVJtfDji6FHewxtuWLov3xBhi712aLIxoo1ew19muLryasbJ6ydsbHunqHd9H6tOitrwCaZx2b4mvhu48CdV4aOUvro6stTZ0h/3Zpz6ukNWfcu3jj7db/ca75G/15ub6R+3af3W8w68/HPEccbfa/d99tx4EAxm4D/6faaW/E9KNpeEgqUV4UC8SAZODy8FhAAIfkECQMA/wAsFwAdACQAOQAACP8A/wkcSLCgQYPYShVLBG7NwYcQCUYB1wWcG4oNI2osyFBhx4UWN2osdrFiSYsYRUIE6RFcS49uVBY0ifGkTXBIZA58ybJnx0Q6/9EcipJoUJ4fk7pcqJPoTac6kS5V6rFp0atPQ8qUyhVc0IlZn3IL+s/n1LOlyP7DWrNtF7VmuarFFtat2n9U496t6NTuXbR6//YdelcgV5ahCnNha7Rw3J6F19Y1GTlv0shI3LKNDFhpZKGMUUaJfLjj59AnP1te+nntYK2FS5XG9vn1xdaPTX+e7PV06dO2W7vJ3Tsyt8mtVytsrdlm69LFC6OmmLwza+ConxNnjly19eXYwyYS3y68OXXmclsLDK1+INqY6gMCACH5BAkDAP8ALBcAHAAmAC8AAAj/AP8JHEiwoMGD/7qAcwOuCzeEECMOxFaqWCJwFRNhk8iRYJSGC0EyVNhRYqmLGTFaVJmoJMSQCkfCDInEpcGVKXPibGlT4EeZQEWCjNLzn06UOJPytBlTaNOnIXseZUk1ZU8uM4NCZShVaVWlS0tudTqzS9GpaMEV/feTrNaHa72iXSswq9uGdP/JlZsXm1a7ZvMiHVw1L9u7Tw3/+0q4lGLEMBUb3YsylGKsf2VKpqxSMrfMIiU3VioZdMxikhlTlZwQcEiiit1wdpzatFrRqiuyVjg2JutSaC1ulNw7KuvZrP/ZZv0xeNi8kLkS55xcOeLqFOU+f/y3+sSc273fBPb+LyAAIfkECQQA/wAsGgAbACUAJQAACN0A/wkcSLCgwYPBEoErVazNwYcQC3IB5wZcF4rguETcWHBhMYUMQX7kuLHiRZMYT4Ij+bCUyJceQYZi2RGlTYspwUWhKTDRx5hAQ8YsxVOl0Zw3edAUyvRnU5A0j96UanGp06swmUZFinMqxp0snwbFWqwoV6onef4Ty3al2jZnz3JT+89nVqwL6QqMO1XvP7xs/fLtmtFv3bFZDXvtaxhxUMP/CKOFXIyt02CQJy7GCfnvXZGdB1/s0vlzzM5RJHMNbVlh539ov74G7PT13ti219LOLdAr74Frrv4OCAAh+QQJAwD/ACweABoAIwAeAAAIzAD/CRxIsKDBgm7AdQG35qDDhwSLJQJXSiLFRBAzDuQCLuFCjx3BaXyIreJEkxQtlhppEKRLhSEXNmQp8KTKmzYTrWRZ7OVHmC+R8MyZkijKUm00/lwasylIjUdxFp1aUShEpj6dwpz5MKpRqRU1csxKFlyUkV6p4sQ4EivQtwu70ExLVyRNHlrdduFGUyBYsH0F5s0b+F+ir0YLD/ZZ2LDaxI3hEm5ciq7KxgJtLFaIDXPNxxSDeRas1+7of39PE5SsumCbQhTdtP4XEAAh+QQJAwD/ACwkABkAHwAYAAAIrQD/CRxIsKBBgYmKJUp0sKHDKOC6gHMTERwShxj/BUsErpTCjh+7ZDQokWLJiibBjRyIzSNHlyBfKnQzEuLJmxNRWsRYSqbPmEB7OsyJM6XRimsafoTJdKlThiSJSj1aVGXBpj+xAo1KdarOktwMah3rtCEXr1VPQnFINqtCqA2RoJ0rMuPToEutjuxKNezKf3iz/h2YlujggXeZHh5oE+1igmMfF2xM8aJkgQEBACH5BAkEAP8ALCkAGQAcABQAAAiWAP8JHEiw4MBSxRKBQ5jIoMOCbsB1ARdxYsWHDoMpZLgwYcdCGAUWsyiRYsmKJkNi48jSI8uGBqOcnEmyJrgoBUttdMlzp89SBE3aREl0JsGeHX0mXQr031CaQqNeFKm0ZVWXA7kVffq04NWvC8F1cgh1q0mcGK0yTVgspECpZd0ORLJ2Izi5Bblyw2twIku+aWUCNhgQACH5BAkDAP8ALC4AGAAZABEAAAiDAP8JHEiw4D8k4LqAg2KwIUE3xRKBKxVxohuHDxOCc6ORo0KIGCtSlDhyosiGXDZ2XPlRIxKC2ErKFEkzUSmBUViqbMlT5ctCJknWDEq0VBsoOj3uXKr0X9GhM4V2+ddTqdWkAqFqFZqxalJwDZ8K5YrR6dWWUcoSFFtMrcGlU90ODAgAIfkECQMA/wAsMwAYABYADwAACHEA/wkcSFAguC7g3BwMVrChm2KJwJWCKBEitob/ohxMuFEhQo/FCAaLOJEkxZIVEwlEwvFjx5cubXQ5SdOkTYkRPbbcqVPnmpsog9b8B5NnUYX/hAKtCc5gz6MvBy5d6qahy6scMRJcqhUjj2JIuxYMCAAh+QQJBAD/ACw3ABcAEwAOAAAIYgD/CRxIUKCbYl0KKkQCrgs4Nw0fglNYqlgicBUvZsQYbGBEiA5BSgw5EdvGkxYxpiz1sSXJlyo1rpwp86LImy4l1ozJ82ROnC+LdaLZc6bBny6LDXSDUqabRAoFrmkZdWBAACH5BAkDAP8ALDoAFwASAA0AAAhiAP8JHDjQTbFOxRIVIjgQCbgu4Nw8jPiQG8NE4EolzLhRI8aCEyVCFEkR4r9CHDF6TJnyX8iXI1+WWkmzY0eHJHPCBPdPpU2fQF3GHFoyokCDQFl6dAOSKMk1DAXaZBr1X0AAIfkECQMA/wAsPgAXABAADQAACFkA/wkU6KZYp2KJwHVyM1AgEnBuwHWBKJHiwIIJSyEEpzFjsX9PKE6MOLJixI0dOaJESVKky5YqPcqMWbLmS3ArZ6Z0A8Wkz5oCD+pE2TDKT4o2GjZkqLRhQAAh+QQJBAD/ACxAABcAEAAMAAAIWQD/CfyXqFSxROAMFko0UOATcF3AuYEoESK3hgkPZkRoMBE2gRQnRhRZsUuofx03qlSIpKRLkhMTcdSYsmbLkSFzdrlYk6ZPgcVg6gS3ZuBKnwwb/hO6s2FAACH5BAkEAP8ALEMAFwAPAAwAAAhTAP8JLJQIXKliBUsJXPgPnBtwXRxClLgQoUGLBxMmavgwYkeJHv8lxEiy4JqJH1NCLJbx4siRHlHK9FiqkMubLQXG3CnRxsKXN90w/IcEJMWFAQEAOw==";const Ii=(()=>{if(typeof document>"u")return;const t=document.createElement("div"),e=Vn.render(m.createElement("video",{id:"player-container-id",playsInline:!0,crossOrigin:"anonymous",preload:"auto",controls:!1,muted:!0,style:{backgroundColor:"transparent",width:"100%",height:"100%",objectFit:"cover",pointerEvents:"none"}}),t);return i=>i?(i.innerHTML="",i.appendChild(e),document.querySelector("#player-container-id")):void 0})(),Vr=({rec:t,index:e,height:i,data:n,muted:l,activeIndex:o,videoPostConfig:r,videoPlayIcon:s})=>{const[a,u]=W(!1),{bffEventReport:d,sxpParameter:f,waterFallData:v,openHashtag:h,bffFbReport:w}=Pe(),T=re(0),[C,p]=W(!1),[x,y]=W(!0),{isActive:A}=gn(),k=re(null),[g,L]=W(""),[M,S]=W(!1),c=re(),E=`pb-cache-video-${e}`,b=re(null),I=ne(()=>r?.mode==="2",[r]),D=ne(()=>{var ee;return r?.mode==="2"?`translateY(-${50+((ee=r?.offsetTop)!==null&&ee!==void 0?ee:0)}%) translate3d(0px, 0px, 0px)`:"translateY(-50%)"},[r]),P=ne(()=>{var ee;return((ee=t?.video)===null||ee===void 0?void 0:ee.cover)||g},[g,t]),N=ne(()=>I?{filter:"blur(10px)",transform:"translate3d(0px, 0px, 0px) scale(1.2)"}:{},[I]),F=ne(()=>r?.bgWay==="1",[r]),_=ne(()=>F&&r?.bgColor?{backgroundColor:r?.bgColor}:{},[r,F]);se(()=>{c?.current&&(c.current.muted=l)},[l,c?.current]);const R=ue(()=>{var ee;c?.current&&((ee=c?.current)===null||ee===void 0||ee.play())},[c?.current]),B=ct("/pb_static/06f28a2025c74c1cb49be6767316d827.png"),j=ue(()=>{c?.current&&(S(!1),p(!0))},[]),q=ue(()=>{var ee,G,J,Ae,pe,he,Q,z,$,V,Ee,oe,X;if(!c?.current)return;u(!1);const K=n[e];if(K&&(!((ee=c?.current)===null||ee===void 0)&&ee.duration)){T.current=((G=c?.current)===null||G===void 0?void 0:G.currentTime)||0;const ie=((Ae=(J=c?.current)===null||J===void 0?void 0:J.duration)!==null&&Ae!==void 0?Ae:0).toFixed(2),Oe=((he=(pe=c?.current)===null||pe===void 0?void 0:pe.currentTime)!==null&&he!==void 0?he:0).toFixed(2),Ve=x?"0":"1";d?.({eventInfo:{eventSubject:"playVideo",eventDescription:"User played the video",contentId:(z=(Q=K?.video)===null||Q===void 0?void 0:Q.itemId)!==null&&z!==void 0?z:"",contentName:(V=($=K?.video)===null||$===void 0?void 0:$.title)!==null&&V!==void 0?V:"",playType:Ve,startTime:Oe,videoDuration:ie,contentTags:JSON.stringify((oe=(Ee=K?.video)===null||Ee===void 0?void 0:Ee.tags)!==null&&oe!==void 0?oe:[]),position:e+"",contentFormat:"video",traceInfo:(X=K?.video)===null||X===void 0?void 0:X.traceInfo}}),y(!1)}},[d,n,e,x,c?.current]),H=ue(()=>{var ee;if(!c?.current||g||!I||(c.current.style.objectFit="contain",!((ee=t?.video)===null||ee===void 0)&&ee.cover||!k||!k.current||F))return;const G=()=>{const J=k?.current,Ae=J.getContext("2d"),pe=window?.innerWidth,he=window?.innerHeight;J.height=he,J.width=pe,Ae?.drawImage(c.current,0,0,J.width,J.height),L(J.toDataURL())};G(),setTimeout(()=>{G()},500)},[c.current,F,t,g,I]),Z=ue(()=>{c.current&&(q(),H())},[c.current,H,q]),le=ue(ee=>()=>{var G,J,Ae,pe,he;if(!c.current||!C)return;const Q=(G=c?.current)===null||G===void 0?void 0:G.paused;switch(ee){case"start":if(!Q)return;(J=c?.current)===null||J===void 0||J.play(),u(!1);break;case"pause":if(Q)return;(Ae=c?.current)===null||Ae===void 0||Ae.pause(),u(!0);break;default:Q?(pe=c?.current)===null||pe===void 0||pe.play():(he=c?.current)===null||he===void 0||he.pause(),u(!Q);break}},[C,c?.current]),be=ue(()=>{var ee,G,J,Ae,pe,he,Q,z,$,V,Ee,oe,X;if(!c?.current||o!==e)return;const K=n[e],ie=((G=(ee=c?.current)===null||ee===void 0?void 0:ee.duration)!==null&&G!==void 0?G:0).toFixed(2),Oe=((Ae=(J=c?.current)===null||J===void 0?void 0:J.currentTime)!==null&&Ae!==void 0?Ae:0).toFixed(2);if(!((pe=c?.current)===null||pe===void 0)&&pe.duration){const Ve=(((he=c?.current)===null||he===void 0?void 0:he.currentTime)-T.current).toFixed(2);d?.({eventInfo:{eventSubject:"playOverVideo",eventDescription:"User finished playing the video",contentId:(z=(Q=K?.video)===null||Q===void 0?void 0:Q.itemId)!==null&&z!==void 0?z:"",contentName:(V=($=K?.video)===null||$===void 0?void 0:$.title)!==null&&V!==void 0?V:"",endTime:Oe,videoDuration:ie,playDuration:Ve,contentTags:JSON.stringify((oe=(Ee=K?.video)===null||Ee===void 0?void 0:Ee.tags)!==null&&oe!==void 0?oe:[]),position:e+"",contentFormat:"video",traceInfo:(X=K?.video)===null||X===void 0?void 0:X.traceInfo}})}},[n,e,d,c?.current,o]),me=ue(()=>{S(!0)},[]);se(()=>{var ee,G,J,Ae,pe,he,Q,z,$,V;if(!A)return;const Ee=t?.video.url;if(!Ee)return;const oe=document.querySelector(`#${E}`);if(!oe||(c.current=Ii?.(oe),!c?.current))return;const X=window?.Hls;let K=null;return Ee.includes(".m3u8")&&X&&X.isSupported()?(K=new X,K.loadSource(Ee),K.attachMedia(c?.current),K.on(X.Events.MANIFEST_PARSED,function(){var ie;(ie=c?.current)===null||ie===void 0||ie.play()})):c.current.src=Ee,(ee=c?.current)===null||ee===void 0||ee.setAttribute("x5-playsinline","true"),(G=c?.current)===null||G===void 0||G.setAttribute("webkit-playsinline","true"),(J=c?.current)===null||J===void 0||J.addEventListener("loadedmetadata",Z),(Ae=c?.current)===null||Ae===void 0||Ae.addEventListener("loadeddata",H),(pe=c?.current)===null||pe===void 0||pe.addEventListener("play",q),(he=c?.current)===null||he===void 0||he.addEventListener("playing",j),(Q=c?.current)===null||Q===void 0||Q.addEventListener("pause",be),(z=c?.current)===null||z===void 0||z.addEventListener("ended",R),($=c?.current)===null||$===void 0||$.addEventListener("canplay",R),(V=c?.current)===null||V===void 0||V.addEventListener("waiting",me),()=>{var ie,Oe,Ve,ae,ze,Fe,ve,Ne,Xe;((ie=c?.current)===null||ie===void 0?void 0:ie.paused)||be(),K&&K?.destroy(),p(!1),(Oe=c?.current)===null||Oe===void 0||Oe.removeEventListener("loadedmetadata",Z),(Ve=c?.current)===null||Ve===void 0||Ve.removeEventListener("loadeddata",H),(ae=c?.current)===null||ae===void 0||ae.removeEventListener("play",q),(ze=c?.current)===null||ze===void 0||ze.removeEventListener("playing",j),(Fe=c?.current)===null||Fe===void 0||Fe.removeEventListener("pause",be),(ve=c?.current)===null||ve===void 0||ve.removeEventListener("ended",R),(Ne=c?.current)===null||Ne===void 0||Ne.removeEventListener("canplay",R),(Xe=c?.current)===null||Xe===void 0||Xe.removeEventListener("waiting",me)}},[A,E,t,be]),se(()=>{var ee,G;!c?.current||!C||(A?(w?.({eventName:"ViewContent"}),(ee=c?.current)===null||ee===void 0||ee.play()):(G=c?.current)===null||G===void 0||G.pause())},[A,C,c?.current]),se(()=>{var ee,G,J;if(!A||!c?.current)return;!((ee=c?.current)===null||ee===void 0?void 0:ee.paused)&&h?(G=c?.current)===null||G===void 0||G.pause():h||(J=c?.current)===null||J===void 0||J.play()},[h,A,c?.current]),se(()=>{if(!A)return;const ee=()=>{le("start")(),w?.({eventName:"ViewContent"})},G=le("pause");return ht.on(rt.PAGE_DID_SHOW,ee),ht.on(rt.PAGE_DID_HIDE,G),()=>{ht.off(rt.PAGE_DID_SHOW,ee),ht.off(rt.PAGE_DID_HIDE,G)}},[le,A]);const Te=ne(()=>!f?.placeholder_image||C?null:m.createElement("img",{style:{position:"absolute",left:0,top:0,width:"100%",height:"100%",objectFit:"cover"},src:f?.placeholder_image,alt:"placeholder image"}),[C,f?.placeholder_image]),ye=ne(()=>{if(!(!M||!C))return m.createElement("img",{style:{position:"absolute",top:"50%",left:0,right:0,transform:"translateY(-100%)",margin:"auto",width:"50px",height:"50px",objectFit:"contain"},src:jr,alt:"placeholder image"})},[M,C]);return se(()=>{if(!c?.current)return;const ee=()=>{var G;o===e&&(!((G=t?.video)===null||G===void 0)&&G.url)&&c?.current&&!a&&le("pause")()};return window.addEventListener("beforeunload",ee),()=>{window.removeEventListener("beforeunload",ee)}},[o,e,t,c?.current,le,a]),t?.video?m.createElement(m.Fragment,null,I?m.createElement("div",{className:"video-container",key:t?.video.itemId,onClick:le(),style:Object.assign({position:"relative",width:"100%",height:i,overflow:"hidden"},_)},!F&&C&&P&&m.createElement(lt,{src:P,style:Object.assign({height:"100%",width:"100%",objectFit:"cover"},N)}),m.createElement("canvas",{ref:k,style:{display:"none"}}),m.createElement("div",{style:{position:"absolute",width:"100%",height:"100%",top:"50%",transform:D,left:0,right:0}},m.createElement("div",{style:{position:"relative",width:"100%",height:"100%"}},m.createElement("div",{className:"n-full-screen",ref:b,id:E,style:{width:"100%",height:"100%"}}),a&&m.createElement(lt,{className:"clc-pb-video-pause",src:s??B,alt:"pause"}))),Te,ye):m.createElement("div",{className:"video-container",key:t?.video.itemId,style:{position:"relative",width:"100%",height:i,overflow:"hidden"},onClick:le()},m.createElement("div",{className:"n-full-screen",ref:b,id:E,style:{width:"100%",height:"100%"}}),Te,ye,a&&m.createElement(lt,{className:"clc-pb-video-pause",src:s??B,alt:"pause"}))):null};var zr=Ie(Vr);const Hr=({defaultValue:t,activeIcon:e,unactiveIcon:i,onChange:n,style:l})=>{const[o,r]=W(t),s=a=>{a.stopPropagation();const u=!o;r(u),n?.(u)};return m.createElement("button",{style:l,"aria-label":"toggle button",className:"pb-toggle-button",onClick:s},m.createElement("img",{className:"pb-toggle-button-icon",alt:"toggle image",src:o?e:i}))};var kn=Ie(Hr);const Gr=({imageUrl:t,style:e,duration:i=2e3})=>{const[n,l]=W(!0);ft(),se(()=>{setTimeout(()=>{l(!1)},i)},[]);const o=ct("/pb_static/finger-swipe-tip.29dc3a48a3c746c906ea..png"),r=ne(()=>n?"pb-fadeIn":"pb-fadeOut",[n]);return m.createElement("div",{hidden:!n,className:`pb-finger-wrap ${r}`,style:Object.assign(Object.assign({},e),{animationDuration:`${i/1e3}s`})},m.createElement("img",{src:t||o,alt:"finger swiper"}))},_n=t=>{const{src:e,height:i,imgUrlsPostConfig:n,onShowFirstImage:l}=t,o=ne(()=>n?.mode==="2",[n]),r=ne(()=>{var d;return n?.mode==="2"?`translateY(-${50+((d=n?.offsetTop)!==null&&d!==void 0?d:0)}%) translate3d(0px, 0px, 0px)`:"translateY(-50%)"},[n]),s=ne(()=>o?{filter:"blur(10px)",transform:"translate3d(0px, 0px, 0px) scale(1.2)"}:{},[o]),a=ne(()=>n?.bgWay==="1",[n]),u=ne(()=>a&&n?.bgColor?{backgroundColor:n?.bgColor}:{},[n,a]);return m.createElement("div",{style:Object.assign({overflow:"hidden",height:i,width:"100%",position:"relative"},u)},(!o||!a)&&m.createElement(lt,{src:e,style:Object.assign({height:"100%",width:"100%",objectFit:"cover"},s),onLoad:l}),o&&m.createElement(lt,{src:e,style:{width:"100%",height:"100%",objectFit:"contain",position:"absolute",top:"50%",transform:r,left:0,right:0},onLoad:l}))},Ur=({imgUrls:t,width:e,height:i,rec:n,index:l,onReportViewImageEnd:o,onViewImageStartEvent:r,imgUrlsPostConfig:s})=>{var a,u;const d=re(),{isActive:f}=gn(),{sxpParameter:v,openHashtag:h}=Pe(),[w,T]=W(!1);se(()=>{w&&f?(d?.current&&d.current.swiper.autoplay.start(),h?o(n):r(l)):d?.current&&d.current.swiper.autoplay.stop()},[n,f,o,h,l,r,w]);const C=ue(()=>{w||T(!0)},[w]);return m.createElement(kt,{ref:d,defaultValue:0,direction:"horizontal",modules:[Zt,$t],pagination:{clickable:!0,bulletActiveClass:"swipe-item-active-bullet"},className:xe(Object.assign({},s?.marginBottom&&{".swiper-pagination":{bottom:(a=s?.marginBottom)!==null&&a!==void 0?a:0}})),height:i,loop:!0,autoplay:{delay:((u=s?.delay)!==null&&u!==void 0?u:3)*1e3}},t?.map((p,x)=>m.createElement(bt,{key:x},m.createElement(_n,{src:!w&&x>0?"":p,height:i,imgUrlsPostConfig:s,onShowFirstImage:C}))))};var Wr=Ie(Ur);const Yr=({tags:t,itemId:e,itemType:i,index:n,rec:l,hashTagStyle:o})=>{var r;const[s,a]=W(!1),{setWaterFallData:u,setOpenHashtag:d,setCacheActiveIndex:f,waterFallData:v,setIsFromHashtag:h}=Pe(),w=T=>{v?h?.(!0):f?.(n),u?.(i?{hashTag:T,itemId:e,itemType:i,rec:l}:{hashTag:T,rec:l}),d?.(!0)};return ne(()=>t.length<=6?null:m.createElement("span",{style:{textDecoration:"underline",cursor:"pointer",color:"#fff"},onClick:()=>a(!s)},s?"show less":"show more"),[s,t]),m.createElement("div",{className:"clc-sxp-bottom-hashtag",style:{marginTop:`${(r=o?.marginTop)!==null&&r!==void 0?r:16}px`}},m.createElement(Vt,null,t?.map((T,C)=>m.createElement(bt,{key:C,hidden:s?!1:C>=6,className:"clc-sxp-bottom-hashtag-item",style:o,onClick:()=>w(T)},m.createElement("div",{dangerouslySetInnerHTML:{__html:fe(`#${T}`,o)}})))))};var Pn=Ie(Yr),Xr="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAbtJREFUeF7t2DFKxFAQxvHv6xTxCoKNiAuCna2X2NY7eAE9hYdwj2BjZ2ulYLW9pQcYDWyxBIK7ZN7MNyapk/D+v8zC20dM/OLE+zEDzBMwcYH5J1BpAMzsAMAJyU+vdZeZADN7AHAH4BjAC8kbD4QSAJv4+17wFcm3sQjyAGbWhXdff/takzwdG989Lw0wEN+te0ly9a8BIuJlJyAqXhIgMl4OIDpeCiAjXgYgK14CIDM+HSA7PhVgYHvrusnZZaOUshNUiU+ZAKX4cAC1+FAAxfgwANX4EADl+OYA6vFNASrENwOoEt8EoFK8O0C1eFcAMzsE8AXgqLcHdzvA3GVvv+89bv8FzOwcwEdvASuSy30XFXm/G0C3aDN7BXBdCcEb4ALAE4BFFQRXgM0UlEJwB6iG0ASgEkIzgCoITQEqIDQHUEcIAVBGCANQRQgFUEQIB1BDSAFQQkgDUEFIBVBASAfIRpAAyESQAchCkALIQJADiEaQBIhEkAWIQpAG+ANh8Xvk/j72CF0eYABhDeCS5PckALYQbgGcAXgm+Tg2vnu+xAR4hA69YwZoqVvh3fMEVPhKLdc4+Qn4AXwYBFBN2dYpAAAAAElFTkSuQmCC";function ni(t){return Ie(function(e){const{$store:i}=qn(),n=o=>{let r=o;const s=o.match(/{{.*?}}/g);return s?.length&&s.forEach(a=>{a.replace(/{{\s*([\w.]+)\s*}}/g,(u,d)=>{if(d){const f=Di(i,d);return r=r.replace(a,f),f}})}),r},l=ne(()=>{var o,r,s;const{bindDatas:a}=e,u=Je(e,["bindDatas"]);if((o=a?.forEach)===null||o===void 0||o.call(a,d=>{if(d?.propKey&&d?.dataPath){const{propKey:f,dataPath:v}=d;v.replace(/{{\s*([\w.]+)\s*}}/g,(h,w)=>{var T,C;if(w){const p=(C=(T=Di(i,w))!==null&&T!==void 0?T:e[f])!==null&&C!==void 0?C:"";return u[f]=p,p}})}}),u){u.eventMap={};const d=Gt(u.event)||{};for(const f in d)if(Object.prototype.hasOwnProperty.call(d,f))try{d[f].value=n(d[f].value),u.eventMap[f]=new Function(d[f].value)}catch{}}return!((s=(r=u?.event)===null||r===void 0?void 0:r.onClick)===null||s===void 0)&&s.linkType&&(u.style.cursor="pointer"),u},[i,e]);return m.createElement(t,Object.assign({},l,l.eventMap))})}const qr=({rec:t,index:e,tempMap:i,resolver:n,includesCtaType:l,isActive:o})=>{var r,s,a,u,d;const{schema:f}=ft();if(!t?.video)return null;let v=null;!((s=(r=t?.video)===null||r===void 0?void 0:r.bindProducts)===null||s===void 0)&&s.length?v="\u591A\u5546\u54C1CTA":!((a=t?.video)===null||a===void 0)&&a.bindProduct?v="\u5546\u54C1CTA":v=(d=(u=t?.video)===null||u===void 0?void 0:u.bindCta)===null||d===void 0?void 0:d.itemId;const h=i?.[v],w=ne(()=>{var T,C,p,x,y,A,k,g,L,M,S,c,E,b,I,D,P,N,F,_,R,B,j,q,H,Z,le,be,me,Te,ye,ee,G;if(!t?.video)return null;if(!((C=(T=t?.video)===null||T===void 0?void 0:T.bindProducts)===null||C===void 0)&&C.length||!((p=t?.video)===null||p===void 0)&&p.bindProduct||(y=(x=t?.video)===null||x===void 0?void 0:x.bindCta)===null||y===void 0||y.itemId,!(l&&!l?.includes((A=h?.item)===null||A===void 0?void 0:A.type))&&!(!l&&((k=h?.item)===null||k===void 0?void 0:k.category)==="cta")){if(((g=h?.item)===null||g===void 0?void 0:g.type)==="CommodityDiro"&&!(!((L=t?.video)===null||L===void 0)&&L.bindProduct)||((M=h?.item)===null||M===void 0?void 0:M.type)==="Commodity"&&!(!((S=t?.video)===null||S===void 0)&&S.bindProduct)||((c=h?.item)===null||c===void 0?void 0:c.type)==="CommodityDiroNew"&&!(!((E=t?.video)===null||E===void 0)&&E.bindProduct)||((b=h?.item)===null||b===void 0?void 0:b.type)==="MultiCommodity"&&!(!((D=(I=t?.video)===null||I===void 0?void 0:I.bindProducts)===null||D===void 0)&&D.length)||((P=h?.item)===null||P===void 0?void 0:P.type)==="MultiCommodityDiro"&&!(!((F=(N=t?.video)===null||N===void 0?void 0:N.bindProducts)===null||F===void 0)&&F.length)||((_=h?.item)===null||_===void 0?void 0:_.type)==="MultiCommodityDiroNew"&&!(!((B=(R=t?.video)===null||R===void 0?void 0:R.bindProducts)===null||B===void 0)&&B.length))return null;if(h&&n){const J=n[(j=h?.item)===null||j===void 0?void 0:j.type],Ae=ni(J),pe=(q=J?.extend)===null||q===void 0?void 0:q.defaulSetting,he=((le=(Z=(H=h?.item)===null||H===void 0?void 0:H.event)===null||Z===void 0?void 0:Z.onClick)===null||le===void 0?void 0:le.linkType)==="externalLink";return m.createElement(Ae,Object.assign({style:Object.assign(Object.assign(Object.assign({},pe?.style),(be=h?.item)===null||be===void 0?void 0:be.style),{zIndex:50,marginLeft:"20px",boxSizing:"border-box",transform:"translate3d(0px, 0px, 0px)"}),textStyle:Object.assign(Object.assign({},pe?.textStyle),(me=h?.item)===null||me===void 0?void 0:me.textStyle),bindDatas:(ye=(Te=h?.item)===null||Te===void 0?void 0:Te.bindDatas)!==null&&ye!==void 0?ye:[]},pe?.props,(ee=h?.item)===null||ee===void 0?void 0:ee.props,{event:((G=h?.item)===null||G===void 0?void 0:G.event)||{},schema:f,id:h?.id,key:h?.id,recData:t,isExternalLink:he,index:e,isActive:o}))}else return null}},[t,n,i,f,h?.id,o]);return m.createElement(m.Fragment,null,w)};var oi=Ie(qr);const Dn=({nudge:t})=>{var e,i,n,l,o,r;return m.createElement(m.Fragment,null,t?.isOpen&&m.createElement("div",{className:"clc-sxp-bottom-nudge",style:{marginBottom:(e=t?.marginBottom)!==null&&e!==void 0?e:5,width:(n=(i=t?.size)===null||i===void 0?void 0:i.width)!==null&&n!==void 0?n:212,height:(o=(l=t?.size)===null||l===void 0?void 0:l.height)!==null&&o!==void 0?o:38,backgroundColor:t?.backgroundColor,borderRadius:(r=t?.borderRadius)!==null&&r!==void 0?r:4}},t?.icon?m.createElement("img",{src:t.icon,alt:"nudge icon",style:{height:"100%",objectFit:"cover",flexShrink:0}}):null,m.createElement("p",{style:Object.assign(Object.assign({},t?.textStyle),{textWrap:"nowrap",textOverflow:"ellipsis",overflow:"hidden",whiteSpace:"nowrap",flex:1,marginBottom:0,marginTop:0}),dangerouslySetInnerHTML:{__html:fe(t?.content,t?.textStyle)}})))},Jr=({tagList:t=[],setActiveIndex:e,style:i})=>{const{getRecommendVideos:n,setRtcList:l,setCacheRtcList:o,setCacheActiveIndex:r,setLoading:s,swiperRef:a,waterFallData:u,bffEventReport:d,selectTag:f,setSelectTag:v}=Pe(),{backMainFeed:h}=$e(),w=ne(()=>[Yt,...t],[t]),T=C=>()=>{if(C===f)return;C!=="FOR U"?d?.({eventInfo:{eventSubject:"clickThemeTagsViewContents",eventDescription:"click Theme Tags View Contents",themeTags:`['${C}']`}}):h("theme",C,f);let p;C!==Yt&&(p=C),s?.(!0),n?.({themeTag:p}).then(x=>{var y,A,k,g;ht.emit(rt.CHANGE_THEME_TAG,p),l?.((y=x?.recList)!==null&&y!==void 0?y:[]),o?.((A=x?.recList)!==null&&A!==void 0?A:[]),e?.(0),r?.(0),(g=(k=a?.current)===null||k===void 0?void 0:k.swiper)===null||g===void 0||g.slideTo(0)}).finally(()=>{s?.(!1)}),v?.(C)};return u||t.length<=0?null:m.createElement("div",{className:"clc-sxp-tagbar",style:i},m.createElement("ul",{className:"clc-sxp-tagbar-list",style:{margin:"auto",gap:24}},w.map(C=>m.createElement("li",{className:`clc-sxp-tagbar-list-item ${C===f?"clc-sxp-tagbar-list-item-active":""}`,key:C,onClick:T(C)},C))))};var On=Ie(Jr);const Mn=({globalConfig:t,descStyle:e,containerHeight:i=window.innerHeight,containerWidth:n=window.innerWidth,tempMap:l,resolver:o,data:r=[],ctaType:s,tipText:a,nudge:u,_schema:d,hashTagStyle:f,tagList:v=[],licenseUrl:h})=>{var w,T,C,p,x,y,A,k,g,L;const{schema:M}=ft(),[S,c]=W(0),E=re(0),[b,I]=W(!0),D=re(),[P,N]=W(!1),[F,_]=W(!1),[R,B]=W(new Date().getTime()),j=re(!1),{loadVideos:q,bffEventReport:H,loading:Z,setPopupDetailData:le,ctaEvent:be,swiperRef:me,waterFallData:Te,setOpenHashtag:ye,appDomain:ee,openHashtag:G,loadingImage:J,isFromHashtag:Ae,popupDetailData:pe,bffFbReport:he,curTime:Q,h5EnterLink:z,isShowConsent:$,selectTag:V,isPreview:Ee}=Pe(),{backMainFeed:oe}=$e(),{productView:X}=$e(),K=ne(()=>r.length>0&&!Z&&Qn(),[r,Z]);se(()=>{Fi()},[]),se(()=>{if(r?.length>0){const O=new Date;D.current=O,he?.({eventName:"PageView"})}},[r?.length]);const ie=ue(()=>{if(Fi(),z?.(),r.length>0){const O=new Date;D.current=O,he?.({eventName:"PageView"})}},[r.length,he,z]);se(()=>{var O;const de=r?.findIndex(te=>{var ge,ke,_e,ce,we,Re,je,Ue,We;return s==="\u591A\u5546\u54C1CTA"?((ge=te?.video)===null||ge===void 0?void 0:ge.bindProducts)&&((_e=(ke=te?.video)===null||ke===void 0?void 0:ke.bindProducts)===null||_e===void 0?void 0:_e.length)>0:s==="\u5546\u54C1CTA"?(ce=te?.video)===null||ce===void 0?void 0:ce.bindProduct:((Re=(we=te?.video)===null||we===void 0?void 0:we.bindCta)===null||Re===void 0?void 0:Re.itemId)===s&&(((je=te?.video)===null||je===void 0?void 0:je.url)||((We=(Ue=te?.video)===null||Ue===void 0?void 0:Ue.imgUrls)===null||We===void 0?void 0:We.length))})||0;(O=me?.current)===null||O===void 0||O.swiper.slideTo(de)},[s,me]),se(()=>{const O=r?.[S],de=()=>{var te,ge,ke,_e,ce,we,Re,je,Ue,We,Ke,Qe,Ze,De,Ge,at,qe,vt,mt,Tt;const xt=!G&&!$;if(document.visibilityState==="hidden"){xt&&(ht.emit(rt.PAGE_DID_HIDE,O),U(O),Be(O));let Ce="";pe&&(!((ge=(te=O?.video)===null||te===void 0?void 0:te.bindProducts)===null||ge===void 0)&&ge.length||!((ke=O?.video)===null||ke===void 0)&&ke.bindProduct)?Ce="pdpPage":pe&&((Re=l?.[(we=(ce=(_e=O?.video)===null||_e===void 0?void 0:_e.bindCta)===null||ce===void 0?void 0:ce.itemId)!==null&&we!==void 0?we:""].item)===null||Re===void 0?void 0:Re.type)==="Appoint"?Ce="formPage":Ae?Ce="hashTagPage":!((je=O?.video)===null||je===void 0)&&je.url?Ce="videoPage":!((Ue=O?.video)===null||Ue===void 0)&&Ue.imgUrls&&(!((Ke=(We=O?.video)===null||We===void 0?void 0:We.imgUrls)===null||Ke===void 0)&&Ke.length)?Ce="imagePage":O?.product&&(Ce="productPage"),H?.({eventInfo:{sessionDuration:Math.floor((new Date-Q.current)/1e3)+"",eventSubject:"sessionCompleted",eventDescription:"Session completed",contentId:(Qe=O?.video)===null||Qe===void 0?void 0:Qe.itemId,productId:(Ze=O?.product)===null||Ze===void 0?void 0:Ze.itemId,position:S+"",fromKName:Ce,fromKPage:location?.href,ctatId:(at=(Ge=(De=O?.video)===null||De===void 0?void 0:De.bindCta)===null||Ge===void 0?void 0:Ge.itemId)!==null&&at!==void 0?at:"",traceInfo:(Tt=(vt=(qe=O?.video)===null||qe===void 0?void 0:qe.traceInfo)!==null&&vt!==void 0?vt:(mt=O?.product)===null||mt===void 0?void 0:mt.traceInfo)!==null&&Tt!==void 0?Tt:""}})}else document.visibilityState==="visible"&&(j.current===!0&&(B(new Date().getTime()),j.current=!1),ie(),xt&&(Se(S),ht.emit(rt.PAGE_DID_SHOW,O),oe("external",V)))};return document.addEventListener("visibilitychange",de),()=>{document.removeEventListener("visibilitychange",de)}},[S,H,r,ie,pe,Ae,l,Q,oe,G,$,V]);const Oe=ne(()=>{let O=0;return v.length>0&&(O+=45,Te&&(O-=45)),O},[v,Te]),Ve=ne(()=>{let O=0;return t?.logoUrl&&t?.isShowLogo&&(O+=56),O},[]),ae=ne(()=>i-Ve-Oe,[t,i,Oe]),ze=ne(()=>t?.logoUrl&&t?.isShowLogo?m.createElement("div",{className:"clc-sxp-logo-banner",style:{backgroundColor:t?.color}},m.createElement("img",{src:t?.logoUrl,alt:"logo"})):null,[t]),Fe=ue((O,de)=>{var te,ge,ke,_e;return!((te=O?.video)===null||te===void 0)&&te.url?m.createElement(zr,{key:R,rec:O,index:de,muted:b,data:r,height:ae,activeIndex:S,videoPostConfig:t?.videoPost,videoPlayIcon:t?.videoPlayIcon}):!((ge=O?.video)===null||ge===void 0)&&ge.imgUrls?m.createElement(Wr,{key:O?.video.itemId,imgUrls:O?.video.imgUrls,width:n,height:ae,rec:O,index:de,onReportViewImageEnd:U,onViewImageStartEvent:Se,imgUrlsPostConfig:t?.imgUrlsPost}):O.product&&Array.isArray(t?.productPost)&&((ke=t?.productPost)===null||ke===void 0?void 0:ke.length)>0?(_e=t?.productPost)===null||_e===void 0?void 0:_e.map((ce,we)=>{var Re,je,Ue,We,Ke,Qe,Ze,De;const Ge=o[(Re=ce?.item)===null||Re===void 0?void 0:Re.type],at=ni(Ge),qe=(je=Ge?.extend)===null||je===void 0?void 0:je.defaulSetting;return m.createElement(at,Object.assign({key:`${de}${we}`,textStyle:Object.assign(Object.assign({},qe?.textStyle),(Ue=ce?.item)===null||Ue===void 0?void 0:Ue.textStyle),bindDatas:(Ke=(We=ce?.item)===null||We===void 0?void 0:We.bindDatas)!==null&&Ke!==void 0?Ke:[]},qe?.props,(Qe=ce?.item)===null||Qe===void 0?void 0:Qe.props,{event:((Ze=ce?.item)===null||Ze===void 0?void 0:Ze.event)||{},schema:M,id:ce?.id,viewTime:D.current,rec:O,isPost:!0,tipText:a,style:Object.assign(Object.assign(Object.assign({},qe?.style),(De=ce?.item)===null||De===void 0?void 0:De.style),{height:"100%",overflow:"auto"}),index:de}))}):null},[n,r,ae,b,S,t?.productPost,t?.videoPlayIcon,D,a,o,M,R]),ve=ue(O=>{_(O)},[]),Ne=ne(()=>F?{background:"linear-gradient( 180deg, rgba(129,129,129,0) 0%, rgba(121,121,121,0.5) 5%, #616161 100%)",paddingTop:20,paddingBottom:20}:{padding:"20px 0"},[F]),Xe=ue((O,de)=>{var te,ge,ke,_e,ce,we,Re,je;return O?.video?m.createElement(m.Fragment,null,((te=O?.video)===null||te===void 0?void 0:te.title)&&!F&&m.createElement("div",{className:"clc-sxp-bottom-shadow"}),m.createElement("div",{className:"clc-sxp-bottom",style:{paddingBottom:`${(ge=t?.bottomInfoDist)!==null&&ge!==void 0?ge:40}px`}},m.createElement(Dn,{nudge:u}),t?.isShowCTA===void 0||t?.isShowCTA?m.createElement("div",{className:"clc-sxp-bottom-card"},m.createElement(oi,{rec:O,index:de,tempMap:l,resolver:o})):null,m.createElement("div",null,m.createElement(ii,{className:"clc-sxp-bottom-text",isPost:!0,foldText:a?.foldText,unfoldText:a?.unfoldText,text:(_e=(ke=O?.video)===null||ke===void 0?void 0:ke.title)!==null&&_e!==void 0?_e:"",style:Object.assign(Object.assign({},e),{textShadow:t?.isOpenTextShadow?"2px 2px 4px rgba(0, 0, 0, 0.5)":"none"}),onChange:ve}),m.createElement(oi,{rec:O,index:de,tempMap:l,resolver:o,includesCtaType:["AniLink"]}),m.createElement(Pn,{index:S,tags:(we=(ce=O?.video)===null||ce===void 0?void 0:ce.hashTags)!==null&&we!==void 0?we:[],itemId:(Re=O?.video)===null||Re===void 0?void 0:Re.itemId,itemType:!((je=O?.video)===null||je===void 0)&&je.itemId?"VIDEO":null,rec:O,hashTagStyle:f}))),m.createElement(oi,{rec:O,index:de,tempMap:l,resolver:o,includesCtaType:["AniLinkPopup"],isActive:de===S})):null},[e,S,l,o,a,u,f,t,ve,F,Ne]),dt=ue((O,de)=>{var te,ge,ke,_e;if(!t?.isShowLike)return;let ce=(te=t?.likeIconY)!==null&&te!==void 0?te:400;return Te&&ce<40&&(ce+=40),O?.video?m.createElement(In,{key:O.position,activeIcon:t?.likeIcon,unActicveIcon:t?.unlikeIcon,active:O.isCollected,recData:O,className:"clc-sxp-like-button",style:{[(ge=t.likeIconXPosit)!==null&&ge!==void 0?ge:"right"]:(ke=t.likeIconX)!==null&&ke!==void 0?ke:0,[(_e=t.likeIconYPosit)!==null&&_e!==void 0?_e:"bottom"]:ce},position:de}):null},[t,Te]),U=O=>{var de,te,ge,ke,_e,ce;if(!(!((de=O?.video)===null||de===void 0)&&de.url)&&(!((te=O?.video)===null||te===void 0)&&te.imgUrls)){const we=Date.now(),Re=(we-E.current)/1e3;H?.({eventInfo:{eventSubject:"viewImageCarouselEnd",eventDescription:"User end view the image carousel",contentId:(ke=(ge=O?.video)===null||ge===void 0?void 0:ge.itemId)!==null&&ke!==void 0?ke:"",contentName:(_e=O?.video.title)!==null&&_e!==void 0?_e:"",imageEndTime:`${we}`,playDuration:`${Re}`,contentTags:JSON.stringify((ce=O?.video.tags)!==null&&ce!==void 0?ce:[]),position:S+"",contentFormat:"image",traceInfo:O?.video.traceInfo}})}},Y=(O,de)=>{var te,ge,ke,_e,ce,we,Re,je,Ue,We,Ke,Qe,Ze,De,Ge,at,qe,vt,mt;if(Ee||Te)return;const Tt=new Date-Q.current;if(t?.openSlideSkip&&Tt>=((te=t?.slideSkipStartTime)!==null&&te!==void 0?te:0)&&Zn()&&O){const xt=((_e=(ke=(ge=O?.video)===null||ge===void 0?void 0:ge.bindProducts)===null||ke===void 0?void 0:ke[0])===null||_e===void 0?void 0:_e.link)||((we=(ce=O?.video)===null||ce===void 0?void 0:ce.bindProduct)===null||we===void 0?void 0:we.link)||((Re=O?.product)===null||Re===void 0?void 0:Re.link),Ce=O?.product||((je=O?.video)===null||je===void 0?void 0:je.bindProduct)||((We=(Ue=O?.video)===null||Ue===void 0?void 0:Ue.bindProducts)===null||We===void 0?void 0:We[0]);xt&&(H?.({eventInfo:{eventSubject:"swipeToWeb",eventDescription:"User swiped to web",productId:(Ke=Ce?.itemId)!==null&&Ke!==void 0?Ke:"",productName:(Qe=Ce?.title)!==null&&Qe!==void 0?Qe:"",price:Ce?.price?Ce?.price+"":"0",productCollection:(Ze=Ce?.collection)!==null&&Ze!==void 0?Ze:"",contentTags:Ce?.tags?JSON.stringify(Ce?.tags):"",position:de+"",contentId:(Ge=(De=O?.video)===null||De===void 0?void 0:De.itemId)!==null&&Ge!==void 0?Ge:"",traceInfo:(mt=(qe=(at=O?.video)===null||at===void 0?void 0:at.traceInfo)!==null&&qe!==void 0?qe:(vt=O?.product)===null||vt===void 0?void 0:vt.traceInfo)!==null&&mt!==void 0?mt:""}}),$n(),j.current=!0,window.location.href=window.getJointUtmLink(xt))}},Me=O=>{var de,te,ge,ke,_e,ce,we,Re,je,Ue,We,Ke,Qe,Ze;D.current=new Date;const De=r[O.previousIndex];if(!De)return;O.previousIndex-O.activeIndex<0?(H?.({eventInfo:{eventSubject:"scrollDown",eventDescription:"User scroll down",contentId:(te=(de=De?.video)===null||de===void 0?void 0:de.itemId)!==null&&te!==void 0?te:"",productId:(ke=(ge=De?.product)===null||ge===void 0?void 0:ge.itemId)!==null&&ke!==void 0?ke:"",requestId:null,traceInfo:(ce=(_e=De?.video)===null||_e===void 0?void 0:_e.traceInfo)!==null&&ce!==void 0?ce:""}}),U(De),Y(De,O.previousIndex)):(H?.({eventInfo:{eventSubject:"scrollUp",eventDescription:"User scroll up",contentId:(Re=(we=De?.video)===null||we===void 0?void 0:we.itemId)!==null&&Re!==void 0?Re:"",productId:(Ue=(je=De.product)===null||je===void 0?void 0:je.itemId)!==null&&Ue!==void 0?Ue:"",requestId:null,traceInfo:(Ke=(We=De?.video)===null||We===void 0?void 0:We.traceInfo)!==null&&Ke!==void 0?Ke:""}}),U(De)),Be(De);const Ge=r[O.activeIndex];!(!((Qe=Ge?.video)===null||Qe===void 0)&&Qe.url)&&!(!((Ze=Ge?.video)===null||Ze===void 0)&&Ze.imgUrls)&&Ge?.product&&he?.({eventName:"ProductView"})},Be=O=>{var de,te,ge;!(!((de=O?.video)===null||de===void 0)&&de.url)&&!(!((te=O?.video)===null||te===void 0)&&te.imgUrls)&&O?.product&&X(O,O.product,(ge=O?.product)===null||ge===void 0?void 0:ge.bindCta,D.current,S)};se(()=>{const O=r[S];G&&Be(O)},[G,r,S]);const Se=O=>{var de,te,ge,ke,_e,ce;const we=r[O];if(!(!((de=we?.video)===null||de===void 0)&&de.url)&&(!((te=we?.video)===null||te===void 0)&&te.imgUrls)){const Re=Date.now();E.current=Re,H?.({eventInfo:{eventSubject:"viewImageCarouselStart",eventDescription:"User start view the image carousel",contentId:(ke=(ge=we?.video)===null||ge===void 0?void 0:ge.itemId)!==null&&ke!==void 0?ke:"",contentName:(_e=we?.video.title)!==null&&_e!==void 0?_e:"",imageStartTime:`${Re}`,contentTags:JSON.stringify((ce=we?.video.tags)!==null&&ce!==void 0?ce:[]),position:O+"",contentFormat:"image",traceInfo:we?.video.traceInfo}}),he?.({eventName:"ViewContent"})}},He=ne(()=>{var O;const de=S===0&&!Te?[(O=r?.[0])!==null&&O!==void 0?O:null]:r?.map((te,ge)=>S===ge||ge-1===S||ge+1===S?te:null);return Te?de:de.concat([{loading:!0}])},[r,S,Te]),Le=ne(()=>Z?m.createElement("div",{style:{height:ae,width:n,display:"flex",justifyContent:"center",alignItems:"center"}},m.createElement("img",{width:64,height:64,src:J,alt:"loading...",style:{objectFit:"contain"}})):He?.map((O,de)=>m.createElement(bt,{key:de,virtualIndex:de,style:{overflow:"hidden"}},O&&m.createElement(m.Fragment,null,O?.loading?m.createElement("div",{style:{height:ae,width:n,display:"flex",justifyContent:"center",alignItems:"center"}},m.createElement("img",{width:64,height:64,src:J,alt:"loading...",style:{objectFit:"contain"}})):m.createElement(m.Fragment,null,Fe(O,de),Xe(O,de),dt(O,de))))),[n,r,ae,Z,Xe,Fe,He,J,R]),Ye=ct("/pb_static/5beaaa5ce7f3477b99db3838619cc471.png"),it=ct("/pb_static/fea8668a8a894e4aa3a86bcc775e895e.png");return m.createElement("div",{id:"sxp-render",className:"clc-sxp-container"},Te&&m.createElement(Tn,{icon:Xr,styles:{background:"rgba(0,0,0,.3)",color:"#fff"},onClose:()=>{ye?.(!0)}}),ze,m.createElement(On,{tagList:v,setActiveIndex:c,style:{top:Ve}}),K?m.createElement(Gr,{imageUrl:t?.swipeTipIcon,style:{top:`${50-((w=t?.swipeTipOffset)!==null&&w!==void 0?w:0)}%`},duration:t?.swiperTipAniDur}):null,m.createElement(kt,{style:{marginTop:Oe},ref:me,onSlideChange:()=>{me.current.swiper.allowTouchMove=!1,setTimeout(()=>{me.current.swiper.allowTouchMove=!0},500)},onActiveIndexChange:O=>{c(O.activeIndex),!G&&(Me(O),!Te&&O?.activeIndex+2>=r?.length&&(P||(N(!0),q?.(Math.ceil(S/10)+1).then(()=>{N(!1)}))))},direction:"vertical",height:ae},(t?.isShowMute===void 0||t?.isShowMute===!0)&&m.createElement(kn,{style:{position:"fixed",visibility:!((C=(T=r?.[S])===null||T===void 0?void 0:T.video)===null||C===void 0)&&C.url?"visible":"hidden",zIndex:999,[(p=t?.muteIconXPosit)!==null&&p!==void 0?p:"right"]:(x=t?.muteIconX)!==null&&x!==void 0?x:0,[(y=t?.muteIconYPosit)!==null&&y!==void 0?y:"bottom"]:(A=t?.muteIconY)!==null&&A!==void 0?A:23},defaultValue:b,activeIcon:t?.unMuteIcon?t?.unMuteIcon:Ye,unactiveIcon:t?.muteIcon?t?.muteIcon:it,onChange:I}),Le),m.createElement(An,Object.assign({},(L=(g=(k=t?.hashTag)===null||k===void 0?void 0:k[0])===null||g===void 0?void 0:g.item)===null||L===void 0?void 0:L.props)))},Kr=({imgUrls:t,width:e,height:i,imgUrlsPostConfig:n,rec:l,index:o})=>m.createElement(kt,{defaultValue:0,direction:"horizontal",modules:[Zt,$t],pagination:{clickable:!0,bulletActiveClass:"swipe-item-active-bullet"},height:i,style:{width:e},loop:!0,autoplay:!1},t?.map(r=>m.createElement(bt,{key:r},m.createElement(_n,{src:r,height:i,imgUrlsPostConfig:n}))));var Qr=Ie(Kr);const Zr=({rec:t,index:e,height:i,data:n,muted:l,activeIndex:o,videoPostConfig:r,width:s})=>{const[a,u]=W(!1),d=re(null),{bffEventReport:f,sxpParameter:v,waterFallData:h,openHashtag:w}=Pe(),T=re(0),[C,p]=W(!1),[x,y]=W(!0),A=re(null),[k,g]=W("");se(()=>{d.current&&(d.current.muted=l)},[l]);const L=ue(()=>{var R;(R=d.current)===null||R===void 0||R.play()},[]),M=ct("/pb_static/06f28a2025c74c1cb49be6767316d827.png"),S=ue(()=>{var R,B,j,q,H,Z,le,be,me,Te,ye,ee,G;u(!1);const J=n[e];if(J&&(!((R=d?.current)===null||R===void 0)&&R.duration)){T.current=((B=d?.current)===null||B===void 0?void 0:B.currentTime)||0;const Ae=((q=(j=d.current)===null||j===void 0?void 0:j.duration)!==null&&q!==void 0?q:0).toFixed(2),pe=((Z=(H=d.current)===null||H===void 0?void 0:H.currentTime)!==null&&Z!==void 0?Z:0).toFixed(2),he=x?"0":"1";f?.({eventInfo:{eventSubject:"playVideo",eventDescription:"User played the video",contentId:(be=(le=J?.video)===null||le===void 0?void 0:le.itemId)!==null&&be!==void 0?be:"",contentName:(Te=(me=J?.video)===null||me===void 0?void 0:me.title)!==null&&Te!==void 0?Te:"",playType:he,startTime:pe,videoDuration:Ae,contentTags:JSON.stringify((ee=(ye=J?.video)===null||ye===void 0?void 0:ye.tags)!==null&&ee!==void 0?ee:[]),position:e+"",contentFormat:"video",traceInfo:(G=J?.video)===null||G===void 0?void 0:G.traceInfo}}),y(!1)}},[f,n,e,x]),c=ue(()=>{p(!0)},[]),E=ue(R=>()=>{var B,j,q,H,Z;if(!C)return;const le=(B=d.current)===null||B===void 0?void 0:B.paused;switch(R){case"start":if(!le)return;(j=d.current)===null||j===void 0||j.play(),u(!1);break;case"pause":if(le)return;(q=d.current)===null||q===void 0||q.pause(),u(!0);break;default:le?(H=d.current)===null||H===void 0||H.play():(Z=d.current)===null||Z===void 0||Z.pause(),u(!le);break}},[C]),b=ue(()=>{var R,B,j,q,H,Z,le,be,me,Te,ye,ee,G;const J=n[e],Ae=((B=(R=d.current)===null||R===void 0?void 0:R.duration)!==null&&B!==void 0?B:0).toFixed(2),pe=((q=(j=d.current)===null||j===void 0?void 0:j.currentTime)!==null&&q!==void 0?q:0).toFixed(2);if(!((H=d?.current)===null||H===void 0)&&H.duration){const he=(((Z=d?.current)===null||Z===void 0?void 0:Z.currentTime)-T.current).toFixed(2);f?.({eventInfo:{eventSubject:"playOverVideo",eventDescription:"User finished playing the video",contentId:(be=(le=J?.video)===null||le===void 0?void 0:le.itemId)!==null&&be!==void 0?be:"",contentName:(Te=(me=J?.video)===null||me===void 0?void 0:me.title)!==null&&Te!==void 0?Te:"",endTime:pe,videoDuration:Ae,playDuration:he,contentTags:JSON.stringify((ee=(ye=J?.video)===null||ye===void 0?void 0:ye.tags)!==null&&ee!==void 0?ee:[]),position:e+"",contentFormat:"video",traceInfo:(G=J?.video)===null||G===void 0?void 0:G.traceInfo}})}},[n,e,f]),I=ne(()=>r?.mode==="2",[r]),D=ne(()=>{var R;return r?.mode==="2"?`translateY(-${50+((R=r?.offsetTop)!==null&&R!==void 0?R:0)}%) translate3d(0px, 0px, 0px)`:"translateY(-50%)"},[r]),P=ne(()=>{var R;return((R=t?.video)===null||R===void 0?void 0:R.cover)||k},[k,t]),N=ue(()=>{if(!A||!d||!d.current||!A.current)return;const R=d?.current,B=A?.current,j=B.getContext("2d"),q=window?.innerWidth,H=window?.innerHeight;B.height=H,B.width=q,j?.drawImage(R,0,0,B.width,B.height),g(B.toDataURL())},[]);se(()=>{var R,B,j,q;if(d.current){if(u(!1),!d.current.src){const H=t?.video.url;if(H.includes(".m3u8"))if(typeof window<"u"&&window?.Hls.isSupported()){const Z=new window.Hls;Z.loadSource(H),Z.attachMedia(d.current)}else d.current.canPlayType("application/vnd.apple.mpegurl"),d.current.src=H;else d.current.src=H;d.current.setAttribute("x5-playsinline","true"),d.current.setAttribute("webkit-playsinline","true")}return(R=d.current)===null||R===void 0||R.addEventListener("loadedmetadata",c),(B=d.current)===null||B===void 0||B.addEventListener("canplay",c),(j=d.current)===null||j===void 0||j.addEventListener("playing",S),(q=d.current)===null||q===void 0||q.addEventListener("loadeddata",N),()=>{var H,Z,le,be;(H=d.current)===null||H===void 0||H.removeEventListener("loadedmetadata",c),(Z=d.current)===null||Z===void 0||Z.removeEventListener("canplay",c),(le=d.current)===null||le===void 0||le.removeEventListener("playing",S),(be=d.current)===null||be===void 0||be.removeEventListener("loadeddata",N)}}},[c,S,t?.video,N]);const F=ne(()=>!v?.placeholder_image||C?null:m.createElement("img",{style:{position:"absolute",left:0,top:0,width:"100%",height:"100%",objectFit:"cover"},src:v?.placeholder_image,alt:"video poster"}),[C,v?.placeholder_image]);se(()=>{const R=()=>{var B,j;o===e&&(!((B=t?.video)===null||B===void 0)&&B.url)&&(!((j=d?.current)===null||j===void 0)&&j.src)&&!a&&E("pause")()};return window.addEventListener("beforeunload",R),()=>{window.removeEventListener("beforeunload",R)}},[o,e,t,d,E,a]);const _=ne(()=>I?{filter:"blur(10px)",transform:"translate3d(0px, 0px, 0px) scale(1.2)"}:{},[I]);return t?.video?m.createElement(m.Fragment,null,I?m.createElement("div",{className:"video-container",key:t?.video.itemId,onClick:E(),style:{position:"relative",width:s,height:i,overflow:"hidden"}},m.createElement(lt,{src:P,style:Object.assign({height:i,width:s,objectFit:"cover"},_)}),m.createElement("canvas",{ref:A,style:{display:"none"}}),m.createElement("div",{style:{position:"absolute",width:s,height:i,top:"50%",transform:D,left:0,right:0}},m.createElement("div",{style:{position:"relative",width:s,height:"100%"}},m.createElement("video",{id:`pb-video-${e}`,className:"clc-pb-video",ref:d,autoPlay:!0,crossOrigin:"anonymous",muted:!0,controls:!1,playsInline:!0,preload:"auto",onPause:b,onEnded:L,style:{width:"100%",height:i,objectFit:"contain"}}),m.createElement("img",{hidden:!a,className:"clc-pb-video-pause",src:M,alt:"video pause image"}))),F):m.createElement("div",{className:"video-container",key:t?.video.itemId,onClick:E(),style:{position:"relative",width:s,height:i,overflow:"hidden"}},m.createElement("video",{id:`pb-video-${e}`,className:"clc-pb-video",style:{width:"100%"},ref:d,crossOrigin:"anonymous",muted:!0,autoPlay:!0,controls:!1,playsInline:!0,preload:"auto",onPause:b,onEnded:L}),F,m.createElement("img",{hidden:!a,className:"clc-pb-video-pause",src:M,alt:"video pause image"}))):null};var $r=Ie(Zr);const ki={};Object.values(Ci).forEach(t=>{ki[t.extend.type]=t});const es="/pb_static/f71266d2c64446c5ae6a5a7f5489cc0a.png",ts="/pb_static/f07900fe3f0f4ae188ea1611d4801a44.png",is=({data:t=[],globalConfig:e,tipText:i,nudge:n,tempMap:l,descStyle:o,hashTagStyle:r,containerHeight:s=664,containerWidth:a=375,appDomain:u,tagList:d=[]})=>{const f=ne(()=>{let g=0;return e?.logoUrl&&e?.isShowLogo&&(g+=45),d.length>0&&(g+=45),s-g},[e,s,d]),v=(g,L)=>{var M,S,c,E;if(!((M=g?.video)===null||M===void 0)&&M.url)return m.createElement($r,{rec:g,index:L,muted:!0,width:a,data:t??[],height:f,activeIndex:L,videoPostConfig:e?.videoPost});if(!((S=g?.video)===null||S===void 0)&&S.imgUrls)return m.createElement(Qr,{key:g?.video.itemId,imgUrls:g?.video.imgUrls,width:a,height:f,rec:g,index:L,imgUrlsPostConfig:e?.imgUrlsPost});if(g.product&&g.product&&Array.isArray(e?.productPost)&&((c=e?.productPost)===null||c===void 0?void 0:c.length)>0)return(E=e?.productPost)===null||E===void 0?void 0:E.map((b,I)=>{var D,P,N,F,_,R,B,j;const q=ki[(D=b?.item)===null||D===void 0?void 0:D.type],H=ni(q),Z=(P=q?.extend)===null||P===void 0?void 0:P.defaulSetting;return m.createElement(H,Object.assign({key:`${L}${I}`,textStyle:Object.assign(Object.assign({},Z?.textStyle),(N=b?.item)===null||N===void 0?void 0:N.textStyle),bindDatas:(_=(F=b?.item)===null||F===void 0?void 0:F.bindDatas)!==null&&_!==void 0?_:[]},Z?.props,(R=b?.item)===null||R===void 0?void 0:R.props,{event:((B=b?.item)===null||B===void 0?void 0:B.event)||{},id:b?.id,rec:g,isPost:!0,tipText:i,style:Object.assign(Object.assign(Object.assign({},Z?.style),(j=b?.item)===null||j===void 0?void 0:j.style),{width:a,height:f,overflow:"auto"}),index:L}))})},h=ne(()=>e?.logoUrl&&e?.isShowLogo?m.createElement("div",{className:"clc-sxp-logo-banner",style:{backgroundColor:e?.color}},m.createElement("img",{src:e?.logoUrl,alt:"logo"})):null,[e]),w=(g,L)=>e?.isShowCTA===void 0||e?.isShowCTA?m.createElement("div",{className:"clc-sxp-bottom-card"},m.createElement(oi,{rec:g,index:L,tempMap:l,resolver:ki})):null,T=(g,L)=>{var M,S,c,E,b,I,D;return g?.video?m.createElement(m.Fragment,null,((M=g?.video)===null||M===void 0?void 0:M.title)&&m.createElement("div",{className:"clc-sxp-bottom-shadow"}),m.createElement("div",{className:"clc-sxp-bottom"},m.createElement(Dn,{nudge:n}),w(g,L),m.createElement("div",null,m.createElement(ii,{className:"clc-sxp-bottom-text",isPost:!0,foldText:i?.foldText,unfoldText:i?.unfoldText,text:(c=(S=g?.video)===null||S===void 0?void 0:S.title)!==null&&c!==void 0?c:"",style:Object.assign(Object.assign({},o),{textShadow:e?.isOpenTextShadow?"2px 2px 4px rgba(0, 0, 0, 0.5)":"none"})})),m.createElement(Pn,{index:L,tags:(b=(E=g?.video)===null||E===void 0?void 0:E.hashTags)!==null&&b!==void 0?b:[],itemId:(I=g?.video)===null||I===void 0?void 0:I.itemId,itemType:!((D=g?.video)===null||D===void 0)&&D.itemId?"VIDEO":null,rec:g,hashTagStyle:r}))):null},C=ct(ts,u),p=ct(es,u),x=(g,L)=>{var M,S,c,E;if(!e?.isShowLike)return;let b=(M=e?.likeIconY)!==null&&M!==void 0?M:400;return b<40&&(b+=40),g?.video?m.createElement(In,{key:g.position,activeIcon:(S=e?.likeIcon)!==null&&S!==void 0?S:C,unActicveIcon:(c=e?.unlikeIcon)!==null&&c!==void 0?c:p,position:L,active:g.isCollected,recData:g,className:"clc-sxp-like-button",style:{top:b,right:(E=e?.likeIconX)!==null&&E!==void 0?E:0}}):null},y=ct("/pb_static/5beaaa5ce7f3477b99db3838619cc471.png",u),A=ct("/pb_static/fea8668a8a894e4aa3a86bcc775e895e.png",u),k=(g,L)=>{var M,S,c,E;return m.createElement("div",{style:{position:"relative",border:"1px solid #e1e1e1"}},h,m.createElement(On,{tagList:d}),m.createElement(kn,{style:{position:"absolute",right:(M=e?.muteIconX)!==null&&M!==void 0?M:0,visibility:!((c=(S=t?.[L])===null||S===void 0?void 0:S.video)===null||c===void 0)&&c.url?"visible":"hidden",bottom:(E=e?.muteIconY)!==null&&E!==void 0?E:23,zIndex:999},defaultValue:!0,activeIcon:e?.unMuteIcon?e?.unMuteIcon:y,unactiveIcon:e?.muteIcon?e?.muteIcon:A}),v(g,L),T(g,L),x(g,L))};return m.createElement("div",{className:xe({width:"100%",height:s,display:"flex",boxSizing:"border-box",gap:16,pointerEvents:"none",userSelect:"none",transform:"scale(0.7) translateX(-22%) translateY(-140px)"})},t?.map((g,L)=>k(g,L)))};var ns=Ie(is);const os=()=>{const{schema:t,resolver:e,popup:i}=ft(),{setPopupDetailData:n,popupDetailData:l,popupCurTimeRef:o,checkCommodityIndexRef:r}=Pe(),{productView:s}=$e(),[a,u]=W();se(()=>{const v=()=>{o.current=new Date};return v(),window.addEventListener("pageshow",v),()=>{window.removeEventListener("pageshow",v)}},[]),se(()=>{i&&i?.id&&i?.id!==""&&(o.current=new Date,u(i))},[i]);const d=()=>{var v,h,w,T,C,p,x,y,A,k,g,L,M,S,c,E,b,I;if(!i||i?.id===""||!a||new Date-o.current<((v=i?.duration)!==null&&v!==void 0?v:0))return;u(Object.assign(Object.assign({},i),{id:""}));const D=(T=(w=(h=t?.sxpPageConf)===null||h===void 0?void 0:h.globalConfig)===null||w===void 0?void 0:w.popupList)===null||T===void 0?void 0:T.find(P=>P?.id===i?.id);if(((C=D?.item)===null||C===void 0?void 0:C.type)==="CommodityDetail"||((p=D?.item)===null||p===void 0?void 0:p.type)==="CommodityDetailDiroNew"){const P=l;let N=(y=(x=P?.video)===null||x===void 0?void 0:x.bindProduct)!==null&&y!==void 0?y:(k=(A=P?.video)===null||A===void 0?void 0:A.bindProducts)===null||k===void 0?void 0:k[0],F=(M=(L=(g=P?.video)===null||g===void 0?void 0:g.bindProduct)===null||L===void 0?void 0:L.bindCta)!==null&&M!==void 0?M:(E=(c=(S=P?.video)===null||S===void 0?void 0:S.bindProducts)===null||c===void 0?void 0:c[0])===null||E===void 0?void 0:E.bindCta;if(r?.current>=0){const _=(I=(b=P?.video)===null||b===void 0?void 0:b.bindProducts)===null||I===void 0?void 0:I[r?.current];_&&(N=_,F=_?.bindCta)}N&&F&&s(P,N,F,o.current,l?.index)}setTimeout(()=>{window?.sxpPopup(""),n?.(null),r.current=-1},i?.duration)},f=ne(()=>{var v,h,w;return(w=(h=(v=t?.sxpPageConf)===null||v===void 0?void 0:v.globalConfig)===null||h===void 0?void 0:h.popupList)===null||w===void 0?void 0:w.map((T,C)=>{var p,x,y,A,k,g,L,M,S,c,E,b,I,D,P;if(T?.id===i?.id){const N=e[(p=T?.item)===null||p===void 0?void 0:p.type],F=ni(N),_=((A=(y=(x=T?.item)===null||x===void 0?void 0:x.event)===null||y===void 0?void 0:y.onClick)===null||A===void 0?void 0:A.linkType)==="externalLink",R=((L=(g=(k=T?.item)===null||k===void 0?void 0:k.event)===null||g===void 0?void 0:g.onClick)===null||L===void 0?void 0:L.linkType)==="popup",B=(M=N?.extend)===null||M===void 0?void 0:M.defaulSetting;return m.createElement(F,Object.assign({key:C,style:Object.assign(Object.assign(Object.assign({},B?.style),(S=T?.item)===null||S===void 0?void 0:S.style),{width:(c=window.innerWidth)!==null&&c!==void 0?c:"100vw",height:"100%"}),textStyle:Object.assign(Object.assign({},B?.textStyle),(E=T?.item)===null||E===void 0?void 0:E.textStyle),bindDatas:(I=(b=T?.item)===null||b===void 0?void 0:b.bindDatas)!==null&&I!==void 0?I:[]},B?.props,(D=T?.item)===null||D===void 0?void 0:D.props,{event:((P=T?.item)===null||P===void 0?void 0:P.event)||{},schema:t,id:T?.id,isExternalLink:_,isPopup:R,onClose:d}))}else return m.createElement(m.Fragment,null)})},[t,i,e,d]);return m.createElement(jt,{popup:a,onClose:d,padding:0,modalStyle:{position:"fixed"}},f)},_i={};Object.values(Ci).forEach(t=>{_i[t.extend.type]=t});const ls=({data:t,maxSize:e=10,defaultSize:i=10,hashTagSize:n=20,loadingImage:l,appDomain:o,licenseUrl:r,enabledMetaConversionApi:s})=>{var a,u,d,f,v,h,w,T,C,p,x;const y=ne(()=>{var A;return location?.search?(A=location?.search)===null||A===void 0?void 0:A.replace("?",""):""},[]);return m.createElement(Ji,{resolver:_i,enableDataSource:!1,schema:t?.data,utmVal:y},m.createElement(Wi,{utmVal:y,dataSources:t?.data_sources,sxpParameter:t?.sxp_parameter,maxSize:(u=(a=t?.sxp_parameter)===null||a===void 0?void 0:a.personalized_recommend)!==null&&u!==void 0?u:e,defaultSize:(f=(d=t?.sxp_parameter)===null||d===void 0?void 0:d.default_recommend)!==null&&f!==void 0?f:i,hashTagSize:(h=(v=t?.sxp_parameter)===null||v===void 0?void 0:v.hash_tag_size)!==null&&h!==void 0?h:n,loadingImage:l,appDomain:o,enabledMetaConversionApi:s,isShowTag:(C=(T=(w=t?.data)===null||w===void 0?void 0:w.sxpPageConf)===null||T===void 0?void 0:T.globalConfig)===null||C===void 0?void 0:C.isShowTag,globalConfig:(x=(p=t?.data)===null||p===void 0?void 0:p.sxpPageConf)===null||x===void 0?void 0:x.globalConfig,utmParameter:t?.utm_parameter,render:({rtcList:A,tagList:k})=>{var g;return m.createElement(m.Fragment,null,m.createElement(Mn,Object.assign({},(g=t?.data)===null||g===void 0?void 0:g.sxpPageConf,{tagList:k,data:A,resolver:_i,licenseUrl:r})),m.createElement(os,null))}}))};var as=Ie(ls);const Ln=Nt({}),rs=({children:t,data:e})=>{var i,n,l,o,r,s,a,u,d,f,v,h,w;const[T,C]=W(!1),[p,x]=W(!1);return m.createElement(Ln.Provider,{value:{sxpPrameter:{bottomImage:(i=e?.sxp_parameter)===null||i===void 0?void 0:i.bottom_image,defaultRecommend:(n=e?.sxp_parameter)===null||n===void 0?void 0:n.default_recommend,personalizedRecommend:(l=e?.sxp_parameter)===null||l===void 0?void 0:l.personalized_recommend,placeholderImage:(o=e?.sxp_parameter)===null||o===void 0?void 0:o.placeholder_image,hashTagSize:(r=e?.sxp_parameter)===null||r===void 0?void 0:r.hash_tag_size,loadingImage:(s=e?.sxp_parameter)===null||s===void 0?void 0:s.loading_image,privacyContent:(a=e?.sxp_parameter)===null||a===void 0?void 0:a.privacy_context,privacyNecessity:(u=e?.sxp_parameter)===null||u===void 0?void 0:u.privacy_necessity,privacyPolicyTitle:(d=e?.sxp_parameter)===null||d===void 0?void 0:d.privacy_policy_title,privacyPolicyUrl:(f=e?.sxp_parameter)===null||f===void 0?void 0:f.privacy_policy_url,privacyTitle:(v=e?.sxp_parameter)===null||v===void 0?void 0:v.privacy_title,template:(h=e?.sxp_parameter)===null||h===void 0?void 0:h.template,industry:(w=e?.sxp_parameter)===null||w===void 0?void 0:w.industry},appDomain:e?.appDomain,openHashtag:T,setOpenHashtag:C,openConsent:p,setOpenConsent:x,sxpFontLinks:e?.sxpFontLinks}},t)};function ss(){return Rt(Ln)}export{ns as DiyPortalPreview,rs as EditorDataProvider,jt as Modal,Wi as SxpDataSourceProvider,as as SxpPageCore,Mn as SxpPageRender,lo as core,Xn as default,Ci as materials,ss as useEditorDataProvider};
|
5
|
+
18-karat gold, this necklace is embellished with hand-set diamonds.`,maxStr:79,className:"pb-commondity-content-info",style:V?.info})))},se=()=>{var N,Y;return p.createElement(p.Fragment,null,(B||L?.link)&&p.createElement("button",{"aria-label":(N=Fe?.enTitle)!==null&&N!==void 0?N:"Purchase on Website",onClick:kt,className:"pb-commondity-btn",style:pe},p.createElement("span",{dangerouslySetInnerHTML:{__html:xe((Y=Fe?.enTitle)!==null&&Y!==void 0?Y:"Purchase on Website",pe)}})))},Re=we(N=>N?.lineClamp?Object.assign(Object.assign({},N),{overflow:"hidden",WebkitLineClamp:N?.lineClamp,textOverflow:"ellipsis",display:"-webkit-box",webkitBoxOrient:"vertical"}):N,[]),Ue=we(N=>{Ie.current=new Date,je(N),Be.current=N,Ae?.current&&(Ae.current.swiper.slideTo(0),Ae.current.swiper.autoplay.start())},[]),Ge=we(()=>{var N,Y,te;if(!G)return p.createElement(_n,{products:(N=z?.video)===null||N===void 0?void 0:N.bindProducts,data:X,defImg:(te=(Y=re?.bottom_image)!==null&&Y!==void 0?Y:R)!==null&&te!==void 0?te:"",style:{padding:"0 19px"},onCLick:Ue,popupDetailData:ae,check:Ne})},[Ne]),We=ue(()=>{const N={left:"commondityDetail-swiper-clickable-left",center:"commondityDetail-swiper-clickable-center",right:"commondityDetail-swiper-clickable-right"};return N?.[K?.dotsAlign]},[K?.dotsAlign]),I=((C=(A=z?.video)===null||A===void 0?void 0:A.bindProduct)===null||C===void 0?void 0:C.remark)||((k=(M=(g=z?.video)===null||g===void 0?void 0:g.bindProducts)===null||M===void 0?void 0:M[0])===null||k===void 0?void 0:k.remark)||((S=z?.product)===null||S===void 0?void 0:S.remark);return p.createElement(p.Fragment,null,p.createElement("div",Object.assign({className:Ee(Object.assign({},O))},de),p.createElement("div",{style:{position:"relative"}},L&&((s=L?.homePage)===null||s===void 0?void 0:s.length)>0&&p.createElement(Pt,{height:Se,modules:[ei,ti],pagination:{clickable:!0,bulletActiveClass:"swipe-item-active-bullet",clickableClass:We},loop:!0,autoplay:{delay:K?.delay*1e3},ref:Ae},p.createElement(p.Fragment,null,(E=L?.homePage)===null||E===void 0?void 0:E.map(N=>{var Y;return p.createElement(bt,{key:N},p.createElement("div",{style:{overflow:"hidden",width:W,height:Se}},p.createElement(lt,{style:{height:"100%",width:"100%",objectFit:"cover",display:"block",objectPosition:`50% ${K?.translateY?K?.translateY+50:50}%`},src:(Y=N??re?.bottom_image)!==null&&Y!==void 0?Y:R})))}))),!(!((T=L?.homePage)===null||T===void 0)&&T.length)&&p.createElement("div",{className:Ee({height:Se,width:W})},p.createElement("img",{className:Ee({objectFit:"cover",width:"100%",height:"100%"}),src:(_=re?.bottom_image)!==null&&_!==void 0?_:R,alt:"pdp image"})),I&&le||!L&&le&&p.createElement("div",{style:{padding:"5px 10px",display:"flex",alignItems:"center",position:"absolute",right:"10px",bottom:"10px",zIndex:1,background:"#fff",borderRadius:"3px"},onClick:()=>fe(!0)},p.createElement("img",{src:le,alt:"3d",width:"20px",height:"20px",style:{marginRight:"5px"}}),p.createElement("span",{style:{fontSize:"12px"}},"Try in 3D"))),Ge(),p.createElement("div",{className:"pb-commondity-content"},De({isPost:G}))),se(),p.createElement(Lt,{visible:U,onClose:()=>ye(!1)},p.createElement("div",{style:{paddingBottom:"80px"}},De({isPost:!1})),se()),p.createElement(Lt,{visible:Pe,padding:0,isFullScreen:!0,onClose:()=>fe(!1)},p.createElement("iframe",{src:I,style:{width:"100%",height:"calc(100% - 50px)",marginTop:"40px",border:"none"}})))};var pd=Ce(vd),md=[{title:"\u6ED1\u52A8\u4E8B\u4EF6",child:[{type:"Switch",label:"\u6ED1\u52A8\u94FA\u6EE1\u5168\u5C4F",name:["isScrollFullScreen"]}]}];const fd=tt(pd,{displayName:"\u5546\u54C1\u8BE6\u60C5",icon:"",category:"popup",type:"CommodityDetail",related:{settingRender:ko,interactionRender:md},defaulSetting:{props:{swiper:{dotsAlign:"center",delay:3},commodityStyles:{price:{color:"#000",fontSize:18,marginTop:24,marginBottom:10},title:{color:"#000",fontSize:23},collection:{fontSize:12,color:"#000",marginBottom:14},info:{color:"gray",fontSize:12},taxInfo:{color:"#000",fontSize:13,textAlign:"left",marginBottom:"10px"}},buttonStyle:{backgroundColor:"#000",fontSize:12,height:45,fontWeight:"bold",textAlign:"center",color:"rgba(255, 255, 255, 0.9)"},commodityImgRatio:{w:1,h:1}},style:{}},w:100,h:40,sort:1});var hd=[{title:"\u70B9\u51FB\u4E8B\u4EF6",child:[{type:"link",name:"onClick"}]}],gd=[{title:"\u5F39\u7A97\u80CC\u666F",child:[{type:"Number",label:"\u5DE6\u53F3\u8FB9\u8DDD",name:["props","popupBg","horizontalMargin"]},{type:"Number",label:"\u4E0B\u8FB9\u8DDD",name:["props","popupBg","bottomMargin"]}]},{title:"\u5185\u5BB9",child:[{type:"Media",label:"\u56FE\u6807",name:["props","icon"],mediaType:"Image"},{type:"TextArea",label:"\u5185\u5BB9",name:["props","content"]},{type:"Group",label:"\u5185\u5BB9\u5B57\u4F53",child:[{type:"Select",name:["props","contentStyle","fontFamily-cn"],bottomText:"\u4E2D\u6587\u5B57\u4F53"},{type:"Select",name:["props","contentStyle","fontFamily-en"],bottomText:"\u82F1\u6587/\u5176\u4ED6\u5B57\u4F53"}]},{type:"Group",label:"",child:[{type:"Color",name:["props","contentStyle","color"],initialValue:"#000"},{type:"Number",name:["props","contentStyle","fontSize"],addonAfter:"px",initialValue:14}]},{label:"\u5185\u5BB9\u5B57\u4F53\u95F4\u8DDD",type:"TextSpace",name:["props","contentStyle"]},{type:"Group",label:"\u63D0\u4EA4\u6309\u94AE\u5B57\u4F53",child:[{type:"Select",name:["props","submitButtonStyle","fontFamily-cn"],bottomText:"\u4E2D\u6587\u5B57\u4F53"},{type:"Select",name:["props","submitButtonStyle","fontFamily-en"],bottomText:"\u82F1\u6587/\u5176\u4ED6\u5B57\u4F53"}]},{type:"Group",label:"",child:[{type:"Color",name:["props","submitButtonStyle","color"],initialValue:"#fff"},{type:"Number",name:["props","submitButtonStyle","fontSize"],addonAfter:"px",initialValue:12}]},{label:"\u63D0\u4EA4\u6309\u94AE\u95F4\u8DDD",type:"TextSpace",name:["props","submitButtonStyle"]},{type:"TextStyle",name:["props","submitButtonStyle"]},{type:"TextAlign",name:["props","submitButtonStyle"]},{label:"\u63D0\u4EA4\u6309\u94AE\u989C\u8272",type:"Color",name:["props","submitButtonStyle","backgroundColor"],initialValue:"#000"}]}],Pn="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAABHBJREFUeF7lmzuoFkcYhp/TihdIl0JBESubSCCCih4NXgJeUphCjyKmEEVtLRSjooWtShILRRJtgpCoeLzgLUZBQbTwAoooqLWoCWIXeZdd3bP++8/st7OX33+ac2Dn8r3Pvzv7zcy7A9RT5gDjgQnx3/T/iuA58Cz+m/7/StXhDVQ0gATOBhYCi4GxxnHeAKeAs8DfMSBjV52bhQTwBbApFj4YNMqPnV0GrgL7gJchxggFQMI3A5NDBOXRx+MYwn6Pul2rlAWwMv7VvykbiLH9TUAQjhnbYwUwA9gKLLIOHLjdGWAPcL1ovxYAG4G9wKiig1Vc/y2wBThQZJyiAA4Ba4sM0EDdw8CPvuMWAXAb+Mq344br3QGm+cTgC+B/n85aWMepz1kBOBknMy3U5wxJSdSSbrVcAPR+V9LRy0X5SW6+0A3AMuDPXlaeiv174K9OWvIAfA1cAMZ9JgBeA98Ct7J68gAMtyjJCfUbKFn6zgeA0tujoUZtWT9D2bS50x1wA2gqt6+al9YO09ODZAF8DrO+C+KIt0IagNbzIlTXktYVaKfr9+PNkSklchMtpXWHR/sJaQA7gJ8sUdXURuJ/AB7E4/0BLDeOvROQ3hEA/gFmGjusullWfDKeFcI1YFYawETgSdUqjP3niS8LYRLwNHkE1gM/GwOssplLfBkIG4BfEgBKE5dWqcTQt694da1td22YFikngGUJgH+B0UVaV1y3iHiFYpnA/wPGCICFXpX66xCfxD8oAKuA3wIpegToHW0tdYpXjKsFQLu7u60Rx+3exSCPG29HdVO3eI25TQB+BdaVAKCMSneRVpBJKfpMNiFesR4UgNOdlomeQF4AWj3quCpbfCE0JV7xDgvAXWCqp+B0tYfACkC7xXnFBaFJ8Yr5ngC8Mu78KHnS4+MqeRCaFq+4X5cB8MnmQoE7oQ3iPwCwPgJWEdZ2rjvNcj16BMpMghYxWsElS1pX0K45xNXedT2aBMu+BotCcAVlfZX69puuF70GQyRCoSFU/csnEKJEKFQqHApCXeIFIUqFQy6GykKoU7wARIuh6HVQwsmVffasEOoWLwfauASADkKU0oYqRSHULV465SsaSgAoqfk9lPq4H18ITYhXiJr7jiYAZGyUUzN0cUFoSrx0yrX6PH0ucEmTQmgCXdb5TYrX/uFcaa3rYCR7JzQpXro1vg5HRgCo+mhMEOT3/RKQYaGpkns0poD6+nA0+UX6+nhcEPreICEIfW2REQCZoc+30A9snTjlI57fyUzdzSYnU3RpP7414sDtNLl3NFG7jJK9YI52sepqnnYBUOe9ZJLOwnCapn0AqNO+NksnVHvJNO00SSeifO+ApH4vZIpdzdHZZ6QoALWXifqI8TTJNWGVua5drTV5pui8ji0A1JfM1Lta5CeWD3h7JzO0i6gVQNJv3342lwXbtx9OpkFoP0ET0LwKDZcyOF5s46ez2TtCxkt9OL0gBmJ1oMnJJcHnYo/wU9czXfR62TnAd7zWfj7/HrAAAKDnDZ8VAAAAAElFTkSuQmCC";const bd=t=>{var e;if(!t||typeof t!="object")return null;const{mode:i,link:n,file:l,src:o}=t;switch(i){case 2:return n||null;case 3:return o||null;default:return l&&l.length>0?(e=l[0])===null||e===void 0?void 0:e.url:null}},yd=t=>{var{content:e,btnText:i,style:n,icon:l,isPopup:o,isExternalLink:a,onClose:r,onClick:d,submitButtonStyle:u,contentStyle:c}=t,f=Ze(t,["content","btnText","style","icon","isPopup","isExternalLink","onClose","onClick","submitButtonStyle","contentStyle"]);const{popupDetailData:m}=Oe(),{jumpToWeb:h}=et(),w=typeof l=="string"?l:bd(l),y=()=>{var P,v,x;if(a){const b=m,A=(P=b?.video)===null||P===void 0?void 0:P.bindProduct,C=(x=(v=b?.video)===null||v===void 0?void 0:v.bindProduct)===null||x===void 0?void 0:x.bindCta,g=m?.index;h(b,A,C,g)}o||r?.(),d?.()};return p.createElement("div",Object.assign({className:`pb-prompt ${Ee(Object.assign({},n))}`},f),p.createElement("div",{className:"pb-prompt-icon"},p.createElement("img",{width:"100%",src:w??Pn,alt:"success image"})),p.createElement("div",{className:"pb-prompt-content",style:c,dangerouslySetInnerHTML:{__html:xe(e,c)}}),p.createElement("button",{"aria-label":i,className:"pb-prompt-btn",style:u,onClick:y,dangerouslySetInnerHTML:{__html:xe(i,u)}}))};var wd=Ce(yd);const Sd=tt(wd,{displayName:"\u63D0\u4EA4\u6210\u529F",icon:"",category:"popup",type:"Prompt",related:{settingRender:gd,bindableProps:[],interactionRender:hd},defaulSetting:{props:{icon:Pn,content:"You have successfully completed the appointment!",btnText:"OK"},style:{}},w:100,h:40,sort:3});var xd=[{title:"\u5F39\u7A97\u80CC\u666F",child:[{type:"Number",label:"\u5DE6\u53F3\u8FB9\u8DDD",name:["props","popupBg","horizontalMargin"]},{type:"Number",label:"\u4E0B\u8FB9\u8DDD",name:["props","popupBg","bottomMargin"]}]},{title:"\u5546\u54C1\u56FE\u7247",child:[{type:"Group",label:"\u5BBD\u9AD8\u6BD4",child:[{type:"Number",name:["props","commodityImgRatio","w"],addonAfter:"w"},{type:"Number",name:["props","commodityImgRatio","h"],addonAfter:"h"}]},{type:"Radius",label:"\u8F6E\u64AD\u6307\u793A\u5668",options:[{label:"\u5C45\u5DE6",value:"left"},{label:"\u5C45\u4E2D",value:"center"},{label:"\u5C45\u53F3",value:"right"}],name:["props","swiper","dotsAlign"]},{type:"Number",name:["props","swiper","delay"],addonAfter:"s"},{type:"Group",child:[{label:"\u5C45\u4E2D\u5782\u76F4\u504F\u79FB",type:"Number",name:["props","swiper","translateY"],min:-1e3,addonAfter:"%",initialValue:0}]}]},{title:"\u591A\u5546\u54C1\u5207\u6362\u5668",child:[{type:"Switch",name:["props","commodityGroup","open"],label:"\u5FEB\u901F\u5207\u6362\u5F00\u5173"},{type:"Group",child:[{label:"\u5C45\u4E2D\u5782\u76F4\u504F\u79FB",type:"Number",name:["props","commodityGroup","translateY"],min:-1e3,addonAfter:"%",initialValue:0}]},{type:"Group",child:[{label:"\u4E0A\u8FB9\u8DDD",name:["props","commodityGroup","style","marginTop"],type:"Number",addonAfter:"px",initialValue:20},{label:"\u4E0B\u8FB9\u8DDD",name:["props","commodityGroup","style","marginBottom"],type:"Number",addonAfter:"px"}]}]},{title:"\u5546\u54C1\u6587\u672C",child:[{name:["props","commodityStyles"],type:"SelectLinkage",child:[{label:"\u5B57\u6BB5",type:"Select",options:[{label:"\u5546\u54C1\u540D\u79F0",value:"title"},{label:"\u7CFB\u5217\u540D\u79F0",value:"collection"},{label:"\u4EF7\u683C",value:"price"},{label:"\u7A0E\u8D39\u8BF4\u660E",value:"taxInfo"},{label:"\u5546\u54C1\u63CF\u8FF0",value:"info"}],name:["props","commodityStyles","field"],initialValue:"title"},{type:"Group",label:"\u6807\u9898\u5B57\u4F53",child:[{type:"Select",name:["fontFamily-cn"],bottomText:"\u4E2D\u6587\u5B57\u4F53"},{type:"Select",name:["fontFamily-en"],bottomText:"\u82F1\u6587/\u5176\u4ED6\u5B57\u4F53"}]},{type:"Group",label:"",child:[{type:"Color",name:["color"]},{type:"Number",addonAfter:"px",name:["fontSize"]}]},{label:"\u6807\u9898\u6837\u5F0F",type:"TextStyle"},{label:"\u6807\u9898\u5BF9\u9F50",type:"TextAlign"},{label:"\u9ED8\u8BA4\u884C\u6570",type:"Number",name:["lineClamp"]},{label:"\u95F4\u8DDD",type:"TextSpace"},{label:"\u4EF7\u683C\u5343\u5206\u7B26\u5C55\u793A",type:"Switch",name:["enableFormattedPrice"],initialValue:!0}]}]},{title:"\u8D2D\u4E70\u6309\u94AE\u6837\u5F0F",child:[{type:"Color",label:"\u80CC\u666F\u8272",name:["props","buttonStyle","backgroundColor"],initialValue:"#000"},{type:"Group",label:"\u5C3A\u5BF8",child:[{type:"Number",name:["props","buttonStyle","height"],addonAfter:"H"}]},{type:"Group",label:"\u5706\u89D2",child:[{type:"Slider",name:["props","buttonStyle","borderRadius"],max:100},{type:"Number",name:["props","buttonStyle","borderRadius"],addonAfter:"px",max:100}]},{type:"TextMargin",name:["props","buttonStyle"]},{type:"Group",label:"\u5B57\u4F53",child:[{type:"Select",name:["props","buttonStyle","fontFamily-cn"],bottomText:"\u4E2D\u6587\u5B57\u4F53"},{type:"Select",name:["props","buttonStyle","fontFamily-en"],bottomText:"\u82F1\u6587/\u5176\u4ED6\u5B57\u4F53"}]},{type:"Group",label:"",child:[{type:"Color",name:["props","buttonStyle","color"],initialValue:"#fff"},{type:"Number",name:["props","buttonStyle","fontSize"],addonAfter:"px"}]},{type:"TextStyle",name:["props","buttonStyle"]},{type:"TextAlign",name:["props","buttonStyle"]},{label:"\u95F4\u8DDD",type:"TextSpace",name:["props","buttonStyle"]}]},{title:"Iframe\u5546\u54C1\u5F39\u7A97",child:[{label:"\u5F39\u7A97\u6309\u94AE",type:"Upload",name:["props","iframeIcon"],text:"\u5EFA\u8BAE\u5C3A\u5BF8\uFF1A106 * 41"}]}];const Td=t=>{var e,i,n,l,o,a,r,d,u,c,f,m,h,w,y,P,v,x,b,A,C,g,M,k,S,s,E,T,_,D,O,j,H,{style:F,isDefault:B,rec:R,viewTime:Z,isPost:G,bottom_image:ne,tipText:q,swiper:K,commodityStyles:V,buttonStyle:pe,index:me,commodityGroup:X,popupBg:Q,iframeIcon:le,commodityImgRatio:ie}=t,de=Ze(t,["style","isDefault","rec","viewTime","isPost","bottom_image","tipText","swiper","commodityStyles","buttonStyle","index","commodityGroup","popupBg","iframeIcon","commodityImgRatio"]);$(!0);const{sxpParameter:re,popupCurTimeRef:ae,popupDetailData:oe,isPreview:Te,bffFbReport:Ie,checkCommodityIndexRef:Be}=Oe(),{jumpToWeb:_e,productView:He}=et();$(!1),$(!1),$(!0);const[Ve,U]=$(!1),ye=ge(null),[Pe,fe]=$(!1),[Ne,je]=$((e=oe?.multiCheckIndex)!==null&&e!==void 0?e:0),Ae=ge(),z=G?R:oe;let L=G?z?.product:(n=(i=z?.video)===null||i===void 0?void 0:i.bindProduct)!==null&&n!==void 0?n:(o=(l=z?.video)===null||l===void 0?void 0:l.bindProducts)===null||o===void 0?void 0:o[0],Fe=G?(a=z?.product)===null||a===void 0?void 0:a.bindCta:(u=(d=(r=z?.video)===null||r===void 0?void 0:r.bindProduct)===null||d===void 0?void 0:d.bindCta)!==null&&u!==void 0?u:(m=(f=(c=z?.video)===null||c===void 0?void 0:c.bindProducts)===null||f===void 0?void 0:f[0])===null||m===void 0?void 0:m.bindCta;const st=G?me:oe?.index;if(!G&&X?.open&&(!((h=z?.video)===null||h===void 0)&&h.bindProducts)&&((y=(w=z?.video)===null||w===void 0?void 0:w.bindProducts)===null||y===void 0?void 0:y.length)>0){Be.current=Ne;const I=(P=z?.video)===null||P===void 0?void 0:P.bindProducts[Ne];L=I,Fe=I?.bindCta}const kt=()=>{L?.link&&(_e(z,L,Fe,st),G||He(z,L,Fe,Z||ye.current,st),window.location.href=window.getJointUtmLink(L.link))};be(()=>{G||Ie?.({eventName:"ProductView"})},[G,Ie]),be(()=>{const I=()=>{ye.current=new Date};return I(),window.addEventListener("pageshow",I),()=>{window.removeEventListener("pageshow",I)}},[]);const J=ue(()=>{var I,N,Y,te,ve,he,ee;const ce=((I=V?.price)===null||I===void 0?void 0:I.enableFormattedPrice)===void 0||((N=V?.price)===null||N===void 0?void 0:N.enableFormattedPrice);return L?.currency&&L?.price?`${(ve=(te=(Y=L?.currency)===null||Y===void 0?void 0:Y.split("-")[1])===null||te===void 0?void 0:te.toUpperCase())!==null&&ve!==void 0?ve:""}${ce?(ee=(he=L?.price)===null||he===void 0?void 0:he.toLocaleString("zh",{minimumFractionDigits:0}))!==null&&ee!==void 0?ee:"":L?.price}`:"\xA3102,300.00"},[L?.price,L?.currency,(v=V?.price)===null||v===void 0?void 0:v.enableFormattedPrice]),W=(Te?375:(x=F?.width)!==null&&x!==void 0?x:window.innerWidth)-((b=Q?.horizontalMargin)!==null&&b!==void 0?b:0)*2,Se=ie?W*(ie.h/ie.w):W,De=({isPost:I})=>p.createElement("div",{hidden:!!L&&(!L?.info||L?.info==="")},p.createElement(oi,{isPost:I,onClick:()=>U(!0),className:"pb-commondityDiroNew-info",style:V?.info,foldText:q?.foldText,unfoldText:q?.unfoldText,text:L?.info||`Unveiled at the Spring-Summer 2023 fashion show, the Dior Toujours bag is distinguished by a casual and practical design. Crafted in black calfskin with Macrocannage topstitching, it showcases a spacious interior compartment with a matching pouch to organize essentials. Its leather strap closure keeps items secure while the D of the CD Lock closure twists to adjust the sides and enhance the bag's silhouette. The leather handles can be adjusted using the small notches in order to be able to carry the large bag by hand or wear it over the shoulder. CD Lock and strap closures D.I.O.R. charms Removable interior pouch Adjustable leather handles Dust bag included
|
6
|
+
Made in Italy`})),se=we(I=>I?.lineClamp?Object.assign(Object.assign({},I),{overflow:"hidden",WebkitLineClamp:I?.lineClamp,textOverflow:"ellipsis",display:"-webkit-box",webkitBoxOrient:"vertical"}):I,[]),Re=we(I=>{ae.current=new Date,je(I),Be.current=I,Ae?.current&&(Ae.current.swiper.slideTo(0),Ae.current.swiper.autoplay.start())},[]),Ue=we(()=>{var I,N,Y;if(!G)return p.createElement(_n,{products:(I=z?.video)===null||I===void 0?void 0:I.bindProducts,data:X,defImg:(Y=(N=re?.bottom_image)!==null&&N!==void 0?N:ne)!==null&&Y!==void 0?Y:"",style:{padding:"0 19px"},onCLick:Re,popupDetailData:oe,check:Ne})},[Ne]),Ge=ue(()=>{const I={left:"commondityDetail-swiper-clickable-left",center:"commondityDetail-swiper-clickable-center",right:"commondityDetail-swiper-clickable-right"};return I?.[K?.dotsAlign]},[K?.dotsAlign]),We=((C=(A=z?.video)===null||A===void 0?void 0:A.bindProduct)===null||C===void 0?void 0:C.remark)||((k=(M=(g=z?.video)===null||g===void 0?void 0:g.bindProducts)===null||M===void 0?void 0:M[0])===null||k===void 0?void 0:k.remark)||((S=z?.product)===null||S===void 0?void 0:S.remark);return p.createElement("div",{className:"pb-commondityDiroNew"},p.createElement("div",Object.assign({className:Ee(Object.assign(Object.assign({},F),{transform:"translate3d(0px, 0px, 0px)"}))},de),p.createElement("div",{style:{position:"relative"}},L&&((s=L?.homePage)===null||s===void 0?void 0:s.length)>0&&p.createElement(Pt,{height:Se,modules:[ei,ti],pagination:{clickable:!0,bulletActiveClass:"commondityDiroNew-swipe-item-active-bullet",clickableClass:Ge},loop:!0,autoplay:{delay:K?.delay*1e3},ref:Ae},(E=L?.homePage)===null||E===void 0?void 0:E.map(I=>{var N;return p.createElement(bt,{key:I},p.createElement("div",{style:{overflow:"hidden",width:W,height:Se}},p.createElement(lt,{style:{height:"100%",width:"100%",objectFit:"cover",display:"block",objectPosition:`50% ${K?.translateY?K?.translateY+50:50}%`},src:(N=I??re?.bottom_image)!==null&&N!==void 0?N:ne})))})),!(!((T=L?.homePage)===null||T===void 0)&&T.length)&&p.createElement("div",{className:Ee({height:Se,width:W})},p.createElement("img",{className:Ee({objectFit:"cover",width:"100%",height:"100%"}),src:(_=re?.bottom_image)!==null&&_!==void 0?_:ne,alt:"pdp image"})),We&&le||!L&&le&&p.createElement("div",{style:{padding:"5px 10px",display:"flex",alignItems:"center",position:"absolute",right:"10px",bottom:"10px",zIndex:1,background:"#fff",borderRadius:"3px"},onClick:()=>fe(!0)},p.createElement("img",{src:le,alt:"3d",width:"20px",height:"20px",style:{marginRight:"5px"}}),p.createElement("span",{style:{fontSize:"12px"}},"Try in 3D"))),Ue(),p.createElement("div",{className:"pb-commondityDiroNew-content"},p.createElement("div",{className:"pb-commondityDiroNew-content-top"},p.createElement("div",{className:"pb-commondityDiroNew-content-top-left"},p.createElement("div",{className:"pb-commondityDiroNew-content-top-left-title",style:se(V?.title),dangerouslySetInnerHTML:{__html:xe((D=L?.title)!==null&&D!==void 0?D:"Large Dior Toujours BagLarge",V?.title)}}),p.createElement("div",{className:"pb-commondityDiroNew-content-collection",hidden:!!L&&(!L?.collection||L?.collection===""),style:se(V?.collection),dangerouslySetInnerHTML:{__html:xe(L?.collection||"Black Macrocannage CalfskinLarge",V?.collection)}})),p.createElement("div",{className:"pb-commondityDiroNew-content-top-right"},p.createElement("div",{className:"pb-commondityDiroNew-content-top-right-price",hidden:!!L&&!L?.price,style:se(V?.price),dangerouslySetInnerHTML:{__html:xe(J,V?.price)}}),p.createElement("div",{className:"pb-commondityDiroNew-content-top-right-price",hidden:!!L&&!L?.taxInfo,style:se(V?.taxInfo),dangerouslySetInnerHTML:{__html:xe((O=L?.taxInfo)!==null&&O!==void 0?O:"\u7A0E\u8D39",V?.taxInfo)}}))),(!L||L?.link)&&p.createElement("button",{"aria-label":(j=Fe?.enTitle)!==null&&j!==void 0?j:"Shop now",onClick:kt,className:"pb-commondityDiroNew-btn",style:pe},p.createElement("span",{dangerouslySetInnerHTML:{__html:xe((H=Fe?.enTitle)!==null&&H!==void 0?H:"Shop now",pe)}})),De({isPost:G}))),p.createElement(Lt,{visible:Ve,onClose:()=>U(!1)},De({isPost:!1})),p.createElement(Lt,{visible:Pe,padding:0,isFullScreen:!0,onClose:()=>fe(!1)},p.createElement("iframe",{src:We,style:{width:"100%",height:"calc(100% - 50px)",marginTop:"40px",border:"none"}})))};var Ad=Ce(Td),Ed=[{title:"\u6ED1\u52A8\u4E8B\u4EF6",child:[{type:"Switch",label:"\u6ED1\u52A8\u94FA\u6EE1\u5168\u5C4F",name:["isScrollFullScreen"]}]}];const Id=tt(Ad,{displayName:"\u5546\u54C1\u8BE6\u60C5",icon:"",category:"popup",type:"CommodityDetailDiroNew",related:{settingRender:xd,interactionRender:Ed},defaulSetting:{props:{swiper:{dotsAlign:"left",delay:3},commodityStyles:{price:{color:"#000",fontWeight:"bold",fontSize:13},title:{color:"#000",fontSize:13},collection:{color:"#757575",fontSize:13},info:{color:"#757575",fontSize:13},taxInfo:{color:"#000",fontWeight:"bold",fontSize:13,textAlign:"right"}},buttonStyle:{backgroundColor:"#000",fontSize:12,height:52,fontWeight:"bold",textAlign:"center",color:"#fff",borderRadius:25,marginTop:16,marginBottom:16},commodityImgRatio:{w:1,h:1}},style:{}},w:100,h:40,sort:1});var Cd=[{title:"\u5F39\u7A97\u80CC\u666F",child:[{type:"Number",label:"\u5DE6\u53F3\u8FB9\u8DDD",name:["props","popupBg","horizontalMargin"]},{type:"Number",label:"\u4E0B\u8FB9\u8DDD",name:["props","popupBg","bottomMargin"]}]},{title:"\u5546\u54C1\u56FE\u7247",child:[{type:"Group",label:"\u5C3A\u5BF8",child:[{type:"Number",name:["props","commodityPicture","width"],addonAfter:"W"},{type:"Number",name:["props","commodityPicture","height"],addonAfter:"H"}]},{type:"Group",label:"\u5706\u89D2",child:[{type:"Slider",name:["props","commodityPicture","borderRadius"],max:100},{type:"Number",name:["props","commodityPicture","borderRadius"],addonAfter:"px",max:100}]},{type:"Number",label:"\u4E0E\u53F3\u4FA7\u8FB9\u8DDD",addonAfter:"px",name:["props","commodityPicture","marginRight"]},{label:"\u5C45\u4E2D\u5782\u76F4\u504F\u79FB",type:"Number",name:["props","translateY"],min:-1e3,addonAfter:"%",initialValue:0}]},{title:"\u5546\u54C1\u6587\u672C",child:[{name:["props","commodityStyles"],type:"SelectLinkage",child:[{label:"\u5B57\u6BB5",type:"Select",options:[{label:"\u5546\u54C1\u540D\u79F0",value:"title"},{label:"\u7CFB\u5217\u540D\u79F0",value:"collection"},{label:"\u4EF7\u683C",value:"price"}],name:["props","commodityStyles","field"],initialValue:"title"},{type:"Group",label:"\u6807\u9898\u5B57\u4F53",child:[{type:"Select",name:["fontFamily-cn"],bottomText:"\u4E2D\u6587\u5B57\u4F53"},{type:"Select",name:["fontFamily-en"],bottomText:"\u82F1\u6587/\u5176\u4ED6\u5B57\u4F53"}]},{type:"Group",label:"",child:[{type:"Color",name:["color"]},{type:"Number",addonAfter:"px",name:["fontSize"]}]},{label:"\u6807\u9898\u6837\u5F0F",type:"TextStyle"},{label:"\u6807\u9898\u5BF9\u9F50",type:"TextAlign"},{label:"\u95F4\u8DDD",type:"TextSpace"}]}]},{title:"\u6309\u94AE\u6837\u5F0F",child:[{type:"Color",label:"\u80CC\u666F\u8272",name:["props","buttonStyle","backgroundColor"]},{type:"Group",label:"\u5C3A\u5BF8",child:[{type:"Number",name:["props","buttonStyle","width"],addonAfter:"W"},{type:"Number",name:["props","buttonStyle","height"],addonAfter:"H"}]},{type:"Group",label:"\u5706\u89D2",child:[{type:"Slider",name:["props","buttonStyle","borderRadius"],max:100},{type:"Number",name:["props","buttonStyle","borderRadius"],addonAfter:"px",max:100}]},{type:"TextSpace",name:["props","buttonStyle"]},{type:"Group",label:"\u5B57\u4F53",child:[{type:"Select",name:["props","buttonStyle","fontFamily-cn"],bottomText:"\u4E2D\u6587\u5B57\u4F53"},{type:"Select",name:["props","buttonStyle","fontFamily-en"],bottomText:"\u82F1\u6587/\u5176\u4ED6\u5B57\u4F53"}]},{type:"Group",label:"",child:[{type:"Color",name:["props","buttonStyle","color"]},{type:"Number",addonAfter:"px",name:["props","buttonStyle","fontSize"]}]},{label:"\u6837\u5F0F",type:"TextStyle",name:["props","buttonStyle"]},{label:"\u5BF9\u9F50",type:"TextAlign",name:["props","buttonStyle"]}]}];function Dn(t){const e=ge(null),[i,n]=$(!1);return be(()=>{e.current=new IntersectionObserver(([l])=>{n(l.isIntersecting)})},[]),be(()=>{var l;return t?.current&&((l=e?.current)===null||l===void 0||l.observe(t?.current)),()=>{var o;(o=e?.current)===null||o===void 0||o.disconnect()}},[t]),i}const kd=({src:t,rec:e,item:i,index:n,style:l,translateY:o,imgStyle:a,enableEventReport:r=!0})=>{const d=ge(null),u=Dn(d),{ctaEvent:c}=Oe();return be(()=>{u&&t&&d?.current&&r&&c?.({eventSubject:"ctaExposure",eventDescription:"The cta was shown to the user"},e,i,n)},[u,t,d,e,c,i,n,r]),ue(()=>t?.includes(".avif")?t:`${t}?imrquality/rquality/20`,[t]),p.createElement("div",{className:Ee(Object.assign({overflow:"hidden",flexShrink:0,backgroundColor:"#f2f2f2"},a))},p.createElement("div",{ref:d,hidden:!t,className:Ee({width:"100%",height:"100%"})},p.createElement(lt,{className:Ee(Object.assign({width:"100%",objectFit:"cover",height:"100%",display:"block",objectPosition:`50% ${o?o+50:50}%`},l)),src:t})))};var St=Ce(kd);const _d=t=>{var e,i,{style:n,isDefault:l,rec:o,viewTime:a,isPost:r,bottom_image:d,commodityStyles:u,buttonStyle:c,translateY:f=0,commodityPicture:m,isExternalLink:h,onClick:w}=t,y=Ze(t,["style","isDefault","rec","viewTime","isPost","bottom_image","commodityStyles","buttonStyle","translateY","commodityPicture","isExternalLink","onClick"]);const{sxpParameter:P,popupDetailData:v,setPopupDetailData:x,ctaEvent:b}=Oe(),{jumpToWeb:A}=et(),{popup:C}=ft(),g=r?o:v,M=(i=(e=g?.video)===null||e===void 0?void 0:e.bindProducts)!==null&&i!==void 0?i:[null,null,null,null],k=v?.index,S=we(E=>{var T,_,D,O,j;return E?.currency&&E?.price?`${(D=(_=(T=E?.currency)===null||T===void 0?void 0:T.split("-")[1])===null||_===void 0?void 0:_.toUpperCase())!==null&&D!==void 0?D:""}${(j=(O=E?.price)===null||O===void 0?void 0:O.toLocaleString("zh",{minimumFractionDigits:0}))!==null&&j!==void 0?j:""}`:"$7,000"},[]),s=Ft((E,T)=>{b?.({eventSubject:"clickCta",eventDescription:"User clicked the CTA"},g,E,k),x?.(Object.assign(Object.assign({},g),{video:Object.assign(Object.assign({},g?.video),{bindProduct:E}),index:k,multiCheckIndex:T})),h?E?.link&&(A(g,E,E.bindCta,k),window.location.href=window.getJointUtmLink(E.link)):w?.()},C?.duration);return p.createElement("div",{className:Ee(Object.assign(Object.assign({},n),{display:"flex",flexDirection:"column",gap:"10px",padding:"0 20px",marginTop:"50px",boxSizing:"border-box"}))},M?.map((E,T)=>{var _,D,O,j,H,F,B,R,Z,G;return p.createElement(p.Fragment,null,g&&!E?.bindCta?null:p.createElement("div",Object.assign({key:T},y,{className:Ee({display:"flex"}),onClick:()=>s(E,T)}),p.createElement(St,{src:(j=(O=(_=E?.cover)!==null&&_!==void 0?_:(D=E?.homePage)===null||D===void 0?void 0:D[0])!==null&&O!==void 0?O:P?.bottom_image)!==null&&j!==void 0?j:d,rec:g,item:E,index:T,translateY:f,imgStyle:m,enableEventReport:!1}),p.createElement("div",{style:{width:`calc(100% - ${(H=m?.width)!==null&&H!==void 0?H:0}px - ${(F=m?.marginRight)!==null&&F!==void 0?F:0}px)`,display:"flex",flexDirection:"column",justifyContent:"space-between"}},p.createElement("div",null,p.createElement("div",{className:"one-line-ellipsis",style:u?.title,hidden:!!E&&!E?.title,dangerouslySetInnerHTML:{__html:xe((B=E?.title)!==null&&B!==void 0?B:"Pendant in Yellow Gold with Diamonds, Medium",u?.title)}}),p.createElement("div",{className:"two-line-ellipsis",style:u?.collection,hidden:!!E&&(!E?.collection||E?.collection===""),dangerouslySetInnerHTML:{__html:xe((R=E?.collection)!==null&&R!==void 0?R:"Tiffany Lock",u?.collection)}})),p.createElement("div",{className:Ee({display:"flex",alignItems:"flex-end",justifyContent:"space-between",width:"100%",overflow:"hidden"})},p.createElement("div",null,p.createElement("div",{style:u?.price,hidden:!!E&&!E?.price,dangerouslySetInnerHTML:{__html:xe(S(E),u?.price)}})),p.createElement("div",{className:"one-line-ellipsis",style:Object.assign(Object.assign({},c),{padding:"0 15px"}),dangerouslySetInnerHTML:{__html:xe((G=(Z=E?.bindCta)===null||Z===void 0?void 0:Z.enTitle)!==null&&G!==void 0?G:"Shop Now",c)}})))))}))};var Pd=Ce(_d),Dd=[{title:"\u70B9\u51FB\u4E8B\u4EF6",child:[{type:"link",name:"onClick"}]}];const Od=tt(Pd,{displayName:"\u5546\u54C1\u5217\u8868",icon:"",category:"popup",type:"CommodityList",related:{settingRender:Cd,interactionRender:Dd},defaulSetting:{props:{commodityPicture:{width:100,height:100,marginRight:10},commodityStyles:{price:{color:"#000",fontWeight:"bold",fontSize:14},title:{color:"#000",fontSize:14},collection:{color:"#757575",fontSize:12}},buttonStyle:{backgroundColor:"#000",fontSize:12,height:30,width:100,textAlign:"center",color:"#fff",lineHeight:2.5}},style:{}},w:100,h:40,sort:1});var Md=[{title:"\u80CC\u666F\u6837\u5F0F",child:[{type:"Color",label:"\u80CC\u666F\u8272",name:["style","backgroundColor"]}]}];const Ld=t=>{var e,i,{content:n,btnText:l,style:o,icon:a,isPopup:r,isExternalLink:d,onClose:u,onClick:c,submitButtonStyle:f,contentStyle:m}=t,h=Ze(t,["content","btnText","style","icon","isPopup","isExternalLink","onClose","onClick","submitButtonStyle","contentStyle"]);const{popupDetailData:w}=Oe(),y=(i=(e=w?.video)===null||e===void 0?void 0:e.bindCta)===null||i===void 0?void 0:i.remark;return p.createElement("div",Object.assign({className:`${Ee(Object.assign({},o))}`},h),y&&p.createElement("iframe",{src:y,style:{width:"100%",height:"calc(100% - 50px)",marginTop:"40px",border:"none"}}))};var Rd=Ce(Ld);const Bd=tt(Rd,{displayName:"Iframe\u5F39\u7A97",icon:"",category:"popup",type:"Iframe",related:{settingRender:Md,bindableProps:[]},defaulSetting:{props:{},style:{}},w:100,h:40,sort:3});var vt=[{title:"\u4E3B\u9898\u6837\u5F0F",child:[{type:"Group",label:"\u5C3A\u5BF8",child:[{type:"Number",name:["style","width"],addonAfter:"W"},{type:"Number",name:["style","height"],addonAfter:"H"}]},{type:"Group",label:"\u5706\u89D2",child:[{type:"Slider",name:["style","borderRadius"],max:100},{type:"Number",name:["style","borderRadius"],addonAfter:"px",max:100}]},{type:"Color",label:"\u80CC\u666F\u8272",name:["style","backgroundColor"]},{label:"\u5185\u8FB9\u8DDD",type:"Number",name:["style","padding"],addonAfter:"px"},{label:"\u4E0EPost\u63CF\u8FF0\u8FB9\u8DDD",type:"Number",name:["style","marginBottom"],addonAfter:"px"}]},{title:"\u5546\u54C1\u56FE\u7247",child:[{type:"Group",label:"\u5C3A\u5BF8",child:[{type:"Number",name:["props","ctaTempStyles","img","width"],addonAfter:"W"},{type:"Number",name:["props","ctaTempStyles","img","height"],addonAfter:"H"}]},{type:"Group",label:"\u5706\u89D2",child:[{type:"Slider",name:["props","ctaTempStyles","img","borderRadius"],max:100},{type:"Number",name:["props","ctaTempStyles","img","borderRadius"],addonAfter:"px",max:100}]},{type:"Number",label:"\u4E0E\u53F3\u4FA7\u8FB9\u8DDD",addonAfter:"px",name:["props","ctaTempStyles","img","marginRight"]},{label:"\u5C45\u4E2D\u5782\u76F4\u504F\u79FB",type:"Number",name:["props","translateY"],min:-1e3,addonAfter:"%",initialValue:0}]},{title:"\u5546\u54C1\u6807\u9898\u6587\u672C",type:"commodityTitle",child:[{type:"Group",label:"\u5B57\u4F53",child:[{type:"Select",name:["props","ctaTempStyles","title","fontFamily-cn"],bottomText:"\u4E2D\u6587\u5B57\u4F53"},{type:"Select",name:["props","ctaTempStyles","title","fontFamily-en"],bottomText:"\u82F1\u6587/\u5176\u4ED6\u5B57\u4F53"}]},{type:"Group",label:"",child:[{type:"Color",name:["props","ctaTempStyles","title","color"]},{type:"Number",addonAfter:"px",name:["props","ctaTempStyles","title","fontSize"]}]},{label:"\u6837\u5F0F",type:"TextStyle",name:["props","ctaTempStyles","title"]},{label:"\u5BF9\u9F50",type:"TextAlign",name:["props","ctaTempStyles","title"]},{label:"\u95F4\u8DDD",type:"TextSpace",name:["props","ctaTempStyles","title"]}]},{title:"CTA\u6807\u9898",child:[{type:"Group",label:"\u5C3A\u5BF8",child:[{type:"Number",name:["props","ctaTempStyles","ctaTitle","width"],addonAfter:"W"},{type:"Number",name:["props","ctaTempStyles","ctaTitle","height"],addonAfter:"H"}]},{type:"Group",label:"\u5706\u89D2",child:[{type:"Slider",name:["props","ctaTempStyles","ctaTitle","borderRadius"],max:100},{type:"Number",name:["props","ctaTempStyles","ctaTitle","borderRadius"],addonAfter:"px",max:100}]},{type:"Color",label:"\u80CC\u666F\u8272",name:["props","ctaTempStyles","ctaTitle","backgroundColor"]},{type:"Group",label:"\u5B57\u4F53",child:[{type:"Select",name:["props","ctaTempStyles","ctaTitle","fontFamily-cn"],bottomText:"\u4E2D\u6587\u5B57\u4F53"},{type:"Select",name:["props","ctaTempStyles","ctaTitle","fontFamily-en"],bottomText:"\u82F1\u6587/\u5176\u4ED6\u5B57\u4F53"}]},{type:"Group",label:"",child:[{type:"Color",name:["props","ctaTempStyles","ctaTitle","color"]},{type:"Number",addonAfter:"px",name:["props","ctaTempStyles","ctaTitle","fontSize"]}]},{label:"\u6837\u5F0F",type:"TextStyle",name:["props","ctaTempStyles","ctaTitle"]},{label:"\u5BF9\u9F50",type:"TextAlign",name:["props","ctaTempStyles","ctaTitle"]},{label:"\u95F4\u8DDD",type:"TextSpace",name:["props","ctaTempStyles","ctaTitle"]}]}],Fd=[{title:"\u70B9\u51FB\u4E8B\u4EF6",child:[{type:"link",name:"onClick"}]}];const Nd=t=>{var{rec:e,children:i,className:n,onClick:l,style:o,isExternalLink:a=!1,index:r,jumpLink:d}=t;Ze(t,["rec","children","className","onClick","style","isExternalLink","index","jumpLink"]);const u=ge(null),{popup:c}=ft(),{setPopupDetailData:f,ctaEvent:m}=Oe(),{jumpToWeb:h}=et(),w=Ft(()=>{var y,P,v,x,b,A,C,g;const M=(P=(y=e?.video)===null||y===void 0?void 0:y.bindProduct)!==null&&P!==void 0?P:e?.video;if(m?.({eventSubject:"clickCta",eventDescription:"User clicked the CTA"},e,M,r),f?.(Object.assign(Object.assign({},e),{index:r})),a){if(d||!((x=(v=e?.video)===null||v===void 0?void 0:v.bindProduct)===null||x===void 0)&&x.link){const k=(b=e?.video)===null||b===void 0?void 0:b.bindCta,S=(A=e?.video)===null||A===void 0?void 0:A.bindProduct;h(e,S,k,r),window.location.href=window.getJointUtmLink(d||((g=(C=e?.video)===null||C===void 0?void 0:C.bindProduct)===null||g===void 0?void 0:g.link)||"")}}else l?.()},c?.duration);return p.createElement("div",{ref:u,className:n,style:o,onClick:w},i)};var Ut=Ce(Nd),jd={"tow-line-ellipsis":"index-module_tow-line-ellipsis__3bKKx"};const Vd=t=>{var e,i,n,l,o,a,r,d,u,c,f,{content:m,style:h,bgImg:w,recData:y,bottom_image:P,ctaTempStyles:v,isExternalLink:x,translateY:b=0,index:A}=t,C=Ze(t,["content","style","bgImg","recData","bottom_image","ctaTempStyles","isExternalLink","translateY","index"]);const{sxpParameter:g}=Oe(),M=(e=y?.video)===null||e===void 0?void 0:e.bindProduct,k=(o=(l=(i=M?.cover)!==null&&i!==void 0?i:(n=M?.homePage)===null||n===void 0?void 0:n[0])!==null&&l!==void 0?l:g?.bottom_image)!==null&&o!==void 0?o:P;return p.createElement(Ut,Object.assign({isExternalLink:x,rec:y,className:Ee(Object.assign({},h)),style:{display:"flex"},index:A},C),p.createElement(St,{src:k,rec:y,item:(r=(a=y?.video)===null||a===void 0?void 0:a.bindProduct)!==null&&r!==void 0?r:y?.video,index:A,translateY:b,imgStyle:v?.img}),p.createElement("div",{className:Ee({color:"#fff",display:"flex",flexDirection:"column",justifyContent:"space-between",width:"100%",overflow:"hidden"})},p.createElement("div",{className:jd["tow-line-ellipsis"],style:v?.title,dangerouslySetInnerHTML:{__html:xe((d=M?.title)!==null&&d!==void 0?d:"Product Name",v?.title)}}),p.createElement("div",{className:Ee(Object.assign({padding:"0 7px",textOverflow:"ellipsis",overflow:"hidden",whiteSpace:"nowrap",lineHeight:((u=v?.ctaTitle)===null||u===void 0?void 0:u.height)+"px"},v?.ctaTitle)),dangerouslySetInnerHTML:{__html:xe((f=(c=M?.bindCta)===null||c===void 0?void 0:c.enTitle)!==null&&f!==void 0?f:"Shop Now",v?.ctaTitle)}})))};var zd=Ce(Vd);const Hd=tt(zd,{displayName:"\u63A8\u8350\u5355\u5546\u54C1-\u900F\u660E\u5E95",icon:"",category:"template",type:"Commodity",related:{interactionRender:Fd,bindableProps:[],settingRender:vt},defaulSetting:{props:{ctaTempStyles:{img:{borderRadius:3,width:60,height:60,marginRight:8},title:{fontSize:12,color:"#fff",textAlign:"left"},ctaTitle:{fontSize:10,color:"#fff",textAlign:"center",width:130,height:20,backgroundColor:"rgba(0,0,0,.5)"}}},style:{padding:7,width:236,height:74,borderRadius:3,backgroundColor:"rgba(0,0,0,.3)",marginBottom:8}},w:100,h:40,sort:1});var Ud=[{title:"\u70B9\u51FB\u4E8B\u4EF6",child:[{type:"link",name:"onClick"}]}];const Gd=t=>{var e,i,n,l,o,a,{content:r,style:d,bgImg:u,recData:c,bottom_image:f,ctaTempStyles:m,isExternalLink:h,index:w}=t,y=Ze(t,["content","style","bgImg","recData","bottom_image","ctaTempStyles","isExternalLink","index"]);const{sxpParameter:P}=Oe(),v=(e=c?.video)===null||e===void 0?void 0:e.bindCta,x=(n=(i=v?.icon)!==null&&i!==void 0?i:P?.bottom_image)!==null&&n!==void 0?n:f;return p.createElement(Ut,Object.assign({isExternalLink:h,rec:c,className:Ee(Object.assign({alignItems:"center"},d)),style:{display:"flex"},index:w},y),p.createElement(St,{src:x,rec:c,item:(o=(l=c?.video)===null||l===void 0?void 0:l.bindProduct)!==null&&o!==void 0?o:c?.video,index:w,imgStyle:m?.img}),p.createElement("div",{className:Ee(Object.assign({overflow:"hidden",textOverflow:"ellipsis"},m?.ctaTitle)),dangerouslySetInnerHTML:{__html:xe((a=v?.enTitle)!==null&&a!==void 0?a:"Product Name",m?.ctaTitle)}}))};var Wd=Ce(Gd);const Yd=tt(Wd,{displayName:"\u9884\u7EA6\u8868\u5355",icon:"",category:"template",type:"Appoint",related:{interactionRender:Ud,settingRender:vt?.filter(t=>t.type!=="commodityTitle"),bindableProps:[]},defaulSetting:{props:{ctaTempStyles:{img:{borderRadius:3,width:30,height:30,marginRight:8},ctaTitle:{fontSize:12,color:"#fff",textAlign:"left",width:130,height:20}}},style:{padding:7,width:236,height:44,borderRadius:3,backgroundColor:"rgba(0,0,0,.3)",marginBottom:8}},w:100,h:40,sort:6});var Xd=[{title:"\u81EA\u5B9A\u4E49\u6807\u9898",child:[{type:"Switch",label:"\u81EA\u5B9A\u4E49\u6807\u9898\u5F00\u5173",name:["props","customTitle","display"]},{type:"Text",label:"\u6807\u9898\u6587\u6848",name:["props","customTitle","text"]},{type:"Group",label:"\u5C3A\u5BF8",child:[{type:"Number",name:["props","customTitle","style","width"],addonAfter:"W"},{type:"Number",name:["props","customTitle","style","height"],addonAfter:"H"}]},{type:"Group",label:"\u5706\u89D2",child:[{type:"Slider",name:["props","customTitle","style","borderRadius"],max:100},{type:"Number",name:["props","customTitle","style","borderRadius"],addonAfter:"px",max:100}]},{type:"Color",label:"\u80CC\u666F\u8272",name:["props","customTitle","style","backgroundColor"]},{type:"Group",label:"\u5B57\u4F53",child:[{type:"Select",name:["props","customTitle","style","fontFamily-cn"],bottomText:"\u4E2D\u6587\u5B57\u4F53"},{type:"Select",name:["props","customTitle","style","fontFamily-en"],bottomText:"\u82F1\u6587/\u5176\u4ED6\u5B57\u4F53"}]},{type:"Group",label:"",child:[{type:"Color",name:["props","customTitle","style","color"]},{type:"Number",addonAfter:"px",name:["props","customTitle","style","fontSize"]}]},{label:"\u6837\u5F0F",type:"TextStyle",name:["props","customTitle","style"]},{label:"\u5BF9\u9F50",type:"TextAlign",name:["props","customTitle","style"]},{label:"\u95F4\u8DDD",type:"TextSpace",name:["props","customTitle","style"]},{label:"\u4E0A\u8FB9\u8DDD",type:"Number",name:["props","customTitle","style","marginTop"],addonAfter:"px"}]}],On={"tow-line-ellipsis":"index-module_tow-line-ellipsis__nkBlU","one-line-ellipsis":"index-module_one-line-ellipsis__buFw1"};const Jd=t=>{var e,i,n,l,o,a,r,d,u,{content:c,style:f,bgImg:m,recData:h,bottom_image:w,ctaTempStyles:y,index:P,customTitle:v}=t,x=Ze(t,["content","style","bgImg","recData","bottom_image","ctaTempStyles","index","customTitle"]);const{sxpParameter:b,bffEventReport:A}=Oe();et();const C=(e=h?.video)===null||e===void 0?void 0:e.bindCta;(i=h?.video)===null||i===void 0||i.bindProduct;const g=(l=(n=C?.icon)!==null&&n!==void 0?n:b?.bottom_image)!==null&&l!==void 0?l:w;return p.createElement(Ut,Object.assign({index:P,rec:h,className:Ee(Object.assign({alignItems:"center"},f)),style:{display:"flex"}},x,{jumpLink:(o=C?.link)!==null&&o!==void 0?o:""}),p.createElement(St,{src:g,rec:h,item:(r=(a=h?.video)===null||a===void 0?void 0:a.bindProduct)!==null&&r!==void 0?r:h?.video,index:P,imgStyle:y?.img}),p.createElement("div",{className:Ee({display:"flex",alignItems:"center",width:"100%",overflow:"hidden"})},p.createElement("div",null,p.createElement("div",{className:On["tow-line-ellipsis"],style:y?.ctaTitle,dangerouslySetInnerHTML:{__html:xe((d=C?.enTitle)!==null&&d!==void 0?d:"Product Name",y?.ctaTitle)}}),v?.display&&p.createElement("div",{style:Object.assign(Object.assign({},v?.style),{lineHeight:((u=v?.style)===null||u===void 0?void 0:u.height)+"px"}),className:On["one-line-ellipsis"],dangerouslySetInnerHTML:{__html:xe(v?.text,v?.style)}}))))};var qd=Ce(Jd),Kd=[{title:"\u70B9\u51FB\u4E8B\u4EF6",child:[{type:"link",name:"onClick"}]}],Li;const Zd=tt(qd,{displayName:"\u8DF3\u8F6C\u6307\u5F15",icon:"",category:"template",type:"Link",related:{settingRender:(Li=vt?.filter(t=>t.type!=="commodityTitle"))===null||Li===void 0?void 0:Li.concat(Xd),bindableProps:[],interactionRender:Kd},defaulSetting:{props:{ctaTempStyles:{img:{borderRadius:3,width:60,height:60,marginRight:8},ctaTitle:{fontSize:12,color:"#fff",textAlign:"left",width:130,height:20}},customTitle:{style:{textAlign:"left",textDecoration:"underline",fontWeight:"bold",width:130,height:20,fontSize:12,color:"#000"},text:"\u63A2\u7D22\u66F4\u591A"}},style:{padding:7,width:236,height:74,borderRadius:3,backgroundColor:"rgba(0,0,0,.3)",marginBottom:8}},w:100,h:40,sort:5});var Qd=[{title:"\u70B9\u51FB\u4E8B\u4EF6",child:[{type:"link",name:"onClick"}]}],$d={"tow-line-ellipsis":"index-module_tow-line-ellipsis__yyHVb"};const ea=t=>{var e,i,n,l,o,a,r,d,u,c,f,{content:m,style:h,bgImg:w,recData:y,bottom_image:P,ctaTempStyles:v,isExternalLink:x,translateY:b=0,index:A}=t,C=Ze(t,["content","style","bgImg","recData","bottom_image","ctaTempStyles","isExternalLink","translateY","index"]);const{sxpParameter:g}=Oe(),M=(e=y?.video)===null||e===void 0?void 0:e.bindProduct,k=(o=(l=(i=M?.cover)!==null&&i!==void 0?i:(n=M?.homePage)===null||n===void 0?void 0:n[0])!==null&&l!==void 0?l:g?.bottom_image)!==null&&o!==void 0?o:P;return p.createElement(Ut,Object.assign({isExternalLink:x,rec:y,className:Ee(Object.assign({},h)),style:{display:"flex"},index:A},C),p.createElement(St,{src:k,rec:y,item:(r=(a=y?.video)===null||a===void 0?void 0:a.bindProduct)!==null&&r!==void 0?r:y?.video,index:A,translateY:b,imgStyle:v?.img}),p.createElement("div",{className:Ee({color:"#fff",display:"flex",flexDirection:"column",justifyContent:"space-between",width:"100%",overflow:"hidden"})},p.createElement("div",{className:$d["tow-line-ellipsis"],style:v?.title,dangerouslySetInnerHTML:{__html:xe((d=M?.title)!==null&&d!==void 0?d:"Product Name",v?.title)}}),p.createElement("div",{className:Ee(Object.assign({padding:"0 7px",textOverflow:"ellipsis",overflow:"hidden",borderRadius:"25px",whiteSpace:"nowrap",lineHeight:((u=v?.ctaTitle)===null||u===void 0?void 0:u.height)+"px"},v?.ctaTitle)),dangerouslySetInnerHTML:{__html:xe((f=(c=M?.bindCta)===null||c===void 0?void 0:c.enTitle)!==null&&f!==void 0?f:"Shop Now",v?.ctaTitle)}})))};var ta=Ce(ea);const ia=tt(ta,{displayName:"\u63A8\u8350\u5355\u5546\u54C1-\u767D\u5E95\u5706\u89D2\u6309\u94AE",icon:"",category:"template",type:"CommodityDiro",related:{interactionRender:Qd,settingRender:vt,bindableProps:[]},defaulSetting:{props:{ctaTempStyles:{img:{borderRadius:3,width:60,height:60,marginRight:8},title:{fontSize:12,color:"#000",textAlign:"left"},ctaTitle:{fontSize:10,color:"#fff",textAlign:"center",width:80,height:20,backgroundColor:"rgba(0,0,0,1)"}}},style:{padding:7,width:236,height:74,borderRadius:3,backgroundColor:"#fff",marginBottom:8}},w:100,h:40,sort:2});var na=[{title:"\u70B9\u51FB\u4E8B\u4EF6",child:[{type:"link",name:"onClick"}]}],oa={"tow-line-ellipsis":"index-module_tow-line-ellipsis__I-yCC"};const la=t=>{var e,i,n,l,o,a,r,d,u,c,{content:f,style:m,bgImg:h,recData:w,bottom_image:y,ctaTempStyles:P,isExternalLink:v,translateY:x=0,index:b}=t,A=Ze(t,["content","style","bgImg","recData","bottom_image","ctaTempStyles","isExternalLink","translateY","index"]);const{sxpParameter:C}=Oe(),g=(e=w?.video)===null||e===void 0?void 0:e.bindProduct,M=(o=(l=(i=g?.cover)!==null&&i!==void 0?i:(n=g?.homePage)===null||n===void 0?void 0:n[0])!==null&&l!==void 0?l:C?.bottom_image)!==null&&o!==void 0?o:y;return p.createElement(Ut,Object.assign({isExternalLink:v,rec:w,className:Ee(Object.assign({},m)),style:{display:"flex"},index:b},A),p.createElement(St,{src:M,rec:w,item:(r=(a=w?.video)===null||a===void 0?void 0:a.bindProduct)!==null&&r!==void 0?r:w?.video,index:b,translateY:x,imgStyle:P?.img}),p.createElement("div",{className:Ee({color:"#fff",display:"flex",flexDirection:"column",justifyContent:"center",width:"100%",overflow:"hidden"})},p.createElement("div",{className:oa["tow-line-ellipsis"],style:P?.title,dangerouslySetInnerHTML:{__html:xe((d=g?.title)!==null&&d!==void 0?d:"Product Name",P?.title)}}),p.createElement("div",{className:Ee(Object.assign({textOverflow:"ellipsis",overflow:"hidden",whiteSpace:"nowrap"},P?.ctaTitle)),dangerouslySetInnerHTML:{__html:xe((c=(u=g?.bindCta)===null||u===void 0?void 0:u.enTitle)!==null&&c!==void 0?c:"Shop Now",P?.ctaTitle)}})))};var da=Ce(la);const aa=tt(da,{displayName:"\u63A8\u8350\u5355\u5546\u54C1-\u767D\u5E95\u4E0B\u5212\u7EBF\u6309\u94AE",icon:"",category:"template",type:"CommodityDiroNew",related:{interactionRender:na,bindableProps:[],settingRender:vt},defaulSetting:{props:{ctaTempStyles:{img:{borderRadius:8,width:78,height:78,marginRight:16},title:{fontSize:13,color:"#000",textAlign:"left"},ctaTitle:{textDecoration:"underline",fontSize:14,fontWeight:"bold",color:"#000",textAlign:"left",width:150,height:20}}},style:{borderRadius:4,width:260,height:86,padding:4,backgroundColor:"rgba(255,255,255,0.75)",marginBottom:8}},w:100,h:40,sort:2});var ra=[{title:"\u70B9\u51FB\u4E8B\u4EF6",child:[{type:"link",name:"onClick"}]}],sa={"two-line-ellipsis":"index-module_two-line-ellipsis__SFQwJ"};const ca=t=>{var e,i,{content:n,style:l,bgImg:o,recData:a,onClick:r,bottom_image:d,ctaTempStyles:u,isExternalLink:c,index:f,translateY:m=0}=t,h=Ze(t,["content","style","bgImg","recData","onClick","bottom_image","ctaTempStyles","isExternalLink","index","translateY"]);const{ctaEvent:w,setPopupDetailData:y,sxpParameter:P}=Oe(),{popup:v}=ft(),{jumpToWeb:x}=et(),[b,A]=$((i=(e=a?.video)===null||e===void 0?void 0:e.bindProducts)!==null&&i!==void 0?i:[1,2]),C=Ft((g,M)=>{w?.({eventSubject:"clickCta",eventDescription:"User clicked the CTA"},a,g,f),y?.(Object.assign(Object.assign({},a),{video:Object.assign(Object.assign({},a?.video),{bindProduct:g}),index:f,multiCheckIndex:M})),c?g?.link&&(x(a,g,g.bindCta,f),window.location.href=window.getJointUtmLink(g.link)):r?.()},v?.duration);return p.createElement(Ht,{isPadding:!!a},b?.map((g,M)=>{var k,S,s,E,T,_,D,O;return p.createElement(p.Fragment,null,a&&!g?.bindCta?null:p.createElement(bt,Object.assign({key:M,className:Ee(Object.assign(Object.assign({},l),{display:"flex",flexShrink:0,marginLeft:0,marginRight:"8px"}))},h,{onClick:()=>C(g,M)}),p.createElement(St,{src:(E=(s=(k=g?.cover)!==null&&k!==void 0?k:(S=g?.homePage)===null||S===void 0?void 0:S[0])!==null&&s!==void 0?s:P?.bottom_image)!==null&&E!==void 0?E:d,rec:a,item:g,index:M,translateY:m,imgStyle:u?.img}),p.createElement("div",{className:Ee({color:"#000",display:"flex",flexDirection:"column",justifyContent:"space-between",width:"100%",overflow:"hidden"})},p.createElement("div",{className:sa["two-line-ellipsis"],style:u?.title,dangerouslySetInnerHTML:{__html:xe((T=g?.title)!==null&&T!==void 0?T:"Product Name",u?.title)}}),p.createElement("div",{className:Ee(Object.assign({padding:"0 7px",textOverflow:"ellipsis",overflow:"hidden",borderRadius:"25px",whiteSpace:"nowrap",lineHeight:((_=u?.ctaTitle)===null||_===void 0?void 0:_.height)+"px"},u?.ctaTitle)),dangerouslySetInnerHTML:{__html:xe((O=(D=g?.bindCta)===null||D===void 0?void 0:D.enTitle)!==null&&O!==void 0?O:"Shop Now",u?.ctaTitle)}}))))}))};var ua=Ce(ca);const va=tt(ua,{displayName:"\u63A8\u8350\u591A\u5546\u54C1-\u767D\u5E95\u5706\u89D2\u6309\u94AE",icon:"",category:"template",type:"MultiCommodityDiro",related:{interactionRender:ra,bindableProps:[],settingRender:vt},defaulSetting:{props:{ctaTempStyles:{img:{borderRadius:3,width:60,height:60,marginRight:8},title:{fontSize:12,color:"#000",textAlign:"left"},ctaTitle:{fontSize:10,color:"#fff",textAlign:"center",width:80,height:20,backgroundColor:"rgba(0,0,0,1)"}}},style:{padding:7,width:236,height:74,borderRadius:3,backgroundColor:"#fff",marginBottom:8}},w:100,h:40,sort:4});var pa=[{title:"\u70B9\u51FB\u4E8B\u4EF6",child:[{type:"link",name:"onClick"}]}],ma={"two-line-ellipsis":"index-module_two-line-ellipsis__mdzn0"};const fa=t=>{var e,i,{content:n,style:l,bgImg:o,recData:a,onClick:r,bottom_image:d,ctaTempStyles:u,isExternalLink:c,index:f,translateY:m=0}=t,h=Ze(t,["content","style","bgImg","recData","onClick","bottom_image","ctaTempStyles","isExternalLink","index","translateY"]);const{sxpParameter:w}=Oe(),{ctaEvent:y,setPopupDetailData:P}=Oe(),{popup:v}=ft(),[x,b]=$((i=(e=a?.video)===null||e===void 0?void 0:e.bindProducts)!==null&&i!==void 0?i:[1,2]),{jumpToWeb:A}=et(),C=Ft((g,M)=>{y?.({eventSubject:"clickCta",eventDescription:"User clicked the CTA"},a,g,f),P?.(Object.assign(Object.assign({},a),{video:Object.assign(Object.assign({},a?.video),{bindProduct:g}),index:f,multiCheckIndex:M})),c?g?.link&&(A(a,g,g.bindCta,f),window.location.href=window.getJointUtmLink(g.link)):r?.()},v?.duration);return p.createElement(Ht,{isPadding:!!a},x?.map((g,M)=>{var k,S,s,E,T,_,D,O;return p.createElement(p.Fragment,null,a&&!g?.bindCta?null:p.createElement(bt,Object.assign({key:M,className:Ee(Object.assign(Object.assign({},l),{display:"flex",flexShrink:0,marginLeft:0,marginRight:"8px"}))},h,{onClick:()=>C(g,M)}),p.createElement(St,{src:(E=(s=(k=g?.cover)!==null&&k!==void 0?k:(S=g?.homePage)===null||S===void 0?void 0:S[0])!==null&&s!==void 0?s:w?.bottom_image)!==null&&E!==void 0?E:d,rec:a,item:g,index:M,translateY:m,imgStyle:u?.img}),p.createElement("div",{className:Ee({color:"#fff",display:"flex",flexDirection:"column",justifyContent:"space-between",width:"100%",overflow:"hidden"})},p.createElement("div",{className:ma["two-line-ellipsis"],style:u?.title,dangerouslySetInnerHTML:{__html:xe((T=g?.title)!==null&&T!==void 0?T:"Product Name",u?.title)}}),p.createElement("div",{className:Ee(Object.assign({padding:"0 7px",textOverflow:"ellipsis",overflow:"hidden",whiteSpace:"nowrap",lineHeight:((_=u?.ctaTitle)===null||_===void 0?void 0:_.height)+"px"},u?.ctaTitle)),dangerouslySetInnerHTML:{__html:xe((O=(D=g?.bindCta)===null||D===void 0?void 0:D.enTitle)!==null&&O!==void 0?O:"Shop Now",u?.ctaTitle)}}))))}))};var ha=Ce(fa);const ga=tt(ha,{displayName:"\u63A8\u8350\u591A\u5546\u54C1-\u900F\u660E\u5E95",icon:"",category:"template",type:"MultiCommodity",related:{interactionRender:pa,settingRender:vt,bindableProps:[]},defaulSetting:{props:{ctaTempStyles:{img:{borderRadius:3,width:60,height:60,marginRight:8},title:{fontSize:12,color:"#fff",textAlign:"left"},ctaTitle:{fontSize:10,color:"#fff",textAlign:"center",width:130,height:20,backgroundColor:"rgba(0,0,0,.5)"}}},style:{padding:7,width:236,height:74,borderRadius:3,backgroundColor:"rgba(0,0,0,.3)",marginBottom:8}},w:100,h:40,sort:3});var ba=[{title:"\u70B9\u51FB\u4E8B\u4EF6",child:[{type:"link",name:"onClick"}]}],ya={"tow-line-ellipsis":"index-module_tow-line-ellipsis__fselR"};const wa=t=>{var e,i,{content:n,style:l,bgImg:o,recData:a,onClick:r,bottom_image:d,ctaTempStyles:u,isExternalLink:c,index:f,translateY:m=0}=t,h=Ze(t,["content","style","bgImg","recData","onClick","bottom_image","ctaTempStyles","isExternalLink","index","translateY"]);const{ctaEvent:w,setPopupDetailData:y,sxpParameter:P}=Oe(),{popup:v}=ft(),{jumpToWeb:x}=et(),[b,A]=$((i=(e=a?.video)===null||e===void 0?void 0:e.bindProducts)!==null&&i!==void 0?i:[1,2]),C=Ft((g,M)=>{w?.({eventSubject:"clickCta",eventDescription:"User clicked the CTA"},a,g,f),y?.(Object.assign(Object.assign({},a),{video:Object.assign(Object.assign({},a?.video),{bindProduct:g}),index:f,multiCheckIndex:M})),c?g?.link&&(x(a,g,g.bindCta,f),window.location.href=window.getJointUtmLink(g.link)):r?.()},v?.duration);return p.createElement(Ht,{isPadding:!!a},b?.map((g,M)=>{var k,S,s,E,T,_,D;return p.createElement(p.Fragment,null,a&&!g?.bindCta?null:p.createElement(bt,Object.assign({key:M,className:Ee(Object.assign(Object.assign({},l),{display:"flex",flexShrink:0,marginLeft:0,marginRight:"8px"}))},h,{onClick:()=>C(g,M)}),p.createElement(St,{src:(E=(s=(k=g?.cover)!==null&&k!==void 0?k:(S=g?.homePage)===null||S===void 0?void 0:S[0])!==null&&s!==void 0?s:P?.bottom_image)!==null&&E!==void 0?E:d,rec:a,item:g,index:M,translateY:m,imgStyle:u?.img}),p.createElement("div",{className:Ee({color:"#fff",display:"flex",flexDirection:"column",justifyContent:"center",width:"100%",overflow:"hidden",lineHeight:"20px"})},p.createElement("div",{className:ya["tow-line-ellipsis"],style:u?.title,dangerouslySetInnerHTML:{__html:xe((T=g?.title)!==null&&T!==void 0?T:"Product Name",u?.title)}}),p.createElement("div",{className:Ee(Object.assign({textOverflow:"ellipsis",overflow:"hidden",whiteSpace:"nowrap"},u?.ctaTitle)),dangerouslySetInnerHTML:{__html:xe((D=(_=g?.bindCta)===null||_===void 0?void 0:_.enTitle)!==null&&D!==void 0?D:"Shop Now",u?.ctaTitle)}}))))}))};var Sa=Ce(wa);const xa=tt(Sa,{displayName:"\u63A8\u8350\u591A\u5546\u54C1-\u767D\u5E95\u4E0B\u5212\u7EBF\u6309\u94AE",icon:"",category:"template",type:"MultiCommodityDiroNew",related:{interactionRender:ba,bindableProps:[],settingRender:vt},defaulSetting:{props:{ctaTempStyles:{img:{borderRadius:8,width:78,height:78,marginRight:16},title:{fontSize:12,color:"#000",textAlign:"left"},ctaTitle:{textDecoration:"underline",fontSize:12,fontWeight:"bold",color:"#000",textAlign:"left",width:150,height:20}}},style:{borderRadius:4,width:260,height:86,padding:4,backgroundColor:"rgba(255,255,255,0.75)",marginBottom:8}},w:100,h:40,sort:4});var Ta=[{title:"Banner",child:[{type:"Switch",label:"Banner\u56FE\u5F00\u5173",name:["props","showBanner"]}]},{title:"\u5361\u7247\u6837\u5F0F",child:[{type:"Number",label:"\u4E0A\u4E0B\u8FB9\u8DDD",name:["props","space"],addonAfter:"px"},{type:"Switch",label:"\u56FA\u5B9A\u5BBD\u9AD8",name:["props","openFixedSize"],initialValue:!0}]},{title:"\u6587\u672C\u8BBE\u7F6E",child:[{name:["props","textStyles"],type:"SelectLinkage",child:[{label:"\u5B57\u6BB5",type:"Select",options:[{label:"hashtag\u6807\u9898",value:"hashTagTitle"},{label:"hashtag\u63CF\u8FF0",value:"hashTagDesc"},{label:"hashtag\u63CF\u8FF0\u8D85\u94FE",value:"hashTagLink"},{label:"\u6807\u9898",value:"title"},{label:"\u4EF7\u683C",value:"price"}],name:["props","textStyles","field"],initialValue:"title"},{type:"Group",label:"\u6807\u9898\u5B57\u4F53",child:[{type:"Select",name:["fontFamily-cn"],bottomText:"\u4E2D\u6587\u5B57\u4F53"},{type:"Select",name:["fontFamily-en"],bottomText:"\u82F1\u6587/\u5176\u4ED6\u5B57\u4F53"}]},{type:"Group",label:"",child:[{type:"Color",name:["color"]},{type:"Number",addonAfter:"px",name:["fontSize"]}]},{label:"\u6807\u9898\u6837\u5F0F",type:"TextStyle"},{label:"\u6807\u9898\u5BF9\u9F50",type:"TextAlign"},{label:"\u95F4\u8DDD",type:"TextSpace"}]}]},{title:"\u6309\u94AE\u6837\u5F0F",child:[{type:"Color",label:"\u80CC\u666F\u8272",name:["props","buttonStyle","backgroundColor"],initialValue:"#000"},{type:"Group",label:"\u5C3A\u5BF8",child:[{type:"Number",name:["props","buttonStyle","height"],addonAfter:"H"}]},{type:"Group",label:"\u5706\u89D2",child:[{type:"Slider",name:["props","buttonStyle","borderRadius"],max:100},{type:"Number",name:["props","buttonStyle","borderRadius"],addonAfter:"px",max:100}]},{type:"TextPadding",name:["props","buttonBgStyle"]},{type:"Group",label:"\u5B57\u4F53",child:[{type:"Select",name:["props","buttonStyle","fontFamily-cn"],bottomText:"\u4E2D\u6587\u5B57\u4F53"},{type:"Select",name:["props","buttonStyle","fontFamily-en"],bottomText:"\u82F1\u6587/\u5176\u4ED6\u5B57\u4F53"}]},{type:"Group",label:"",child:[{type:"Color",name:["props","buttonStyle","color"],initialValue:"#fff"},{type:"Number",name:["props","buttonStyle","fontSize"],addonAfter:"px"}]},{type:"TextStyle",name:["props","buttonStyle"]},{type:"TextAlign",name:["props","buttonStyle"]},{label:"\u95F4\u8DDD",type:"TextSpace",name:["props","buttonStyle"]}]},{title:"\u6309\u94AE\u80CC\u666F\u6837\u5F0F",child:[{type:"Color",label:"\u80CC\u666F\u8272",name:["props","buttonBgStyle","backgroundColor"],initialValue:"#fff"},{type:"Group",label:"\u5C3A\u5BF8",child:[{type:"Number",name:["props","buttonBgStyle","height"],addonAfter:"H"}]}]}];const Aa=({icon:t,styles:e,textStyle:i,onClose:n})=>{var l;const{waterFallData:o,setOpenHashtag:a}=Oe();return p.createElement("div",{className:"clc-sxp-nav",style:e},p.createElement("img",{className:"clc-sxp-nav-left",src:t,alt:"back button",onClick:n}),p.createElement("div",{className:"clc-sxp-nav-title",style:Object.assign(Object.assign({},i),{paddingLeft:i?.textAlign==="left"?"35px":0}),dangerouslySetInnerHTML:{__html:xe(`#${(l=o?.hashTag)!==null&&l!==void 0?l:"\u6807\u9898"}`,i)}}))};var Mn=Ce(Aa),Ea=null,Ia="3d989325-e7d6-4a74-8a97-98febdf5b567",Ca=null,ka=null,_a={info:"The dior toujours bag is distinguished by a casual and practical design. Fully embroidered with black textured tweed, it is accented by a blend of threads displaying the cannage motif.",link:"www.baidu.com",linkTitle:null,linkType:"WEB"},Pa=[{position:"0",isCollected:null,video:{itemId:"VIDEOY2BMu1710323630175",title:"A symbol of excellence, the Dior Toujours bag is reinterpreted in an unprecedented version. For the Dior spring-summer 2024 ready-to-wear collection, this exceptional accessory, dreamed up by Maria Grazia Chiuri, is dressed in irresistible crinkled leather featuring the iconic macrocannage motif. A new emblem of the virtuoso, perpetually reinvented savoir-faire of the Dior Ateliers.",tags:["Dior Toujours Bag","Casual","Leather Strap","Handbags"],weight:null,traceInfo:"VECTOReVssi1704360966770:VIDEO:VIDEOY2BMu1710323630175:default:3::branch:Handbags:0",bindCta:null,bindProduct:{itemId:"M2821SNIOM900",title:"Medium Dior Toujours Bag Black Macrocannage Crinkled Leather",tags:["Medium","Black","Women","Handbags","Bucket Bag"],weight:null,traceInfo:"VECTOReVssi1704360966770:PRODUCT:M2821SNIOM900:default:3::branch:Handbags:0",bindCta:{itemId:"CTAzgoPn1709005149328",title:"\u7ACB\u5373\u8D2D\u4E70",tags:[],weight:null,traceInfo:"VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:0",enTitle:"Shop now",icon:"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",link:null,linkTitle:null,linkType:null,menuCategoryId:"65966478d19caa37afe3603f"},homePage:["https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsy6AN0OWw3rj8Luw3RTSP9n2kDLq1710497237677.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fszTc3uEUrtppdN9QVVU2XBnaaaBY1710497237986.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsKbBMTRa0tTTX661wu7DzLw9OP0r1710497237980.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsOYHlYCwgzalxzmIJcsZmIsJ2L3g1710497237145.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsKJqNVm1ZBlrgZ8XLC0YAaO6ws2F1710497237650.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsm2VoVancBQ20nDHceESUPNLyrUy1710497238312.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs2B5YYmv8OztP3d9rlM2a9KmYswl1710497237339.jpg"],collection:"Et\xE9 2024",link:"https://www.dior.com/en_us/fashion/products/M1296ZRIW_M828-medium-dior-book-tote-ecru-and-blue-dior-oblique-embroidery-36-x-27.5-x-16.5-cm",linkTitle:null,linkType:"WEB",info:"The dior toujours bag is distinguished by a casual and practical design. Crafted in black crinkled calfskin with macrocannage topstitching, it showcases a spacious interior compartment with a matching pouch to organize the essentials. Its leather strap closure keeps items secure while the d of the cd lock closure twists to adjust the sides and enhance the bag's silhouette.",price:4400,currency:"USD-$"},bindProducts:[],cover:"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fswbY3wT0hCmrYkrqDzFKnHb3NMux1710323481052.png",url:"https://dior-sxp-cdn.chatlabs.net/prod/sound/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fs3Ifqv7fk2Tn9nPtwOTO2YjxAuRO1710323470472.mp4",imgUrls:null,hashTags:["Dior Toujours Bag","Casual","Leather Strap","Handbags"]},product:null,cta:null},{position:"1",isCollected:null,video:{itemId:"VIDEO6JCOb1710323364018",title:"Maria grazia chiuri's hallmark dior book tote offers an original take on elegance. Unveiled at the cruise 2024 fashion show, the refined style showcases the iconic blue dior oblique embroidery and calfskin. Designed to keep all the daily essentials organized, the interior is equipped with a zipped pocket and patch pockets.",tags:["Handbags","Manufacturing Craftsmanship","Dior Book Tote"],weight:null,traceInfo:"VECTOReVssi1704360966770:VIDEO:VIDEO6JCOb1710323364018:default:3::branch:Handbags:1",bindCta:null,bindProduct:{itemId:"M1296ZRIWM828",title:"Medium Dior Book Tote",tags:["Maria Grazia Chiuri","Hand","Shoulder","Handbags","Blue","Women"],weight:null,traceInfo:"VECTOReVssi1704360966770:PRODUCT:M1296ZRIWM828:default:3::branch:Handbags:1",bindCta:{itemId:"CTAzgoPn1709005149328",title:"\u7ACB\u5373\u8D2D\u4E70",tags:[],weight:null,traceInfo:"VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:1",enTitle:"Shop now",icon:"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",link:null,linkTitle:null,linkType:null,menuCategoryId:"65966478d19caa37afe3603f"},homePage:["https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fs69g46K9wPCwi5VRAP2QAgRHM0Pc1709696901624.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsAIliGV0ZJP8MNa8DECYtwsK4ker1709696900761.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsMJ4JfZ0Vhzq6H71NdIPg6YozbIz1709696897845.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsWXI06zGOmACXn9wD3EegRLkB7dg1709696911033.jpg"],collection:"Et\xE9 2024",link:"https://www.dior.com/en_us/fashion/products/M1296ZRIW_M828-medium-dior-book-tote-ecru-and-blue-dior-oblique-embroidery-36-x-27.5-x-16.5-cm",linkTitle:null,linkType:"WEB",info:"Introduced by Maria Grazia Chiuri, Creative Director of Christian Dior, the Dior Book Tote has become a staple of the Dior aesthetic. Designed to hold all the daily essentials, the style is fully embroidered with the ecru and blue Dior Oblique motif. Adorned with the Christian Dior Paris signature on the front, the medium tote exemplifies the House's signature savoir-faire and may be carried by hand or worn over the shoulder.",price:3350,currency:"USD-$"},bindProducts:[],cover:"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsAHlkdbqYj5F84o2faRzU1E3AvG11710323339209.png",url:"https://dior-sxp-cdn.chatlabs.net/prod/sound/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fs7KIGk2IB0MsoDL1ANWB1Mb2hqu41710323314146.mp4",imgUrls:null,hashTags:["Handbags","Dior Book Tote"]},product:null,cta:null},{position:"2",isCollected:null,video:null,product:{itemId:"M2820OTKVM911",title:"Large Dior Toujours Bag Black Cannage Tweed",tags:["Black","Women","Handbags","Bucket Bag","Dior Toujours Bag"],weight:null,traceInfo:"VECTOReVssi1704360966770:PRODUCT:M2820OTKVM911:default:3::branch:Handbags:2",bindCta:{itemId:"CTAzgoPn1709005149328",title:"\u7ACB\u5373\u8D2D\u4E70",tags:[],weight:null,traceInfo:"VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:2",enTitle:"Shop now",icon:"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",link:null,linkTitle:null,linkType:null,menuCategoryId:"65966478d19caa37afe3603f"},homePage:["https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240312/fsJTjyFchOFEJSTRYxXvL2XPU1dP61710238469418.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240319/fstdFA1dFT55QjtQPU2qHNENo5peF1710836061716.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240319/fs9xf8AlIApbHezVL3BsxjUGIrN231710836061181.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240312/fs9iZ20MjLAPkXmFKvD8HzhLaBJ671710238470272.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240312/fsSSodev3wicDfE1DYNWPQVeRjErt1710238464035.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240312/fs3YAOuN6Pd9NFvH1Rdooj6eLI18S1710238465296.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240312/fsBwIEp6OzI49isvHgiKD0cPSFtrD1710238459007.jpg"],collection:"Et\xE9 2024",link:"https://www.dior.com/en_us/fashion/products/M2820OTKV_M911-large-dior-toujours-bag",linkTitle:null,linkType:"WEB",info:"The dior toujours bag is distinguished by a casual and practical design. Fully embroidered with black textured tweed, it is accented by a blend of threads displaying the cannage motif. It showcases a spacious interior compartment with a matching pouch to organize the essentials, while a leather strap closure keeps items secure and the d of the cd lock closure twists to adjust the sides and enhance the bag's silhouette.",price:4200,currency:"USD-$"},cta:null},{position:"3",isCollected:null,video:{itemId:"VIDEOOL1qU1709616182569",title:"Maria grazia chiuri brings a fresh update to the iconic saddle bag. Crafted in black grained calfskin, the legendary design features a saddle flap with a d stirrup clasp on a magnetic strap, as well as an antique gold-finish metal cd signature on either side of the strap. Equipped with a thin, adjustable and removable shoulder strap, the saddle bag may be carried by hand, worn over the shoulder or crossbody.. Saddle bag with strap Black grained calfskin",tags:["Maria Grazia Chiuri","Saddle Bags","Removable Shoulder Strap","Shoulder","Crossbody","Cross-body & Shoulder Bags","Handbags"],weight:null,traceInfo:"VECTOReVssi1704360966770:VIDEO:VIDEOOL1qU1709616182569:default:3::branch:Handbags:3",bindCta:null,bindProduct:{itemId:"M0455CBAAM900",title:"Saddle Bag with Strap",tags:["Saddle Bags","Handbags","Maria Grazia Chiuri"],weight:null,traceInfo:"VECTOReVssi1704360966770:PRODUCT:M0455CBAAM900:default:3::branch:Handbags:3",bindCta:{itemId:"CTAzgoPn1709005149328",title:"\u7ACB\u5373\u8D2D\u4E70",tags:[],weight:null,traceInfo:"VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:3",enTitle:"Shop now",icon:"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",link:null,linkTitle:null,linkType:null,menuCategoryId:"65966478d19caa37afe3603f"},homePage:["https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsiwfgnCrVBGcGPh6gaFsvbYBIpxX1709285334896.png","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsXpilTgUS4u4oFWr0hUew8DQITi11709285353202.png","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsWxJm6YIeRYmDtDoB5WtYMjRX8bm1709285366208.png","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsj69PxKh1SAZ6p0902FbBT0vg2at1709285373714.png","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fs78nKueByU2cNulReOw8gJ1ZsieF1709285412981.png","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsmAEriTIohZAUMUE6gUCWvXwbbRE1709285429332.png"],collection:"Et\xE9 2024",link:"https://www.dior.com/en_us/fashion/products/M0455CBAA_M900-saddle-bag-with-strap-black-grained-calfskin?objectID=M0455CBAA_M900&query=M0455CBAAM900&queryID=c171c63e69d6d109953e2de631718496",linkTitle:null,linkType:"WEB",info:"Maria Grazia Chiuri brings a fresh update to the iconic Saddle bag. Crafted in black grained calfskin, the legendary design features a Saddle flap with a D stirrup clasp on a magnetic strap, as well as an antique gold-finish metal CD signature on either side of the strap. Equipped with a thin, adjustable and removable shoulder strap, the Saddle bag may be carried by hand, worn over the shoulder or crossbody.",price:4400,currency:"USD-$"},bindProducts:[],cover:null,url:null,imgUrls:["https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fsvbBN3IRfwctVIhdqgq3doWmhbb21710399187965.jpg"],hashTags:["Maria Grazia Chiuri","Saddle Bags","Handbags"]},product:null,cta:null},{position:"4",isCollected:null,video:null,product:{itemId:"S5909CTZQM928",title:"Saddle Shoulder Pouch Blue Dior Oblique Jacquard ",tags:["Saddle Bags","Handbags","Small-Leather-Goods","Small","Mini Bags"],weight:null,traceInfo:"VECTOReVssi1704360966770:PRODUCT:S5909CTZQM928:default:3::branch:Handbags:4",bindCta:{itemId:"CTAzgoPn1709005149328",title:"\u7ACB\u5373\u8D2D\u4E70",tags:[],weight:null,traceInfo:"VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:4",enTitle:"Shop now",icon:"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",link:null,linkTitle:null,linkType:null,menuCategoryId:"65966478d19caa37afe3603f"},homePage:["https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fs34CpwKJOyjEDgoHypoLYakF8oR31710316280669.png","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsLOSOEf9pmz7wKnFaifWNw3TZ7Gy1710316287874.png","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsWHmVcrzHKKj6EfhfnQkxYIOt20a1710316295683.png","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fslyBNMyQwjpjY4EKzyrqzTMlOGRQ1710316313161.png"],collection:"Et\xE9 2024",link:"https://www.dior.com/en_us/fashion/products/S5909CTZQ",linkTitle:null,linkType:"WEB",info:null,price:4900,currency:"USD-$"},cta:null},{position:"5",isCollected:null,video:{itemId:"VIDEOrZguC1710324513737",title:"Introduced by Maria Grazia Chiuri, Creative Director of Christian Dior, the Dior Book Tote has become a staple of the Dior aesthetic. Designed to hold all the daily essentials, the style is fully embroidered with the ecru and blue Dior Oblique motif. Adorned with the Christian Dior Paris signature on the front, the medium tote exemplifies the House's signature savoir-faire and may be carried by hand or worn over the shoulder.",tags:["Handbags","Dior Book Tote"],weight:null,traceInfo:"VECTOReVssi1704360966770:VIDEO:VIDEOrZguC1710324513737:default:3::branch:Handbags:5",bindCta:null,bindProduct:{itemId:"M1296ZRIWM828",title:"Medium Dior Book Tote",tags:["Maria Grazia Chiuri","Hand","Shoulder","Handbags","Blue","Women"],weight:null,traceInfo:"VECTOReVssi1704360966770:PRODUCT:M1296ZRIWM828:default:3::branch:Handbags:5",bindCta:{itemId:"CTAzgoPn1709005149328",title:"\u7ACB\u5373\u8D2D\u4E70",tags:[],weight:null,traceInfo:"VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:5",enTitle:"Shop now",icon:"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",link:null,linkTitle:null,linkType:null,menuCategoryId:"65966478d19caa37afe3603f"},homePage:["https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fs69g46K9wPCwi5VRAP2QAgRHM0Pc1709696901624.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsAIliGV0ZJP8MNa8DECYtwsK4ker1709696900761.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsMJ4JfZ0Vhzq6H71NdIPg6YozbIz1709696897845.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsWXI06zGOmACXn9wD3EegRLkB7dg1709696911033.jpg"],collection:"Et\xE9 2024",link:"https://www.dior.com/en_us/fashion/products/M1296ZRIW_M828-medium-dior-book-tote-ecru-and-blue-dior-oblique-embroidery-36-x-27.5-x-16.5-cm",linkTitle:null,linkType:"WEB",info:"Introduced by Maria Grazia Chiuri, Creative Director of Christian Dior, the Dior Book Tote has become a staple of the Dior aesthetic. Designed to hold all the daily essentials, the style is fully embroidered with the ecru and blue Dior Oblique motif. Adorned with the Christian Dior Paris signature on the front, the medium tote exemplifies the House's signature savoir-faire and may be carried by hand or worn over the shoulder.",price:3350,currency:"USD-$"},bindProducts:[],cover:"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fstXNWStczbY8HbIKEqMwfCkv5CI51710324494939.png",url:"https://dior-sxp-cdn.chatlabs.net/prod/sound/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsOqu34FxaJTdascLcj6DHoYIIAs01710324439851.mp4",imgUrls:null,hashTags:["Handbags","Dior Book Tote"]},product:null,cta:null},{position:"6",isCollected:null,video:null,product:{itemId:"M1296ZRIWM828",title:"Medium Dior Book Tote",tags:["Maria Grazia Chiuri","Hand","Shoulder","Handbags","Blue","Women"],weight:null,traceInfo:"VECTOReVssi1704360966770:PRODUCT:M1296ZRIWM828:default:3::branch:Handbags:6",bindCta:{itemId:"CTAzgoPn1709005149328",title:"\u7ACB\u5373\u8D2D\u4E70",tags:[],weight:null,traceInfo:"VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:6",enTitle:"Shop now",icon:"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",link:null,linkTitle:null,linkType:null,menuCategoryId:"65966478d19caa37afe3603f"},homePage:["https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fs69g46K9wPCwi5VRAP2QAgRHM0Pc1709696901624.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsAIliGV0ZJP8MNa8DECYtwsK4ker1709696900761.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsMJ4JfZ0Vhzq6H71NdIPg6YozbIz1709696897845.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsWXI06zGOmACXn9wD3EegRLkB7dg1709696911033.jpg"],collection:"Et\xE9 2024",link:"https://www.dior.com/en_us/fashion/products/M1296ZRIW_M828-medium-dior-book-tote-ecru-and-blue-dior-oblique-embroidery-36-x-27.5-x-16.5-cm",linkTitle:null,linkType:"WEB",info:"Introduced by Maria Grazia Chiuri, Creative Director of Christian Dior, the Dior Book Tote has become a staple of the Dior aesthetic. Designed to hold all the daily essentials, the style is fully embroidered with the ecru and blue Dior Oblique motif. Adorned with the Christian Dior Paris signature on the front, the medium tote exemplifies the House's signature savoir-faire and may be carried by hand or worn over the shoulder.",price:3350,currency:"USD-$"},cta:null},{position:"7",isCollected:null,video:{itemId:"VIDEOEtr621710300614047",title:"Unveiled at the spring-summer 2023 fashion show, the dior toujours bag is distinguished by a casual and practical design. Crafted in black calfskin with macrocannage topstitching, it showcases a spacious interior compartment with a matching pouch to organize essentials. Its leather strap closure keeps items secure while the d of the cd lock closure twists to adjust the sides and enhance the bag's silhouette. T",tags:["Handbags","Leather Strap","Spring-Summer 2024 Fashion Show","Backstage","Dior Toujours Bag"],weight:null,traceInfo:"VECTOReVssi1704360966770:VIDEO:VIDEOEtr621710300614047:default:3::branch:Handbags:7",bindCta:null,bindProduct:null,bindProducts:[],cover:"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fshkOldZwfsSqTgvxHJzNBwS66ySc1710300910103.jpg",url:null,imgUrls:["https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fsryDXTtPWXjYFWoSUEBUi48RHZCh1710398617300.jpg"],hashTags:["Backstage","Handbags","Spring-Summer 2024 Fashion Show","Dior Toujours Bag"]},product:null,cta:null},{position:"8",isCollected:null,video:{itemId:"VIDEOO8Zjt1709616802987",title:"Introduced by Maria Grazia Chiuri, Creative Director of Christian Dior, the Dior Book Tote has become a staple of the Dior aesthetic. Designed to hold all the daily essentials, the style is fully embroidered with the ecru and blue Dior Oblique motif. Adorned with the Christian Dior Paris signature on the front, the medium tote exemplifies the House's signature savoir-faire and may be carried by hand or worn over the shoulder.",tags:["Blue","Medium","Shoulder","Hand","Handbags","Dior Book Tote"],weight:null,traceInfo:"VECTOReVssi1704360966770:VIDEO:VIDEOO8Zjt1709616802987:default:3::branch:Handbags:8",bindCta:null,bindProduct:{itemId:"M1296ZRIWM828",title:"Medium Dior Book Tote",tags:["Maria Grazia Chiuri","Hand","Shoulder","Handbags","Blue","Women"],weight:null,traceInfo:"VECTOReVssi1704360966770:PRODUCT:M1296ZRIWM828:default:3::branch:Handbags:8",bindCta:{itemId:"CTAzgoPn1709005149328",title:"\u7ACB\u5373\u8D2D\u4E70",tags:[],weight:null,traceInfo:"VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:8",enTitle:"Shop now",icon:"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",link:null,linkTitle:null,linkType:null,menuCategoryId:"65966478d19caa37afe3603f"},homePage:["https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fs69g46K9wPCwi5VRAP2QAgRHM0Pc1709696901624.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsAIliGV0ZJP8MNa8DECYtwsK4ker1709696900761.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsMJ4JfZ0Vhzq6H71NdIPg6YozbIz1709696897845.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsWXI06zGOmACXn9wD3EegRLkB7dg1709696911033.jpg"],collection:"Et\xE9 2024",link:"https://www.dior.com/en_us/fashion/products/M1296ZRIW_M828-medium-dior-book-tote-ecru-and-blue-dior-oblique-embroidery-36-x-27.5-x-16.5-cm",linkTitle:null,linkType:"WEB",info:"Introduced by Maria Grazia Chiuri, Creative Director of Christian Dior, the Dior Book Tote has become a staple of the Dior aesthetic. Designed to hold all the daily essentials, the style is fully embroidered with the ecru and blue Dior Oblique motif. Adorned with the Christian Dior Paris signature on the front, the medium tote exemplifies the House's signature savoir-faire and may be carried by hand or worn over the shoulder.",price:3350,currency:"USD-$"},bindProducts:[],cover:"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240305/fsmS72zfInwmblYTnuYzRuZKAOlhr1709616742898.jpg",url:null,imgUrls:["https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fsU2gDw28XFd1nOAqlUjb1r1h6mpT1710400349981.jpg"],hashTags:["Dior Book Tote","Handbags"]},product:null,cta:null},{position:"9",isCollected:null,video:null,product:{itemId:"M2821SNIOM900",title:"Medium Dior Toujours Bag Black Macrocannage Crinkled Leather",tags:["Medium","Black","Women","Handbags","Bucket Bag"],weight:null,traceInfo:"VECTOReVssi1704360966770:PRODUCT:M2821SNIOM900:default:3::branch:Handbags:9",bindCta:{itemId:"CTAzgoPn1709005149328",title:"\u7ACB\u5373\u8D2D\u4E70",tags:[],weight:null,traceInfo:"VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:9",enTitle:"Shop now",icon:"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",link:null,linkTitle:null,linkType:null,menuCategoryId:"65966478d19caa37afe3603f"},homePage:["https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsy6AN0OWw3rj8Luw3RTSP9n2kDLq1710497237677.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fszTc3uEUrtppdN9QVVU2XBnaaaBY1710497237986.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsKbBMTRa0tTTX661wu7DzLw9OP0r1710497237980.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsOYHlYCwgzalxzmIJcsZmIsJ2L3g1710497237145.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsKJqNVm1ZBlrgZ8XLC0YAaO6ws2F1710497237650.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsm2VoVancBQ20nDHceESUPNLyrUy1710497238312.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs2B5YYmv8OztP3d9rlM2a9KmYswl1710497237339.jpg"],collection:"Et\xE9 2024",link:"https://www.dior.com/en_us/fashion/products/M1296ZRIW_M828-medium-dior-book-tote-ecru-and-blue-dior-oblique-embroidery-36-x-27.5-x-16.5-cm",linkTitle:null,linkType:"WEB",info:"The dior toujours bag is distinguished by a casual and practical design. Crafted in black crinkled calfskin with macrocannage topstitching, it showcases a spacious interior compartment with a matching pouch to organize the essentials. Its leather strap closure keeps items secure while the d of the cd lock closure twists to adjust the sides and enhance the bag's silhouette.",price:4400,currency:"USD-$"},cta:null},{position:"10",isCollected:null,video:{itemId:"VIDEOesZlV1710323980494",title:"The lady dior bag embodies dior's vision of elegance and beauty. Sleek and refined, the timeless style demonstrates the house's exceptional savoir-faire. The black patent-to-matte gradient lambskin style is embellished with iconic cannage topstitching, while the ultra-matte metal d.i.o.r. Charms lend a modern touch. Featuring a thin, removable leather shoulder strap, the medium lady dior bag can be carried by hand or worn crossbody.",tags:["Lady Dior","Removable Shoulder Strap","Medium","Handbags","Crossbody"],weight:null,traceInfo:"VECTOReVssi1704360966770:VIDEO:VIDEOesZlV1710323980494:default:3::branch:Handbags:10",bindCta:null,bindProduct:{itemId:"M0565SDBRM900",title:"Medium Lady Dior Bag",tags:["Women","Black","Handbags","Hand","Lady Dior","Crossbody"],weight:null,traceInfo:"VECTOReVssi1704360966770:PRODUCT:M0565SDBRM900:default:3::branch:Handbags:10",bindCta:{itemId:"CTAzgoPn1709005149328",title:"\u7ACB\u5373\u8D2D\u4E70",tags:[],weight:null,traceInfo:"VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:10",enTitle:"Shop now",icon:"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",link:null,linkTitle:null,linkType:null,menuCategoryId:"65966478d19caa37afe3603f"},homePage:["https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsnyiCm9oirbXLqmqY7231O8O2Yhb1710498970982.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fskwIRRKCtuw9cb9btuubt2D5bXfB1710498970676.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsqXFTCyhxspeYCD3uo4UiuN5vQ7w1710498970671.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs8rDRSKJmWUNI42MjrMWVlI0D9Fz1710498970729.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsca9Cjqo3WMJVU0OL0OjQo8xOoMx1710498972076.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsjl1bxi56X0QrKwfvl8YocBVJ2N81710498971352.jpg"],collection:null,link:"https://www.dior.com/en_us/fashion/products/M0565SDBR_M900-medium-lady-dior-bag-black-patent-to-matte-gradient-cannage-lambskin?objectID=M0565SDBR_M900&query=M0565SDBRM900&queryID=14cc52b35774a9a42e78fd9ba199860e",linkTitle:null,linkType:"WEB",info:"The Lady Dior bag embodies Dior's vision of elegance and beauty. Sleek and refined, the timeless style demonstrates the House's exceptional savoir-faire. The black patent-to-matte gradient lambskin style is embellished with iconic Cannage topstitching, while the ultra-matte metal D.I.O.R. charms lend a modern touch. Featuring a thin, removable leather shoulder strap, the medium Lady Dior bag can be carried by hand or worn crossbody.",price:7100,currency:"USD-$"},bindProducts:[],cover:"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsiwMQ88zO5Xdnl939krMyBMbz7Js1710323763013.png",url:"https://dior-sxp-cdn.chatlabs.net/prod/sound/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsxyS8nr7nn0LMe7EqOt3ETXqLu7d1710323753073.mp4",imgUrls:null,hashTags:["Lady Dior","Handbags"]},product:null,cta:null},{position:"11",isCollected:null,video:{itemId:"VIDEOdvsXq1710324342942",title:"New for summer 2024, the lady d-sire my abcdior bag draws inspiration from the signature elegance of the lady dior design. Reimagined with a casual style for an urban look, the lightweight black grained bull leather feels soft to the touch yet offers excellent durability. The medium bag is embellished with pale gold-finish metal d.i.o.r. Charms that highlight the silhouette.",tags:["Summer 2024","Lady Dior","Casual","Lightweight","Medium","Handbags"],weight:null,traceInfo:"VECTOReVssi1704360966770:VIDEO:VIDEOdvsXq1710324342942:default:3::branch:Handbags:11",bindCta:null,bindProduct:{itemId:"M1151OTRLM900",title:"Medium Lady D-Sire My ABCDior Bag",tags:["Handbags","Summer 2024","Lady Dior","Black","Medium","Women","Lady D-Sire"],weight:null,traceInfo:"VECTOReVssi1704360966770:PRODUCT:M1151OTRLM900:default:3::branch:Handbags:11",bindCta:{itemId:"CTAzgoPn1709005149328",title:"\u7ACB\u5373\u8D2D\u4E70",tags:[],weight:null,traceInfo:"VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:11",enTitle:"Shop now",icon:"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",link:null,linkTitle:null,linkType:null,menuCategoryId:"65966478d19caa37afe3603f"},homePage:["https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsBvqPYhaE9Ct1JzBd4gm8g9YOiAZ1710499102900.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs6sf9nB7WpJuLNIZT3c8O8Fmf3Gu1710499102936.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsSxYBxyVx2yRrUgEaYmarWhlUbk41710499102531.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsyhykK1B7W9613MAfipfIuE1foim1710499102345.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs6FXJdaXib8lP0NPloe1XQGpoiKc1710499103268.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsCRx7T4ejNvgKNensH6LT4dPt6251710499103615.jpg"],collection:null,link:"https://www.dior.com/en_us/fashion/products/M1151OTRL_M900-medium-lady-d-sire-my-abcdior-bag-black-bull-leather?objectID=M1151OTRL_M900&query=M1151OTRLM900&queryID=e82938220687c425c75277a7c526b932",linkTitle:null,linkType:"WEB",info:"New for Summer 2024, the Lady D-Sire My ABCDior bag draws inspiration from the signature elegance of the Lady Dior design. Reimagined with a casual style for an urban look, the lightweight black grained bull leather feels soft to the touch yet offers excellent durability. The medium bag is embellished with pale gold-finish metal D.I.O.R. charms that highlight the silhouette. Showcasing a shoulder strap that can be personalized by adding symbolic badges, the unique bag can be carried by hand or w",price:6100,currency:"USD-$"},bindProducts:[],cover:"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsOsdUSXr57U5Twhhkv17th3yHqBJ1710324292456.png",url:"https://dior-sxp-cdn.chatlabs.net/prod/sound/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsZyr3slVtlsParX6D0DqsM0QEx8d1710324283147.mp4",imgUrls:null,hashTags:["Summer 2024","Lady Dior","Handbags"]},product:null,cta:null},{position:"12",isCollected:null,video:{itemId:"VIDEOy76Fr1710324746846",title:"Maria grazia chiuri brings a fresh update to the iconic saddle bag. Crafted in black grained calfskin, the legendary design features a saddle flap with a d stirrup clasp on a magnetic strap, as well as an antique gold-finish metal cd signature on either side of the strap. Equipped with a thin, adjustable and removable shoulder strap, the saddle bag may be carried by hand, worn over the shoulder or crossbody.. Saddle bag with strap Black grained calfskin",tags:["Maria Grazia Chiuri","Saddle Bags","Removable Shoulder Strap","Hand","Shoulder","Crossbody","Handbags"],weight:null,traceInfo:"VECTOReVssi1704360966770:VIDEO:VIDEOy76Fr1710324746846:default:3::branch:Handbags:12",bindCta:null,bindProduct:{itemId:"M0455CBAAM900",title:"Saddle Bag with Strap",tags:["Saddle Bags","Handbags","Maria Grazia Chiuri"],weight:null,traceInfo:"VECTOReVssi1704360966770:PRODUCT:M0455CBAAM900:default:3::branch:Handbags:12",bindCta:{itemId:"CTAzgoPn1709005149328",title:"\u7ACB\u5373\u8D2D\u4E70",tags:[],weight:null,traceInfo:"VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:12",enTitle:"Shop now",icon:"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",link:null,linkTitle:null,linkType:null,menuCategoryId:"65966478d19caa37afe3603f"},homePage:["https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsiwfgnCrVBGcGPh6gaFsvbYBIpxX1709285334896.png","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsXpilTgUS4u4oFWr0hUew8DQITi11709285353202.png","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsWxJm6YIeRYmDtDoB5WtYMjRX8bm1709285366208.png","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsj69PxKh1SAZ6p0902FbBT0vg2at1709285373714.png","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fs78nKueByU2cNulReOw8gJ1ZsieF1709285412981.png","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsmAEriTIohZAUMUE6gUCWvXwbbRE1709285429332.png"],collection:"Et\xE9 2024",link:"https://www.dior.com/en_us/fashion/products/M0455CBAA_M900-saddle-bag-with-strap-black-grained-calfskin?objectID=M0455CBAA_M900&query=M0455CBAAM900&queryID=c171c63e69d6d109953e2de631718496",linkTitle:null,linkType:"WEB",info:"Maria Grazia Chiuri brings a fresh update to the iconic Saddle bag. Crafted in black grained calfskin, the legendary design features a Saddle flap with a D stirrup clasp on a magnetic strap, as well as an antique gold-finish metal CD signature on either side of the strap. Equipped with a thin, adjustable and removable shoulder strap, the Saddle bag may be carried by hand, worn over the shoulder or crossbody.",price:4400,currency:"USD-$"},bindProducts:[],cover:"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsqwogfFahvNml7vmATxwfKLcNlh91710324602536.png",url:"https://dior-sxp-cdn.chatlabs.net/prod/sound/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsVRd4z4V8UScNc7Wc96xv4xDVByb1710324589932.mp4",imgUrls:null,hashTags:["Maria Grazia Chiuri","Saddle Bags","Handbags"]},product:null,cta:null},{position:"13",isCollected:null,video:{itemId:"VIDEOvqhF71709609258469",title:"The lady dior bag embodies dior's vision of elegance and beauty. Sleek and refined, the timeless style demonstrates the house's exceptional savoir-faire. The black patent-to-matte gradient lambskin style is embellished with iconic cannage topstitching, while the ultra-matte metal d.i.o.r. Charms lend a modern touch. Featuring a thin, removable leather shoulder strap, the medium lady dior bag can be carried by hand or worn crossbody.",tags:["Thin","Removable Shoulder Strap","Medium","Lady Dior","Crossbody","Handbags","Cross-body & Shoulder Bags"],weight:null,traceInfo:"VECTOReVssi1704360966770:VIDEO:VIDEOvqhF71709609258469:default:3::branch:Handbags:13",bindCta:null,bindProduct:{itemId:"M0565SDBRM900",title:"Medium Lady Dior Bag",tags:["Women","Black","Handbags","Hand","Lady Dior","Crossbody"],weight:null,traceInfo:"VECTOReVssi1704360966770:PRODUCT:M0565SDBRM900:default:3::branch:Handbags:13",bindCta:{itemId:"CTAzgoPn1709005149328",title:"\u7ACB\u5373\u8D2D\u4E70",tags:[],weight:null,traceInfo:"VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:13",enTitle:"Shop now",icon:"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",link:null,linkTitle:null,linkType:null,menuCategoryId:"65966478d19caa37afe3603f"},homePage:["https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsnyiCm9oirbXLqmqY7231O8O2Yhb1710498970982.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fskwIRRKCtuw9cb9btuubt2D5bXfB1710498970676.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsqXFTCyhxspeYCD3uo4UiuN5vQ7w1710498970671.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs8rDRSKJmWUNI42MjrMWVlI0D9Fz1710498970729.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsca9Cjqo3WMJVU0OL0OjQo8xOoMx1710498972076.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsjl1bxi56X0QrKwfvl8YocBVJ2N81710498971352.jpg"],collection:null,link:"https://www.dior.com/en_us/fashion/products/M0565SDBR_M900-medium-lady-dior-bag-black-patent-to-matte-gradient-cannage-lambskin?objectID=M0565SDBR_M900&query=M0565SDBRM900&queryID=14cc52b35774a9a42e78fd9ba199860e",linkTitle:null,linkType:"WEB",info:"The Lady Dior bag embodies Dior's vision of elegance and beauty. Sleek and refined, the timeless style demonstrates the House's exceptional savoir-faire. The black patent-to-matte gradient lambskin style is embellished with iconic Cannage topstitching, while the ultra-matte metal D.I.O.R. charms lend a modern touch. Featuring a thin, removable leather shoulder strap, the medium Lady Dior bag can be carried by hand or worn crossbody.",price:7100,currency:"USD-$"},bindProducts:[],cover:"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240305/fsHmNyOcNdgB9Y8aIFYWCHlEZVl4x1709608981919.jpg",url:null,imgUrls:["https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fslhMX6mwCM4i5XFY6dpcMZdPocYv1710398865153.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fsJQCe9rZmsEjuIUpdck9Hs2gpNU81710398856427.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fsnHUJufSHptF88bNsyUGmSSKYH4A1710398855734.jpg"],hashTags:["Lady Dior","Handbags"]},product:null,cta:null},{position:"14",isCollected:null,video:null,product:{itemId:"M0455CBAAM900",title:"Saddle Bag with Strap",tags:["Saddle Bags","Handbags","Maria Grazia Chiuri"],weight:null,traceInfo:"VECTOReVssi1704360966770:PRODUCT:M0455CBAAM900:default:3::branch:Handbags:14",bindCta:{itemId:"CTAzgoPn1709005149328",title:"\u7ACB\u5373\u8D2D\u4E70",tags:[],weight:null,traceInfo:"VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:14",enTitle:"Shop now",icon:"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",link:null,linkTitle:null,linkType:null,menuCategoryId:"65966478d19caa37afe3603f"},homePage:["https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsiwfgnCrVBGcGPh6gaFsvbYBIpxX1709285334896.png","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsXpilTgUS4u4oFWr0hUew8DQITi11709285353202.png","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsWxJm6YIeRYmDtDoB5WtYMjRX8bm1709285366208.png","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsj69PxKh1SAZ6p0902FbBT0vg2at1709285373714.png","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fs78nKueByU2cNulReOw8gJ1ZsieF1709285412981.png","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsmAEriTIohZAUMUE6gUCWvXwbbRE1709285429332.png"],collection:"Et\xE9 2024",link:"https://www.dior.com/en_us/fashion/products/M0455CBAA_M900-saddle-bag-with-strap-black-grained-calfskin?objectID=M0455CBAA_M900&query=M0455CBAAM900&queryID=c171c63e69d6d109953e2de631718496",linkTitle:null,linkType:"WEB",info:"Maria Grazia Chiuri brings a fresh update to the iconic Saddle bag. Crafted in black grained calfskin, the legendary design features a Saddle flap with a D stirrup clasp on a magnetic strap, as well as an antique gold-finish metal CD signature on either side of the strap. Equipped with a thin, adjustable and removable shoulder strap, the Saddle bag may be carried by hand, worn over the shoulder or crossbody.",price:4400,currency:"USD-$"},cta:null},{position:"15",isCollected:null,video:{itemId:"VIDEO693hq1709628690318",title:"New for the summer 2024 season, the dior caro top handle camera bag is a sophisticated and practical design. Crafted in black calfskin, the small model is elevated by the originality of the macrocannage stitching's quilted effect. The bag features a zip closure and an antique gold-tone metal cd signature.",tags:["Ready-To-Wear","Handbags","Signature Hardware Design","Monogram/Logo Print","Calfskin Leather","Summer 2024","Black"],weight:null,traceInfo:"VECTOReVssi1704360966770:VIDEO:VIDEO693hq1709628690318:default:3::branch:Handbags:15",bindCta:null,bindProduct:{itemId:"M3352UBHMM900",title:"Small Dior Caro Top Handle Camera Bag Black Macrocannage Calfskin ",tags:["Summer 2024","Black","Women","Handbags","Dior Caro"],weight:null,traceInfo:"VECTOReVssi1704360966770:PRODUCT:M3352UBHMM900:default:3::branch:Handbags:15",bindCta:{itemId:"CTAzgoPn1709005149328",title:"\u7ACB\u5373\u8D2D\u4E70",tags:[],weight:null,traceInfo:"VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:15",enTitle:"Shop now",icon:"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",link:null,linkTitle:null,linkType:null,menuCategoryId:"65966478d19caa37afe3603f"},homePage:["https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsx3wufMP9P6ovvCrXL58eVVA61gI1710499528917.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs82a414vXXhbgMXsw3Zm8TWyDMvI1710499528543.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsJaZoFhur3jfMEciQdk5GMV8O2un1710499528346.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fstO8CRKfBzpJUmAMyCDHDo23ji9N1710499528346.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsagaUiox7KECRhbPn6MScg3s4Nwd1710499528602.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsBsyFADiYBLWHaAIQfNRsgweVOWj1710499529947.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsqJEwfvOLpXQ6nQt76o92XdLwzs11710499529939.jpg"],collection:"Et\xE9 2024",link:"https://www.dior.com/en_us/fashion/products/M3352UBHM_M900",linkTitle:null,linkType:"WEB",info:"New for the Summer 2024 season, the Dior Caro Top Handle Camera bag is a sophisticated and practical design. Crafted in black calfskin, the small model is elevated by the originality of the Macrocannage stitching's quilted effect. The bag features a zip closure and an antique gold-tone metal CD signature. ",price:3350,currency:"USD-$"},bindProducts:[],cover:"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240305/fsZhMDVzP6kuh9Qt86c11whAMglMU1709628656988.jpg",url:null,imgUrls:["https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fsWrEKA6oRWUmOY14D1POTJjgiks51710401973577.jpg"],hashTags:["Ready-To-Wear"]},product:null,cta:null},{position:"16",isCollected:null,video:{itemId:"VIDEO2rUuG1709617832960",title:"The dior toujours bag is distinguished by a casual and practical design. Crafted in black crinkled calfskin with macrocannage topstitching, it showcases a spacious interior compartment with a matching pouch to organize the essentials. Its leather strap closure keeps items secure while the d of the cd lock closure twists to adjust the sides and enhance the bag's silhouette.",tags:["Dior Toujours Bag","Casual","Leather Strap","Handbags"],weight:null,traceInfo:"VECTOReVssi1704360966770:VIDEO:VIDEO2rUuG1709617832960:default:3::branch:Handbags:16",bindCta:null,bindProduct:{itemId:"M2821SNIOM900",title:"Medium Dior Toujours Bag Black Macrocannage Crinkled Leather",tags:["Medium","Black","Women","Handbags","Bucket Bag"],weight:null,traceInfo:"VECTOReVssi1704360966770:PRODUCT:M2821SNIOM900:default:3::branch:Handbags:16",bindCta:{itemId:"CTAzgoPn1709005149328",title:"\u7ACB\u5373\u8D2D\u4E70",tags:[],weight:null,traceInfo:"VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:16",enTitle:"Shop now",icon:"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",link:null,linkTitle:null,linkType:null,menuCategoryId:"65966478d19caa37afe3603f"},homePage:["https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsy6AN0OWw3rj8Luw3RTSP9n2kDLq1710497237677.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fszTc3uEUrtppdN9QVVU2XBnaaaBY1710497237986.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsKbBMTRa0tTTX661wu7DzLw9OP0r1710497237980.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsOYHlYCwgzalxzmIJcsZmIsJ2L3g1710497237145.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsKJqNVm1ZBlrgZ8XLC0YAaO6ws2F1710497237650.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsm2VoVancBQ20nDHceESUPNLyrUy1710497238312.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs2B5YYmv8OztP3d9rlM2a9KmYswl1710497237339.jpg"],collection:"Et\xE9 2024",link:"https://www.dior.com/en_us/fashion/products/M1296ZRIW_M828-medium-dior-book-tote-ecru-and-blue-dior-oblique-embroidery-36-x-27.5-x-16.5-cm",linkTitle:null,linkType:"WEB",info:"The dior toujours bag is distinguished by a casual and practical design. Crafted in black crinkled calfskin with macrocannage topstitching, it showcases a spacious interior compartment with a matching pouch to organize the essentials. Its leather strap closure keeps items secure while the d of the cd lock closure twists to adjust the sides and enhance the bag's silhouette.",price:4400,currency:"USD-$"},bindProducts:[],cover:"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240305/fs0BUtn8TYp4l8gWsg5WD9Ht8AP7R1709617796077.jpg",url:null,imgUrls:["https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fsmecPfhI3OtZwJmKAXLv8scBSSdK1710399333565.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fsfsWBLxbC36B7Pm7Ae1uL98EmoaH1710399333017.jpg"],hashTags:["Handbags","Dior Toujours Bag"]},product:null,cta:null},{position:"17",isCollected:null,video:{itemId:"VIDEOGZGZI1709629679782",title:"The Lady Dior bag embodies Dior's vision of elegance and beauty. Sleek and refined, the timeless white and navy blue calfskin style offers a new take on the iconic House motif with this season's signature Toile de Jouy Soleil, layering suns and crescent moons into a floral design representing the four seasons. A",tags:["Handbags"],weight:null,traceInfo:"VECTOReVssi1704360966770:VIDEO:VIDEOGZGZI1709629679782:default:3::branch:Handbags:17",bindCta:null,bindProduct:{itemId:"M0565OZEDM928",title:"Medium Lady Dior Bag",tags:["Lady Dior","Medium","Handbags","Crossbody"],weight:null,traceInfo:"VECTOReVssi1704360966770:PRODUCT:M0565OZEDM928:default:3::branch:Handbags:17",bindCta:{itemId:"CTAzgoPn1709005149328",title:"\u7ACB\u5373\u8D2D\u4E70",tags:[],weight:null,traceInfo:"VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:17",enTitle:"Shop now",icon:"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",link:null,linkTitle:null,linkType:null,menuCategoryId:"65966478d19caa37afe3603f"},homePage:["https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsbVwOx4grEmqCNmvOnKpIS0vTPPc1710499656033.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240319/fsJrpY9R8uGenvzM7NnzI4lPMCF8g1710836215790.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240319/fsYQG9gipUNt6UbzFPXTwLTNgj5BF1710836214937.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240319/fsqPEXjWl7l3wPAxJIZbnnhZPXDCw1710836216838.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsNHlPmAsNYPsGDJ5w0G213wJkwFf1710499654946.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs8dAObnEoAYe1V6pwJOGTs4vCBJO1710499655963.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsJpaBPC8OxQ4aYwxsMcqZpGtPWnq1710499655730.jpg"],collection:"Et\xE9 2024",link:"https://www.dior.com/en_us/fashion/products/M0565OZED_M928",linkTitle:null,linkType:"WEB",info:"The Lady Dior bag embodies Dior's vision of elegance and beauty. Sleek and refined, the timeless white and navy blue calfskin style offers a new take on the iconic House motif with this season's signature Toile de Jouy Soleil, layering suns and crescent moons into a floral design representing the four seasons. Accented by pale gold-finish metal D.I.O.R. charms illuminating the silhouette and featuring a thin, removable leather shoulder strap, the medium Lady Dior bag can be carried by hand or wo",price:6500,currency:"USD-$"},bindProducts:[],cover:"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240305/fsG1IT2gcB5iabcTL89Xs9bRHISMb1709629659698.jpg",url:null,imgUrls:["https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fsJB1txgzSsQLBBJSTzqGI40BvLkr1710399454552.jpg"],hashTags:["Handbags"]},product:null,cta:null},{position:"18",isCollected:null,video:{itemId:"VIDEOC2IMa1710324169054",title:"The lady dior bag embodies dior's vision of elegance and beauty. Sleek and refined, the timeless style demonstrates the house's exceptional savoir-faire. The black patent-to-matte gradient lambskin style is embellished with iconic cannage topstitching, while the ultra-matte metal d.i.o.r. Charms lend a modern touch. Featuring a thin, removable leather shoulder strap, the medium lady dior bag can be carried by hand or worn crossbody.",tags:["Lady Dior","Removable Shoulder Strap","Medium","Handbags","Crossbody"],weight:null,traceInfo:"VECTOReVssi1704360966770:VIDEO:VIDEOC2IMa1710324169054:default:3::branch:Handbags:18",bindCta:null,bindProduct:{itemId:"M0565SDBRM900",title:"Medium Lady Dior Bag",tags:["Women","Black","Handbags","Hand","Lady Dior","Crossbody"],weight:null,traceInfo:"VECTOReVssi1704360966770:PRODUCT:M0565SDBRM900:default:3::branch:Handbags:18",bindCta:{itemId:"CTAzgoPn1709005149328",title:"\u7ACB\u5373\u8D2D\u4E70",tags:[],weight:null,traceInfo:"VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:18",enTitle:"Shop now",icon:"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",link:null,linkTitle:null,linkType:null,menuCategoryId:"65966478d19caa37afe3603f"},homePage:["https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsnyiCm9oirbXLqmqY7231O8O2Yhb1710498970982.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fskwIRRKCtuw9cb9btuubt2D5bXfB1710498970676.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsqXFTCyhxspeYCD3uo4UiuN5vQ7w1710498970671.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs8rDRSKJmWUNI42MjrMWVlI0D9Fz1710498970729.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsca9Cjqo3WMJVU0OL0OjQo8xOoMx1710498972076.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsjl1bxi56X0QrKwfvl8YocBVJ2N81710498971352.jpg"],collection:null,link:"https://www.dior.com/en_us/fashion/products/M0565SDBR_M900-medium-lady-dior-bag-black-patent-to-matte-gradient-cannage-lambskin?objectID=M0565SDBR_M900&query=M0565SDBRM900&queryID=14cc52b35774a9a42e78fd9ba199860e",linkTitle:null,linkType:"WEB",info:"The Lady Dior bag embodies Dior's vision of elegance and beauty. Sleek and refined, the timeless style demonstrates the House's exceptional savoir-faire. The black patent-to-matte gradient lambskin style is embellished with iconic Cannage topstitching, while the ultra-matte metal D.I.O.R. charms lend a modern touch. Featuring a thin, removable leather shoulder strap, the medium Lady Dior bag can be carried by hand or worn crossbody.",price:7100,currency:"USD-$"},bindProducts:[],cover:"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsuF6sqlC9LCBLTgxHwMRinXwB6bF1710324135846.png",url:"https://dior-sxp-cdn.chatlabs.net/prod/sound/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsFwNsGElWR2SXQ2tWwHkaiqMZN5H1710324095954.mp4",imgUrls:null,hashTags:["Lady Dior","Handbags"]},product:null,cta:null},{position:"19",isCollected:null,video:null,product:{itemId:"M0565OZEDM928",title:"Medium Lady Dior Bag",tags:["Lady Dior","Medium","Handbags","Crossbody"],weight:null,traceInfo:"VECTOReVssi1704360966770:PRODUCT:M0565OZEDM928:default:3::branch:Handbags:19",bindCta:{itemId:"CTAzgoPn1709005149328",title:"\u7ACB\u5373\u8D2D\u4E70",tags:[],weight:null,traceInfo:"VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:19",enTitle:"Shop now",icon:"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",link:null,linkTitle:null,linkType:null,menuCategoryId:"65966478d19caa37afe3603f"},homePage:["https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsbVwOx4grEmqCNmvOnKpIS0vTPPc1710499656033.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240319/fsJrpY9R8uGenvzM7NnzI4lPMCF8g1710836215790.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240319/fsYQG9gipUNt6UbzFPXTwLTNgj5BF1710836214937.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240319/fsqPEXjWl7l3wPAxJIZbnnhZPXDCw1710836216838.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsNHlPmAsNYPsGDJ5w0G213wJkwFf1710499654946.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs8dAObnEoAYe1V6pwJOGTs4vCBJO1710499655963.jpg","https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsJpaBPC8OxQ4aYwxsMcqZpGtPWnq1710499655730.jpg"],collection:"Et\xE9 2024",link:"https://www.dior.com/en_us/fashion/products/M0565OZED_M928",linkTitle:null,linkType:"WEB",info:"The Lady Dior bag embodies Dior's vision of elegance and beauty. Sleek and refined, the timeless white and navy blue calfskin style offers a new take on the iconic House motif with this season's signature Toile de Jouy Soleil, layering suns and crescent moons into a floral design representing the four seasons. Accented by pale gold-finish metal D.I.O.R. charms illuminating the silhouette and featuring a thin, removable leather shoulder strap, the medium Lady Dior bag can be carried by hand or wo",price:6500,currency:"USD-$"},cta:null}],Da="Handbags",Ln={productUserId:Ea,requestId:Ia,channel:Ca,rtc:ka,tag:_a,recList:Pa,hashTag:Da};const Oa=t=>{const{rec:e,style:i={},sizeChange:n=()=>{},unitWidth:l,index:o,showBorder:a,list:r,reportTagsView:d,textStyles:u,space:c}=t,{swiperRef:f,setRtcList:m,setOpenHashtag:h,sxpParameter:w}=Oe(),[y,P]=$(!1);$(!1),$({height:1,width:1});const v=ge(null),x=ge(null);ge(null),ge(null);const[b,A]=$(""),C=ue(()=>{var T,_,D,O,j,H,F,B,R,Z;return!((T=e?.video)===null||T===void 0)&&T.cover?(_=e?.video)===null||_===void 0?void 0:_.cover:!((O=(D=e?.video)===null||D===void 0?void 0:D.imgUrls)===null||O===void 0)&&O.length?(H=(j=e?.video)===null||j===void 0?void 0:j.imgUrls)===null||H===void 0?void 0:H[0]:!((B=(F=e?.product)===null||F===void 0?void 0:F.homePage)===null||B===void 0)&&B.length?(Z=(R=e?.product)===null||R===void 0?void 0:R.homePage)===null||Z===void 0?void 0:Z[0]:w?.bottom_image||""},[e,w?.bottom_image]),g=ue(()=>{var T,_;return((T=e?.product)===null||T===void 0?void 0:T.title)||((_=e?.video)===null||_===void 0?void 0:_.title)||null},[e]),M=ue(()=>{var T;return i.transform?Number((T=i.transform)===null||T===void 0?void 0:T.substring(i.transform.indexOf(",",0)+1,i.transform.length-3)):void 0},[i]);ue(()=>M===void 0?!1:M<=a,[M,a]);const k=ue(()=>{var T,_,D,O,j,H,F,B,R;return!((T=e?.product)===null||T===void 0)&&T.currency&&(!((_=e?.product)===null||_===void 0)&&_.price)?`${(H=(j=(O=(D=e?.product)===null||D===void 0?void 0:D.currency)===null||O===void 0?void 0:O.split("-")[1])===null||j===void 0?void 0:j.toUpperCase())!==null&&H!==void 0?H:""}${(R=(B=(F=e?.product)===null||F===void 0?void 0:F.price)===null||B===void 0?void 0:B.toLocaleString("zh",{minimumFractionDigits:0}))!==null&&R!==void 0?R:""}`:null},[e]);be(()=>{if(v.current===null||C==="")return;let T=null;y&&b?T=b:T=C,T&&v.current.setSrc(T)},[C,y,b]);const S=ge(),s=we(T=>{setTimeout(()=>{var _;const D=(_=S?.current)===null||_===void 0?void 0:_.offsetHeight;n(D+56+c,o)},0)},[c,n,o,l,S]),E=()=>{d(),m?.(r),setTimeout(()=>{var T;(T=f?.current)===null||T===void 0||T.swiper.slideTo(o,0,!1),h?.(!1)},0)};return p.createElement("div",{ref:x,style:Object.assign({},i),className:"waterFallList-content-listItem",key:o,onClick:E},p.createElement("div",{className:"waterFallList-content-listItem-picture",ref:S},p.createElement(lt,{loading:"lazy",className:"waterFallList-content-listItem-picture-img",onLoad:s,ref:v})),p.createElement("div",{className:"waterFallList-content-listItem-info"},p.createElement("div",{className:`waterFallList-content-listItem-info-title ${k?"waterFallList-content-listItem-info-nowrap":""}`,style:Object.assign({},u?.title),dangerouslySetInnerHTML:{__html:xe(g,u?.title)}}),p.createElement("div",{className:"waterFallList-content-listItem-info-price",hidden:!k,style:u.price,dangerouslySetInnerHTML:{__html:xe(k,u?.price)}})))};function Ma(t){var e,i,n,l,o,a,r,d,u,c,f,m,h,w,y,P,v,x,b,A,C,g,{reportTagsView:M,showBanner:k}=t,S=Ze(t,["reportTagsView","showBanner"]);const{waterFallData:s,getRecommendVideos:E,hashTagSize:T,loadingImage:_,isOpenHashTag:D,cacheActiveIndex:O}=Oe(),{jumpToWeb:j}=et(),H=ge(null),[F,B]=$(0),[R,Z]=$(),G=ge(null),[ne,q]=$([]),K=ge(),V=[170,230,300],[pe,me]=$(!1),[X,Q]=$([]),le=ge(),ie=we((U,ye)=>Math.floor(Math.random()*(ye-U+1))+U,[]),de=ge([]),[re,ae]=$({width:0}),oe=ue(()=>{const U=re.width||0;return U>=1200?6:U>=768&&U<=1199?4:2},[re]),Te=ue(()=>re.width/oe-2,[oe,re]),Ie=we(()=>{var U;const ye=(U=K.current)!==null&&U!==void 0?U:[],Pe=[];for(let fe=0;fe<X?.length;fe++){const Ne=Math.floor(fe/oe),je=fe%oe+1;let Ae=0,z=9999999999;if(Ne===0)Pe[fe]=fe;else{for(let L=0;L<Pe.length;L++)de.current[Pe[L]].top+de.current[Pe[L]].height<z&&(Ae=L,z=de.current[Pe[L]].top+de.current[Pe[L]].height);Pe[Ae]=fe}de.current[fe]===void 0&&(de.current[fe]={}),Ne===0?(je===1?de.current[fe].left=0:de.current[fe].left=de.current[fe-1].left+Te+4,de.current[fe].top=0):(de.current[fe].left=de.current[Ae].left,de.current[fe].top=z),de.current[fe].height=de.current[fe].height||V[ie(0,2)],ye[fe]={transform:`translate(${de.current[fe].left}px,${de.current[fe].top}px)`,width:`${Te}px`,height:de.current[fe].height}}return q([...ye]),[...ye]},[Te,oe,V,ie,X]),Be=we((U,ye)=>{de.current[ye]===void 0&&(de.current[ye]={}),de.current[ye].height=U,K.current=Ie()},[Ie]);be(()=>{K.current=Ie()},[Te,oe,X]),be(()=>{var U,ye,Pe,fe,Ne,je;if(me(!0),s&&E?.(Object.assign(Object.assign({hashTag:s?.hashTag,defaultSize:T,maxSize:T},((ye=(U=s?.rec)===null||U===void 0?void 0:U.product)===null||ye===void 0?void 0:ye.itemId)&&{productFilter:(fe=(Pe=s?.rec)===null||Pe===void 0?void 0:Pe.product)===null||fe===void 0?void 0:fe.itemId}),s?.itemId&&{contentFilter:s?.itemId})).then(Ae=>{var z,L;Z(Ae),Q((L=(z=Ae?.recList)===null||z===void 0?void 0:z.filter(Fe=>Fe?.video!==null||Fe?.product!==null))!==null&&L!==void 0?L:[]),me(!1)}),D){const Ae=Ln;Z(Ae),Q((je=(Ne=Ae?.recList)===null||Ne===void 0?void 0:Ne.filter(z=>z?.video!==null||z?.product!==null))!==null&&je!==void 0?je:[]),me(!1)}},[s,E,T,D]);const _e=we(()=>{G.current!==null&&ae({width:G.current.getBoundingClientRect().width})},[]);be(()=>{if(G.current===null)return;const U=new ResizeObserver(ye=>{_e()});return U.observe(G.current),()=>{U.disconnect()}},[_e]),we(()=>{var U,ye,Pe,fe;me(!0),s&&E?.(Object.assign(Object.assign({hashTag:s?.hashTag},((ye=(U=s?.rec)===null||U===void 0?void 0:U.product)===null||ye===void 0?void 0:ye.itemId)&&{productFilter:(fe=(Pe=s?.rec)===null||Pe===void 0?void 0:Pe.product)===null||fe===void 0?void 0:fe.itemId}),s?.itemId&&{contentFilter:s?.itemId})).then(Ne=>{var je,Ae;Q(X?.concat((Ae=(je=Ne?.recList)===null||je===void 0?void 0:je.filter(z=>!z?.video))!==null&&Ae!==void 0?Ae:[])),me(!1)})},[s,E,X]);const He=we(()=>{B(H.current.scrollTop)},[]);be(()=>{var U;return(U=H?.current)===null||U===void 0||U.addEventListener("scroll",He),()=>{var ye;(ye=H?.current)===null||ye===void 0||ye.removeEventListener("scroll",He)}},[He,H]);const Ve=()=>{var U,ye,Pe,fe,Ne;if(!((U=R?.tag)===null||U===void 0)&&U.link){M();const je=s?.rec;j(je,(ye=je?.video)===null||ye===void 0?void 0:ye.bindProduct,(Pe=je?.video)===null||Pe===void 0?void 0:Pe.bindCta,O,(fe=je?.video)===null||fe===void 0?void 0:fe.traceInfo),window.location.href=window.getJointUtmLink((Ne=R?.tag)===null||Ne===void 0?void 0:Ne.link)}};return p.createElement(p.Fragment,null,pe?p.createElement("div",{style:{height:"100%",width:"100%",display:"flex",justifyContent:"center",alignItems:"center"}},p.createElement("img",{width:64,height:64,src:_,alt:"loading...",style:{objectFit:"contain"}})):p.createElement("div",{className:"waterFallList",ref:G},p.createElement("div",{className:"waterFallList-scroll",ref:H},k&&((e=R?.tag)===null||e===void 0?void 0:e.picture)&&p.createElement("div",{onClick:Ve},p.createElement(lt,{className:Ee({width:"100%",objectFit:"cover",marginBottom:"20px"}),src:(i=R?.tag)===null||i===void 0?void 0:i.picture})),p.createElement("div",{className:"waterFallList-info",style:(n=S?.textStyles)===null||n===void 0?void 0:n.hashTagDesc,dangerouslySetInnerHTML:{__html:xe((l=R?.tag)===null||l===void 0?void 0:l.info,(o=S?.textStyles)===null||o===void 0?void 0:o.hashTagDesc)}}),p.createElement("div",{hidden:!(!((a=R?.tag)===null||a===void 0)&&a.link),className:"waterFallList-collection",style:Object.assign({},(r=S?.textStyles)===null||r===void 0?void 0:r.hashTagLink),onClick:Ve,dangerouslySetInnerHTML:{__html:xe(((d=R?.tag)===null||d===void 0?void 0:d.linkTitle)||"Shop the collection",(u=S?.textStyles)===null||u===void 0?void 0:u.hashTagLink)}}),p.createElement("div",{className:"waterFallList-content"},X?.map((U,ye)=>{var Pe;return p.createElement(Oa,Object.assign({key:ye,index:ye,rec:U,list:X,showBorder:F+((Pe=H?.current)===null||Pe===void 0?void 0:Pe.clientHeight),style:ne[ye],sizeChange:Be,unitWidth:Te,reportTagsView:M},S))}),p.createElement("div",{hidden:!(!((c=R?.tag)===null||c===void 0)&&c.link),style:{position:"absolute",width:"100%",transform:`translate(0px,${(y=((m=de?.current[((f=de?.current)===null||f===void 0?void 0:f.length)-1])===null||m===void 0?void 0:m.top)+((w=de?.current[((h=de?.current)===null||h===void 0?void 0:h.length)-1])===null||w===void 0?void 0:w.height))!==null&&y!==void 0?y:0}px)`,height:!((P=R?.tag)===null||P===void 0)&&P.link?((v=le?.current)===null||v===void 0?void 0:v.offsetHeight)||((x=S?.buttonBgStyle)===null||x===void 0?void 0:x.height)||"100px":0}}))),p.createElement("div",{className:"waterFallList-bottom",hidden:!(!((b=R?.tag)===null||b===void 0)&&b.link),style:S?.buttonBgStyle}),p.createElement("div",{ref:le,hidden:!(!((A=R?.tag)===null||A===void 0)&&A.link),className:"waterFallList-btn-wrap",style:Object.assign(Object.assign({},S?.buttonBgStyle),{height:"auto",backgroundColor:"transparent"})},p.createElement("button",{"aria-label":((C=R?.tag)===null||C===void 0?void 0:C.linkTitle)||"Shop the collection",className:"waterFallList-btn",style:S?.buttonStyle,onClick:Ve,dangerouslySetInnerHTML:{__html:xe(((g=R?.tag)===null||g===void 0?void 0:g.linkTitle)||"Shop the collection",S?.buttonStyle)}}))))}var La="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAaZJREFUeF7t2jFKBEEQRuG3mSJeQTARURDMTL2EqXfwAnoKD6FHMDEzNVIw2tzQC2gFggyDrExX1V92T7wz9PumFnqbXdH5teq8nwEwJqBzgfEVKDYAW8Ae8NZq3ZUm4Aa4AnaBR+C8BUIVAIu/ngSfAs9LESoAWLgB/LzWwP7SeLtfHWAu3tZ9Adz/dwD3eOUJCIlXBQiLVwQIjVcDCI9XAkiJVwFIi1cASI3PBpjb3jbd5GyyUcraCUrEZ02ATHwGgFR8NIBcfCSAZHwUgGx8BIB0vDeAfLwnQIl4L4Ay8R4ApeJbA2wD78DOZA/e7ABzk739Xz/T8rfAIfA6WYCd3BqA7NUSwCKfgLNKCK0BjoC7rzP74yoIrQGsuxSCB0ApBC+AMgieACUQvAHkESIApBGiAGQRIgEkEaIB5BAyAKQQsgBkEDIBJBCyAdIRFABSEVQA0hCUAFIQ1ADCERQBQhFUAcIQlAFCENQBfkOwg9eXpeftFQDmEOzv8ifARy8A3wiXwAHwANwujbf7q0xAi9bZZwwAN9oiDx4TUORFuS2z+wn4BAiAaEHnKChjAAAAAElFTkSuQmCC";const Ra=t=>{const{rec:e,index:i,list:n,reportTagsView:l,textStyles:o,space:a}=t,{swiperRef:r,setRtcList:d,setOpenHashtag:u,sxpParameter:c}=Oe(),[f,m]=$(!1),h=ge(null),w=ge(null),y=ge(null),P=ge(null),[v,x]=$(""),b=ue(()=>{var k,S,s,E,T,_,D,O,j,H;return!((k=e?.video)===null||k===void 0)&&k.cover?(S=e?.video)===null||S===void 0?void 0:S.cover:!((E=(s=e?.video)===null||s===void 0?void 0:s.imgUrls)===null||E===void 0)&&E.length?(_=(T=e?.video)===null||T===void 0?void 0:T.imgUrls)===null||_===void 0?void 0:_[0]:!((O=(D=e?.product)===null||D===void 0?void 0:D.homePage)===null||O===void 0)&&O.length?(H=(j=e?.product)===null||j===void 0?void 0:j.homePage)===null||H===void 0?void 0:H[0]:c?.bottom_image||""},[e,c?.bottom_image]),A=ue(()=>{var k,S;return((k=e?.product)===null||k===void 0?void 0:k.title)||((S=e?.video)===null||S===void 0?void 0:S.title)||null},[e]),C=ue(()=>{var k,S,s,E,T,_,D,O,j;return!((k=e?.product)===null||k===void 0)&&k.currency&&(!((S=e?.product)===null||S===void 0)&&S.price)?`${(_=(T=(E=(s=e?.product)===null||s===void 0?void 0:s.currency)===null||E===void 0?void 0:E.split("-")[1])===null||T===void 0?void 0:T.toUpperCase())!==null&&_!==void 0?_:""}${(j=(O=(D=e?.product)===null||D===void 0?void 0:D.price)===null||O===void 0?void 0:O.toLocaleString("zh",{minimumFractionDigits:0}))!==null&&j!==void 0?j:""}`:null},[e]);be(()=>{const k=new IntersectionObserver(S=>{S.forEach(s=>{if(s.isIntersecting){if(w.current===null||b==="")return;f&&v?h.current.setSrc(v):h.current.setSrc(b),k.unobserve(w.current)}})});return k.observe(w.current),()=>{k.disconnect()}},[b,f,v]);const g=(k,S,s)=>{const E=k/S;return s/E};be(()=>{const k=y?.current;k===null||b===""||!f||(k.src=b,k.currentTime=1,k.crossOrigin="anonymous",k.onloadeddata=()=>{const S=P?.current;if(!S)return;const s=S.getContext("2d"),E=window?.innerWidth/2,T=g(k.videoWidth,k.videoHeight,E);S.height=T,S.width=E,s?.drawImage(k,0,0,S.width,S.height),x(S.toDataURL()),k.remove(),S.remove()})},[b,f]);const M=()=>{l(),d?.(n),setTimeout(()=>{var k;(k=r?.current)===null||k===void 0||k.swiper.slideTo(i,0,!1),u?.(!1)},0)};return p.createElement("div",{ref:w,className:"list-content-listItem",key:i,onClick:M,style:{marginBottom:a}},p.createElement("div",{className:"list-content-listItem-picture"},f&&p.createElement("div",{style:{display:"none"}},p.createElement("video",{ref:y,crossOrigin:"anonymous",className:"list-content-listItem-picture-img"}),p.createElement("canvas",{ref:P})),p.createElement(lt,{loading:"lazy",className:"list-content-listItem-picture-img",ref:h})),p.createElement("div",{className:"list-content-listItem-info"},p.createElement("div",{className:`list-content-listItem-info-title ${C?"list-content-listItem-info-nowrap":""}`,style:o?.title,dangerouslySetInnerHTML:{__html:xe(A,o?.title)}}),p.createElement("div",{className:"list-content-listItem-info-price",style:o?.price,hidden:!C,dangerouslySetInnerHTML:{__html:xe(C,o?.price)}})))};function Ba(t){var e,i,n,l,o,a,r,d,u,c,f,m,h,w,y,P,v,{reportTagsView:x,showBanner:b}=t,A=Ze(t,["reportTagsView","showBanner"]);const{waterFallData:C,getRecommendVideos:g,hashTagSize:M,loadingImage:k,isOpenHashTag:S,cacheActiveIndex:s}=Oe(),{jumpToWeb:E}=et(),[T,_]=$(),[D,O]=$(),[j,H]=$(!1),F=ge(null),[B,R]=$(!1);we(()=>{var G,ne,q,K;B||(R(!0),C&&g?.(Object.assign(Object.assign({hashTag:C?.hashTag},((ne=(G=C?.rec)===null||G===void 0?void 0:G.product)===null||ne===void 0?void 0:ne.itemId)&&{productFilter:(K=(q=C?.rec)===null||q===void 0?void 0:q.product)===null||K===void 0?void 0:K.itemId}),C?.itemId&&{contentFilter:C?.itemId})).then(V=>{var pe;_(T?.concat((pe=V?.recList)!==null&&pe!==void 0?pe:[])),R(!1)}))},[C,g,T,B]),be(()=>{var G,ne,q,K,V,pe;if(H(!0),C&&g?.(Object.assign(Object.assign(Object.assign({hashTag:C?.hashTag},((ne=(G=C?.rec)===null||G===void 0?void 0:G.product)===null||ne===void 0?void 0:ne.itemId)&&{productFilter:(K=(q=C?.rec)===null||q===void 0?void 0:q.product)===null||K===void 0?void 0:K.itemId}),C?.itemId&&{contentFilter:C?.itemId}),{defaultSize:M,maxSize:M})).then(me=>{var X,Q;O(me),_((Q=(X=me?.recList)===null||X===void 0?void 0:X.filter(le=>le?.video!==null||le?.product!==null))!==null&&Q!==void 0?Q:[]),H(!1)}),S){const me=Ln;O(me),_((pe=(V=me?.recList)===null||V===void 0?void 0:V.filter(X=>X?.video!==null||X?.product!==null))!==null&&pe!==void 0?pe:[]),H(!1)}},[C,g,M,S]);const Z=()=>{var G,ne,q,K,V;if(!((G=D?.tag)===null||G===void 0)&&G.link){x();const pe=C?.rec;E(pe,(ne=pe?.video)===null||ne===void 0?void 0:ne.bindProduct,(q=pe?.video)===null||q===void 0?void 0:q.bindCta,s,(K=pe?.video)===null||K===void 0?void 0:K.traceInfo),window.location.href=window.getJointUtmLink((V=D?.tag)===null||V===void 0?void 0:V.link)}};return p.createElement(p.Fragment,null,j?p.createElement("div",{style:{height:"100%",width:"100%",display:"flex",justifyContent:"center",alignItems:"center"}},p.createElement("img",{width:64,height:64,src:k,alt:"loading...",style:{objectFit:"contain"}})):p.createElement("div",{className:"list"},p.createElement("div",{className:"list-scroll",ref:F},b&&((e=D?.tag)===null||e===void 0?void 0:e.picture)&&p.createElement("div",{onClick:Z},p.createElement(lt,{className:Ee({width:"100%",objectFit:"cover",marginBottom:"20px"}),src:(i=D?.tag)===null||i===void 0?void 0:i.picture})),p.createElement("div",{className:"list-info",style:(n=A?.textStyles)===null||n===void 0?void 0:n.hashTagDesc,dangerouslySetInnerHTML:{__html:xe((l=D?.tag)===null||l===void 0?void 0:l.info,(o=A?.textStyles)===null||o===void 0?void 0:o.hashTagDesc)}}),p.createElement("div",{hidden:!(!((a=D?.tag)===null||a===void 0)&&a.link),className:"list-collection",onClick:Z,style:Object.assign(Object.assign({},(r=A?.textStyles)===null||r===void 0?void 0:r.hashTagLink),{marginBottom:A?.space}),dangerouslySetInnerHTML:{__html:xe(((d=D?.tag)===null||d===void 0?void 0:d.linkTitle)||"Shop the collection",(u=A?.textStyles)===null||u===void 0?void 0:u.hashTagLink)}}),p.createElement("div",{className:"list-content"},T?.map((G,ne)=>p.createElement(Ra,Object.assign({key:ne,index:ne,rec:G,list:T,reportTagsView:x},A)))),p.createElement("div",{hidden:!B,style:{textAlign:"center"}},"loading..."),p.createElement("div",{hidden:!(!((c=D?.tag)===null||c===void 0)&&c.link),style:{height:!((f=D?.tag)===null||f===void 0)&&f.link?((m=A?.buttonBgStyle)===null||m===void 0?void 0:m.height)||((h=A?.buttonStyle)===null||h===void 0?void 0:h.height)||"100px":0}})),p.createElement("div",{className:"list-bottom",hidden:!(!((w=D?.tag)===null||w===void 0)&&w.link),style:A?.buttonBgStyle}),p.createElement("div",{hidden:!(!((y=D?.tag)===null||y===void 0)&&y.link),className:"list-btn-wrap",style:Object.assign(Object.assign({},A?.buttonBgStyle),{height:"auto",backgroundColor:"transparent"})},p.createElement("button",{"aria-label":((P=D?.tag)===null||P===void 0?void 0:P.linkTitle)||"Shop the collection",className:"list-btn",style:A?.buttonStyle,onClick:Z,dangerouslySetInnerHTML:{__html:xe(((v=D?.tag)===null||v===void 0?void 0:v.linkTitle)||"Shop the collection",A?.buttonStyle)}}))))}const Fa=t=>{var e;const{waterFallData:i,setOpenHashtag:n,openHashtag:l,swiperRef:o,setWaterFallData:a,cacheRtcList:r,setRtcList:d,cacheActiveIndex:u,rtcList:c,setCacheRtcList:f,setIsFromHashtag:m,isFromHashtag:h,bffEventReport:w,themeTag:y,selectTag:P}=Oe(),{backMainFeed:v}=et();ge(null);const x=ge(null),[b,A]=$();be(()=>{const S=document.getElementById("sxp-render"),s=document.getElementById("water-fall");s?x.current=s:(x.current=document.createElement("div"),x.current.setAttribute("id","water-fall"),S?.appendChild(x.current))},[]);const C=()=>{const S=Vi(c,r);!S&&r&&r?.length&&d?.(r),v("branch",P,void 0,i?.hashTag),k(),a?.(void 0),m?.(!1),setTimeout(()=>{var s,E;S||(E=(s=o?.current)===null||s===void 0?void 0:s.swiper)===null||E===void 0||E.slideTo(u,0,!1),n?.(!1)},0)},[g,M]=$();be(()=>{i&&M(i)},[i]);const k=we(()=>{var S,s,E,T,_,D;const O=g?.rec;if(!O)return;let j="";h?j="hashTagPage":!((S=O?.video)===null||S===void 0)&&S.url?j="videoPage":!((E=(s=O?.video)===null||s===void 0?void 0:s.imgUrls)===null||E===void 0)&&E.length&&(j="imagePage"),w?.({eventInfo:{contentId:(T=O?.video)===null||T===void 0?void 0:T.itemId,position:u+"",contentTags:JSON.stringify((_=O?.video)===null||_===void 0?void 0:_.tags),traceInfo:(D=O?.video)===null||D===void 0?void 0:D.traceInfo,hashTags:JSON.stringify([g?.hashTag]),fromKName:j,fromKPage:location?.href,timeOnSite:Math.floor((new Date-b)/1e3)+"",eventSubject:"clickTagsViewContents",eventDescription:"User click tags view contents"}})},[g,w,b,h,u]);return be(()=>{l&&A(new Date)},[l]),be(()=>{const S=()=>{A(new Date)};return window.addEventListener("pageshow",S),()=>{window.removeEventListener("pageshow",S)}},[]),x.current?Ui.createPortal(p.createElement("div",{className:"waterfall",style:{display:l?"block":"none"}},p.createElement(Mn,{icon:La,styles:{top:"32px"},textStyle:(e=t?.textStyles)===null||e===void 0?void 0:e.hashTagTitle,onClose:C}),t?.openFixedSize===!0||t?.openFixedSize===void 0?p.createElement(Ba,Object.assign({reportTagsView:k},t)):p.createElement(Ma,Object.assign({reportTagsView:k},t))),x.current):null};var Rn=Ce(Fa);const Na=t=>p.createElement(Rn,Object.assign({},t));var ja=Ce(Na);const Va=tt(ja,{displayName:"",icon:"",category:"base",type:"HashTag",related:{settingRender:Ta,bindableProps:[]},defaulSetting:{props:{lineClamp:1,space:40,textStyles:{hashTagTitle:{fontSize:16,color:"#000",textAlign:"center"},hashTagDesc:{fontSize:12,textAlign:"center",color:"#000"},hashTagLink:{textAlign:"center",color:"#757575",fontSize:12,textDecoration:"underline"},title:{fontSize:12,color:"#000"},price:{fontSize:12,fontWeight:"bold",color:"#000"}},buttonStyle:{backgroundColor:"#000",fontSize:12,height:52,fontWeight:"bold",textAlign:"center",color:"#fff",borderRadius:25},buttonBgStyle:{backgroundColor:"#fff",height:52,paddingTop:20,paddingLeft:20,paddingRight:20,paddingBottom:20}}},w:100,h:40,sort:2});var za=[{title:"\u534F\u8BAE\u8BE6\u60C5",child:[{type:"Switch",label:"\u5FC5\u987B\u540C\u610F\u7528\u6237\u534F\u8BAE",name:["props","privacy_necessity"],extra:"\u5F53\u65B0\u7528\u6237\u8FDB\u5165\u9875\u9762\u65F6\uFF0C\u4F1A\u51FA\u73B0\u7528\u6237\u534F\u8BAE\u5F39\u7A97\uFF0C\u7528\u6237\u9700\u8981\u5148\u540C\u610F\u534F\u8BAE\u540E\u624D\u80FD\u8BBF\u95EE\u5185\u5BB9\u3002"},{type:"Text",label:"\u5F39\u7A97\u6807\u9898",name:["props","privacy_title"]},{type:"TextArea",label:"\u7528\u6237\u534F\u8BAE\u5F39\u7A97\u5185\u5BB9",name:["props","privacy_context"]},{type:"Group",label:"\u9690\u79C1\u653F\u7B56",child:[{type:"Text",name:["props","privacy_policy_title"]},{type:"Text",name:["props","privacy_policy_url"],addonBefore:"https://"}],extra:"\u5F53\u7528\u6237\u70B9\u51FB\u66F4\u591A\u4FE1\u606F\u6309\u94AE\u65F6\uFF0C\u5C06\u4F1A\u8DF3\u8F6C\u81F3\u8BBE\u7F6E\u7684\u94FE\u63A5\u67E5\u770B\u653F\u7B56\u5185\u5BB9"}]}];const Bn=t=>p.createElement(Bn,Object.assign({},t));var Ha=Ce(Bn);const Ua=tt(Ha,{displayName:"Consent",icon:"",category:"base",type:"Consent",related:{settingRender:za},defaulSetting:{props:{},style:{}},w:100,h:40,sort:1});var Ga=[{title:"\u4E3B\u9898\u6837\u5F0F",child:[{type:"Group",label:"\u5C3A\u5BF8",child:[{type:"Number",name:["style","width"],addonAfter:"W"},{type:"Number",name:["style","height"],addonAfter:"H"}]},{type:"Group",label:"\u5706\u89D2",child:[{type:"Slider",name:["style","borderRadius"],max:100},{type:"Number",name:["style","borderRadius"],addonAfter:"px",max:100}]},{type:"Color",label:"\u80CC\u666F\u8272",name:["style","backgroundColor"]},{type:"TextMargin",name:["style"],label:"\u4E0A\u4E0B\u8FB9\u8DDD",direction:"vertical"},{type:"TextPadding",name:["style"],label:"\u5185\u8FB9\u8DDD",direction:"horizontal"}]},{title:"CTA\u6807\u9898",child:[{type:"Group",label:"\u5B57\u4F53",child:[{type:"Select",name:["props","ctaTempStyles","ctaTitle","fontFamily-cn"],bottomText:"\u4E2D\u6587\u5B57\u4F53"},{type:"Select",name:["props","ctaTempStyles","ctaTitle","fontFamily-en"],bottomText:"\u82F1\u6587/\u5176\u4ED6\u5B57\u4F53"}]},{type:"Group",label:"",child:[{type:"Color",name:["props","ctaTempStyles","ctaTitle","color"]},{type:"Number",addonAfter:"px",name:["props","ctaTempStyles","ctaTitle","fontSize"]}]},{label:"\u6837\u5F0F",type:"TextStyle",name:["props","ctaTempStyles","ctaTitle"]},{label:"\u5BF9\u9F50",type:"TextAlign",name:["props","ctaTempStyles","ctaTitle"]},{type:"TextSpace",name:["props","ctaTempStyles","ctaTitle"]}]}],Fn={"animated-button":"index-module_animated-button__lqTbg",gradientCover:"index-module_gradientCover__5iUag","one-line-ellipsis":"index-module_one-line-ellipsis__HutE0","two-line-ellipsis":"index-module_two-line-ellipsis__c8gRJ"};const Wa=t=>{var e,i,n,l,o,a,r,d,u,c,{style:f,recData:m,ctaTempStyles:h,index:w,event:y,onClick:P,isExternalLink:v=!1}=t,x=Ze(t,["style","recData","ctaTempStyles","index","event","onClick","isExternalLink"]);const{ctaEvent:b,setPopupDetailData:A}=Oe(),{jumpToWeb:C}=et(),[g,M]=$(!1),k=ge(null),S=Dn(k),s=((n=(i=(e=m?.video)===null||e===void 0?void 0:e.bindProducts)===null||i===void 0?void 0:i[0])===null||n===void 0?void 0:n.bindCta)||((o=(l=m?.video)===null||l===void 0?void 0:l.bindProduct)===null||o===void 0?void 0:o.bindCta)||((a=m?.video)===null||a===void 0?void 0:a.bindCta),E=((d=(r=m?.video)===null||r===void 0?void 0:r.bindProducts)===null||d===void 0?void 0:d[0])||((u=m?.video)===null||u===void 0?void 0:u.bindProduct),T=()=>{var j,H,F,B;const R=((H=(j=m?.video)===null||j===void 0?void 0:j.bindProducts)===null||H===void 0?void 0:H[0])||((F=m?.video)===null||F===void 0?void 0:F.bindProduct)||m?.video;if(b?.({eventSubject:"clickCta",eventDescription:"User clicked the CTA"},m,R,w),A?.(Object.assign(Object.assign({},m),{index:w})),v){const Z=E?.link||((B=R?.bindCta)===null||B===void 0?void 0:B.link);Z&&(C(m,E,s,w),window.location.href=window.getJointUtmLink(Z))}else P?.()},_=s?.enTitle||"\u67E5\u770B\u8BE6\u60C5",D=ue(()=>{var j,H;const F=y?.animation;if(F){const{delay:B,duration:R,backgroundColor:Z}=F;return{":after":{animationDelay:`${(j=B/1e3)!==null&&j!==void 0?j:0}s`,animationDuration:`${(H=R/1e3)!==null&&H!==void 0?H:0}s`,backgroundColor:`${Z??"transparent"}`}}}},[y?.animation]);be(()=>{var j,H,F;S&&k?.current&&b?.({eventSubject:"ctaExposure",eventDescription:"The cta was shown to the user"},m,((H=(j=m?.video)===null||j===void 0?void 0:j.bindProducts)===null||H===void 0?void 0:H[0])||((F=m?.video)===null||F===void 0?void 0:F.bindProduct)||m?.video,w)},[S]),be(()=>{M(!!S)},[S]);const O=ue(()=>g?Fn["animated-button"]:null,[g]);return p.createElement("div",Object.assign({ref:k,style:Object.assign(Object.assign(Object.assign({},f),h?.ctaTitle),{lineHeight:`${(c=f?.height)!==null&&c!==void 0?c:0}px`})},x,{className:`${O} ${Ee(D)} ${Fn["one-line-ellipsis"]}`,onClick:T,dangerouslySetInnerHTML:{__html:xe(_,h?.ctaTitle)}}))};var Ya=Ce(Wa),Xa=[{title:"\u70B9\u51FB\u4E8B\u4EF6",child:[{type:"link",name:"onClick"}]},{title:"\u52A8\u753B\u6548\u679C",child:[{type:"Color",name:["animation","backgroundColor"],label:"\u52A8\u753B\u989C\u8272"},{type:"Select",name:["animation","name"],label:"\u52A8\u753B",options:[{label:"\u9ED8\u8BA4",value:1}],fieldProps:{style:{width:"100%"}}},{type:"Number",label:"\u52A8\u753B\u542F\u52A8\u65F6\u95F4",name:["animation","delay"],addonAfter:"ms"},{type:"Number",label:"\u52A8\u753B\u6301\u7EED\u65F6\u95F4",name:["animation","duration"],addonAfter:"ms"}]}];const Ja=tt(Ya,{displayName:"\u7EAF\u8272\u52A8\u6548CTA",icon:"",category:"cta",type:"AniLink",related:{settingRender:Ga,bindableProps:[],interactionRender:Xa},defaulSetting:{props:{ctaTempStyles:{ctaTitle:{fontSize:15,color:"#fff",textAlign:"center"}},event:{animation:{backgroundColor:"#F40082",name:1,delay:1e3,duration:2e3}}},style:{width:236,height:44,borderRadius:3,backgroundColor:"rgba(0,0,0,.3)",paddingLeft:7,paddingRight:7}},w:100,h:40,sort:1});var qa=[{title:"\u4E3B\u9898\u6837\u5F0F",child:[{type:"Group",label:"\u5C3A\u5BF8",child:[{type:"Number",name:["style","width"],addonAfter:"W"},{type:"Number",name:["style","height"],addonAfter:"H"}]},{type:"Group",label:"\u5706\u89D2",child:[{type:"Slider",name:["style","borderRadius"],max:100},{type:"Number",name:["style","borderRadius"],addonAfter:"px",max:100}]},{type:"Color",label:"\u80CC\u666F\u8272",name:["style","backgroundColor"]},{label:"\u5916\u8FB9\u8DDD",type:"Number",name:["style","margin"],addonAfter:"px"},{label:"\u5185\u8FB9\u8DDD",type:"Number",name:["style","padding"],addonAfter:"px"}]},{title:"\u5546\u54C1\u56FE\u7247",child:[{type:"Group",label:"\u5C3A\u5BF8",child:[{type:"Number",name:["props","ctaTempStyles","img","width"],addonAfter:"W"},{type:"Number",name:["props","ctaTempStyles","img","height"],addonAfter:"H"}]},{type:"Group",label:"\u5706\u89D2",child:[{type:"Slider",name:["props","ctaTempStyles","img","borderRadius"],max:100},{type:"Number",name:["props","ctaTempStyles","img","borderRadius"],addonAfter:"px",max:100}]},{type:"Number",label:"\u4E0E\u4E0B\u8FB9\u8FB9\u8DDD",addonAfter:"px",name:["props","ctaTempStyles","img","marginBottom"]},{label:"\u5C45\u4E2D\u5782\u76F4\u504F\u79FB",type:"Number",name:["props","translateY"],min:-1e3,addonAfter:"%",initialValue:0}]},{title:"\u5546\u54C1\u6807\u9898\u6587\u672C",type:"commodityTitle",child:[{type:"Group",label:"\u5B57\u4F53",child:[{type:"Select",name:["props","ctaTempStyles","title","fontFamily-cn"],bottomText:"\u4E2D\u6587\u5B57\u4F53"},{type:"Select",name:["props","ctaTempStyles","title","fontFamily-en"],bottomText:"\u82F1\u6587/\u5176\u4ED6\u5B57\u4F53"}]},{type:"Group",label:"",child:[{type:"Color",name:["props","ctaTempStyles","title","color"]},{type:"Number",addonAfter:"px",name:["props","ctaTempStyles","title","fontSize"]}]},{label:"\u6837\u5F0F",type:"TextStyle",name:["props","ctaTempStyles","title"]},{label:"\u5BF9\u9F50",type:"TextAlign",name:["props","ctaTempStyles","title"]},{label:"\u95F4\u8DDD",type:"TextSpace",name:["props","ctaTempStyles","title"]}]},{title:"CTA\u6807\u9898",child:[{type:"Group",label:"\u5C3A\u5BF8",child:[{type:"Number",name:["props","ctaTempStyles","ctaTitle","width"],addonAfter:"W"},{type:"Number",name:["props","ctaTempStyles","ctaTitle","height"],addonAfter:"H"}]},{type:"Group",label:"\u5706\u89D2",child:[{type:"Slider",name:["props","ctaTempStyles","ctaTitle","borderRadius"],max:100},{type:"Number",name:["props","ctaTempStyles","ctaTitle","borderRadius"],addonAfter:"px",max:100}]},{type:"TextSpace",name:["props","ctaTempStyles","ctaTitle"]},{type:"Color",label:"\u80CC\u666F\u8272",name:["props","ctaTempStyles","ctaTitle","backgroundColor"]},{type:"Group",label:"\u5B57\u4F53",child:[{type:"Select",name:["props","ctaTempStyles","ctaTitle","fontFamily-cn"],bottomText:"\u4E2D\u6587\u5B57\u4F53"},{type:"Select",name:["props","ctaTempStyles","ctaTitle","fontFamily-en"],bottomText:"\u82F1\u6587/\u5176\u4ED6\u5B57\u4F53"}]},{type:"Group",label:"",child:[{type:"Color",name:["props","ctaTempStyles","ctaTitle","color"]},{type:"Number",addonAfter:"px",name:["props","ctaTempStyles","ctaTitle","fontSize"]}]},{label:"\u6837\u5F0F",type:"TextStyle",name:["props","ctaTempStyles","ctaTitle"]},{label:"\u5BF9\u9F50",type:"TextAlign",name:["props","ctaTempStyles","ctaTitle"]}]}],Rt={aniLinkPopup:"index-module_aniLinkPopup__YT7kj","animated-fadeIn":"index-module_animated-fadeIn__8ZCbq",fadeIn:"index-module_fadeIn__2E-dk","animated-fadeOut":"index-module_animated-fadeOut__iK4oc",fadeOut:"index-module_fadeOut__MgevT","one-line-ellipsis":"index-module_one-line-ellipsis__NRiVV","two-line-ellipsis":"index-module_two-line-ellipsis__k-YGB","modal-icon-wrapper":"index-module_modal-icon-wrapper__tu3BY","modal-icon-wrapper-img":"index-module_modal-icon-wrapper-img__4b7qZ"};const Ka="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAjhJREFUWEfFlztOw0AQhmeWiJ4CCmpQ5DiRQsIJyAWg5A0lR0AIChDiCJS8ER0cADgBeRSxt4CCDgkaKiq8i+zYeWx2413HEWmiJJv9v535Z2aN8M8vFPT9z3zETD0aAUChUJjwvPFHAJhBhB3Hqd6OAsK2yyucwykAvP38eJX398Z3AJDLlVYR8ToU9Rhj25TWr9KEsKy5dULIGQCMtfZly45TvwsAstm56UwG6wA4FUFwzrdctxZBDcWSy5XWEPG8I84/GcMipdWPtgcsaz5PCHtKG0IuTiqUvjT9U/WYMG2IOPE+AP+LtCB0xKUAAyA2Xbd2o2OG0NQXvTnvhL17D7EPtH9TRCIWwkRcGYGIQgYBABuqPuHXOQBc6pw80lBGwBQiiXhsBHQhkoprA6iM6acjhDQKu5YJZW6XeOI3XJdpvfsdTu52VfXEekD8owQiXGIubpSCbhDbLu8DwKEAd+A41SOdPpE4BS0viFOtvV2iKWqUgn5x/tmS70xR01GuDSCKc86/OCcLgTyyZ0ScDGNhFAktAJV4NFJ9YyaFiAWIE+9uVkkgBgLoig8DMWAa9ro9ynkUdlW5maZDCmB6clmz0k1HH4Cs1Ezbq2p2yEpUuBOKTSZZex00RUWIrltxuuK6EOGDSbGIOPZicpMx6fny650377qNRgBgWeVFQuA+6UjVgREhGIMlSqsPUQqIbZdOOIdZQmCv2axRnU1N1+TzJYsxOEaEV8ep7frPZ7Gd0FTEdP0ft0/kMNdg0eoAAAAASUVORK5CYII=",Za=t=>{var e,i,n,l,o,a,r,d,u,c,f,m,h,w,y,P,v,x,b,A,C,g,M,k,{style:S,recData:s,ctaTempStyles:E,index:T,event:_,bottom_image:D,translateY:O,isTel:j,onClick:H,isExternalLink:F=!1,isActive:B}=t,R=Ze(t,["style","recData","ctaTempStyles","index","event","bottom_image","translateY","isTel","onClick","isExternalLink","isActive"]);S==null||delete S.transform;const{sxpParameter:Z,globalConfig:G,ctaEvent:ne,setPopupDetailData:q}=Oe(),{jumpToWeb:K}=et(),[V,pe]=$(!0),me=((n=(i=(e=s?.video)===null||e===void 0?void 0:e.bindProducts)===null||i===void 0?void 0:i[0])===null||n===void 0?void 0:n.bindCta)||((o=(l=s?.video)===null||l===void 0?void 0:l.bindProduct)===null||o===void 0?void 0:o.bindCta)||((a=s?.video)===null||a===void 0?void 0:a.bindCta),X=((d=(r=s?.video)===null||r===void 0?void 0:r.bindProducts)===null||d===void 0?void 0:d[0])||((u=s?.video)===null||u===void 0?void 0:u.bindProduct),Q=()=>{var oe,Te,Ie,Be;const _e=((Te=(oe=s?.video)===null||oe===void 0?void 0:oe.bindProducts)===null||Te===void 0?void 0:Te[0])||((Ie=s?.video)===null||Ie===void 0?void 0:Ie.bindProduct)||s?.video;if(ne?.({eventSubject:"clickCta",eventDescription:"User clicked the CTA"},s,_e,T),q?.(Object.assign(Object.assign({},s),{index:T})),F){const He=X?.link||((Be=_e?.bindCta)===null||Be===void 0?void 0:Be.link);He&&(K(s,X,me,T),window.location.href=window.getJointUtmLink(He))}else H?.()},le=me?.enTitle||"\u67E5\u770B\u8BE6\u60C5",ie=ue(()=>{const oe=_?.animation;if(oe){const{delay:Te,duration:Ie}=oe;return{animationDelay:`${Te?Te/1e3:0}s`,animationDuration:`${Ie?Ie/1e3:0}s`}}},[_?.animation]),de=(w=(h=(m=(c=X?.cover)!==null&&c!==void 0?c:(f=X?.homePage)===null||f===void 0?void 0:f[0])!==null&&m!==void 0?m:me?.icon)!==null&&h!==void 0?h:Z?.bottom_image)!==null&&w!==void 0?w:D,re=oe=>{oe.stopPropagation(),pe(!1)};be(()=>{pe(!0)},[B]);const ae=ue(()=>B&&V?Rt["animated-fadeIn"]:null,[B,V]);return p.createElement(p.Fragment,null,j?p.createElement("div",{style:{height:"40px",lineHeight:"40px",paddingLeft:"6px"}},"Cta Title"):p.createElement("div",Object.assign({},R,{className:`${Ee(Object.assign(Object.assign({},S),{"--transY":`translateY(calc(100% + ${(y=S?.margin)!==null&&y!==void 0?y:0}px))`}))} ${Rt.aniLinkPopup} ${ae} ${Ee(ie)}`,onClick:Q}),p.createElement("div",{onClick:re,className:Rt["modal-icon-wrapper"],style:{padding:(P=S?.padding)!==null&&P!==void 0?P:0}},p.createElement("img",{src:(v=G?.popupCloseIcon)!==null&&v!==void 0?v:Ka,alt:"close",className:Rt["modal-icon-wrapper-img"]})),p.createElement(St,{src:de,rec:s,item:(g=(A=(b=(x=s?.video)===null||x===void 0?void 0:x.bindProducts)===null||b===void 0?void 0:b[0])!==null&&A!==void 0?A:(C=s?.video)===null||C===void 0?void 0:C.bindProduct)!==null&&g!==void 0?g:s?.video,index:T,translateY:O,imgStyle:E?.img}),(!s||X?.title)&&p.createElement("div",{className:Rt["one-line-ellipsis"],style:E?.title,dangerouslySetInnerHTML:{__html:xe((M=X?.title)!==null&&M!==void 0?M:"Product Name",E?.title)}}),p.createElement("div",{className:Rt["one-line-ellipsis"],style:Object.assign(Object.assign({},E?.ctaTitle),{lineHeight:((k=E?.ctaTitle)===null||k===void 0?void 0:k.height)+"px"}),dangerouslySetInnerHTML:{__html:xe(le,E?.ctaTitle)}})))};var Qa=Ce(Za),$a=[{title:"\u70B9\u51FB\u4E8B\u4EF6",child:[{type:"link",name:"onClick"}]},{title:"\u52A8\u753B\u6548\u679C",child:[{type:"Select",name:["animation","name"],label:"\u52A8\u753B",options:[{label:"\u9ED8\u8BA4",value:1}],fieldProps:{style:{width:"100%"}}},{type:"Number",label:"\u52A8\u753B\u542F\u52A8\u65F6\u95F4",name:["animation","delay"],addonAfter:"ms"},{type:"Number",label:"\u52A8\u753B\u6301\u7EED\u65F6\u95F4",name:["animation","duration"],addonAfter:"ms"}]}];const er=tt(Qa,{displayName:"\u7AD6\u7248\u5F39\u7A97CTA",icon:"",category:"cta",type:"AniLinkPopup",related:{settingRender:qa,bindableProps:[],interactionRender:$a},defaulSetting:{props:{ctaTempStyles:{img:{borderRadius:3,width:108,height:108,marginBottom:0},title:{fontSize:14,color:"#000",textAlign:"left",lineHeight:2.6},ctaTitle:{width:108,height:22,fontSize:12,color:"#fff",textAlign:"center",backgroundColor:"rgba(0,0,0,1)"}},event:{animation:{name:1,delay:1e3,duration:2e3}}},style:{width:120,height:185,borderRadius:3,backgroundColor:"rgba(255,255,255,1)",padding:7,margin:15}},w:100,h:40,sort:2});var Ri=Object.freeze({__proto__:null,AniLink:Ja,AniLinkPopup:er,Appoint:Yd,AppointForm:Co,Commodity:Hd,CommodityDetail:fd,CommodityDetailDiroNew:Id,CommodityDiro:ia,CommodityDiroNew:aa,CommodityList:Od,Consent:Ua,HashTag:Va,Iframe:Bd,Link:Zd,MultiCommodity:ga,MultiCommodityDiro:va,MultiCommodityDiroNew:xa,Prompt:Sd});const tr="/pb_static/f71266d2c64446c5ae6a5a7f5489cc0a.png",ir="/pb_static/f07900fe3f0f4ae188ea1611d4801a44.png",nr=t=>{var e,{active:i,activeIcon:n,unActicveIcon:l,recData:o,position:a}=t,r=Ze(t,["active","activeIcon","unActicveIcon","recData","position"]);const{mutateLike:d,mutateUnlike:u,bffEventReport:c,setCacheRtcList:f,cacheRtcList:m}=Oe(),[h,w]=$((e=m?.[a])===null||e===void 0?void 0:e.isCollected),y=ct(ir),P=ct(tr),v=mi(()=>it(void 0,void 0,void 0,function*(){var x,b,A,C,g,M,k,S,s,E,T,_,D,O,j,H,F,B,R,Z,G,ne;if(h){w(!1);const q=(A=yield u?.({videoItemId:(b=(x=o?.video)===null||x===void 0?void 0:x.itemId)!==null&&b!==void 0?b:""}))!==null&&A!==void 0?A:!1;if(c?.({eventInfo:{eventSubject:"favoriteContentCanceled",eventDescription:"This content was unfavorite by the user",contentId:(g=(C=o?.video)===null||C===void 0?void 0:C.itemId)!==null&&g!==void 0?g:"",contentName:(k=(M=o?.video)===null||M===void 0?void 0:M.title)!==null&&k!==void 0?k:"",contentTags:JSON.stringify((s=(S=o?.video)===null||S===void 0?void 0:S.tags)!==null&&s!==void 0?s:[]),position:a+"",contentFormat:!((E=o?.video)===null||E===void 0)&&E.url?"video":"image",traceInfo:(T=o?.video)===null||T===void 0?void 0:T.traceInfo}}),!q)w(!0);else{const K=(_=m?.map((V,pe)=>(pe===a&&(V.isCollected=!1),V)))!==null&&_!==void 0?_:[];f?.(K)}}else{w(!0);const q=(D=yield d?.({content:JSON.stringify(o)}))!==null&&D!==void 0?D:!1;if(c?.({eventInfo:{eventSubject:"favoriteContent",eventDescription:"This content was favorite by the user",contentId:(j=(O=o?.video)===null||O===void 0?void 0:O.itemId)!==null&&j!==void 0?j:"",contentName:(F=(H=o?.video)===null||H===void 0?void 0:H.title)!==null&&F!==void 0?F:"",contentTags:JSON.stringify((R=(B=o?.video)===null||B===void 0?void 0:B.tags)!==null&&R!==void 0?R:[]),position:a+"",contentFormat:!((Z=o?.video)===null||Z===void 0)&&Z.url?"video":"image",traceInfo:(G=o?.video)===null||G===void 0?void 0:G.traceInfo}}),!q)w(!1);else{const K=(ne=m?.map((V,pe)=>(pe===a&&(V.isCollected=!0),V)))!==null&&ne!==void 0?ne:[];f?.(K)}}}),200);return p.createElement("button",Object.assign({},r,{"aria-label":"like",onClick:v}),p.createElement("img",{style:{width:"100%",height:"100%",objectFit:"contain"},src:h?n||y:l||P,alt:"icon"}))};var Nn=Ce(nr),or="data:image/gif;base64,R0lGODlhlgCWAPf/AAAAAICAgMzMzMzMzNXV1dXV1dXV1dfX19jOztjY2NvOztvb29zc3N/Pz9/V1d/f3+Pj4+bm5ubm5ujR0ejg4Ojo6Onp6erj4+rj4+rl5evr6+vr6+3k5O3t7e3t7e7u7u7u7u/v7/Dw8PDw8PHx8fHx8fHx8fLs7PLu7vLu7vLy8vPu7vPz8/Tp6fTx8fTx8fT09PT09PT09PXw8Pbx8fbz8/b29vb29vb29vb29vb29vf09Pf39/f39/f39/f39/f39/f39/f39/f39/f39/j09Pj09Pj19fj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pn29vn39/n5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fn5+fr09Pr4+Pr6+vr6+vr6+vr6+vr6+vr6+vr6+vr6+vr6+vr6+vr6+vv39/v39/v4+Pv5+fv5+fv6+vv7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/z4+Pz5+fz5+fz5+fz6+vz6+vz6+vz6+vz8/Pz8/Pz8/Pz8/Pz8/Pz8/Pz8/Pz8/Pz8/Pz8/Pz8/Pz8/Pz8/Pz8/Pz8/Pz8/Pz8/P36+v36+v36+v37+/37+/37+/37+/38/P38/P38/P38/P39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f78/P78/P78/P78/P7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v/V1f/39//4+P/6+v/7+//8/P/8/P/9/f/9/f/9/f/9/f/+/v/+/v/+/v/+/v///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////wD/ACH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAwBLACxFABcADwAMAIYAAACAgIDMzMzV1dXX19fYzs7Y2Njbzs7b29vc3Nzfz8/f1dXf39/j4+Pm5ubo0dHo4ODo6Ojp6enq4+Pq5eXr6+vt5OTt7e3u7u7v7+/w8PDx8fHy7Ozy7u7y8vLz7u7z8/P06en08fH09PT18PD28fH28/P29vb39PT39/f49PT49fX4+Pj59vb59/f5+fn69PT6+Pj6+vr79/f7+Pj7+fn7+vr7+/v8+Pj8+fn8+vr8/Pz9+vr9+/v9/Pz9/f3+/Pz+/v7/1dX/9/f/+Pj/+vr/+/v//Pz//f3//v7///8A/wD///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8IUgCXCNzxI8gOJQV3CFy4RIkMJTccQnQYZCGShAgNZiS45MfDiB8lglzSQyPGk0FCqpwY8iBKlyZFyly5xKRNmAJrzGQJcWFJmDB1MBQ4MwnDgAAAIfkECQQA/wAsRwAXAA8ADAAACFMA/wkslAhcqWKJsLkRyPAfODfgujyM+LAYQ4QGMR4sWGrhRIkQQVJcyFGjyYJrRqoU2aXYxowlS7L8SBNiIZg4XwqcGfIjw5g5G/6zUROcDYYBAQAh+QQJAwD/ACxIABcAEAAMAAAIWwD/CfzXqVSxRNgSlRrIEAm4LuDcPIz4sBNDcAYTYTy4MVEigRMlQhRJsYvAjB1TGuxio6RLkhJDaURJk+PCkDhHTvxXc6bNgzxh5ow40E3Pjm4Y/lszNKnAgAAAIfkECQMA/wAsSgAXABEADQAACGUA/wn856YLtkSlBioceAScG3BdHEJ0uLBLsUTgSl3MuLFUooESIz4UOfHhvzYYNabs2PFflJIwSUZcU0olx5U4SyEJyXNkyH84bwotFepfzJ4TB7IMqrGLwlIyeUZZuNAjR4UBAQAh+QQJBAD/ACxMABcAEgAOAAAIaAD/CRTYpdTAgwgFgusCzs1CcGvAJfwXBVypYoksYtSYqNjBhw4Zhmy4kJvAUhczpuTIEds/kSBjwiy4caXNmhhH6pRJEiVOlT8t/iM5kyhRk0NvAgX6cWfRKBNLLdXYZiLCiEhCHQwIACH5BAkDAP8ALE4AGAATAA4AAAhkAP8JBOcGXBeCxQQqXCiwWCJwpRxClMhwYMGDFwka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";const Bi=(()=>{if(typeof document>"u")return;const t=document.createElement("div"),e=Zn.render(p.createElement("video",{id:"player-container-id",playsInline:!0,crossOrigin:"anonymous",preload:"auto",controls:!1,muted:!0,style:{backgroundColor:"transparent",width:"100%",height:"100%",objectFit:"cover",pointerEvents:"none"}}),t);return i=>i?(i.innerHTML="",i.appendChild(e),document.querySelector("#player-container-id")):void 0})(),lr=({rec:t,index:e,height:i,data:n,muted:l,activeIndex:o,videoPostConfig:a,videoPlayIcon:r})=>{const[d,u]=$(!1),{bffEventReport:c,sxpParameter:f,waterFallData:m,openHashtag:h,bffFbReport:w}=Oe(),y=ge(0),[P,v]=$(!1),[x,b]=$(!0),{isActive:A}=kn(),C=ge(null),[g,M]=$(""),[k,S]=$(!1),s=ge(),E=`pb-cache-video-${e}`,T=ge(null),_=ue(()=>a?.mode==="2",[a]),D=ue(()=>{var Q;return a?.mode==="2"?`translateY(-${50+((Q=a?.offsetTop)!==null&&Q!==void 0?Q:0)}%) translate3d(0px, 0px, 0px)`:"translateY(-50%)"},[a]),O=ue(()=>{var Q;return((Q=t?.video)===null||Q===void 0?void 0:Q.cover)||g},[g,t]),j=ue(()=>_?{filter:"blur(10px)",transform:"translate3d(0px, 0px, 0px) scale(1.2)"}:{},[_]),H=ue(()=>a?.bgWay==="1",[a]),F=ue(()=>H&&a?.bgColor?{backgroundColor:a?.bgColor}:{},[a,H]);be(()=>{s?.current&&(s.current.muted=l)},[l,s?.current]);const B=we(()=>{var Q;s?.current&&((Q=s?.current)===null||Q===void 0||Q.play())},[s?.current]),R=ct("/pb_static/06f28a2025c74c1cb49be6767316d827.png"),Z=we(()=>{s?.current&&(S(!1),v(!0))},[]),G=we(()=>{var Q,le,ie,de,re,ae,oe,Te,Ie,Be,_e,He,Ve;if(!s?.current)return;u(!1);const U=n[e];if(U&&(!((Q=s?.current)===null||Q===void 0)&&Q.duration)){y.current=((le=s?.current)===null||le===void 0?void 0:le.currentTime)||0;const ye=((de=(ie=s?.current)===null||ie===void 0?void 0:ie.duration)!==null&&de!==void 0?de:0).toFixed(2),Pe=((ae=(re=s?.current)===null||re===void 0?void 0:re.currentTime)!==null&&ae!==void 0?ae:0).toFixed(2),fe=x?"0":"1";c?.({eventInfo:{eventSubject:"playVideo",eventDescription:"User played the video",contentId:(Te=(oe=U?.video)===null||oe===void 0?void 0:oe.itemId)!==null&&Te!==void 0?Te:"",contentName:(Be=(Ie=U?.video)===null||Ie===void 0?void 0:Ie.title)!==null&&Be!==void 0?Be:"",playType:fe,startTime:Pe,videoDuration:ye,contentTags:JSON.stringify((He=(_e=U?.video)===null||_e===void 0?void 0:_e.tags)!==null&&He!==void 0?He:[]),position:e+"",contentFormat:"video",traceInfo:(Ve=U?.video)===null||Ve===void 0?void 0:Ve.traceInfo}}),b(!1)}},[c,n,e,x,s?.current]),ne=we(()=>{var Q;if(!s?.current||g||!_||(s.current.style.objectFit="contain",!((Q=t?.video)===null||Q===void 0)&&Q.cover||!C||!C.current||H))return;const le=()=>{const ie=C?.current,de=ie.getContext("2d"),re=window?.innerWidth,ae=window?.innerHeight;ie.height=ae,ie.width=re,de?.drawImage(s.current,0,0,ie.width,ie.height),M(ie.toDataURL())};le(),setTimeout(()=>{le()},500)},[s.current,H,t,g,_]),q=we(()=>{s.current&&(G(),ne())},[s.current,ne,G]),K=we(Q=>()=>{var le,ie,de,re,ae;if(!s.current||!P)return;const oe=(le=s?.current)===null||le===void 0?void 0:le.paused;switch(Q){case"start":if(!oe)return;(ie=s?.current)===null||ie===void 0||ie.play(),u(!1);break;case"pause":if(oe)return;(de=s?.current)===null||de===void 0||de.pause(),u(!0);break;default:oe?(re=s?.current)===null||re===void 0||re.play():(ae=s?.current)===null||ae===void 0||ae.pause(),u(!oe);break}},[P,s?.current]),V=we(()=>{var Q,le,ie,de,re,ae,oe,Te,Ie,Be,_e,He,Ve;if(!s?.current||o!==e)return;const U=n[e],ye=((le=(Q=s?.current)===null||Q===void 0?void 0:Q.duration)!==null&&le!==void 0?le:0).toFixed(2),Pe=((de=(ie=s?.current)===null||ie===void 0?void 0:ie.currentTime)!==null&&de!==void 0?de:0).toFixed(2);if(!((re=s?.current)===null||re===void 0)&&re.duration){const fe=(((ae=s?.current)===null||ae===void 0?void 0:ae.currentTime)-y.current).toFixed(2);c?.({eventInfo:{eventSubject:"playOverVideo",eventDescription:"User finished playing the video",contentId:(Te=(oe=U?.video)===null||oe===void 0?void 0:oe.itemId)!==null&&Te!==void 0?Te:"",contentName:(Be=(Ie=U?.video)===null||Ie===void 0?void 0:Ie.title)!==null&&Be!==void 0?Be:"",endTime:Pe,videoDuration:ye,playDuration:fe,contentTags:JSON.stringify((He=(_e=U?.video)===null||_e===void 0?void 0:_e.tags)!==null&&He!==void 0?He:[]),position:e+"",contentFormat:"video",traceInfo:(Ve=U?.video)===null||Ve===void 0?void 0:Ve.traceInfo}})}},[n,e,c,s?.current,o]),pe=we(()=>{S(!0)},[]);be(()=>{var Q,le,ie,de,re,ae,oe,Te,Ie,Be;if(!A)return;const _e=t?.video.url;if(!_e)return;const He=document.querySelector(`#${E}`);if(!He||(s.current=Bi?.(He),!s?.current))return;const Ve=window?.Hls;let U=null;return _e.includes(".m3u8")&&Ve&&Ve.isSupported()?(U=new Ve,U.loadSource(_e),U.attachMedia(s?.current),U.on(Ve.Events.MANIFEST_PARSED,function(){var ye;(ye=s?.current)===null||ye===void 0||ye.play()})):s.current.src=_e,(Q=s?.current)===null||Q===void 0||Q.setAttribute("x5-playsinline","true"),(le=s?.current)===null||le===void 0||le.setAttribute("webkit-playsinline","true"),(ie=s?.current)===null||ie===void 0||ie.addEventListener("loadedmetadata",q),(de=s?.current)===null||de===void 0||de.addEventListener("loadeddata",ne),(re=s?.current)===null||re===void 0||re.addEventListener("play",G),(ae=s?.current)===null||ae===void 0||ae.addEventListener("playing",Z),(oe=s?.current)===null||oe===void 0||oe.addEventListener("pause",V),(Te=s?.current)===null||Te===void 0||Te.addEventListener("ended",B),(Ie=s?.current)===null||Ie===void 0||Ie.addEventListener("canplay",B),(Be=s?.current)===null||Be===void 0||Be.addEventListener("waiting",pe),()=>{var ye,Pe,fe,Ne,je,Ae,z,L,Fe;((ye=s?.current)===null||ye===void 0?void 0:ye.paused)||V(),U&&U?.destroy(),v(!1),(Pe=s?.current)===null||Pe===void 0||Pe.removeEventListener("loadedmetadata",q),(fe=s?.current)===null||fe===void 0||fe.removeEventListener("loadeddata",ne),(Ne=s?.current)===null||Ne===void 0||Ne.removeEventListener("play",G),(je=s?.current)===null||je===void 0||je.removeEventListener("playing",Z),(Ae=s?.current)===null||Ae===void 0||Ae.removeEventListener("pause",V),(z=s?.current)===null||z===void 0||z.removeEventListener("ended",B),(L=s?.current)===null||L===void 0||L.removeEventListener("canplay",B),(Fe=s?.current)===null||Fe===void 0||Fe.removeEventListener("waiting",pe)}},[A,E,t,V]),be(()=>{var Q,le;!s?.current||!P||(A?(w?.({eventName:"ViewContent"}),(Q=s?.current)===null||Q===void 0||Q.play()):(le=s?.current)===null||le===void 0||le.pause())},[A,P,s?.current]),be(()=>{var Q,le,ie;if(!A||!s?.current)return;!((Q=s?.current)===null||Q===void 0?void 0:Q.paused)&&h?(le=s?.current)===null||le===void 0||le.pause():h||(ie=s?.current)===null||ie===void 0||ie.play()},[h,A,s?.current]),be(()=>{if(!A)return;const Q=()=>{K("start")(),w?.({eventName:"ViewContent"})},le=K("pause");return ht.on(at.PAGE_DID_SHOW,Q),ht.on(at.PAGE_DID_HIDE,le),()=>{ht.off(at.PAGE_DID_SHOW,Q),ht.off(at.PAGE_DID_HIDE,le)}},[K,A]);const me=ue(()=>!f?.placeholder_image||P?null:p.createElement("img",{style:{position:"absolute",left:0,top:0,width:"100%",height:"100%",objectFit:"cover"},src:f?.placeholder_image,alt:"placeholder image"}),[P,f?.placeholder_image]),X=ue(()=>{if(!(!k||!P))return p.createElement("img",{style:{position:"absolute",top:"50%",left:0,right:0,transform:"translateY(-100%)",margin:"auto",width:"50px",height:"50px",objectFit:"contain"},src:or,alt:"placeholder image"})},[k,P]);return be(()=>{if(!s?.current)return;const Q=()=>{var le;o===e&&(!((le=t?.video)===null||le===void 0)&&le.url)&&s?.current&&!d&&K("pause")()};return window.addEventListener("beforeunload",Q),()=>{window.removeEventListener("beforeunload",Q)}},[o,e,t,s?.current,K,d]),t?.video?p.createElement(p.Fragment,null,_?p.createElement("div",{className:"video-container",key:t?.video.itemId,onClick:K(),style:Object.assign({position:"relative",width:"100%",height:i,overflow:"hidden"},F)},!H&&P&&O&&p.createElement(lt,{src:O,style:Object.assign({height:"100%",width:"100%",objectFit:"cover"},j)}),p.createElement("canvas",{ref:C,style:{display:"none"}}),p.createElement("div",{style:{position:"absolute",width:"100%",height:"100%",top:"50%",transform:D,left:0,right:0}},p.createElement("div",{style:{position:"relative",width:"100%",height:"100%"}},p.createElement("div",{className:"n-full-screen",ref:T,id:E,style:{width:"100%",height:"100%"}}),d&&p.createElement(lt,{className:"clc-pb-video-pause",src:r??R,alt:"pause"}))),me,X):p.createElement("div",{className:"video-container",key:t?.video.itemId,style:{position:"relative",width:"100%",height:i,overflow:"hidden"},onClick:K()},p.createElement("div",{className:"n-full-screen",ref:T,id:E,style:{width:"100%",height:"100%"}}),me,X,d&&p.createElement(lt,{className:"clc-pb-video-pause",src:r??R,alt:"pause"}))):null};var dr=Ce(lr);const ar=({defaultValue:t,activeIcon:e,unactiveIcon:i,onChange:n,style:l})=>{const[o,a]=$(t),r=d=>{d.stopPropagation();const u=!o;a(u),n?.(u)};return be(()=>{a(t)},[t]),p.createElement("button",{style:l,"aria-label":"toggle button",className:"pb-toggle-button",onClick:r},p.createElement("img",{className:"pb-toggle-button-icon",alt:"toggle image",src:o?e:i}))};var jn=Ce(ar);const rr=({imageUrl:t,style:e,duration:i=2e3})=>{const[n,l]=$(!0);ft(),be(()=>{setTimeout(()=>{l(!1)},i)},[]);const o=ct("/pb_static/finger-swipe-tip.29dc3a48a3c746c906ea..png"),a=ue(()=>n?"pb-fadeIn":"pb-fadeOut",[n]);return p.createElement("div",{hidden:!n,className:`pb-finger-wrap ${a}`,style:Object.assign(Object.assign({},e),{animationDuration:`${i/1e3}s`})},p.createElement("img",{src:t||o,alt:"finger swiper"}))},Vn=t=>{const{src:e,height:i,imgUrlsPostConfig:n,onShowFirstImage:l}=t,o=ue(()=>n?.mode==="2",[n]),a=ue(()=>{var c;return n?.mode==="2"?`translateY(-${50+((c=n?.offsetTop)!==null&&c!==void 0?c:0)}%) translate3d(0px, 0px, 0px)`:"translateY(-50%)"},[n]),r=ue(()=>o?{filter:"blur(10px)",transform:"translate3d(0px, 0px, 0px) scale(1.2)"}:{},[o]),d=ue(()=>n?.bgWay==="1",[n]),u=ue(()=>d&&n?.bgColor?{backgroundColor:n?.bgColor}:{},[n,d]);return p.createElement("div",{style:Object.assign({overflow:"hidden",height:i,width:"100%",position:"relative"},u)},(!o||!d)&&p.createElement(lt,{src:e,style:Object.assign({height:"100%",width:"100%",objectFit:"cover"},r),onLoad:l}),o&&p.createElement(lt,{src:e,style:{width:"100%",height:"100%",objectFit:"contain",position:"absolute",top:"50%",transform:a,left:0,right:0},onLoad:l}))},sr=({imgUrls:t,width:e,height:i,rec:n,index:l,onReportViewImageEnd:o,onViewImageStartEvent:a,imgUrlsPostConfig:r})=>{var d,u;const c=ge(),{isActive:f}=kn(),{sxpParameter:m,openHashtag:h}=Oe(),[w,y]=$(!1);be(()=>{w&&f?(c?.current&&c.current.swiper.autoplay.start(),h?o(n):a(l)):c?.current&&c.current.swiper.autoplay.stop()},[n,f,o,h,l,a,w]);const P=we(()=>{w||y(!0)},[w]);return p.createElement(Pt,{ref:c,defaultValue:0,direction:"horizontal",modules:[ei,ti],pagination:{clickable:!0,bulletActiveClass:"swipe-item-active-bullet"},className:Ee(Object.assign({},r?.marginBottom&&{".swiper-pagination":{bottom:(d=r?.marginBottom)!==null&&d!==void 0?d:0}})),height:i,loop:!0,autoplay:{delay:((u=r?.delay)!==null&&u!==void 0?u:3)*1e3}},t?.map((v,x)=>p.createElement(bt,{key:x},p.createElement(Vn,{src:!w&&x>0?"":v,height:i,imgUrlsPostConfig:r,onShowFirstImage:P}))))};var cr=Ce(sr);const ur=({tags:t,itemId:e,itemType:i,index:n,rec:l,hashTagStyle:o})=>{var a;const[r,d]=$(!1),{setWaterFallData:u,setOpenHashtag:c,setCacheActiveIndex:f,waterFallData:m,setIsFromHashtag:h}=Oe(),w=y=>{m?h?.(!0):f?.(n),u?.(i?{hashTag:y,itemId:e,itemType:i,rec:l}:{hashTag:y,rec:l}),c?.(!0)};return ue(()=>t.length<=6?null:p.createElement("span",{style:{textDecoration:"underline",cursor:"pointer",color:"#fff"},onClick:()=>d(!r)},r?"show less":"show more"),[r,t]),p.createElement("div",{className:"clc-sxp-bottom-hashtag",style:{marginTop:`${(a=o?.marginTop)!==null&&a!==void 0?a:16}px`}},p.createElement(Ht,null,t?.map((y,P)=>p.createElement(bt,{key:P,hidden:r?!1:P>=6,className:"clc-sxp-bottom-hashtag-item",style:o,onClick:()=>w(y)},p.createElement("div",{dangerouslySetInnerHTML:{__html:xe(`#${y}`,o)}})))))};var zn=Ce(ur),vr="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAbtJREFUeF7t2DFKxFAQxvHv6xTxCoKNiAuCna2X2NY7eAE9hYdwj2BjZ2ulYLW9pQcYDWyxBIK7ZN7MNyapk/D+v8zC20dM/OLE+zEDzBMwcYH5J1BpAMzsAMAJyU+vdZeZADN7AHAH4BjAC8kbD4QSAJv4+17wFcm3sQjyAGbWhXdff/takzwdG989Lw0wEN+te0ly9a8BIuJlJyAqXhIgMl4OIDpeCiAjXgYgK14CIDM+HSA7PhVgYHvrusnZZaOUshNUiU+ZAKX4cAC1+FAAxfgwANX4EADl+OYA6vFNASrENwOoEt8EoFK8O0C1eFcAMzsE8AXgqLcHdzvA3GVvv+89bv8FzOwcwEdvASuSy30XFXm/G0C3aDN7BXBdCcEb4ALAE4BFFQRXgM0UlEJwB6iG0ASgEkIzgCoITQEqIDQHUEcIAVBGCANQRQgFUEQIB1BDSAFQQkgDUEFIBVBASAfIRpAAyESQAchCkALIQJADiEaQBIhEkAWIQpAG+ANh8Xvk/j72CF0eYABhDeCS5PckALYQbgGcAXgm+Tg2vnu+xAR4hA69YwZoqVvh3fMEVPhKLdc4+Qn4AXwYBFBN2dYpAAAAAElFTkSuQmCC";function li(t){return Ce(function(e){const{$store:i}=so(),n=o=>{let a=o;const r=o.match(/{{.*?}}/g);return r?.length&&r.forEach(d=>{d.replace(/{{\s*([\w.]+)\s*}}/g,(u,c)=>{if(c){const f=zi(i,c);return a=a.replace(d,f),f}})}),a},l=ue(()=>{var o,a,r;const{bindDatas:d}=e,u=Ze(e,["bindDatas"]);if((o=d?.forEach)===null||o===void 0||o.call(d,c=>{if(c?.propKey&&c?.dataPath){const{propKey:f,dataPath:m}=c;m.replace(/{{\s*([\w.]+)\s*}}/g,(h,w)=>{var y,P;if(w){const v=(P=(y=zi(i,w))!==null&&y!==void 0?y:e[f])!==null&&P!==void 0?P:"";return u[f]=v,v}})}}),u){u.eventMap={};const c=Wt(u.event)||{};for(const f in c)if(Object.prototype.hasOwnProperty.call(c,f))try{c[f].value=n(c[f].value),u.eventMap[f]=new Function(c[f].value)}catch{}}return!((r=(a=u?.event)===null||a===void 0?void 0:a.onClick)===null||r===void 0)&&r.linkType&&(u.style.cursor="pointer"),u},[i,e]);return p.createElement(t,Object.assign({},l,l.eventMap))})}const pr=({rec:t,index:e,tempMap:i,resolver:n,includesCtaType:l,isActive:o})=>{var a,r,d,u,c;const{schema:f}=ft();if(!t?.video)return null;let m=null;!((r=(a=t?.video)===null||a===void 0?void 0:a.bindProducts)===null||r===void 0)&&r.length?m="\u591A\u5546\u54C1CTA":!((d=t?.video)===null||d===void 0)&&d.bindProduct?m="\u5546\u54C1CTA":m=(c=(u=t?.video)===null||u===void 0?void 0:u.bindCta)===null||c===void 0?void 0:c.itemId;const h=i?.[m],w=ue(()=>{var y,P,v,x,b,A,C,g,M,k,S,s,E,T,_,D,O,j,H,F,B,R,Z,G,ne,q,K,V,pe,me,X,Q,le;if(!t?.video)return null;if(!((P=(y=t?.video)===null||y===void 0?void 0:y.bindProducts)===null||P===void 0)&&P.length||!((v=t?.video)===null||v===void 0)&&v.bindProduct||(b=(x=t?.video)===null||x===void 0?void 0:x.bindCta)===null||b===void 0||b.itemId,!(l&&!l?.includes((A=h?.item)===null||A===void 0?void 0:A.type))&&!(!l&&((C=h?.item)===null||C===void 0?void 0:C.category)==="cta")){if(((g=h?.item)===null||g===void 0?void 0:g.type)==="CommodityDiro"&&!(!((M=t?.video)===null||M===void 0)&&M.bindProduct)||((k=h?.item)===null||k===void 0?void 0:k.type)==="Commodity"&&!(!((S=t?.video)===null||S===void 0)&&S.bindProduct)||((s=h?.item)===null||s===void 0?void 0:s.type)==="CommodityDiroNew"&&!(!((E=t?.video)===null||E===void 0)&&E.bindProduct)||((T=h?.item)===null||T===void 0?void 0:T.type)==="MultiCommodity"&&!(!((D=(_=t?.video)===null||_===void 0?void 0:_.bindProducts)===null||D===void 0)&&D.length)||((O=h?.item)===null||O===void 0?void 0:O.type)==="MultiCommodityDiro"&&!(!((H=(j=t?.video)===null||j===void 0?void 0:j.bindProducts)===null||H===void 0)&&H.length)||((F=h?.item)===null||F===void 0?void 0:F.type)==="MultiCommodityDiroNew"&&!(!((R=(B=t?.video)===null||B===void 0?void 0:B.bindProducts)===null||R===void 0)&&R.length))return null;if(h&&n){const ie=n[(Z=h?.item)===null||Z===void 0?void 0:Z.type],de=li(ie),re=(G=ie?.extend)===null||G===void 0?void 0:G.defaulSetting,ae=((K=(q=(ne=h?.item)===null||ne===void 0?void 0:ne.event)===null||q===void 0?void 0:q.onClick)===null||K===void 0?void 0:K.linkType)==="externalLink";return p.createElement(de,Object.assign({style:Object.assign(Object.assign(Object.assign({},re?.style),(V=h?.item)===null||V===void 0?void 0:V.style),{zIndex:50,marginLeft:"20px",boxSizing:"border-box",transform:"translate3d(0px, 0px, 0px)"}),textStyle:Object.assign(Object.assign({},re?.textStyle),(pe=h?.item)===null||pe===void 0?void 0:pe.textStyle),bindDatas:(X=(me=h?.item)===null||me===void 0?void 0:me.bindDatas)!==null&&X!==void 0?X:[]},re?.props,(Q=h?.item)===null||Q===void 0?void 0:Q.props,{event:((le=h?.item)===null||le===void 0?void 0:le.event)||{},schema:f,id:h?.id,key:h?.id,recData:t,isExternalLink:ae,index:e,isActive:o}))}else return null}},[t,n,i,f,h?.id,o]);return p.createElement(p.Fragment,null,w)};var di=Ce(pr);const Hn=({nudge:t})=>{var e,i,n,l,o,a;return p.createElement(p.Fragment,null,t?.isOpen&&p.createElement("div",{className:"clc-sxp-bottom-nudge",style:{marginBottom:(e=t?.marginBottom)!==null&&e!==void 0?e:5,width:(n=(i=t?.size)===null||i===void 0?void 0:i.width)!==null&&n!==void 0?n:212,height:(o=(l=t?.size)===null||l===void 0?void 0:l.height)!==null&&o!==void 0?o:38,backgroundColor:t?.backgroundColor,borderRadius:(a=t?.borderRadius)!==null&&a!==void 0?a:4}},t?.icon?p.createElement("img",{src:t.icon,alt:"nudge icon",style:{height:"100%",objectFit:"cover",flexShrink:0}}):null,p.createElement("p",{style:Object.assign(Object.assign({},t?.textStyle),{textWrap:"nowrap",textOverflow:"ellipsis",overflow:"hidden",whiteSpace:"nowrap",flex:1,marginBottom:0,marginTop:0}),dangerouslySetInnerHTML:{__html:xe(t?.content,t?.textStyle)}})))},mr=({tagList:t=[],setActiveIndex:e,style:i})=>{const{getRecommendVideos:n,setRtcList:l,setCacheRtcList:o,setCacheActiveIndex:a,setLoading:r,swiperRef:d,waterFallData:u,bffEventReport:c,selectTag:f,setSelectTag:m}=Oe(),{backMainFeed:h}=et(),w=ue(()=>[Jt,...t],[t]),y=P=>()=>{if(P===f)return;P!=="FOR U"?c?.({eventInfo:{eventSubject:"clickThemeTagsViewContents",eventDescription:"click Theme Tags View Contents",themeTags:`['${P}']`}}):h("theme",P,f);let v;P!==Jt&&(v=P),r?.(!0),n?.({themeTag:v}).then(x=>{var b,A,C,g;ht.emit(at.CHANGE_THEME_TAG,v),l?.((b=x?.recList)!==null&&b!==void 0?b:[]),o?.((A=x?.recList)!==null&&A!==void 0?A:[]),e?.(0),a?.(0),(g=(C=d?.current)===null||C===void 0?void 0:C.swiper)===null||g===void 0||g.slideTo(0)}).finally(()=>{r?.(!1)}),m?.(P)};return u||t.length<=0?null:p.createElement("div",{className:"clc-sxp-tagbar",style:i},p.createElement("ul",{className:"clc-sxp-tagbar-list",style:{margin:"auto",gap:24}},w.map(P=>p.createElement("li",{className:`clc-sxp-tagbar-list-item ${P===f?"clc-sxp-tagbar-list-item-active":""}`,key:P,onClick:y(P)},P))))};var Un=Ce(mr);const Gn=({globalConfig:t,descStyle:e,containerHeight:i=window.innerHeight,containerWidth:n=window.innerWidth,tempMap:l,resolver:o,data:a=[],ctaType:r,tipText:d,nudge:u,_schema:c,hashTagStyle:f,tagList:m=[],licenseUrl:h})=>{var w,y,P,v,x,b,A,C,g;const M=ct("/pb_static/5beaaa5ce7f3477b99db3838619cc471.png"),k=ct("/pb_static/fea8668a8a894e4aa3a86bcc775e895e.png"),{schema:S}=ft(),[s,E]=$(0),T=ge(0),[_,D]=$(!0),O=ge(),[j,H]=$(!1),[F,B]=$(!1),[R,Z]=$(new Date().getTime()),G=ge(!1),{loadVideos:ne,bffEventReport:q,loading:K,setPopupDetailData:V,ctaEvent:pe,swiperRef:me,waterFallData:X,setOpenHashtag:Q,appDomain:le,openHashtag:ie,loadingImage:de,isFromHashtag:re,popupDetailData:ae,bffFbReport:oe,curTime:Te,h5EnterLink:Ie,isShowConsent:Be,selectTag:_e,isPreview:He}=Oe(),{backMainFeed:Ve,productView:U,jumpToWeb:ye}=et(),Pe=ue(()=>a.length>0&&!K&&(vo()||t?.enableSwiperTip),[a,K,t?.enableSwiperTip]);be(()=>{qi()},[]),be(()=>{if(a?.length>0){const I=new Date;O.current=I,oe?.({eventName:"PageView"})}},[a?.length]);const fe=we(()=>{if(qi(),Ie?.(),a.length>0){const I=new Date;O.current=I,oe?.({eventName:"PageView"})}},[a.length,oe,Ie]);be(()=>{var I;const N=a?.findIndex(Y=>{var te,ve,he,ee,ce,ke,Me,Ye,Je;const qe=r?.[0];return qe==="\u591A\u5546\u54C1CTA"?((te=Y?.video)===null||te===void 0?void 0:te.bindProducts)&&((he=(ve=Y?.video)===null||ve===void 0?void 0:ve.bindProducts)===null||he===void 0?void 0:he.length)>0:qe==="\u5546\u54C1CTA"?(ee=Y?.video)===null||ee===void 0?void 0:ee.bindProduct:((ke=(ce=Y?.video)===null||ce===void 0?void 0:ce.bindCta)===null||ke===void 0?void 0:ke.itemId)===qe&&(((Me=Y?.video)===null||Me===void 0?void 0:Me.url)||((Je=(Ye=Y?.video)===null||Ye===void 0?void 0:Ye.imgUrls)===null||Je===void 0?void 0:Je.length))})||0;(I=me?.current)===null||I===void 0||I.swiper.slideTo(N)},[r,me]),be(()=>{const I=a?.[s],N=()=>{var Y,te,ve,he,ee,ce,ke,Me,Ye,Je,qe,Qe,$e,Le,Xe,dt,Ke,pt,mt,xt;const Tt=!ie&&!Be;if(document.visibilityState==="hidden"){Tt&&(ht.emit(at.PAGE_DID_HIDE,I),Se(I),Re(I));let ze="";ae&&(!((te=(Y=I?.video)===null||Y===void 0?void 0:Y.bindProducts)===null||te===void 0)&&te.length||!((ve=I?.video)===null||ve===void 0)&&ve.bindProduct)?ze="pdpPage":ae&&((ke=l?.[(ce=(ee=(he=I?.video)===null||he===void 0?void 0:he.bindCta)===null||ee===void 0?void 0:ee.itemId)!==null&&ce!==void 0?ce:""].item)===null||ke===void 0?void 0:ke.type)==="Appoint"?ze="formPage":re?ze="hashTagPage":!((Me=I?.video)===null||Me===void 0)&&Me.url?ze="videoPage":!((Ye=I?.video)===null||Ye===void 0)&&Ye.imgUrls&&(!((qe=(Je=I?.video)===null||Je===void 0?void 0:Je.imgUrls)===null||qe===void 0)&&qe.length)?ze="imagePage":I?.product&&(ze="productPage"),q?.({eventInfo:{sessionDuration:Math.floor((new Date-Te.current)/1e3)+"",eventSubject:"sessionCompleted",eventDescription:"Session completed",contentId:(Qe=I?.video)===null||Qe===void 0?void 0:Qe.itemId,productId:($e=I?.product)===null||$e===void 0?void 0:$e.itemId,position:s+"",fromKName:ze,fromKPage:location?.href,ctatId:(dt=(Xe=(Le=I?.video)===null||Le===void 0?void 0:Le.bindCta)===null||Xe===void 0?void 0:Xe.itemId)!==null&&dt!==void 0?dt:"",traceInfo:(xt=(pt=(Ke=I?.video)===null||Ke===void 0?void 0:Ke.traceInfo)!==null&&pt!==void 0?pt:(mt=I?.product)===null||mt===void 0?void 0:mt.traceInfo)!==null&&xt!==void 0?xt:""}})}else document.visibilityState==="visible"&&(G.current===!0&&(Z(new Date().getTime()),G.current=!1),fe(),Tt&&(Ue(s),ht.emit(at.PAGE_DID_SHOW,I),Ve("external",_e)))};return document.addEventListener("visibilitychange",N),()=>{document.removeEventListener("visibilitychange",N)}},[s,q,a,fe,ae,re,l,Te,Ve,ie,Be,_e]);const Ne=ue(()=>{let I=0;return m.length>0&&(I+=45,X&&(I-=45)),I},[m,X]),je=ue(()=>{let I=0;return t?.logoUrl&&t?.isShowLogo&&(I+=56),I},[]),Ae=ue(()=>i-je-Ne,[t,i,Ne]),z=ue(()=>{var I;const N=s===0&&!X?[(I=a?.[0])!==null&&I!==void 0?I:null]:a?.map((Y,te)=>s===te||te-1===s||te+1===s?Y:null);return X?N:N.concat([{loading:!0}])},[a,s,X]),L=ue(()=>{var I,N,Y,te;if(t?.logoUrl&&t?.isShowLogo){const ve=(N=(I=t?.logoBar)===null||I===void 0?void 0:I.onClick)===null||N===void 0?void 0:N.value,he=((te=(Y=t?.logoBar)===null||Y===void 0?void 0:Y.onClick)===null||te===void 0?void 0:te.linkType)==="externalLink",ee=z[s];return p.createElement("div",Object.assign({className:"clc-sxp-logo-banner",style:{backgroundColor:t?.color}},ve&&{onClick:()=>{var ce,ke,Me,Ye;he&&ye(ee,(ce=ee?.video)===null||ce===void 0?void 0:ce.bindProduct,(ke=ee?.video)===null||ke===void 0?void 0:ke.bindCta,s,((Me=ee?.product)===null||Me===void 0?void 0:Me.traceInfo)||((Ye=ee?.video)===null||Ye===void 0?void 0:Ye.traceInfo)),new Function(ve)()}}),p.createElement("img",{src:t?.logoUrl,alt:"logo"}))}return null},[t,s,z]),Fe=we((I,N)=>{var Y,te,ve,he;return!((Y=I?.video)===null||Y===void 0)&&Y.url?p.createElement(dr,{key:R,rec:I,index:N,muted:_,data:a,height:Ae,activeIndex:s,videoPostConfig:t?.videoPost,videoPlayIcon:t?.videoPlayIcon}):!((te=I?.video)===null||te===void 0)&&te.imgUrls?p.createElement(cr,{key:I?.video.itemId,imgUrls:I?.video.imgUrls,width:n,height:Ae,rec:I,index:N,onReportViewImageEnd:Se,onViewImageStartEvent:Ue,imgUrlsPostConfig:t?.imgUrlsPost}):I.product&&Array.isArray(t?.productPost)&&((ve=t?.productPost)===null||ve===void 0?void 0:ve.length)>0?(he=t?.productPost)===null||he===void 0?void 0:he.map((ee,ce)=>{var ke,Me,Ye,Je,qe,Qe,$e,Le;const Xe=o[(ke=ee?.item)===null||ke===void 0?void 0:ke.type],dt=li(Xe),Ke=(Me=Xe?.extend)===null||Me===void 0?void 0:Me.defaulSetting;return p.createElement(dt,Object.assign({key:`${N}${ce}`,textStyle:Object.assign(Object.assign({},Ke?.textStyle),(Ye=ee?.item)===null||Ye===void 0?void 0:Ye.textStyle),bindDatas:(qe=(Je=ee?.item)===null||Je===void 0?void 0:Je.bindDatas)!==null&&qe!==void 0?qe:[]},Ke?.props,(Qe=ee?.item)===null||Qe===void 0?void 0:Qe.props,{event:(($e=ee?.item)===null||$e===void 0?void 0:$e.event)||{},schema:S,id:ee?.id,viewTime:O.current,rec:I,isPost:!0,tipText:d,style:Object.assign(Object.assign(Object.assign({},Ke?.style),(Le=ee?.item)===null||Le===void 0?void 0:Le.style),{height:"100%",overflow:"auto"}),index:N}))}):null},[n,a,Ae,_,s,t?.productPost,t?.videoPlayIcon,O,d,o,S,R]),st=we(I=>{B(I)},[]),kt=ue(()=>F?{background:"linear-gradient( 180deg, rgba(129,129,129,0) 0%, rgba(121,121,121,0.5) 5%, #616161 100%)",paddingTop:20,paddingBottom:20}:{padding:"20px 0"},[F]),J=we((I,N)=>{var Y,te,ve,he,ee,ce,ke,Me;return I?.video?p.createElement(p.Fragment,null,((Y=I?.video)===null||Y===void 0?void 0:Y.title)&&!F&&p.createElement("div",{className:"clc-sxp-bottom-shadow"}),p.createElement("div",{className:"clc-sxp-bottom",style:{paddingBottom:`${(te=t?.bottomInfoDist)!==null&&te!==void 0?te:40}px`}},p.createElement(Hn,{nudge:u}),t?.isShowCTA===void 0||t?.isShowCTA?p.createElement("div",{className:"clc-sxp-bottom-card"},p.createElement(di,{rec:I,index:N,tempMap:l,resolver:o})):null,p.createElement("div",null,p.createElement(oi,{className:"clc-sxp-bottom-text",isPost:!0,foldText:d?.foldText,unfoldText:d?.unfoldText,text:(he=(ve=I?.video)===null||ve===void 0?void 0:ve.title)!==null&&he!==void 0?he:"",style:Object.assign(Object.assign({},e),{textShadow:t?.isOpenTextShadow?"2px 2px 4px rgba(0, 0, 0, 0.5)":"none"}),onChange:st}),p.createElement(di,{rec:I,index:N,tempMap:l,resolver:o,includesCtaType:["AniLink"]}),p.createElement(zn,{index:s,tags:(ce=(ee=I?.video)===null||ee===void 0?void 0:ee.hashTags)!==null&&ce!==void 0?ce:[],itemId:(ke=I?.video)===null||ke===void 0?void 0:ke.itemId,itemType:!((Me=I?.video)===null||Me===void 0)&&Me.itemId?"VIDEO":null,rec:I,hashTagStyle:f}))),p.createElement(di,{rec:I,index:N,tempMap:l,resolver:o,includesCtaType:["AniLinkPopup"],isActive:N===s})):null},[e,s,l,o,d,u,f,t,st,F,kt]),W=we((I,N,Y)=>{var te,ve,he,ee;if(!t?.isShowLike||!Y)return;let ce=(te=t?.likeIconY)!==null&&te!==void 0?te:400;return X&&ce<40&&(ce+=40),I?.video?p.createElement(Nn,{key:I.position,activeIcon:t?.likeIcon,unActicveIcon:t?.unlikeIcon,active:I.isCollected,recData:I,className:"clc-sxp-like-button",style:{position:t?.likeIconFixed?"fixed":"absolute",[(ve=t.likeIconXPosit)!==null&&ve!==void 0?ve:"right"]:(he=t.likeIconX)!==null&&he!==void 0?he:0,[(ee=t.likeIconYPosit)!==null&&ee!==void 0?ee:"bottom"]:ce},position:N}):null},[t,X]),Se=I=>{var N,Y,te,ve,he,ee;if(!(!((N=I?.video)===null||N===void 0)&&N.url)&&(!((Y=I?.video)===null||Y===void 0)&&Y.imgUrls)){const ce=Date.now(),ke=(ce-T.current)/1e3;q?.({eventInfo:{eventSubject:"viewImageCarouselEnd",eventDescription:"User end view the image carousel",contentId:(ve=(te=I?.video)===null||te===void 0?void 0:te.itemId)!==null&&ve!==void 0?ve:"",contentName:(he=I?.video.title)!==null&&he!==void 0?he:"",imageEndTime:`${ce}`,playDuration:`${ke}`,contentTags:JSON.stringify((ee=I?.video.tags)!==null&&ee!==void 0?ee:[]),position:s+"",contentFormat:"image",traceInfo:I?.video.traceInfo}})}},De=(I,N)=>{var Y,te,ve,he,ee,ce,ke,Me,Ye,Je,qe,Qe,$e,Le,Xe,dt,Ke,pt,mt;if(He||X)return;const xt=new Date-Te.current;if(t?.openSlideSkip&&xt>=((Y=t?.slideSkipStartTime)!==null&&Y!==void 0?Y:0)&&po()&&I){const Tt=((he=(ve=(te=I?.video)===null||te===void 0?void 0:te.bindProducts)===null||ve===void 0?void 0:ve[0])===null||he===void 0?void 0:he.link)||((ce=(ee=I?.video)===null||ee===void 0?void 0:ee.bindProduct)===null||ce===void 0?void 0:ce.link)||((ke=I?.product)===null||ke===void 0?void 0:ke.link),ze=I?.product||((Me=I?.video)===null||Me===void 0?void 0:Me.bindProduct)||((Je=(Ye=I?.video)===null||Ye===void 0?void 0:Ye.bindProducts)===null||Je===void 0?void 0:Je[0]);Tt&&(q?.({eventInfo:{eventSubject:"swipeToWeb",eventDescription:"User swiped to web",productId:(qe=ze?.itemId)!==null&&qe!==void 0?qe:"",productName:(Qe=ze?.title)!==null&&Qe!==void 0?Qe:"",price:ze?.price?ze?.price+"":"0",productCollection:($e=ze?.collection)!==null&&$e!==void 0?$e:"",contentTags:ze?.tags?JSON.stringify(ze?.tags):"",position:N+"",contentId:(Xe=(Le=I?.video)===null||Le===void 0?void 0:Le.itemId)!==null&&Xe!==void 0?Xe:"",traceInfo:(mt=(Ke=(dt=I?.video)===null||dt===void 0?void 0:dt.traceInfo)!==null&&Ke!==void 0?Ke:(pt=I?.product)===null||pt===void 0?void 0:pt.traceInfo)!==null&&mt!==void 0?mt:""}}),G.current=!0,window.location.href=window.getJointUtmLink(Tt))}},se=I=>{var N,Y,te,ve,he,ee,ce,ke,Me,Ye,Je,qe,Qe,$e;O.current=new Date;const Le=a[I.previousIndex];if(!Le)return;I.previousIndex-I.activeIndex<0?(q?.({eventInfo:{eventSubject:"scrollDown",eventDescription:"User scroll down",contentId:(Y=(N=Le?.video)===null||N===void 0?void 0:N.itemId)!==null&&Y!==void 0?Y:"",productId:(ve=(te=Le?.product)===null||te===void 0?void 0:te.itemId)!==null&&ve!==void 0?ve:"",requestId:null,traceInfo:(ee=(he=Le?.video)===null||he===void 0?void 0:he.traceInfo)!==null&&ee!==void 0?ee:""}}),Se(Le),De(Le,I.previousIndex)):(q?.({eventInfo:{eventSubject:"scrollUp",eventDescription:"User scroll up",contentId:(ke=(ce=Le?.video)===null||ce===void 0?void 0:ce.itemId)!==null&&ke!==void 0?ke:"",productId:(Ye=(Me=Le.product)===null||Me===void 0?void 0:Me.itemId)!==null&&Ye!==void 0?Ye:"",requestId:null,traceInfo:(qe=(Je=Le?.video)===null||Je===void 0?void 0:Je.traceInfo)!==null&&qe!==void 0?qe:""}}),Se(Le)),Re(Le);const Xe=a[I.activeIndex];!(!((Qe=Xe?.video)===null||Qe===void 0)&&Qe.url)&&!(!(($e=Xe?.video)===null||$e===void 0)&&$e.imgUrls)&&Xe?.product&&oe?.({eventName:"ProductView"})},Re=I=>{var N,Y,te;!(!((N=I?.video)===null||N===void 0)&&N.url)&&!(!((Y=I?.video)===null||Y===void 0)&&Y.imgUrls)&&I?.product&&U(I,I.product,(te=I?.product)===null||te===void 0?void 0:te.bindCta,O.current,s)};be(()=>{const I=a[s];ie&&Re(I)},[ie,a,s]);const Ue=I=>{var N,Y,te,ve,he,ee;const ce=a[I];if(!(!((N=ce?.video)===null||N===void 0)&&N.url)&&(!((Y=ce?.video)===null||Y===void 0)&&Y.imgUrls)){const ke=Date.now();T.current=ke,q?.({eventInfo:{eventSubject:"viewImageCarouselStart",eventDescription:"User start view the image carousel",contentId:(ve=(te=ce?.video)===null||te===void 0?void 0:te.itemId)!==null&&ve!==void 0?ve:"",contentName:(he=ce?.video.title)!==null&&he!==void 0?he:"",imageStartTime:`${ke}`,contentTags:JSON.stringify((ee=ce?.video.tags)!==null&&ee!==void 0?ee:[]),position:I+"",contentFormat:"image",traceInfo:ce?.video.traceInfo}}),oe?.({eventName:"ViewContent"})}},Ge=we(I=>{var N,Y,te,ve,he,ee;if(I)return(t?.isShowMute===void 0||t?.isShowMute===!0)&&p.createElement(jn,{style:{position:t?.muteIconFixed?"fixed":"absolute",visibility:!((Y=(N=z?.[s])===null||N===void 0?void 0:N.video)===null||Y===void 0)&&Y.url?"visible":"hidden",zIndex:999,[(te=t?.muteIconXPosit)!==null&&te!==void 0?te:"right"]:(ve=t?.muteIconX)!==null&&ve!==void 0?ve:0,[(he=t?.muteIconYPosit)!==null&&he!==void 0?he:"bottom"]:(ee=t?.muteIconY)!==null&&ee!==void 0?ee:23},defaultValue:_,activeIcon:t?.unMuteIcon?t?.unMuteIcon:M,unactiveIcon:t?.muteIcon?t?.muteIcon:k,onChange:D})},[t,z,s,_]),We=ue(()=>K?p.createElement("div",{style:{height:Ae,width:n,display:"flex",justifyContent:"center",alignItems:"center"}},p.createElement("img",{width:64,height:64,src:de,alt:"loading...",style:{objectFit:"contain"}})):z?.map((I,N)=>p.createElement(bt,{key:N,virtualIndex:N,style:{overflow:"hidden"}},I&&p.createElement(p.Fragment,null,I?.loading?p.createElement("div",{style:{height:Ae,width:n,display:"flex",justifyContent:"center",alignItems:"center"}},p.createElement("img",{width:64,height:64,src:de,alt:"loading...",style:{objectFit:"contain"}})):p.createElement(p.Fragment,null,Fe(I,N),J(I,N),W(I,N,!t?.likeIconFixed),Ge(!t?.muteIconFixed))))),[n,a,Ae,K,J,Fe,z,de,R,Ge]);return p.createElement("div",{id:"sxp-render",className:"clc-sxp-container"},X&&p.createElement(Mn,{icon:vr,styles:{background:"rgba(0,0,0,.3)",color:"#fff"},textStyle:Object.assign(Object.assign({},(x=(v=(P=(y=(w=t?.hashTag)===null||w===void 0?void 0:w[0])===null||y===void 0?void 0:y.item)===null||P===void 0?void 0:P.props)===null||v===void 0?void 0:v.textStyles)===null||x===void 0?void 0:x.hashTagTitle),{color:"#fff"}),onClose:()=>{Q?.(!0)}}),L,p.createElement(Un,{tagList:m,setActiveIndex:E,style:{top:je}}),Pe?p.createElement(rr,{imageUrl:t?.swipeTipIcon,style:{top:`${50-((b=t?.swipeTipOffset)!==null&&b!==void 0?b:0)}%`},duration:t?.swiperTipAniDur}):null,p.createElement(Pt,{style:{marginTop:Ne},ref:me,onSlideChange:()=>{me.current.swiper.allowTouchMove=!1,setTimeout(()=>{me.current.swiper.allowTouchMove=!0},500)},onActiveIndexChange:I=>{E(I.activeIndex),!ie&&(se(I),!X&&I?.activeIndex+2>=a?.length&&(j||(H(!0),ne?.(Math.ceil(s/10)+1).then(()=>{H(!1)}))))},direction:"vertical",height:Ae},W(z[s],s,!!t?.likeIconFixed),Ge(!!t?.muteIconFixed),We),p.createElement(Rn,Object.assign({},(g=(C=(A=t?.hashTag)===null||A===void 0?void 0:A[0])===null||C===void 0?void 0:C.item)===null||g===void 0?void 0:g.props)))},fr=({imgUrls:t,width:e,height:i,imgUrlsPostConfig:n,rec:l,index:o})=>p.createElement(Pt,{defaultValue:0,direction:"horizontal",modules:[ei,ti],pagination:{clickable:!0,bulletActiveClass:"swipe-item-active-bullet"},height:i,style:{width:e},loop:!0,autoplay:!1},t?.map(a=>p.createElement(bt,{key:a},p.createElement(Vn,{src:a,height:i,imgUrlsPostConfig:n}))));var hr=Ce(fr);const gr=({rec:t,index:e,height:i,data:n,muted:l,activeIndex:o,videoPostConfig:a,width:r})=>{const[d,u]=$(!1),c=ge(null),{bffEventReport:f,sxpParameter:m,waterFallData:h,openHashtag:w}=Oe(),y=ge(0),[P,v]=$(!1),[x,b]=$(!0),A=ge(null),[C,g]=$("");be(()=>{c.current&&(c.current.muted=l)},[l]);const M=we(()=>{var B;(B=c.current)===null||B===void 0||B.play()},[]),k=ct("/pb_static/06f28a2025c74c1cb49be6767316d827.png"),S=we(()=>{var B,R,Z,G,ne,q,K,V,pe,me,X,Q,le;u(!1);const ie=n[e];if(ie&&(!((B=c?.current)===null||B===void 0)&&B.duration)){y.current=((R=c?.current)===null||R===void 0?void 0:R.currentTime)||0;const de=((G=(Z=c.current)===null||Z===void 0?void 0:Z.duration)!==null&&G!==void 0?G:0).toFixed(2),re=((q=(ne=c.current)===null||ne===void 0?void 0:ne.currentTime)!==null&&q!==void 0?q:0).toFixed(2),ae=x?"0":"1";f?.({eventInfo:{eventSubject:"playVideo",eventDescription:"User played the video",contentId:(V=(K=ie?.video)===null||K===void 0?void 0:K.itemId)!==null&&V!==void 0?V:"",contentName:(me=(pe=ie?.video)===null||pe===void 0?void 0:pe.title)!==null&&me!==void 0?me:"",playType:ae,startTime:re,videoDuration:de,contentTags:JSON.stringify((Q=(X=ie?.video)===null||X===void 0?void 0:X.tags)!==null&&Q!==void 0?Q:[]),position:e+"",contentFormat:"video",traceInfo:(le=ie?.video)===null||le===void 0?void 0:le.traceInfo}}),b(!1)}},[f,n,e,x]),s=we(()=>{v(!0)},[]),E=we(B=>()=>{var R,Z,G,ne,q;if(!P)return;const K=(R=c.current)===null||R===void 0?void 0:R.paused;switch(B){case"start":if(!K)return;(Z=c.current)===null||Z===void 0||Z.play(),u(!1);break;case"pause":if(K)return;(G=c.current)===null||G===void 0||G.pause(),u(!0);break;default:K?(ne=c.current)===null||ne===void 0||ne.play():(q=c.current)===null||q===void 0||q.pause(),u(!K);break}},[P]),T=we(()=>{var B,R,Z,G,ne,q,K,V,pe,me,X,Q,le;const ie=n[e],de=((R=(B=c.current)===null||B===void 0?void 0:B.duration)!==null&&R!==void 0?R:0).toFixed(2),re=((G=(Z=c.current)===null||Z===void 0?void 0:Z.currentTime)!==null&&G!==void 0?G:0).toFixed(2);if(!((ne=c?.current)===null||ne===void 0)&&ne.duration){const ae=(((q=c?.current)===null||q===void 0?void 0:q.currentTime)-y.current).toFixed(2);f?.({eventInfo:{eventSubject:"playOverVideo",eventDescription:"User finished playing the video",contentId:(V=(K=ie?.video)===null||K===void 0?void 0:K.itemId)!==null&&V!==void 0?V:"",contentName:(me=(pe=ie?.video)===null||pe===void 0?void 0:pe.title)!==null&&me!==void 0?me:"",endTime:re,videoDuration:de,playDuration:ae,contentTags:JSON.stringify((Q=(X=ie?.video)===null||X===void 0?void 0:X.tags)!==null&&Q!==void 0?Q:[]),position:e+"",contentFormat:"video",traceInfo:(le=ie?.video)===null||le===void 0?void 0:le.traceInfo}})}},[n,e,f]),_=ue(()=>a?.mode==="2",[a]),D=ue(()=>{var B;return a?.mode==="2"?`translateY(-${50+((B=a?.offsetTop)!==null&&B!==void 0?B:0)}%) translate3d(0px, 0px, 0px)`:"translateY(-50%)"},[a]),O=ue(()=>{var B;return((B=t?.video)===null||B===void 0?void 0:B.cover)||C},[C,t]),j=we(()=>{if(!A||!c||!c.current||!A.current)return;const B=c?.current,R=A?.current,Z=R.getContext("2d"),G=window?.innerWidth,ne=window?.innerHeight;R.height=ne,R.width=G,Z?.drawImage(B,0,0,R.width,R.height),g(R.toDataURL())},[]);be(()=>{var B,R,Z,G;if(c.current){if(u(!1),!c.current.src){const ne=t?.video.url;if(ne.includes(".m3u8"))if(typeof window<"u"&&window?.Hls.isSupported()){const q=new window.Hls;q.loadSource(ne),q.attachMedia(c.current)}else c.current.canPlayType("application/vnd.apple.mpegurl"),c.current.src=ne;else c.current.src=ne;c.current.setAttribute("x5-playsinline","true"),c.current.setAttribute("webkit-playsinline","true")}return(B=c.current)===null||B===void 0||B.addEventListener("loadedmetadata",s),(R=c.current)===null||R===void 0||R.addEventListener("canplay",s),(Z=c.current)===null||Z===void 0||Z.addEventListener("playing",S),(G=c.current)===null||G===void 0||G.addEventListener("loadeddata",j),()=>{var ne,q,K,V;(ne=c.current)===null||ne===void 0||ne.removeEventListener("loadedmetadata",s),(q=c.current)===null||q===void 0||q.removeEventListener("canplay",s),(K=c.current)===null||K===void 0||K.removeEventListener("playing",S),(V=c.current)===null||V===void 0||V.removeEventListener("loadeddata",j)}}},[s,S,t?.video,j]);const H=ue(()=>!m?.placeholder_image||P?null:p.createElement("img",{style:{position:"absolute",left:0,top:0,width:"100%",height:"100%",objectFit:"cover"},src:m?.placeholder_image,alt:"video poster"}),[P,m?.placeholder_image]);be(()=>{const B=()=>{var R,Z;o===e&&(!((R=t?.video)===null||R===void 0)&&R.url)&&(!((Z=c?.current)===null||Z===void 0)&&Z.src)&&!d&&E("pause")()};return window.addEventListener("beforeunload",B),()=>{window.removeEventListener("beforeunload",B)}},[o,e,t,c,E,d]);const F=ue(()=>_?{filter:"blur(10px)",transform:"translate3d(0px, 0px, 0px) scale(1.2)"}:{},[_]);return t?.video?p.createElement(p.Fragment,null,_?p.createElement("div",{className:"video-container",key:t?.video.itemId,onClick:E(),style:{position:"relative",width:r,height:i,overflow:"hidden"}},p.createElement(lt,{src:O,style:Object.assign({height:i,width:r,objectFit:"cover"},F)}),p.createElement("canvas",{ref:A,style:{display:"none"}}),p.createElement("div",{style:{position:"absolute",width:r,height:i,top:"50%",transform:D,left:0,right:0}},p.createElement("div",{style:{position:"relative",width:r,height:"100%"}},p.createElement("video",{id:`pb-video-${e}`,className:"clc-pb-video",ref:c,autoPlay:!0,crossOrigin:"anonymous",muted:!0,controls:!1,playsInline:!0,preload:"auto",onPause:T,onEnded:M,style:{width:"100%",height:i,objectFit:"contain"}}),p.createElement("img",{hidden:!d,className:"clc-pb-video-pause",src:k,alt:"video pause image"}))),H):p.createElement("div",{className:"video-container",key:t?.video.itemId,onClick:E(),style:{position:"relative",width:r,height:i,overflow:"hidden"}},p.createElement("video",{id:`pb-video-${e}`,className:"clc-pb-video",style:{width:"100%"},ref:c,crossOrigin:"anonymous",muted:!0,autoPlay:!0,controls:!1,playsInline:!0,preload:"auto",onPause:T,onEnded:M}),H,p.createElement("img",{hidden:!d,className:"clc-pb-video-pause",src:k,alt:"video pause image"}))):null};var br=Ce(gr);const Fi={};Object.values(Ri).forEach(t=>{Fi[t.extend.type]=t});const yr="/pb_static/f71266d2c64446c5ae6a5a7f5489cc0a.png",wr="/pb_static/f07900fe3f0f4ae188ea1611d4801a44.png",Sr=({data:t=[],globalConfig:e,tipText:i,nudge:n,tempMap:l,descStyle:o,hashTagStyle:a,containerHeight:r=664,containerWidth:d=375,appDomain:u,tagList:c=[]})=>{const f=ue(()=>{let g=0;return e?.logoUrl&&e?.isShowLogo&&(g+=45),c.length>0&&(g+=45),r-g},[e,r,c]),m=(g,M)=>{var k,S,s,E;if(!((k=g?.video)===null||k===void 0)&&k.url)return p.createElement(br,{rec:g,index:M,muted:!0,width:d,data:t??[],height:f,activeIndex:M,videoPostConfig:e?.videoPost});if(!((S=g?.video)===null||S===void 0)&&S.imgUrls)return p.createElement(hr,{key:g?.video.itemId,imgUrls:g?.video.imgUrls,width:d,height:f,rec:g,index:M,imgUrlsPostConfig:e?.imgUrlsPost});if(g.product&&g.product&&Array.isArray(e?.productPost)&&((s=e?.productPost)===null||s===void 0?void 0:s.length)>0)return(E=e?.productPost)===null||E===void 0?void 0:E.map((T,_)=>{var D,O,j,H,F,B,R,Z;const G=Fi[(D=T?.item)===null||D===void 0?void 0:D.type],ne=li(G),q=(O=G?.extend)===null||O===void 0?void 0:O.defaulSetting;return p.createElement(ne,Object.assign({key:`${M}${_}`,textStyle:Object.assign(Object.assign({},q?.textStyle),(j=T?.item)===null||j===void 0?void 0:j.textStyle),bindDatas:(F=(H=T?.item)===null||H===void 0?void 0:H.bindDatas)!==null&&F!==void 0?F:[]},q?.props,(B=T?.item)===null||B===void 0?void 0:B.props,{event:((R=T?.item)===null||R===void 0?void 0:R.event)||{},id:T?.id,rec:g,isPost:!0,tipText:i,style:Object.assign(Object.assign(Object.assign({},q?.style),(Z=T?.item)===null||Z===void 0?void 0:Z.style),{width:d,height:f,overflow:"auto"}),index:M}))})},h=ue(()=>e?.logoUrl&&e?.isShowLogo?p.createElement("div",{className:"clc-sxp-logo-banner",style:{backgroundColor:e?.color}},p.createElement("img",{src:e?.logoUrl,alt:"logo"})):null,[e]),w=(g,M)=>e?.isShowCTA===void 0||e?.isShowCTA?p.createElement("div",{className:"clc-sxp-bottom-card"},p.createElement(di,{rec:g,index:M,tempMap:l,resolver:Fi})):null,y=(g,M)=>{var k,S,s,E,T,_,D;return g?.video?p.createElement(p.Fragment,null,((k=g?.video)===null||k===void 0?void 0:k.title)&&p.createElement("div",{className:"clc-sxp-bottom-shadow"}),p.createElement("div",{className:"clc-sxp-bottom"},p.createElement(Hn,{nudge:n}),w(g,M),p.createElement("div",null,p.createElement(oi,{className:"clc-sxp-bottom-text",isPost:!0,foldText:i?.foldText,unfoldText:i?.unfoldText,text:(s=(S=g?.video)===null||S===void 0?void 0:S.title)!==null&&s!==void 0?s:"",style:Object.assign(Object.assign({},o),{textShadow:e?.isOpenTextShadow?"2px 2px 4px rgba(0, 0, 0, 0.5)":"none"})})),p.createElement(zn,{index:M,tags:(T=(E=g?.video)===null||E===void 0?void 0:E.hashTags)!==null&&T!==void 0?T:[],itemId:(_=g?.video)===null||_===void 0?void 0:_.itemId,itemType:!((D=g?.video)===null||D===void 0)&&D.itemId?"VIDEO":null,rec:g,hashTagStyle:a}))):null},P=ct(wr,u),v=ct(yr,u),x=(g,M)=>{var k,S,s,E;if(!e?.isShowLike)return;let T=(k=e?.likeIconY)!==null&&k!==void 0?k:400;return T<40&&(T+=40),g?.video?p.createElement(Nn,{key:g.position,activeIcon:(S=e?.likeIcon)!==null&&S!==void 0?S:P,unActicveIcon:(s=e?.unlikeIcon)!==null&&s!==void 0?s:v,position:M,active:g.isCollected,recData:g,className:"clc-sxp-like-button",style:{top:T,right:(E=e?.likeIconX)!==null&&E!==void 0?E:0}}):null},b=ct("/pb_static/5beaaa5ce7f3477b99db3838619cc471.png",u),A=ct("/pb_static/fea8668a8a894e4aa3a86bcc775e895e.png",u),C=(g,M)=>{var k,S,s,E;return p.createElement("div",{style:{position:"relative",border:"1px solid #e1e1e1"}},h,p.createElement(Un,{tagList:c}),p.createElement(jn,{style:{position:"absolute",right:(k=e?.muteIconX)!==null&&k!==void 0?k:0,visibility:!((s=(S=t?.[M])===null||S===void 0?void 0:S.video)===null||s===void 0)&&s.url?"visible":"hidden",bottom:(E=e?.muteIconY)!==null&&E!==void 0?E:23,zIndex:999},defaultValue:!0,activeIcon:e?.unMuteIcon?e?.unMuteIcon:b,unactiveIcon:e?.muteIcon?e?.muteIcon:A}),m(g,M),y(g,M),x(g,M))};return p.createElement("div",{className:Ee({width:"100%",height:r,display:"flex",boxSizing:"border-box",gap:16,pointerEvents:"none",userSelect:"none",transform:"scale(0.7) translateX(-22%) translateY(-140px)"})},t?.map((g,M)=>C(g,M)))};var xr=Ce(Sr);const Tr=()=>{const{schema:t,resolver:e,popup:i}=ft(),{setPopupDetailData:n,popupDetailData:l,popupCurTimeRef:o,checkCommodityIndexRef:a}=Oe(),{productView:r}=et(),[d,u]=$();be(()=>{const m=()=>{o.current=new Date};return m(),window.addEventListener("pageshow",m),()=>{window.removeEventListener("pageshow",m)}},[]),be(()=>{i&&i?.id&&i?.id!==""&&(o.current=new Date,u(i))},[i]);const c=()=>{var m,h,w,y,P,v,x,b,A,C,g,M,k,S,s,E,T,_;if(!i||i?.id===""||!d||new Date-o.current<((m=i?.duration)!==null&&m!==void 0?m:0))return;u(Object.assign(Object.assign({},i),{id:""}));const D=(y=(w=(h=t?.sxpPageConf)===null||h===void 0?void 0:h.globalConfig)===null||w===void 0?void 0:w.popupList)===null||y===void 0?void 0:y.find(O=>O?.id===i?.id);if(((P=D?.item)===null||P===void 0?void 0:P.type)==="CommodityDetail"||((v=D?.item)===null||v===void 0?void 0:v.type)==="CommodityDetailDiroNew"){const O=l;let j=(b=(x=O?.video)===null||x===void 0?void 0:x.bindProduct)!==null&&b!==void 0?b:(C=(A=O?.video)===null||A===void 0?void 0:A.bindProducts)===null||C===void 0?void 0:C[0],H=(k=(M=(g=O?.video)===null||g===void 0?void 0:g.bindProduct)===null||M===void 0?void 0:M.bindCta)!==null&&k!==void 0?k:(E=(s=(S=O?.video)===null||S===void 0?void 0:S.bindProducts)===null||s===void 0?void 0:s[0])===null||E===void 0?void 0:E.bindCta;if(a?.current>=0){const F=(_=(T=O?.video)===null||T===void 0?void 0:T.bindProducts)===null||_===void 0?void 0:_[a?.current];F&&(j=F,H=F?.bindCta)}j&&H&&r(O,j,H,o.current,l?.index)}setTimeout(()=>{window?.sxpPopup(""),n?.(null),a.current=-1},i?.duration)},f=ue(()=>{var m,h,w;return(w=(h=(m=t?.sxpPageConf)===null||m===void 0?void 0:m.globalConfig)===null||h===void 0?void 0:h.popupList)===null||w===void 0?void 0:w.map((y,P)=>{var v,x,b,A,C,g,M,k,S,s,E,T,_,D;if(y?.id===i?.id){const O=e[(v=y?.item)===null||v===void 0?void 0:v.type],j=li(O),H=((A=(b=(x=y?.item)===null||x===void 0?void 0:x.event)===null||b===void 0?void 0:b.onClick)===null||A===void 0?void 0:A.linkType)==="externalLink",F=((M=(g=(C=y?.item)===null||C===void 0?void 0:C.event)===null||g===void 0?void 0:g.onClick)===null||M===void 0?void 0:M.linkType)==="popup",B=(k=O?.extend)===null||k===void 0?void 0:k.defaulSetting;return p.createElement(j,Object.assign({key:P,style:Object.assign(Object.assign(Object.assign({},B?.style),(S=y?.item)===null||S===void 0?void 0:S.style),{height:"100%"}),textStyle:Object.assign(Object.assign({},B?.textStyle),(s=y?.item)===null||s===void 0?void 0:s.textStyle),bindDatas:(T=(E=y?.item)===null||E===void 0?void 0:E.bindDatas)!==null&&T!==void 0?T:[]},B?.props,(_=y?.item)===null||_===void 0?void 0:_.props,{event:((D=y?.item)===null||D===void 0?void 0:D.event)||{},schema:t,id:y?.id,isExternalLink:H,isPopup:F,onClose:c}))}else return p.createElement(p.Fragment,null)})},[t,i,e,c]);return p.createElement(Lt,{popup:d,onClose:c,padding:0,modalStyle:{position:"fixed"}},f)},Ni={};Object.values(Ri).forEach(t=>{Ni[t.extend.type]=t});const Ar=({data:t,maxSize:e=10,defaultSize:i=10,hashTagSize:n=20,loadingImage:l,appDomain:o,licenseUrl:a,enabledMetaConversionApi:r})=>{var d,u,c,f,m,h,w,y,P,v,x;const b=ue(()=>{var A;return location?.search?(A=location?.search)===null||A===void 0?void 0:A.replace("?",""):""},[]);return p.createElement(an,{resolver:Ni,enableDataSource:!1,schema:t?.data,utmVal:b},p.createElement(nn,{utmVal:b,dataSources:t?.data_sources,sxpParameter:t?.sxp_parameter,maxSize:(u=(d=t?.sxp_parameter)===null||d===void 0?void 0:d.personalized_recommend)!==null&&u!==void 0?u:e,defaultSize:(f=(c=t?.sxp_parameter)===null||c===void 0?void 0:c.default_recommend)!==null&&f!==void 0?f:i,hashTagSize:(h=(m=t?.sxp_parameter)===null||m===void 0?void 0:m.hash_tag_size)!==null&&h!==void 0?h:n,loadingImage:l,appDomain:o,enabledMetaConversionApi:r,isShowTag:(P=(y=(w=t?.data)===null||w===void 0?void 0:w.sxpPageConf)===null||y===void 0?void 0:y.globalConfig)===null||P===void 0?void 0:P.isShowTag,globalConfig:(x=(v=t?.data)===null||v===void 0?void 0:v.sxpPageConf)===null||x===void 0?void 0:x.globalConfig,utmParameter:t?.utm_parameter,render:({rtcList:A,tagList:C})=>{var g;return p.createElement(p.Fragment,null,p.createElement(Gn,Object.assign({},(g=t?.data)===null||g===void 0?void 0:g.sxpPageConf,{tagList:C,data:A,resolver:Ni,licenseUrl:a})),p.createElement(Tr,null))}}))};var Er=Ce(Ar);const Wn=jt({}),Ir=({children:t,data:e})=>{var i,n,l,o,a,r,d,u,c,f,m,h,w;const[y,P]=$(!1),[v,x]=$(!1);return p.createElement(Wn.Provider,{value:{sxpPrameter:{bottomImage:(i=e?.sxp_parameter)===null||i===void 0?void 0:i.bottom_image,defaultRecommend:(n=e?.sxp_parameter)===null||n===void 0?void 0:n.default_recommend,personalizedRecommend:(l=e?.sxp_parameter)===null||l===void 0?void 0:l.personalized_recommend,placeholderImage:(o=e?.sxp_parameter)===null||o===void 0?void 0:o.placeholder_image,hashTagSize:(a=e?.sxp_parameter)===null||a===void 0?void 0:a.hash_tag_size,loadingImage:(r=e?.sxp_parameter)===null||r===void 0?void 0:r.loading_image,privacyContent:(d=e?.sxp_parameter)===null||d===void 0?void 0:d.privacy_context,privacyNecessity:(u=e?.sxp_parameter)===null||u===void 0?void 0:u.privacy_necessity,privacyPolicyTitle:(c=e?.sxp_parameter)===null||c===void 0?void 0:c.privacy_policy_title,privacyPolicyUrl:(f=e?.sxp_parameter)===null||f===void 0?void 0:f.privacy_policy_url,privacyTitle:(m=e?.sxp_parameter)===null||m===void 0?void 0:m.privacy_title,template:(h=e?.sxp_parameter)===null||h===void 0?void 0:h.template,industry:(w=e?.sxp_parameter)===null||w===void 0?void 0:w.industry},appDomain:e?.appDomain,openHashtag:y,setOpenHashtag:P,openConsent:v,setOpenConsent:x,sxpFontLinks:e?.sxpFontLinks}},t)};function Cr(){return Nt(Wn)}export{xr as DiyPortalPreview,Ir as EditorDataProvider,Lt as Modal,nn as SxpDataSourceProvider,Er as SxpPageCore,Gn as SxpPageRender,wo as core,ro as default,Ri as materials,Cr as useEditorDataProvider};
|
7
7
|
//# sourceMappingURL=index.min.js.map
|