{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/eg1YnZr5EIGXBp20KSyz/tYhLbEuS4pV1gMbEAXmw/Qfh3_nfxD.js", "ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/9zLIz4fn80IR9zpOx18Q/Embed.js", "ssg:https://framerusercontent.com/modules/eoIDLgggEIWeag4IqkwP/dR7FSCgZQKUNaa1A0bq2/AgGSDPpx7.js", "ssg:https://framerusercontent.com/modules/5bGYaCYn5QPmmEMk3WvJ/wRAFkZSpwSHmG1QnEf1u/H_iLxCvQj.js", "ssg:https://framerusercontent.com/modules/7wDYTVqybMeB1Bkr7935/dYsazeSDH2DL9BMOmEax/glKb8mYAl-0.js", "ssg:https://framerusercontent.com/modules/7wDYTVqybMeB1Bkr7935/dYsazeSDH2DL9BMOmEax/glKb8mYAl.js"],
  "sourcesContent": ["import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"GF;Plus Jakarta Sans-700\"]);export const fonts=[{family:\"Plus Jakarta Sans\",moduleAsset:{localModuleIdentifier:\"local-module:css/Qfh3_nfxD:default\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v7/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_TknNShXUEKi4Rw.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v7/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_TknNShXUEKi4Rw.ttf\",weight:\"700\"}];export const css=['.framer-HHzji .framer-styles-preset-1rmu31g:not(.rich-text-wrapper), .framer-HHzji .framer-styles-preset-1rmu31g.rich-text-wrapper p, .framer-HHzji .framer-styles-preset-1rmu31g.rich-text-wrapper [data-preset-tag=\"p\"] { --framer-font-family: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-weight: 700; --framer-letter-spacing: 0px; --framer-line-height: 24px; --framer-paragraph-spacing: 24px; --framer-text-alignment: start; --framer-text-color: var(--token-aca045ad-3860-4086-a3a0-828046b26171, #1f0150); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 764px) and (min-width: 0px) { .framer-HHzji .framer-styles-preset-1rmu31g:not(.rich-text-wrapper), .framer-HHzji .framer-styles-preset-1rmu31g.rich-text-wrapper p, .framer-HHzji .framer-styles-preset-1rmu31g.rich-text-wrapper [data-preset-tag=\"p\"] { --framer-font-family: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-weight: 700; --framer-letter-spacing: 0px; --framer-line-height: 24px; --framer-paragraph-spacing: 18px; --framer-text-alignment: start; --framer-text-color: var(--token-aca045ad-3860-4086-a3a0-828046b26171, #1f0150); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-HHzji\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useEffect,useRef,useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles}from\"https://framer.com/m/framer/default-utils.js\";/**\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 400\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerDisableUnlink\n */ export default function Embed({type,url,html}){if(type===\"url\"&&url){return /*#__PURE__*/ _jsx(EmbedURL,{url:url});}if(type===\"html\"&&html){return /*#__PURE__*/ _jsx(EmbedHTML,{html:html});}return /*#__PURE__*/ _jsx(Instructions,{});};addPropertyControls(Embed,{type:{type:ControlType.Enum,defaultValue:\"url\",displaySegmentedControl:true,options:[\"url\",\"html\"],optionTitles:[\"URL\",\"HTML\"]},url:{title:\"URL\",type:ControlType.String,description:\"Some websites don\u2019t support embedding.\",hidden(props){return props.type!==\"url\";}},html:{title:\"HTML\",displayTextArea:true,type:ControlType.String,hidden(props){return props.type!==\"html\";}}});function Instructions(){return /*#__PURE__*/ _jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/ _jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedURL({url}){// Add https:// if the URL does not have a protocol.\nif(!/[a-z]+:\\/\\//.test(url)){url=\"https://\"+url;}const onCanvas=useIsOnCanvas();// We need to check if the url is blocked inside an iframe by the X-Frame-Options\n// or Content-Security-Policy headers on the backend.\nconst[state,setState]=useState(onCanvas?undefined:false);useEffect(()=>{// We only want to check on the canvas.\n// On the website we want to avoid the additional delay.\nif(!onCanvas)return;// TODO: We could also use AbortController here.\nlet isLastEffect=true;setState(undefined);async function load(){const response=await fetch(\"https://api.framer.com/functions/check-iframe-url?url=\"+encodeURIComponent(url));if(response.status==200){const{isBlocked}=await response.json();if(isLastEffect){setState(isBlocked);}}else{const message=await response.text();console.error(message);const error=new Error(\"This site can\u2019t be reached.\");setState(error);}}load().catch(error=>{console.error(error);setState(error);});return()=>{isLastEffect=false;};},[url]);if(!url.startsWith(\"https://\")){return /*#__PURE__*/ _jsx(ErrorMessage,{message:\"Unsupported protocol.\"});}if(state===undefined){return /*#__PURE__*/ _jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/ _jsx(ErrorMessage,{message:state.message});}if(state===true){const message=`Can't embed ${url} due to its content security policy.`;return /*#__PURE__*/ _jsx(ErrorMessage,{message:message});}return /*#__PURE__*/ _jsx(\"iframe\",{src:url,style:iframeStyle,loading:\"lazy\",// @ts-ignore\nfetchPriority:onCanvas?\"low\":\"auto\",referrerPolicy:\"no-referrer\",sandbox:getSandbox(onCanvas)});}const iframeStyle={width:\"100%\",height:\"100%\",border:\"none\"};function getSandbox(onCanvas){const result=[\"allow-same-origin\",\"allow-scripts\"];if(!onCanvas){result.push(\"allow-downloads\",\"allow-forms\",\"allow-modals\",\"allow-orientation-lock\",\"allow-pointer-lock\",\"allow-popups\",\"allow-popups-to-escape-sandbox\",\"allow-presentation\",\"allow-storage-access-by-user-activation\",\"allow-top-navigation-by-user-activation\");}return result.join(\" \");}function EmbedHTML({html}){const ref=useRef();// If the HTML contains a script tag we can't use\n// dangerouslySetInnerHTML because it doesn't execute\n// scripts on the client. Otherwise, we can benefit\n// from SSG by using dangerouslySetInnerHTML.\nconst hasScript=html.includes(\"</script>\");useEffect(()=>{if(!hasScript)return;const div=ref.current;div.innerHTML=html;executeScripts(div);return()=>{div.innerHTML=\"\";};},[html,hasScript]);return /*#__PURE__*/ _jsx(\"div\",{ref:ref,style:htmlStyle,dangerouslySetInnerHTML:!hasScript?{__html:html}:undefined});}const htmlStyle={width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};// This function replaces scripts with executable ones.\n// https://stackoverflow.com/questions/1197575/can-scripts-be-inserted-with-innerhtml\nfunction executeScripts(node){if(node instanceof Element&&node.tagName===\"SCRIPT\"){const script=document.createElement(\"script\");script.text=node.innerHTML;for(const{name,value}of node.attributes){script.setAttribute(name,value);}node.parentElement.replaceChild(script,node);}else{for(const child of node.childNodes){executeScripts(child);}}}// Generic components\nfunction LoadingIndicator(){return /*#__PURE__*/ _jsx(\"div\",{className:\"framerInternalUI-componentPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/ _jsx(\"div\",{style:centerTextStyle,children:\"Loading\u2026\"})});}function ErrorMessage({message}){return /*#__PURE__*/ _jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/ _jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}const centerTextStyle={textAlign:\"center\",minWidth:140};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"\",\"framerIntrinsicWidth\":\"600\",\"framerIntrinsicHeight\":\"400\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"GF;Plus Jakarta Sans-regular\"]);export const fonts=[{family:\"Plus Jakarta Sans\",moduleAsset:{localModuleIdentifier:\"local-module:css/AgGSDPpx7:default\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_qU7NShXUEKi4Rw.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_qU7NShXUEKi4Rw.ttf\",weight:\"400\"}];export const css=['.framer-xoBVW .framer-styles-preset-14oqf0x:not(.rich-text-wrapper), .framer-xoBVW .framer-styles-preset-14oqf0x.rich-text-wrapper p { --framer-font-family: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-size: 13.5px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 2em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-2a1c9647-d5cd-4cf0-8cf3-957bd013c68b, #780059); --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-xoBVW\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"GF;Plus Jakarta Sans-italic\"]);export const fonts=[{family:\"Plus Jakarta Sans\",moduleAsset:{localModuleIdentifier:\"local-module:css/H_iLxCvQj:default\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ0lCR_QMq2oR82k.ttf\"},style:\"italic\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ0lCR_QMq2oR82k.ttf\",weight:\"400\"}];export const css=['.framer-kPRyQ .framer-styles-preset-11wts39:not(.rich-text-wrapper), .framer-kPRyQ .framer-styles-preset-11wts39.rich-text-wrapper p { --framer-font-family: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-size: 14px; --framer-font-style: italic; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 2em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-2a1c9647-d5cd-4cf0-8cf3-957bd013c68b, #780059); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 764px) and (min-width: 0px) { .framer-kPRyQ .framer-styles-preset-11wts39:not(.rich-text-wrapper), .framer-kPRyQ .framer-styles-preset-11wts39.rich-text-wrapper p { --framer-font-family: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-size: 12px; --framer-font-style: italic; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 2em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-2a1c9647-d5cd-4cf0-8cf3-957bd013c68b, #780059); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-kPRyQ\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";import{Link}from\"framer\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1rmu31g\",\"data-styles-preset\":\"Qfh3_nfxD\",children:\"Skyworth, start your innovation journey!\"})});export const v1=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1rmu31g\",\"data-styles-preset\":\"Qfh3_nfxD\",children:\"Skyworth, start your innovation journey!\"})});export const v2=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1rmu31g\",\"data-styles-preset\":\"Qfh3_nfxD\",style:{\"--framer-text-alignment\":\"center\"},children:\"Skyworth, start your innovation journey!\"})});export const v3=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11wts39\",\"data-styles-preset\":\"H_iLxCvQj\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-aca045ad-3860-4086-a3a0-828046b26171, rgb(31, 1, 80)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"AFW4kxYFw\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-snbmk\",\"data-styles-preset\":\"C_wruWFce\",children:\"Company Introduction\"})})})});export const v4=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11wts39\",\"data-styles-preset\":\"H_iLxCvQj\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-aca045ad-3860-4086-a3a0-828046b26171, rgb(31, 1, 80)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"AFW4kxYFw\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-snbmk\",\"data-styles-preset\":\"C_wruWFce\",children:\"Company Introduction\"})})})});export const v5=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11wts39\",\"data-styles-preset\":\"H_iLxCvQj\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-aca045ad-3860-4086-a3a0-828046b26171, rgb(31, 1, 80)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"AFW4kxYFw\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-snbmk\",\"data-styles-preset\":\"C_wruWFce\",children:\"Company Introduction\"})})})});export const v6=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11wts39\",\"data-styles-preset\":\"H_iLxCvQj\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-aca045ad-3860-4086-a3a0-828046b26171, rgb(31, 1, 80)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://xlab.tianrang.com/\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-snbmk\",\"data-styles-preset\":\"C_wruWFce\",children:\"Tianrang Xlab\"})})})});export const v7=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11wts39\",\"data-styles-preset\":\"H_iLxCvQj\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-aca045ad-3860-4086-a3a0-828046b26171, rgb(31, 1, 80)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://xlab.tianrang.com/\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-snbmk\",\"data-styles-preset\":\"C_wruWFce\",children:\"Tianrang Xlab\"})})})});export const v8=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11wts39\",\"data-styles-preset\":\"H_iLxCvQj\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-aca045ad-3860-4086-a3a0-828046b26171, rgb(31, 1, 80)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://xlab.tianrang.com/\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-snbmk\",\"data-styles-preset\":\"C_wruWFce\",children:\"Tianrang Xlab\"})})})});export const v9=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11wts39\",\"data-styles-preset\":\"H_iLxCvQj\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-aca045ad-3860-4086-a3a0-828046b26171, rgb(31, 1, 80)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://xlab.tianrang.com/media\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-snbmk\",\"data-styles-preset\":\"C_wruWFce\",children:\"Media Center\"})})})});export const v10=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11wts39\",\"data-styles-preset\":\"H_iLxCvQj\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-aca045ad-3860-4086-a3a0-828046b26171, rgb(31, 1, 80)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://xlab.tianrang.com/media\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-snbmk\",\"data-styles-preset\":\"C_wruWFce\",children:\"Media Center\"})})})});export const v11=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11wts39\",\"data-styles-preset\":\"H_iLxCvQj\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-aca045ad-3860-4086-a3a0-828046b26171, rgb(31, 1, 80)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://xlab.tianrang.com/media\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-snbmk\",\"data-styles-preset\":\"C_wruWFce\",children:\"Media Center\"})})})});\nexport const __FramerMetadata__ = {\"exports\":{\"v10\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v6\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v8\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v9\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v11\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v7\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (1cc6588)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,Image,Link,RichText,SVG,useActiveVariantCallback,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/9zLIz4fn80IR9zpOx18Q/Embed.js\";import{Icon as Iconoir}from\"https://framerusercontent.com/modules/zL9598C4KbEbqUGvSR14/rI8sPHpnG9XGcCPc0vU4/Iconoir.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/eoIDLgggEIWeag4IqkwP/dR7FSCgZQKUNaa1A0bq2/AgGSDPpx7.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/olnzkrCXgjIkv3qFsXwr/MjpSjjnaGj04LhH3g7yD/C_wruWFce.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/5bGYaCYn5QPmmEMk3WvJ/wRAFkZSpwSHmG1QnEf1u/H_iLxCvQj.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/eg1YnZr5EIGXBp20KSyz/tYhLbEuS4pV1gMbEAXmw/Qfh3_nfxD.js\";import*as localizedValues from\"./glKb8mYAl-0.js\";const MotionDivWithFX=withFX(motion.div);const IconoirFonts=getFonts(Iconoir);const EmbedFonts=getFonts(Embed);const cycleOrder=[\"Kzwv87CA5\",\"rSx02oqZd\",\"vFRs3v6iE\"];const serializationHash=\"framer-boe7W\";const variantClassNames={Kzwv87CA5:\"framer-v-zjayxc\",rSx02oqZd:\"framer-v-8uewik\",vFRs3v6iE:\"framer-v-ilq3p8\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const valuesByLocaleId={ruT8sr7h1:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const animation={opacity:0,rotate:0,scale:1,x:-150,y:0};const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation1={opacity:0,rotate:0,scale:1,transition:transition1,x:-150,y:0};const transformTemplate=(_,t)=>`perspective(1200px) ${t}`;const animation2={opacity:0,rotate:0,scale:1,x:0,y:150};const animation3={opacity:0,rotate:0,scale:1,transition:transition1,x:0,y:150};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const humanReadableVariantMap={Desktop:\"Kzwv87CA5\",Mobile:\"vFRs3v6iE\",Tablet:\"rSx02oqZd\"};const getProps=({height,id,image,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,SyjIymI9j:(_ref=image!==null&&image!==void 0?image:props.SyjIymI9j)!==null&&_ref!==void 0?_ref:{src:\"https://framerusercontent.com/images/tPyvzcKVM9RD1QwaJz3mPBfEuAw.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/tPyvzcKVM9RD1QwaJz3mPBfEuAw.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/tPyvzcKVM9RD1QwaJz3mPBfEuAw.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/tPyvzcKVM9RD1QwaJz3mPBfEuAw.jpg?scale-down-to=2048 2048w, https://framerusercontent.com/images/tPyvzcKVM9RD1QwaJz3mPBfEuAw.jpg 4000w\"},variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"Kzwv87CA5\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale}=useLocaleInfo();const{style,className,layoutId,variant,SyjIymI9j,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"Kzwv87CA5\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onClickbikweo=activeVariantCallback(async(...args)=>{setVariant(\"rSx02oqZd\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"vFRs3v6iE\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"vFRs3v6iE\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];var _getLocalizedValue,_getLocalizedValue1,_getLocalizedValue2,_getLocalizedValue3,_getLocalizedValue4,_getLocalizedValue5,_getLocalizedValue6,_getLocalizedValue7,_getLocalizedValue8,_getLocalizedValue9,_getLocalizedValue10,_getLocalizedValue11;return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-boe7W\",...sharedStyleClassNames,classNames),style:{display:\"contents\"},children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsxs(Image,{...restProps,background:{alt:\"\",fit:\"fill\",intrinsicHeight:3e3,intrinsicWidth:4e3,pixelHeight:3e3,pixelWidth:4e3,sizes:\"min(1250px, 100vw)\",...toResponsiveImage(SyjIymI9j)},className:cx(\"framer-zjayxc\",className),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"Kzwv87CA5\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderTopLeftRadius:100,borderTopRightRadius:100,...style},...addPropertyOverrides({rSx02oqZd:{\"data-framer-name\":\"Tablet\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:3e3,intrinsicWidth:4e3,pixelHeight:3e3,pixelWidth:4e3,sizes:\"min(810px, 100vw)\",...toResponsiveImage(SyjIymI9j)}},vFRs3v6iE:{\"data-framer-name\":\"Mobile\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:3e3,intrinsicWidth:4e3,pixelHeight:3e3,pixelWidth:4e3,sizes:\"min(390px, 100vw)\",...toResponsiveImage(SyjIymI9j)}}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6tb819\",\"data-framer-name\":\"Shapes row\",layoutDependency:layoutDependency,layoutId:\"C7pGPiqja\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ra1lzx\",\"data-framer-name\":\"Shape 1 row\",layoutDependency:layoutDependency,layoutId:\"bqWYoevtj\",style:{rotate:60},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1hf56tj\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:96,intrinsicWidth:96,layoutDependency:layoutDependency,layoutId:\"TFIoFd5Vy\",svg:'<svg width=\"96\" height=\"96\" viewBox=\"0 0 96 96\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_28_9)\">\\n<path d=\"M38.3008 0.893693L44.5547 95.8179C45.6715 95.8179 46.7882 95.8179 47.905 95.8179L41.4278 0.223633C40.5343 0.446984 39.4175 0.670342 38.3008 0.893693Z\" fill=\"url(#paint0_linear_28_9)\"/>\\n<path d=\"M38.3008 0.893693L44.5547 95.8179C45.6715 95.8179 46.7882 95.8179 47.905 95.8179L41.4278 0.223633C40.5343 0.446984 39.4175 0.670342 38.3008 0.893693Z\" fill=\"url(#paint1_linear_28_9)\" fill-opacity=\"0.2\"/>\\n<path d=\"M21.7725 7.81682L27.3562 91.3501C28.473 91.7968 29.5897 92.4668 30.9298 92.9135L25.1227 5.80664C23.7826 6.47669 22.6659 7.14677 21.7725 7.81682Z\" fill=\"url(#paint2_linear_28_9)\"/>\\n<path d=\"M21.7725 7.81682L27.3562 91.3501C28.473 91.7968 29.5897 92.4668 30.9298 92.9135L25.1227 5.80664C23.7826 6.47669 22.6659 7.14677 21.7725 7.81682Z\" fill=\"url(#paint3_linear_28_9)\" fill-opacity=\"0.2\"/>\\n<path d=\"M30.0371 3.57348L36.0675 94.7007C37.1842 94.9241 38.301 95.1474 39.4177 95.3708L33.1639 2.2334C32.0472 2.6801 30.9305 3.12678 30.0371 3.57348Z\" fill=\"url(#paint4_linear_28_9)\"/>\\n<path d=\"M30.0371 3.57348L36.0675 94.7007C37.1842 94.9241 38.301 95.1474 39.4177 95.3708L33.1639 2.2334C32.0472 2.6801 30.9305 3.12678 30.0371 3.57348Z\" fill=\"url(#paint5_linear_28_9)\" fill-opacity=\"0.2\"/>\\n<path d=\"M13.5088 14.5176L18.1991 85.9899C19.3159 86.8833 20.656 87.7767 21.7728 88.4467L16.6358 11.3906C15.7424 12.284 14.6255 13.4008 13.5088 14.5176Z\" fill=\"url(#paint6_linear_28_9)\"/>\\n<path d=\"M13.5088 14.5176L18.1991 85.9899C19.3159 86.8833 20.656 87.7767 21.7728 88.4467L16.6358 11.3906C15.7424 12.284 14.6255 13.4008 13.5088 14.5176Z\" fill=\"url(#paint7_linear_28_9)\" fill-opacity=\"0.2\"/>\\n<path d=\"M5.69141 25.0153L9.04167 76.386C10.1584 77.9495 11.4986 79.5129 12.8387 80.853L8.81838 20.1016C7.70162 21.665 6.58481 23.4518 5.69141 25.0153Z\" fill=\"url(#paint8_linear_28_9)\"/>\\n<path d=\"M5.69141 25.0153L9.04167 76.386C10.1584 77.9495 11.4986 79.5129 12.8387 80.853L8.81838 20.1016C7.70162 21.665 6.58481 23.4518 5.69141 25.0153Z\" fill=\"url(#paint9_linear_28_9)\" fill-opacity=\"0.2\"/>\\n<path d=\"M1.44777 36.1826C-1.00909 46.0101 -0.338977 56.5076 3.45799 65.8883L1.44777 36.1826Z\" fill=\"url(#paint10_linear_28_9)\"/>\\n<path d=\"M1.44777 36.1826C-1.00909 46.0101 -0.338977 56.5076 3.45799 65.8883L1.44777 36.1826Z\" fill=\"url(#paint11_linear_28_9)\" fill-opacity=\"0.2\"/>\\n<path d=\"M81.8545 14.0713L86.0982 77.2796C87.215 75.7162 88.3318 74.3761 89.2252 72.8126L85.6515 18.315C84.3114 16.7515 83.1946 15.4114 81.8545 14.0713Z\" fill=\"url(#paint12_linear_28_9)\"/>\\n<path d=\"M81.8545 14.0713L86.0982 77.2796C87.215 75.7162 88.3318 74.3761 89.2252 72.8126L85.6515 18.315C84.3114 16.7515 83.1946 15.4114 81.8545 14.0713Z\" fill=\"url(#paint13_linear_28_9)\" fill-opacity=\"0.2\"/>\\n<path d=\"M72.9199 6.92383L78.0571 85.3201C79.1739 84.4266 80.2905 83.5332 81.1839 82.4165L76.2702 9.15734C75.1534 8.48729 74.0367 7.59388 72.9199 6.92383Z\" fill=\"url(#paint14_linear_28_9)\"/>\\n<path d=\"M72.9199 6.92383L78.0571 85.3201C79.1739 84.4266 80.2905 83.5332 81.1839 82.4165L76.2702 9.15734C75.1534 8.48729 74.0367 7.59388 72.9199 6.92383Z\" fill=\"url(#paint15_linear_28_9)\" fill-opacity=\"0.2\"/>\\n<path d=\"M91.2354 27.249L93.6923 62.7618C95.4791 57.1781 96.1492 51.5943 95.9258 45.7872L95.7024 43.777C95.2557 37.9699 93.6922 32.3861 91.2354 27.249Z\" fill=\"url(#paint16_linear_28_9)\"/>\\n<path d=\"M91.2354 27.249L93.6923 62.7618C95.4791 57.1781 96.1492 51.5943 95.9258 45.7872L95.7024 43.777C95.2557 37.9699 93.6922 32.3861 91.2354 27.249Z\" fill=\"url(#paint17_linear_28_9)\" fill-opacity=\"0.2\"/>\\n<path d=\"M55.2754 0.446289L61.5292 94.0304C62.6459 93.807 63.7627 93.3603 64.8795 92.9136L58.849 1.11635C57.7322 0.892998 56.3921 0.66964 55.2754 0.446289Z\" fill=\"url(#paint18_linear_28_9)\"/>\\n<path d=\"M55.2754 0.446289L61.5292 94.0304C62.6459 93.807 63.7627 93.3603 64.8795 92.9136L58.849 1.11635C57.7322 0.892998 56.3921 0.66964 55.2754 0.446289Z\" fill=\"url(#paint19_linear_28_9)\" fill-opacity=\"0.2\"/>\\n<path d=\"M46.7881 0L53.2652 95.8176C54.3819 95.5942 55.4987 95.5942 56.6155 95.3709L50.3616 0.223331C49.0215 -2.04444e-05 47.9048 0 46.7881 0Z\" fill=\"url(#paint20_linear_28_9)\"/>\\n<path d=\"M46.7881 0L53.2652 95.8176C54.3819 95.5942 55.4987 95.5942 56.6155 95.3709L50.3616 0.223331C49.0215 -2.04444e-05 47.9048 0 46.7881 0Z\" fill=\"url(#paint21_linear_28_9)\" fill-opacity=\"0.2\"/>\\n<path d=\"M63.9863 2.67969L69.7935 90.68C70.9103 90.0099 72.027 89.5632 73.1438 88.8932L67.56 4.01977C66.4433 3.57307 65.1031 3.12639 63.9863 2.67969Z\" fill=\"url(#paint22_linear_28_9)\"/>\\n<path d=\"M63.9863 2.67969L69.7935 90.68C70.9103 90.0099 72.027 89.5632 73.1438 88.8932L67.56 4.01977C66.4433 3.57307 65.1031 3.12639 63.9863 2.67969Z\" fill=\"url(#paint23_linear_28_9)\" fill-opacity=\"0.2\"/>\\n</g>\\n<defs>\\n<linearGradient id=\"paint0_linear_28_9\" x1=\"43.1029\" y1=\"0.223633\" x2=\"43.1029\" y2=\"95.8179\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FFFADE\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_28_9\" x1=\"43.1029\" y1=\"0.223633\" x2=\"43.1029\" y2=\"95.8179\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FFFADE\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_28_9\" x1=\"26.3511\" y1=\"5.80664\" x2=\"26.3511\" y2=\"92.9135\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FFFADE\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<linearGradient id=\"paint3_linear_28_9\" x1=\"26.3511\" y1=\"5.80664\" x2=\"26.3511\" y2=\"92.9135\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FFFADE\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<linearGradient id=\"paint4_linear_28_9\" x1=\"34.7274\" y1=\"2.2334\" x2=\"34.7274\" y2=\"95.3708\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FFFADE\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<linearGradient id=\"paint5_linear_28_9\" x1=\"34.7274\" y1=\"2.2334\" x2=\"34.7274\" y2=\"95.3708\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FFFADE\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<linearGradient id=\"paint6_linear_28_9\" x1=\"17.6408\" y1=\"11.3906\" x2=\"17.6408\" y2=\"88.4467\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FFFADE\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<linearGradient id=\"paint7_linear_28_9\" x1=\"17.6408\" y1=\"11.3906\" x2=\"17.6408\" y2=\"88.4467\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FFFADE\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<linearGradient id=\"paint8_linear_28_9\" x1=\"9.26505\" y1=\"20.1016\" x2=\"9.26505\" y2=\"80.853\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FFFADE\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<linearGradient id=\"paint9_linear_28_9\" x1=\"9.26505\" y1=\"20.1016\" x2=\"9.26505\" y2=\"80.853\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FFFADE\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<linearGradient id=\"paint10_linear_28_9\" x1=\"1.729\" y1=\"36.1826\" x2=\"1.729\" y2=\"65.8883\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FFFADE\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<linearGradient id=\"paint11_linear_28_9\" x1=\"1.729\" y1=\"36.1826\" x2=\"1.729\" y2=\"65.8883\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FFFADE\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<linearGradient id=\"paint12_linear_28_9\" x1=\"85.5398\" y1=\"14.0713\" x2=\"85.5398\" y2=\"77.2796\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FFFADE\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<linearGradient id=\"paint13_linear_28_9\" x1=\"85.5398\" y1=\"14.0713\" x2=\"85.5398\" y2=\"77.2796\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FFFADE\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<linearGradient id=\"paint14_linear_28_9\" x1=\"77.0519\" y1=\"6.92383\" x2=\"77.0519\" y2=\"85.3201\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FFFADE\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<linearGradient id=\"paint15_linear_28_9\" x1=\"77.0519\" y1=\"6.92383\" x2=\"77.0519\" y2=\"85.3201\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FFFADE\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<linearGradient id=\"paint16_linear_28_9\" x1=\"93.6013\" y1=\"27.249\" x2=\"93.6013\" y2=\"62.7618\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FFFADE\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<linearGradient id=\"paint17_linear_28_9\" x1=\"93.6013\" y1=\"27.249\" x2=\"93.6013\" y2=\"62.7618\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FFFADE\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<linearGradient id=\"paint18_linear_28_9\" x1=\"60.0774\" y1=\"0.446289\" x2=\"60.0774\" y2=\"94.0304\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FFFADE\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<linearGradient id=\"paint19_linear_28_9\" x1=\"60.0774\" y1=\"0.446289\" x2=\"60.0774\" y2=\"94.0304\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FFFADE\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<linearGradient id=\"paint20_linear_28_9\" x1=\"51.7018\" y1=\"0\" x2=\"51.7018\" y2=\"95.8176\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FFFADE\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<linearGradient id=\"paint21_linear_28_9\" x1=\"51.7018\" y1=\"0\" x2=\"51.7018\" y2=\"95.8176\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FFFADE\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<linearGradient id=\"paint22_linear_28_9\" x1=\"68.5651\" y1=\"2.67969\" x2=\"68.5651\" y2=\"90.68\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FFFADE\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<linearGradient id=\"paint23_linear_28_9\" x1=\"68.5651\" y1=\"2.67969\" x2=\"68.5651\" y2=\"90.68\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FFFADE\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_28_9\">\\n<rect width=\"96\" height=\"96\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-f4aqh8\",\"data-framer-name\":\"Shape 2 row\",layoutDependency:layoutDependency,layoutId:\"hoBm2Uj7t\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-imprv2\",\"data-framer-name\":\"shape 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:200,intrinsicWidth:189,layoutDependency:layoutDependency,layoutId:\"WDYeAoNge\",svg:'<svg width=\"189\" height=\"200\" viewBox=\"0 0 189 200\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M51.5115 159.259L59.1085 167.037\" stroke=\"white\" stroke-width=\"1.1533\" stroke-miterlimit=\"10\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M25.1992 132.963L39.2816 147.222\" stroke=\"white\" stroke-width=\"1.1533\" stroke-miterlimit=\"10\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M48.9185 134.814L102.098 187.778\" stroke=\"white\" stroke-width=\"1.1533\" stroke-miterlimit=\"10\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M21.8643 107.778L32.7966 118.519\" stroke=\"white\" stroke-width=\"1.1533\" stroke-miterlimit=\"10\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M87.0881 150.741L133.782 197.407\" stroke=\"white\" stroke-width=\"1.1533\" stroke-miterlimit=\"10\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M87.0881 150.741L133.782 197.407\" stroke=\"white\" stroke-opacity=\"0.2\" stroke-width=\"1.1533\" stroke-miterlimit=\"10\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M16.6765 80.3702L66.5206 130\" stroke=\"white\" stroke-width=\"1.1533\" stroke-miterlimit=\"10\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M16.6765 80.3702L66.5206 130\" stroke=\"white\" stroke-opacity=\"0.2\" stroke-width=\"1.1533\" stroke-miterlimit=\"10\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M55.7727 97.2222L138.043 179.444\" stroke=\"white\" stroke-width=\"1.1533\" stroke-miterlimit=\"10\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M21.6797 63.1483L39.0973 80.5557\" stroke=\"white\" stroke-width=\"1.1533\" stroke-miterlimit=\"10\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M123.776 142.963L143.417 162.778\" stroke=\"white\" stroke-width=\"1.1533\" stroke-miterlimit=\"10\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M1.85303 21.2963L102.838 122.222\" stroke=\"white\" stroke-width=\"1.1533\" stroke-miterlimit=\"10\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M82.8269 80.0004L181.589 178.704\" stroke=\"white\" stroke-width=\"1.1533\" stroke-miterlimit=\"10\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M82.8269 80.0004L181.589 178.704\" stroke=\"white\" stroke-opacity=\"0.2\" stroke-width=\"1.1533\" stroke-miterlimit=\"10\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M39.2827 36.4818L62.2592 59.4448\" stroke=\"white\" stroke-width=\"1.1533\" stroke-miterlimit=\"10\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M39.2827 36.4818L62.2592 59.4448\" stroke=\"white\" stroke-opacity=\"0.2\" stroke-width=\"1.1533\" stroke-miterlimit=\"10\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M102.096 77.0372L165.838 140.741\" stroke=\"white\" stroke-width=\"1.1533\" stroke-miterlimit=\"10\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M37.0588 12.037L84.1235 59.0741\" stroke=\"white\" stroke-width=\"1.1533\" stroke-miterlimit=\"10\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M154.536 107.407L187.888 140.741\" stroke=\"white\" stroke-width=\"1.1533\" stroke-miterlimit=\"10\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M154.536 107.407L187.888 140.741\" stroke=\"white\" stroke-opacity=\"0.2\" stroke-width=\"1.1533\" stroke-miterlimit=\"10\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M65.7793 18.703L130.447 83.1474\" stroke=\"white\" stroke-width=\"1.1533\" stroke-miterlimit=\"10\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M65.7793 18.703L130.447 83.1474\" stroke=\"white\" stroke-opacity=\"0.2\" stroke-width=\"1.1533\" stroke-miterlimit=\"10\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M122.294 52.9622L167.321 97.9622\" stroke=\"white\" stroke-width=\"1.1533\" stroke-miterlimit=\"10\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M71.1536 1.85184L104.692 35.3704\" stroke=\"white\" stroke-width=\"1.1533\" stroke-miterlimit=\"10\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M162.317 70.7411L179.735 88.3337\" stroke=\"white\" stroke-width=\"1.1533\" stroke-miterlimit=\"10\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M162.317 70.7411L179.735 88.3337\" stroke=\"white\" stroke-opacity=\"0.2\" stroke-width=\"1.1533\" stroke-miterlimit=\"10\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M98.0212 6.48148L142.307 50.9259\" stroke=\"white\" stroke-width=\"1.1533\" stroke-miterlimit=\"10\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M98.0212 6.48148L142.307 50.9259\" stroke=\"white\" stroke-opacity=\"0.2\" stroke-width=\"1.1533\" stroke-miterlimit=\"10\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M153.239 39.6304L163.986 50.3711\" stroke=\"white\" stroke-width=\"1.1533\" stroke-miterlimit=\"10\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M134.338 20.7411L141.75 28.1485\" stroke=\"white\" stroke-width=\"1.1533\" stroke-miterlimit=\"10\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ncg6bk\",layoutDependency:layoutDependency,layoutId:\"KLUNwDTMz\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4fnw7p\",\"data-framer-name\":\"Horizontal\",layoutDependency:layoutDependency,layoutId:\"g95Kfm9Mi\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pbt1af\",layoutDependency:layoutDependency,layoutId:\"kZg_fVES4\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1rmu31g\",\"data-styles-preset\":\"Qfh3_nfxD\",children:\"\u5929\u58E4\u5C0F\u767D\uFF0C\u5F00\u542F\u60A8\u7684\u521B\u65B0\u4E4B\u65C5\uFF01\"})}),className:\"framer-10ano6q\",layoutDependency:layoutDependency,layoutId:\"M77YQebMY\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({rSx02oqZd:{children:(_getLocalizedValue1=getLocalizedValue(\"v1\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1rmu31g\",\"data-styles-preset\":\"Qfh3_nfxD\",children:\"\u5929\u58E4\u5C0F\u767D\uFF0C\u5F00\u542F\u60A8\u7684\u521B\u65B0\u4E4B\u65C5\uFF01\"})})},vFRs3v6iE:{children:(_getLocalizedValue2=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue2!==void 0?_getLocalizedValue2:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1rmu31g\",\"data-styles-preset\":\"Qfh3_nfxD\",style:{\"--framer-text-alignment\":\"center\"},children:\"\u5929\u58E4\u5C0F\u767D\uFF0C\u5F00\u542F\u60A8\u7684\u521B\u65B0\u4E4B\u65C5\uFF01\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-gcdxik\",\"data-framer-name\":\"Vertical\",layoutDependency:layoutDependency,layoutId:\"fjIAUY_Hg\",transformTemplate:transformTemplate,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-b50ozd\",\"data-framer-name\":\"Vertical\",layoutDependency:layoutDependency,layoutId:\"GvfoqsTes\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1w5k57e\",layoutDependency:layoutDependency,layoutId:\"RHXvvza6K\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue3=getLocalizedValue(\"v3\",activeLocale))!==null&&_getLocalizedValue3!==void 0?_getLocalizedValue3:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11wts39\",\"data-styles-preset\":\"H_iLxCvQj\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-aca045ad-3860-4086-a3a0-828046b26171, rgb(31, 1, 80)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"AFW4kxYFw\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-snbmk\",\"data-styles-preset\":\"C_wruWFce\",children:\"\u516C\u53F8\u4ECB\u7ECD\"})})})}),className:\"framer-ds8ku7\",layoutDependency:layoutDependency,layoutId:\"UaMfrNCKu\",style:{\"--extracted-r6o4lv\":\"var(--token-aca045ad-3860-4086-a3a0-828046b26171, rgb(31, 1, 80))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({rSx02oqZd:{children:(_getLocalizedValue4=getLocalizedValue(\"v4\",activeLocale))!==null&&_getLocalizedValue4!==void 0?_getLocalizedValue4:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11wts39\",\"data-styles-preset\":\"H_iLxCvQj\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-aca045ad-3860-4086-a3a0-828046b26171, rgb(31, 1, 80)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"AFW4kxYFw\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-snbmk\",\"data-styles-preset\":\"C_wruWFce\",children:\"\u516C\u53F8\u4ECB\u7ECD\"})})})})},vFRs3v6iE:{children:(_getLocalizedValue5=getLocalizedValue(\"v5\",activeLocale))!==null&&_getLocalizedValue5!==void 0?_getLocalizedValue5:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11wts39\",\"data-styles-preset\":\"H_iLxCvQj\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-aca045ad-3860-4086-a3a0-828046b26171, rgb(31, 1, 80)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"AFW4kxYFw\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-snbmk\",\"data-styles-preset\":\"C_wruWFce\",children:\"\u516C\u53F8\u4ECB\u7ECD\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue6=getLocalizedValue(\"v6\",activeLocale))!==null&&_getLocalizedValue6!==void 0?_getLocalizedValue6:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11wts39\",\"data-styles-preset\":\"H_iLxCvQj\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-aca045ad-3860-4086-a3a0-828046b26171, rgb(31, 1, 80)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://xlab.tianrang.com/\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-snbmk\",\"data-styles-preset\":\"C_wruWFce\",children:\"\u5929\u58E4 Xlab\"})})})}),className:\"framer-bl4nou\",layoutDependency:layoutDependency,layoutId:\"GcvMSxzqU\",style:{\"--extracted-r6o4lv\":\"var(--token-aca045ad-3860-4086-a3a0-828046b26171, rgb(31, 1, 80))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({rSx02oqZd:{children:(_getLocalizedValue7=getLocalizedValue(\"v7\",activeLocale))!==null&&_getLocalizedValue7!==void 0?_getLocalizedValue7:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11wts39\",\"data-styles-preset\":\"H_iLxCvQj\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-aca045ad-3860-4086-a3a0-828046b26171, rgb(31, 1, 80)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://xlab.tianrang.com/\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-snbmk\",\"data-styles-preset\":\"C_wruWFce\",children:\"\u5929\u58E4 Xlab\"})})})})},vFRs3v6iE:{children:(_getLocalizedValue8=getLocalizedValue(\"v8\",activeLocale))!==null&&_getLocalizedValue8!==void 0?_getLocalizedValue8:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11wts39\",\"data-styles-preset\":\"H_iLxCvQj\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-aca045ad-3860-4086-a3a0-828046b26171, rgb(31, 1, 80)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://xlab.tianrang.com/\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-snbmk\",\"data-styles-preset\":\"C_wruWFce\",children:\"\u5929\u58E4 Xlab\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue9=getLocalizedValue(\"v9\",activeLocale))!==null&&_getLocalizedValue9!==void 0?_getLocalizedValue9:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11wts39\",\"data-styles-preset\":\"H_iLxCvQj\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-aca045ad-3860-4086-a3a0-828046b26171, rgb(31, 1, 80)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://xlab.tianrang.com/media\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-snbmk\",\"data-styles-preset\":\"C_wruWFce\",children:\"\u5A92\u4F53\u4E2D\u5FC3\"})})})}),className:\"framer-1mnytjq\",layoutDependency:layoutDependency,layoutId:\"cj5R6MKNg\",style:{\"--extracted-r6o4lv\":\"var(--token-aca045ad-3860-4086-a3a0-828046b26171, rgb(31, 1, 80))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({rSx02oqZd:{children:(_getLocalizedValue10=getLocalizedValue(\"v10\",activeLocale))!==null&&_getLocalizedValue10!==void 0?_getLocalizedValue10:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11wts39\",\"data-styles-preset\":\"H_iLxCvQj\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-aca045ad-3860-4086-a3a0-828046b26171, rgb(31, 1, 80)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://xlab.tianrang.com/media\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-snbmk\",\"data-styles-preset\":\"C_wruWFce\",children:\"\u5A92\u4F53\u4E2D\u5FC3\"})})})})},vFRs3v6iE:{children:(_getLocalizedValue11=getLocalizedValue(\"v11\",activeLocale))!==null&&_getLocalizedValue11!==void 0?_getLocalizedValue11:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11wts39\",\"data-styles-preset\":\"H_iLxCvQj\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-aca045ad-3860-4086-a3a0-828046b26171, rgb(31, 1, 80)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://xlab.tianrang.com/media\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-snbmk\",\"data-styles-preset\":\"C_wruWFce\",children:\"\u5A92\u4F53\u4E2D\u5FC3\"})})})})}},baseVariant,gestureVariant)})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-xnlgmq\",\"data-framer-name\":\"Vertical\",layoutDependency:layoutDependency,layoutId:\"puUb0kgDl\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-8leamb\",layoutDependency:layoutDependency,layoutId:\"pYBE7lPnX\"})})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-n1hv9d\",\"data-framer-name\":\"Icons\",layoutDependency:layoutDependency,layoutId:\"vzrskssBv\",transformTemplate:transformTemplate,children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"hNsL0OkiY\"},openInNewTab:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-9v615 framer-1wjbvkq\",layoutDependency:layoutDependency,layoutId:\"TwVIgAui_\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-r3eba7-container\",layoutDependency:layoutDependency,layoutId:\"FAhfo6HQW-container\",children:/*#__PURE__*/_jsx(Iconoir,{color:'var(--token-aca045ad-3860-4086-a3a0-828046b26171, rgb(31, 1, 80)) /* {\"name\":\"Primary\"} */',height:\"100%\",iconSearch:\"home\",iconSelection:\"RssFeedSquared\",id:\"FAhfo6HQW\",layoutId:\"FAhfo6HQW\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({rSx02oqZd:{onClick:onClickbikweo}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.toutiao.com/c/user/token/MS4wLjABAAAAI2cR0E1sVic1ScE1EIAKR6sBfpWJ4UlwVqIFi7J6KLI/?source=author_home\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-tcyj9f framer-1wjbvkq\",layoutDependency:layoutDependency,layoutId:\"L3bnC0HcK\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-7eig2x-container\",layoutDependency:layoutDependency,layoutId:\"lTp9GByOD-container\",children:/*#__PURE__*/_jsx(Iconoir,{color:'var(--token-aca045ad-3860-4086-a3a0-828046b26171, rgb(31, 1, 80)) /* {\"name\":\"Primary\"} */',height:\"100%\",iconSearch:\"rss-feed-tag\",iconSelection:\"RssFeedSquared\",id:\"lTp9GByOD\",layoutId:\"lTp9GByOD\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({rSx02oqZd:{onClick:onClickbikweo}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.zhipin.com/gongsi/0e79b82fab0ddae81X1829u1.html\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-154cutx framer-1wjbvkq\",layoutDependency:layoutDependency,layoutId:\"oj42AgXdb\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1iyce7f-container\",layoutDependency:layoutDependency,layoutId:\"R8ODHkYpY-container\",children:/*#__PURE__*/_jsx(Iconoir,{color:'var(--token-aca045ad-3860-4086-a3a0-828046b26171, rgb(31, 1, 80)) /* {\"name\":\"Primary\"} */',height:\"100%\",iconSearch:\"group\",iconSelection:\"Home\",id:\"R8ODHkYpY\",layoutId:\"R8ODHkYpY\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({rSx02oqZd:{iconSelection:\"City\"}},baseVariant,gestureVariant)})})})})]})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:285,intrinsicWidth:255,pixelHeight:285,pixelWidth:255,positionX:\"left\",positionY:\"center\",src:\"https://framerusercontent.com/images/TeGourAQxH3TRE0Cdv1S9mX3ww.png\"},className:\"framer-155fy1e\",\"data-framer-name\":\"\u56FE\u7247_1_\u62F7\u8D1D\",layoutDependency:layoutDependency,layoutId:\"Xz9jIPzAw\",...addPropertyOverrides({rSx02oqZd:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:285,intrinsicWidth:256,pixelHeight:285,pixelWidth:256,positionX:\"left\",positionY:\"center\",src:\"https://framerusercontent.com/images/cpNi8hm77rqyzUMRtWLmJJwYpXg.png\"}},vFRs3v6iE:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:285,intrinsicWidth:512,pixelHeight:285,pixelWidth:512,positionX:\"left\",positionY:\"center\",src:\"https://framerusercontent.com/images/hIbq01ouRvYX3CR0CfXmsQhK24.png\"}}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-dh0xx9-container\",layoutDependency:layoutDependency,layoutId:\"VGLDTvU7T-container\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<a href=\"https://www.producthunt.com/posts/tianrang-xiaobai?utm_source=badge-featured&utm_medium=badge&utm_souce=badge-tianrang&#0045;xiaobai\" target=\"_blank\"><img src=\"https://api.producthunt.com/widgets/embed-image/v1/featured.svg?post_id=424070&theme=dark\" alt=\"Tianrang&#0032;Xiaobai - Create&#0032;personalized&#0032;AI&#0032;applications&#0032;with&#0032;zero&#0032;code | Product Hunt\" style=\"width: 250px; height: 54px;\" width=\"250\" height=\"54\" /></a>',id:\"VGLDTvU7T\",layoutId:\"VGLDTvU7T\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:'<a href=\"https://www.producthunt.com/posts/tianrang-xiaobai?utm_source=badge-featured&utm_medium=badge&utm_souce=badge-tianrang&#0045;xiaobai\" target=\"_blank\"><img src=\"https://api.producthunt.com/widgets/embed-image/v1/featured.svg?post_id=424070&theme=dark\" alt=\"Tianrang&#0032;Xiaobai - Create&#0032;personalized&#0032;AI&#0032;applications&#0032;with&#0032;zero&#0032;code | Product Hunt\" style=\"width: 250px; height: 54px;\" width=\"250\" height=\"54\" /></a>',width:\"100%\"})}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14vaxo6\",\"data-framer-name\":\"Copyright\",layoutDependency:layoutDependency,layoutId:\"G8rUE1IzK\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11wts39\",\"data-styles-preset\":\"H_iLxCvQj\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-aca045ad-3860-4086-a3a0-828046b26171, rgb(31, 1, 80)))\"},children:\"\u670D\u52A1\u90AE\u7BB1\uFF1Axiaobai@tianrang-inc.com     \"}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-14oqf0x\",\"data-styles-preset\":\"AgGSDPpx7\",style:{\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-aca045ad-3860-4086-a3a0-828046b26171, rgb(31, 1, 80)))\"},children:\"\\xa9 2023 \u5929\u58E4 \uFF5C\u6CAAICP\u590716033007\u53F7-1\uFF5C        \u6CAA\u516C\u7F51\u5B89\u590731010402333443\u53F7\uFF5C \u7248\u6743\u6240\u6709 \u4E0A\u6D77\u5929\u58E4\u667A\u80FD\u79D1\u6280\u6709\u9650\u516C\u53F8\"})]}),className:\"framer-j5thxb\",layoutDependency:layoutDependency,layoutId:\"Q0zFSCgGq\",style:{\"--extracted-2gxw0f\":\"var(--token-aca045ad-3860-4086-a3a0-828046b26171, rgb(31, 1, 80))\",\"--extracted-r6o4lv\":\"var(--token-aca045ad-3860-4086-a3a0-828046b26171, rgb(31, 1, 80))\",\"--framer-link-hover-text-color\":\"rgba(153, 153, 153, 0.6)\",\"--framer-link-text-decoration\":\"none\",\"--framer-paragraph-spacing\":\"0px\"},variants:{rSx02oqZd:{\"--extracted-1iakedh\":\"var(--token-aca045ad-3860-4086-a3a0-828046b26171, rgb(31, 1, 80))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({rSx02oqZd:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-14oqf0x\",\"data-styles-preset\":\"AgGSDPpx7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-aca045ad-3860-4086-a3a0-828046b26171, rgb(31, 1, 80)))\"},children:\"\u670D\u52A1\u90AE\u7BB1\uFF1Axiaobai@tianrang-inc.com       \"}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-14oqf0x\",\"data-styles-preset\":\"AgGSDPpx7\",style:{\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-aca045ad-3860-4086-a3a0-828046b26171, rgb(31, 1, 80)))\"},children:\"\\xa9 2023 \u5929\u58E4 \uFF5C\u6CAAICP\u590716033007\u53F7-1\uFF5C        \u6CAA\u516C\u7F51\u5B89\u590731010402333443\u53F7\"}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-14oqf0x\",\"data-styles-preset\":\"AgGSDPpx7\",style:{\"--framer-text-color\":\"var(--extracted-1iakedh, var(--token-aca045ad-3860-4086-a3a0-828046b26171, rgb(31, 1, 80)))\"},children:\"\u7248\u6743\u6240\u6709\u4E0A\u6D77\u5929\u58E4\u667A\u80FD\u79D1\u6280\u6709\u9650\u516C\u53F8\"})]})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:20,intrinsicWidth:18,pixelHeight:40,pixelWidth:36,src:\"https://framerusercontent.com/images/njSee7rjJyfA7hcx1wsvbEaVeI.png\"},className:\"framer-1v4wfe3\",\"data-framer-name\":\"police\",layoutDependency:layoutDependency,layoutId:\"ZUPgAKpH9\",...addPropertyOverrides({rSx02oqZd:{transformTemplate:transformTemplate1}},baseVariant,gestureVariant)})]})]}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-10zi6na-container\",layoutDependency:layoutDependency,layoutId:\"L5m7XJGc8-container\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<a href=\"https://www.producthunt.com/posts/tianrang-xiaobai?utm_source=badge-featured&utm_medium=badge&utm_souce=badge-tianrang&#0045;xiaobai\" target=\"_blank\"><img src=\"https://api.producthunt.com/widgets/embed-image/v1/featured.svg?post_id=424070&theme=dark\" alt=\"Tianrang&#0032;Xiaobai - Create&#0032;personalized&#0032;AI&#0032;applications&#0032;with&#0032;zero&#0032;code | Product Hunt\" style=\"width: 250px; height: 54px;\" width=\"250\" height=\"54\" /></a>',id:\"L5m7XJGc8\",layoutId:\"L5m7XJGc8\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:'<a href=\"https://www.producthunt.com/posts/tianrang-xiaobai?utm_source=badge-featured&utm_medium=badge&utm_souce=badge-tianrang&#0045;xiaobai\" target=\"_blank\"><img src=\"https://api.producthunt.com/widgets/embed-image/v1/featured.svg?post_id=424070&theme=dark\" alt=\"Tianrang&#0032;Xiaobai - Create&#0032;personalized&#0032;AI&#0032;applications&#0032;with&#0032;zero&#0032;code | Product Hunt\" style=\"width: 250px; height: 54px;\" width=\"250\" height=\"54\" /></a>',width:\"100%\"})}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-14oqf0x\",\"data-styles-preset\":\"AgGSDPpx7\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-aca045ad-3860-4086-a3a0-828046b26171, rgb(31, 1, 80)))\"},children:\"\u670D\u52A1\u90AE\u7BB1\uFF1Axiaobai@tianrang-inc.com\"}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-14oqf0x\",\"data-styles-preset\":\"AgGSDPpx7\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-aca045ad-3860-4086-a3a0-828046b26171, rgb(31, 1, 80)))\"},children:\"\\xa9 2023 \u5929\u58E4 \uFF5C\u6CAA ICP\u590716033007\u53F7-1\"}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-14oqf0x\",\"data-styles-preset\":\"AgGSDPpx7\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1iakedh, var(--token-aca045ad-3860-4086-a3a0-828046b26171, rgb(31, 1, 80)))\"},children:\"\u6CAA\u516C\u7F51\u5B89\u590731010402333443\u53F7\"}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-14oqf0x\",\"data-styles-preset\":\"AgGSDPpx7\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-14qxiz, var(--token-aca045ad-3860-4086-a3a0-828046b26171, rgb(31, 1, 80)))\"},children:\"\u7248\u6743\u6240\u6709 \u4E0A\u6D77\u5929\u58E4\u667A\u80FD\u79D1\u6280\u6709\u9650\u516C\u53F8\"})]}),className:\"framer-12v82ar\",layoutDependency:layoutDependency,layoutId:\"riOsHOTAc\",style:{\"--extracted-14qxiz\":\"var(--token-aca045ad-3860-4086-a3a0-828046b26171, rgb(31, 1, 80))\",\"--extracted-1iakedh\":\"var(--token-aca045ad-3860-4086-a3a0-828046b26171, rgb(31, 1, 80))\",\"--extracted-2gxw0f\":\"var(--token-aca045ad-3860-4086-a3a0-828046b26171, rgb(31, 1, 80))\",\"--extracted-r6o4lv\":\"var(--token-aca045ad-3860-4086-a3a0-828046b26171, rgb(31, 1, 80))\",\"--framer-link-hover-text-color\":\"rgba(153, 153, 153, 0.6)\",\"--framer-link-text-decoration\":\"none\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=['.framer-boe7W [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-boe7W .framer-1wjbvkq { display: block; }\",\".framer-boe7W .framer-zjayxc { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; padding: 60px 30px 30px 30px; position: relative; width: 1250px; }\",\".framer-boe7W .framer-6tb819 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 900px; }\",\".framer-boe7W .framer-ra1lzx { align-content: center; align-items: center; bottom: -35px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: absolute; right: -244px; top: -114px; width: auto; z-index: 1; }\",\".framer-boe7W .framer-1hf56tj { flex: none; height: 288px; position: relative; width: 288px; }\",\".framer-boe7W .framer-f4aqh8 { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; justify-content: flex-start; left: -170px; overflow: visible; padding: 0px 0px 0px 0px; position: absolute; top: -150px; width: auto; z-index: 1; }\",\".framer-boe7W .framer-imprv2 { flex: none; height: 306px; position: relative; width: 329px; }\",\".framer-boe7W .framer-1ncg6bk { align-content: start; align-items: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: auto; justify-content: flex-start; max-width: 900px; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-boe7W .framer-4fnw7p { align-content: start; align-items: start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-boe7W .framer-pbt1af { align-content: start; align-items: start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: auto; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1px; z-index: 2; }\",\".framer-boe7W .framer-10ano6q, .framer-boe7W .framer-ds8ku7, .framer-boe7W .framer-bl4nou, .framer-boe7W .framer-1mnytjq { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-boe7W .framer-gcdxik { align-content: start; align-items: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-boe7W .framer-b50ozd, .framer-boe7W .framer-xnlgmq { align-content: start; align-items: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-boe7W .framer-1w5k57e { align-content: start; align-items: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-boe7W .framer-8leamb { align-content: start; align-items: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; min-height: 28px; min-width: 70px; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-boe7W .framer-n1hv9d { align-content: start; align-items: start; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: auto; justify-content: flex-end; min-width: 450px; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-boe7W .framer-9v615, .framer-boe7W .framer-tcyj9f, .framer-boe7W .framer-154cutx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px 0px 0px 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-boe7W .framer-r3eba7-container, .framer-boe7W .framer-7eig2x-container, .framer-boe7W .framer-1iyce7f-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 34px); position: relative; width: 30px; }\",\".framer-boe7W .framer-155fy1e { align-content: center; align-items: center; aspect-ratio: 1.793859649122807 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 97px); justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 173px; }\",\".framer-boe7W .framer-dh0xx9-container { flex: none; height: 63px; left: 95px; position: absolute; top: calc(50.27322404371587% - 63px / 2); width: 260px; z-index: 1; }\",\".framer-boe7W .framer-14vaxo6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-boe7W .framer-j5thxb { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-boe7W .framer-1v4wfe3 { aspect-ratio: 0.9 / 1; bottom: 4px; flex: none; height: var(--framer-aspect-ratio-supported, 18px); left: 247px; overflow: visible; position: absolute; width: 16px; z-index: 1; }\",\".framer-boe7W .framer-10zi6na-container { flex: none; height: 63px; position: relative; width: 260px; z-index: 1; }\",\".framer-boe7W .framer-12v82ar { flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 309px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-boe7W .framer-zjayxc, .framer-boe7W .framer-6tb819, .framer-boe7W .framer-ra1lzx, .framer-boe7W .framer-f4aqh8, .framer-boe7W .framer-1ncg6bk, .framer-boe7W .framer-pbt1af, .framer-boe7W .framer-gcdxik, .framer-boe7W .framer-b50ozd, .framer-boe7W .framer-1w5k57e, .framer-boe7W .framer-xnlgmq, .framer-boe7W .framer-8leamb, .framer-boe7W .framer-n1hv9d, .framer-boe7W .framer-9v615, .framer-boe7W .framer-tcyj9f, .framer-boe7W .framer-154cutx, .framer-boe7W .framer-155fy1e { gap: 0px; } .framer-boe7W .framer-zjayxc > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-boe7W .framer-zjayxc > :first-child, .framer-boe7W .framer-6tb819 > :first-child, .framer-boe7W .framer-ra1lzx > :first-child, .framer-boe7W .framer-f4aqh8 > :first-child, .framer-boe7W .framer-1ncg6bk > :first-child, .framer-boe7W .framer-pbt1af > :first-child, .framer-boe7W .framer-b50ozd > :first-child, .framer-boe7W .framer-xnlgmq > :first-child, .framer-boe7W .framer-8leamb > :first-child { margin-top: 0px; } .framer-boe7W .framer-zjayxc > :last-child, .framer-boe7W .framer-6tb819 > :last-child, .framer-boe7W .framer-ra1lzx > :last-child, .framer-boe7W .framer-f4aqh8 > :last-child, .framer-boe7W .framer-1ncg6bk > :last-child, .framer-boe7W .framer-pbt1af > :last-child, .framer-boe7W .framer-b50ozd > :last-child, .framer-boe7W .framer-xnlgmq > :last-child, .framer-boe7W .framer-8leamb > :last-child { margin-bottom: 0px; } .framer-boe7W .framer-6tb819 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-boe7W .framer-ra1lzx > *, .framer-boe7W .framer-f4aqh8 > *, .framer-boe7W .framer-b50ozd > *, .framer-boe7W .framer-xnlgmq > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-boe7W .framer-1ncg6bk > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-boe7W .framer-pbt1af > *, .framer-boe7W .framer-8leamb > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-boe7W .framer-gcdxik > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-boe7W .framer-gcdxik > :first-child, .framer-boe7W .framer-1w5k57e > :first-child, .framer-boe7W .framer-n1hv9d > :first-child, .framer-boe7W .framer-9v615 > :first-child, .framer-boe7W .framer-tcyj9f > :first-child, .framer-boe7W .framer-154cutx > :first-child, .framer-boe7W .framer-155fy1e > :first-child { margin-left: 0px; } .framer-boe7W .framer-gcdxik > :last-child, .framer-boe7W .framer-1w5k57e > :last-child, .framer-boe7W .framer-n1hv9d > :last-child, .framer-boe7W .framer-9v615 > :last-child, .framer-boe7W .framer-tcyj9f > :last-child, .framer-boe7W .framer-154cutx > :last-child, .framer-boe7W .framer-155fy1e > :last-child { margin-right: 0px; } .framer-boe7W .framer-1w5k57e > * { margin: 0px; margin-left: calc(25px / 2); margin-right: calc(25px / 2); } .framer-boe7W .framer-n1hv9d > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-boe7W .framer-9v615 > *, .framer-boe7W .framer-tcyj9f > *, .framer-boe7W .framer-154cutx > *, .framer-boe7W .framer-155fy1e > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-boe7W.framer-v-8uewik .framer-zjayxc { padding: 60px 60px 30px 60px; width: 810px; }\",\".framer-boe7W.framer-v-8uewik .framer-6tb819 { order: 0; width: 100%; }\",\".framer-boe7W.framer-v-8uewik .framer-ra1lzx { right: 0px; }\",\".framer-boe7W.framer-v-8uewik .framer-1hf56tj { aspect-ratio: 1 / 1; height: 220px; width: var(--framer-aspect-ratio-supported, 220px); }\",\".framer-boe7W.framer-v-8uewik .framer-f4aqh8 { left: 0px; }\",\".framer-boe7W.framer-v-8uewik .framer-imprv2 { aspect-ratio: 1.0751633986928104 / 1; height: var(--framer-aspect-ratio-supported, 223px); width: 240px; }\",\".framer-boe7W.framer-v-8uewik .framer-1ncg6bk { gap: 26px; order: 1; }\",\".framer-boe7W.framer-v-8uewik .framer-4fnw7p, .framer-boe7W.framer-v-8uewik .framer-ds8ku7 { order: 0; }\",\".framer-boe7W.framer-v-8uewik .framer-gcdxik { gap: 90px; }\",\".framer-boe7W.framer-v-8uewik .framer-bl4nou, .framer-boe7W.framer-v-8uewik .framer-155fy1e { order: 1; }\",\".framer-boe7W.framer-v-8uewik .framer-1mnytjq { order: 2; }\",\".framer-boe7W.framer-v-8uewik .framer-n1hv9d { min-width: unset; }\",\".framer-boe7W.framer-v-8uewik .framer-dh0xx9-container { left: 98px; order: 2; top: calc(50.092764378478684% - 63px / 2); }\",\".framer-boe7W.framer-v-8uewik .framer-14vaxo6 { order: 3; }\",\".framer-boe7W.framer-v-8uewik .framer-1v4wfe3 { bottom: unset; left: 248px; top: 51%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-boe7W.framer-v-8uewik .framer-1ncg6bk, .framer-boe7W.framer-v-8uewik .framer-gcdxik { gap: 0px; } .framer-boe7W.framer-v-8uewik .framer-1ncg6bk > * { margin: 0px; margin-bottom: calc(26px / 2); margin-top: calc(26px / 2); } .framer-boe7W.framer-v-8uewik .framer-1ncg6bk > :first-child { margin-top: 0px; } .framer-boe7W.framer-v-8uewik .framer-1ncg6bk > :last-child { margin-bottom: 0px; } .framer-boe7W.framer-v-8uewik .framer-gcdxik > * { margin: 0px; margin-left: calc(90px / 2); margin-right: calc(90px / 2); } .framer-boe7W.framer-v-8uewik .framer-gcdxik > :first-child { margin-left: 0px; } .framer-boe7W.framer-v-8uewik .framer-gcdxik > :last-child { margin-right: 0px; } }\",\".framer-boe7W.framer-v-ilq3p8 .framer-zjayxc { padding: 30px 30px 30px 30px; width: 390px; }\",\".framer-boe7W.framer-v-ilq3p8 .framer-6tb819 { width: 100%; }\",\".framer-boe7W.framer-v-ilq3p8 .framer-ra1lzx { right: -50px; top: -30px; }\",\".framer-boe7W.framer-v-ilq3p8 .framer-1hf56tj { aspect-ratio: 1 / 1; height: 150px; width: var(--framer-aspect-ratio-supported, 150px); z-index: 0; }\",\".framer-boe7W.framer-v-ilq3p8 .framer-f4aqh8 { left: -50px; top: -50px; }\",\".framer-boe7W.framer-v-ilq3p8 .framer-imprv2 { aspect-ratio: 1.0751633986928104 / 1; height: var(--framer-aspect-ratio-supported, 140px); width: 150px; }\",\".framer-boe7W.framer-v-ilq3p8 .framer-1ncg6bk, .framer-boe7W.framer-v-ilq3p8 .framer-1w5k57e { align-content: center; align-items: center; }\",\".framer-boe7W.framer-v-ilq3p8 .framer-4fnw7p { flex-direction: column; }\",\".framer-boe7W.framer-v-ilq3p8 .framer-pbt1af { align-content: center; align-items: center; flex: none; gap: 30px; order: 1; width: 100%; }\",\".framer-boe7W.framer-v-ilq3p8 .framer-10ano6q { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-boe7W.framer-v-ilq3p8 .framer-gcdxik { align-content: center; align-items: center; flex-direction: column; gap: 5px; justify-content: center; }\",\".framer-boe7W.framer-v-ilq3p8 .framer-8leamb { align-content: center; align-items: center; gap: 5px; }\",\".framer-boe7W.framer-v-ilq3p8 .framer-n1hv9d { align-content: center; align-items: center; align-self: unset; height: min-content; justify-content: center; min-width: unset; order: 0; padding: 0px 0px 15px 0px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-boe7W.framer-v-ilq3p8 .framer-4fnw7p, .framer-boe7W.framer-v-ilq3p8 .framer-pbt1af, .framer-boe7W.framer-v-ilq3p8 .framer-gcdxik, .framer-boe7W.framer-v-ilq3p8 .framer-8leamb { gap: 0px; } .framer-boe7W.framer-v-ilq3p8 .framer-4fnw7p > *, .framer-boe7W.framer-v-ilq3p8 .framer-4fnw7p > :first-child, .framer-boe7W.framer-v-ilq3p8 .framer-4fnw7p > :last-child { margin: 0px; } .framer-boe7W.framer-v-ilq3p8 .framer-pbt1af > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-boe7W.framer-v-ilq3p8 .framer-pbt1af > :first-child, .framer-boe7W.framer-v-ilq3p8 .framer-gcdxik > :first-child, .framer-boe7W.framer-v-ilq3p8 .framer-8leamb > :first-child { margin-top: 0px; } .framer-boe7W.framer-v-ilq3p8 .framer-pbt1af > :last-child, .framer-boe7W.framer-v-ilq3p8 .framer-gcdxik > :last-child, .framer-boe7W.framer-v-ilq3p8 .framer-8leamb > :last-child { margin-bottom: 0px; } .framer-boe7W.framer-v-ilq3p8 .framer-gcdxik > *, .framer-boe7W.framer-v-ilq3p8 .framer-8leamb > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 395.5\n * @framerIntrinsicWidth 1250\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"rSx02oqZd\":{\"layout\":[\"fixed\",\"auto\"]},\"vFRs3v6iE\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"SyjIymI9j\":\"image\"}\n * @framerImmutableVariables true\n */const FramerglKb8mYAl=withCSS(Component,css,\"framer-boe7W\");export default FramerglKb8mYAl;FramerglKb8mYAl.displayName=\"Footer\";FramerglKb8mYAl.defaultProps={height:395.5,width:1250};addPropertyControls(FramerglKb8mYAl,{variant:{options:[\"Kzwv87CA5\",\"rSx02oqZd\",\"vFRs3v6iE\"],optionTitles:[\"Desktop\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},SyjIymI9j:{__defaultAssetReference:\"data:framer/asset-reference,tPyvzcKVM9RD1QwaJz3mPBfEuAw.jpg?originalFilename=70.-Honeydew+%282%29.jpg&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage}});addFonts(FramerglKb8mYAl,[...IconoirFonts,...EmbedFonts,...sharedStyle.fonts,...sharedStyle1.fonts,...sharedStyle2.fonts,...sharedStyle3.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerglKb8mYAl\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"SyjIymI9j\\\":\\\"image\\\"}\",\"framerIntrinsicHeight\":\"395.5\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1250\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rSx02oqZd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vFRs3v6iE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./glKb8mYAl.map"],
  "mappings": "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",
  "names": ["fontStore", "fonts", "css", "className", "Embed", "type", "url", "html", "p", "EmbedURL", "EmbedHTML", "Instructions", "addPropertyControls", "ControlType", "props", "emptyStateStyle", "centerTextStyle", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "ref", "pe", "hasScript", "div", "executeScripts", "htmlStyle", "node", "script", "name", "value", "child", "containerStyles", "u", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "glKb8mYAl_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v10", "v11", "v2", "v3", "v4", "v5", "v6", "v7", "v8", "v9", "v0", "p", "x", "motion", "v1", "v2", "v3", "Link", "v4", "v5", "v6", "v7", "v8", "v9", "v10", "v11", "__FramerMetadata__", "MotionDivWithFX", "withFX", "motion", "IconoirFonts", "getFonts", "Icon", "EmbedFonts", "Embed", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "valuesByLocaleId", "glKb8mYAl_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "toResponsiveImage", "animation", "transition1", "animation1", "transformTemplate", "_", "t", "animation2", "animation3", "transformTemplate1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "image", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "SyjIymI9j", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onClickbikweo", "args", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "_getLocalizedValue", "_getLocalizedValue1", "_getLocalizedValue2", "_getLocalizedValue3", "_getLocalizedValue4", "_getLocalizedValue5", "_getLocalizedValue6", "_getLocalizedValue7", "_getLocalizedValue8", "_getLocalizedValue9", "_getLocalizedValue10", "_getLocalizedValue11", "LayoutGroup", "motion", "cx", "u", "Image2", "SVG", "RichText", "x", "MotionDivWithFX", "Link", "Icon", "Embed", "css", "FramerglKb8mYAl", "withCSS", "glKb8mYAl_default", "addPropertyControls", "ControlType", "addFonts", "IconoirFonts", "EmbedFonts", "fonts"]
}
