\u7279\u6b8a\u6a19\u8a18 *\/\n var money = '\\u0024';\n\n var allVenues = [\n { type: 'business', name: '\u6c11\u6b0a\u5275\u65b0\u4e2d\u5fc3\uff1a21F \u6703\u8b70\u5ba4', capMax: 16, weekdayPrice: 350, weekendPrice: 500 },\n { type: 'business', name: '\u6c11\u6b0a\u5275\u65b0\u4e2d\u5fc3\uff1a21F VIP\u8a0e\u8ad6\u5ba4', capMax: 4, weekdayPrice: 200, weekendPrice: 200 },\n { type: 'business', name: '\u6c11\u6b0a\u5546\u52d9\u4e00\u9928\uff1a27F \u6703\u8b70\u5ba4', capMax: 16, weekdayPrice: 350, weekendPrice: 500 },\n { type: 'business', name: '\u6c11\u6b0a\u5546\u52d9\u4e00\u9928\uff1a27F \u516c\u5171\u7a7a\u9593', capMax: 20, weekdayPrice: 350, weekendPrice: 500 },\n { type: 'business', name: '\u56db\u7dad\u9928\uff1a12F \u6703\u8b70\u5ba4', capMax: 12, weekdayPrice: 500, weekendPrice: 500 },\n { type: 'classroom', name: '\u6c11\u6b0a\u77e5\u8b58\u4e2d\u5fc3\uff1a20F 20A \u6559\u5ba4', capMax: 48, weekdayPrice: 800, weekendPrice: 1000 },\n { type: 'classroom', name: '\u6c11\u6b0a\u77e5\u8b58\u4e2d\u5fc3\uff1a20F 20B \u6559\u5ba4', capMax: 30, weekdayPrice: 600, weekendPrice: 800 },\n { type: 'classroom', name: '\u6c11\u6b0a\u5275\u65b0\u4e2d\u5fc3\uff1a21F 2101 \u6559\u5ba4', capMax: 30, weekdayPrice: 700, weekendPrice: 1000 },\n { type: 'classroom', name: '\u6c11\u6b0a\u5275\u65b0\u4e2d\u5fc3\uff1a21F 2121 \u6559\u5ba4', capMax: 110, weekdayPrice: 2500, weekendPrice: 2800, isLarge: true },\n { type: 'classroom', name: '\u6c11\u6b0a\u5546\u52d9\u4e8c\u9928\uff1a28F F1\u6559\u5ba4', capMax: 24, weekdayPrice: 500, weekendPrice: 650 },\n { type: 'multi', name: '\u8cea\u6651\u6240\uff1a\u6975\u5149', capMax: 30, weekdayPrice: 1000, weekendPrice: 1000 },\n { type: 'multi', name: '\u8cea\u6651\u6240\uff1a\u771f\u8a00', capMax: 60, weekdayPrice: 3000, weekendPrice: 3000 },\n { type: 'multi', name: '\u8cea\u6651\u6240\uff1a\u99ac\u8cfd\u514b', capMax: 120, weekdayPrice: 5000, weekendPrice: 5000, isLarge: true },\n { type: 'multi', name: '\u8cea\u6651\u6240\uff1a\u5967\u5fb7\u8cfd', capMax: 200, weekdayPrice: 8000, weekendPrice: 8000, isLarge: true },\n { type: 'dining', name: '\u8857\u8da3\uff1a1F \u6d3e\u5c0d\u7aa9', capMax: 20, weekdayPrice: 1000, weekendPrice: 1000 },\n { type: 'dining', name: '\u8857\u8da3\uff1a2F \u8857\u5427', capMax: 50, weekdayPrice: 2000, weekendPrice: 2000 }\n ];\n\n var selectedType = '';\n var selectedVenueIndex = -1;\n var currentDayType = 'weekday';\n\n var dayOptions = root.querySelectorAll('.day-option');\n var typeCards = root.querySelectorAll('.type-card');\n var attendeesInput = document.getElementById('dtq-attendees');\n var hoursInput = document.getElementById('dtq-hours');\n var recArea = document.getElementById('dtq-recommendation-area');\n var venueList = document.getElementById('dtq-venue-list');\n var toggleables = root.querySelectorAll('.toggleable');\n var mealTypeSelect = document.getElementById('dtq-mealType');\n var mealDetailDiv = document.getElementById('dtq-meal-detail');\n var mealPlanSelect = document.getElementById('dtq-mealPlan');\n var mealQtyInput = document.getElementById('dtq-mealQty');\n var finalSummary = document.getElementById('dtq-final-summary');\n var totalVal = document.getElementById('dtq-total-val');\n\n function fmt(n) {\n return money + Number(n).toLocaleString();\n }\n\n function recommendVenues() {\n var attendees = parseInt(attendeesInput.value, 10) || 0;\n if (!selectedType || attendees \u0026lt;= 0) {\n recArea.style.display = 'none';\n return;\n }\n\n var filtered = [];\n for (var i = 0; i \u0026lt; allVenues.length; i++) {\n var v = allVenues[i];\n if (v.type === selectedType \u0026amp;\u0026amp; attendees \u0026lt;= v.capMax) {\n filtered.push({ venue: v, idx: i });\n }\n }\n\n venueList.innerHTML = '';\n selectedVenueIndex = -1;\n\n if (filtered.length === 0) {\n venueList.innerHTML = '\u0026lt;div style=\"padding:10px;color:#e74c3c;\"\u0026gt;\u7121\u7b26\u5408\u4eba\u6578\u4e4b\u5834\u5730\uff0c\u8acb\u5617\u8a66\u8abf\u6574\u51fa\u5e2d\u4eba\u6578\u3002\u0026lt;\/div\u0026gt;';\n } else {\n for (var j = 0; j \u0026lt; filtered.length; j++) {\n (function (item) {\n var v = item.venue;\n var price = (currentDayType === 'weekday') ? v.weekdayPrice : v.weekendPrice;\n var el = document.createElement('div');\n el.className = 'venue-option';\n el.innerHTML =\n '\u0026lt;div\u0026gt;\u0026lt;strong\u0026gt;' + v.name + '\u0026lt;\/strong\u0026gt;\u0026lt;br\u0026gt;\u0026lt;small\u0026gt;\u5bb9\u7d0d\u4e0a\u9650\uff1a' + v.capMax + '\u4eba\u0026lt;\/small\u0026gt;\u0026lt;\/div\u0026gt;' +\n '\u0026lt;div\u0026gt;' + money + price + '\/hr\u0026lt;\/div\u0026gt;';\n el.addEventListener('click', function () {\n selectedVenueIndex = item.idx;\n var opts = root.querySelectorAll('.venue-option');\n for (var k = 0; k \u0026lt; opts.length; k++) opts[k].classList.remove('selected');\n el.classList.add('selected');\n });\n venueList.appendChild(el);\n })(filtered[j]);\n }\n }\n recArea.style.display = 'block';\n }\n\n function updateMealOptions() {\n var type = mealTypeSelect.value;\n mealPlanSelect.innerHTML = '';\n\n if (type === 'none') {\n mealDetailDiv.style.display = 'none';\n return;\n }\n\n mealDetailDiv.style.display = 'block';\n\n if (type === 'dessertbox') {\n var desserts = [\n { n: '\u8f15\u98df\u578b', p: 180 },\n { n: '\u8c50\u5bcc\u578b', p: 280 },\n { n: '\u8c6a\u83ef\u578b', p: 380 }\n ];\n for (var i = 0; i \u0026lt; desserts.length; i++) {\n mealPlanSelect.add(new Option(desserts[i].n + ' (' + money + desserts[i].p + '\/\u76d2)', String(desserts[i].p)));\n }\n } else if (type === 'western' || type === 'chinese') {\n var buffets = [\n { n: '\u7cbe\u7dfb\u65b9\u6848', p: 800 },\n { n: '\u8c6a\u83ef\u65b9\u6848', p: 1200 }\n ];\n for (var b = 0; b \u0026lt; buffets.length; b++) {\n mealPlanSelect.add(new Option(buffets[b].n + ' (' + money + buffets[b].p + '\/\u4eba)', String(buffets[b].p)));\n }\n } else {\n mealPlanSelect.add(new Option('\u4ee3\u8a02\u4fbf\u7576 (\u6e05\u6f54\u8cbb TBD)', '0'));\n }\n }\n\n function nextStep(step) {\n if (step === 2 \u0026amp;\u0026amp; selectedVenueIndex === -1) {\n alert('\u8acb\u5148\u586b\u5beb\u4eba\u6578\u4e26\u9078\u64c7\u4e00\u500b\u63a8\u85a6\u5834\u5730\u3002');\n return;\n }\n\n var contents = root.querySelectorAll('.step-content');\n var indicators = root.querySelectorAll('.step-indicator');\n for (var i = 0; i \u0026lt; contents.length; i++) contents[i].classList.remove('active');\n for (var j = 0; j \u0026lt; indicators.length; j++) indicators[j].classList.remove('active');\n\n var stepEl = document.getElementById('dtq-step-' + step);\n var indEl = document.getElementById('dtq-ind-' + step);\n if (stepEl) stepEl.classList.add('active');\n if (indEl) indEl.classList.add('active');\n }\n\n function calculateTotal() {\n if (selectedVenueIndex === -1) {\n alert('\u8acb\u56de\u5230\u7b2c\u4e00\u6b65\u9078\u64c7\u63a8\u85a6\u5834\u5730\u3002');\n return;\n }\n\n var venue = allVenues[selectedVenueIndex];\n var hours = parseFloat(hoursInput.value) || 0;\n var hPrice = (currentDayType === 'weekday') ? venue.weekdayPrice : venue.weekendPrice;\n var venueSubtotal = hPrice * hours;\n var srvFee = venue.isLarge ? 1500 : 800;\n\n var summary = '\u0026lt;strong\u0026gt;\u9810\u7d04\u985e\u578b\uff1a\u0026lt;\/strong\u0026gt; ' + (currentDayType === 'weekday' ? '\u5e73\u65e5' : '\u5047\u65e5') + '\u0026lt;br\u0026gt;';\n summary += '\u0026lt;strong\u0026gt;\u9810\u7d04\u5834\u5730\uff1a\u0026lt;\/strong\u0026gt; ' + venue.name + '\u0026lt;br\u0026gt;';\n summary += '\u0026lt;strong\u0026gt;\u79df\u501f\u8cbb\u7528\uff1a\u0026lt;\/strong\u0026gt; ' + hours + ' \u5c0f\u6642 x ' + money + hPrice + ' = ' + money + venueSubtotal + '\u0026lt;br\u0026gt;';\n\n if (document.getElementById('dtq-srv-setup').classList.contains('selected')) {\n venueSubtotal += srvFee;\n summary += '\u5354\u52a9\u64fa\u8a2d\uff1a+' + money + srvFee + ' (' + (venue.isLarge ? '\u5927\u578b' : '\u6a19\u6e96') + '\u5834\u5730)\u0026lt;br\u0026gt;';\n }\n if (document.getElementById('dtq-srv-reset').classList.contains('selected')) {\n venueSubtotal += srvFee;\n summary += '\u5354\u52a9\u5fa9\u539f\uff1a+' + money + srvFee + ' (' + (venue.isLarge ? '\u5927\u578b' : '\u6a19\u6e96') + '\u5834\u5730)\u0026lt;br\u0026gt;';\n }\n\n var mPrice = parseInt(mealPlanSelect.value, 10) || 0;\n var mQty = parseInt(mealQtyInput.value, 10) || 0;\n var mTotal = mPrice * mQty;\n if (mTotal \u0026gt; 0) {\n summary += '\u0026lt;strong\u0026gt;\u9910\u98f2\u8cbb\u7528\uff1a\u0026lt;\/strong\u0026gt; ' + money + mPrice + ' x ' + mQty + ' = ' + money + mTotal + '\u0026lt;br\u0026gt;';\n }\n\n var discount = 0;\n for (var d = 1; d \u0026lt;= 4; d++) {\n var discEl = document.getElementById('dtq-disc-' + d);\n if (discEl \u0026amp;\u0026amp; discEl.classList.contains('selected')) discount += 200;\n }\n if (discount \u0026gt; 0) {\n venueSubtotal -= discount;\n summary += '\u0026lt;strong\u0026gt;\u884c\u92b7\u6d3b\u52d5\u6298\u62b5\uff1a\u0026lt;\/strong\u0026gt; -' + money + discount + '\u0026lt;br\u0026gt;';\n }\n\n var subt = venueSubtotal + mTotal;\n var tax = Math.round(subt * 0.05);\n\n finalSummary.innerHTML =\n summary +\n '\u0026lt;hr\u0026gt;\u0026lt;strong\u0026gt;\u672a\u7a05\u5c0f\u8a08\uff1a\u0026lt;\/strong\u0026gt; ' + fmt(subt) +\n '\u0026lt;br\u0026gt;\u0026lt;strong\u0026gt;5% \u71df\u696d\u7a05\uff1a\u0026lt;\/strong\u0026gt; ' + fmt(tax);\n\n totalVal.textContent = fmt(subt + tax);\n nextStep(3);\n }\n\n function initEvents() {\n for (var i = 0; i \u0026lt; dayOptions.length; i++) {\n dayOptions[i].addEventListener('click', function () {\n currentDayType = this.getAttribute('data-day');\n for (var x = 0; x \u0026lt; dayOptions.length; x++) dayOptions[x].classList.remove('active');\n this.classList.add('active');\n recommendVenues();\n });\n }\n\n for (var t = 0; t \u0026lt; typeCards.length; t++) {\n typeCards[t].addEventListener('click', function () {\n selectedType = this.getAttribute('data-type');\n for (var y = 0; y \u0026lt; typeCards.length; y++) typeCards[y].classList.remove('selected');\n this.classList.add('selected');\n recommendVenues();\n });\n }\n\n if (attendeesInput) attendeesInput.addEventListener('input', recommendVenues);\n\n for (var g = 0; g \u0026lt; toggleables.length; g++) {\n toggleables[g].addEventListener('click', function () {\n this.classList.toggle('selected');\n });\n }\n\n if (mealTypeSelect) mealTypeSelect.addEventListener('change', updateMealOptions);\n\n var btn2 = document.getElementById('dtq-btn-to-2');\n var btn1 = document.getElementById('dtq-btn-to-1');\n var btn3 = document.getElementById('dtq-btn-to-3');\n var btnBack = document.getElementById('dtq-btn-back-2');\n var btnPrint = document.getElementById('dtq-btn-print');\n\n if (btn2) btn2.addEventListener('click', function () { nextStep(2); });\n if (btn1) btn1.addEventListener('click', function () { nextStep(1); });\n if (btn3) btn3.addEventListener('click', calculateTotal);\n if (btnBack) btnBack.addEventListener('click', function () { nextStep(2); });\n if (btnPrint) btnPrint.addEventListener('click', function () { window.print(); });\n }\n\n initEvents();\n})();\n\u0026lt;\/script\u0026gt;\n\u0026lt;\/div\u0026gt;","render_as_iframe":false,"selected_app_name":"HtmlApp","app_list":"{\"HtmlApp\":9307780}"}}},{"type":"Slide","id":"f_a6a930f8-5a72-4a94-b41d-ee1147d9abbf","defaultValue":true,"template_name":"html","components":{"slideSettings":{"type":"SlideSettings","id":"f_aeaa1cd4-1d36-4e48-b9b5-d5f10db5c3db","defaultValue":true,"show_nav":true,"show_nav_multi_mode":false,"nameChanged":true,"hidden_section":false,"name":"\u5e94\u7528\u5546\u5e97\u53caHTML\u4ee3\u7801","sync_key":null}}},{"type":"Slide","id":"f_ceb5de5d-2b27-4404-a12d-472f3b5acecc","defaultValue":null,"template_thumbnail_height":"129.60718400000002","template_id":null,"template_name":"featureListE","origin_id":"f_0205454c-13b8-4792-afb8-cd83ea617a72","components":{"slideSettings":{"type":"SlideSettings","id":"f_9d642d72-94ba-419d-be9d-f4ea97b113c9","defaultValue":null,"show_nav":true,"nameChanged":true,"hidden_section":false,"hidden_mobile_section":false,"name":"About","sync_key":null,"layout_variation":"normal","layout_config":{"noTemplateDiff":true,"card_radius":"small","border_thickness":"small","card_padding":"medium","spacing":"l","subtitleReplaceToText":true,"mediaSize":"xs","horizontal_alignment":"center","layout":"E","border":false,"mediaPosition":"left","showButton":false,"border_color":"#cccccc","card":false,"structure":"grid","card_color":"#ffffff","vertical_alignment":"middle","grid_media_position":"top","columns":"three","content_align":"center"}}}},{"type":"Slide","id":"f_74cdb304-f7a9-4f98-878d-42e783b4f0ad","defaultValue":true,"template_thumbnail_height":"157.50862666666666","template_id":null,"template_name":"custom_form","origin_id":"f_ff4bd78d-0e8c-483b-9656-78afe49469e3","components":{"slideSettings":{"type":"SlideSettings","id":"f_e8cf4c1b-f976-4075-9b52-ce9389be7b82","defaultValue":true,"show_nav":true,"hidden_section":false,"name":"Custom Form 5 \u6ca1\u6709\u4e0a\u4f20\u7a97\u53e3","sync_key":null,"layout_variation":null,"display_settings":{"hide_form":false,"show_map":false,"show_info":false}}}},{"type":"Slide","id":"f_14b0883d-056d-4df8-ab27-b1c1223e0141","defaultValue":null,"template_name":"blog1","components":{"slideSettings":{"type":"SlideSettings","id":"f_2e81b716-7ee0-4b72-b2bc-c494a68bd464","defaultValue":null,"show_nav":true,"hidden_section":false,"hidden_mobile_section":false,"name":"Blog","sync_key":null,"layout_variation":"one-smallCircle-long-none","layout_config":{"customized":false,"snippetLength":"short","templateName":"B","imageShape":"square","imageAlignment":"left","structure":"grid","textAlignment":"left","imageSize":"m","columns":3}},"text1":{"type":"RichText","id":"f_e1153650-0893-4e4e-a253-262e9f01cda7","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block; \"\u003e\u003cp\u003e\u5b50\u9875\u9762 The Blog\u003c\/p\u003e\u003c\/div\u003e","backupValue":false,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null},"defaultDataProcessed":true},"text2":{"type":"RichText","id":"f_62cd3a50-ea54-4540-b778-f158f748336a","defaultValue":false,"value":"\u003cdiv\u003eThoughts, musings, and ruminations.\u003c\/div\u003e","backupValue":false,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"background1":{"type":"Background","id":"f_83b61f00-8d94-496c-8e4d-3d1425bcf175","defaultValue":true,"url":"","textColor":"light","backgroundVariation":"","sizing":"cover","videoUrl":"","videoHtml":""},"blog1":{"type":"BlogCollectionComponent","id":40,"defaultValue":null,"app_instance_id":null,"app_id":null,"category":{"id":"all","name":"All Categories"}}}},{"type":"Slide","id":"f_2cbe75b0-d4e1-4f35-bd7d-8ff55530d1f4","defaultValue":null,"template_thumbnail_height":151,"template_id":null,"template_name":"s6_common_section","template_version":"s6","origin_id":"f_8f80b9fa-9563-4ea3-bcdf-51077880fa96","components":{"slideSettings":{"type":"SlideSettings","id":"f_5bfb299f-ae5f-42e4-90b8-6f24b06327d2","defaultValue":null,"show_nav":true,"show_nav_multi_mode":null,"nameChanged":true,"hidden_section":false,"name":"\u81ea\u5b9a\u4e49\u7248\u5757","sync_key":null,"layout_variation":null,"display_settings":{},"padding":{"top":"normal","bottom":"normal"},"layout_config":{"width":"wide","height":"auto"}}}},{"type":"Slide","id":"f_8d93446c-919f-495f-921b-e4f5f927087b","defaultValue":null,"template_thumbnail_height":80,"template_id":null,"template_name":"title","origin_id":"f_432aec76-59f0-4f18-8b18-f2278e20a7b8","components":{"slideSettings":{"type":"SlideSettings","id":"f_0d42efe4-fa1b-482b-946a-edcb066b65ec","defaultValue":null,"show_nav":true,"nameChanged":true,"hidden_section":false,"name":"Headline","sync_key":null,"layout_variation":"center-bottom-full","padding":{"top":"normal","bottom":"normal"}}}},{"type":"Slide","id":"f_d161f846-06ec-4cca-8dda-9b781c53ae95","defaultValue":null,"template_thumbnail_height":"177.22681333333333","template_id":null,"template_name":"hero","template_version":"","origin_id":"f_ed49430a-6806-4c86-b5ca-4989dff8dad4","components":{"slideSettings":{"type":"SlideSettings","id":"f_72c3f80c-bca0-4cc2-a064-563f5d05b5ce","defaultValue":null,"show_nav":true,"nameChanged":true,"hidden_section":false,"name":"\u5934\u6761","sync_key":null,"layout_variation":"button-noImage"}}},{"type":"Slide","id":"f_e24400df-46df-4952-9989-e9b6cc46c8e7","defaultValue":null,"template_thumbnail_height":"151.64521333333334","template_id":null,"template_name":"hero","origin_id":"f_41fab326-79b5-4d58-a693-6f6293687f2d","components":{"slideSettings":{"type":"SlideSettings","id":"f_51c48cf8-5a2d-45a8-a0c2-14ee04de022c","defaultValue":null,"show_nav":true,"hidden_section":false,"name":"A Heroic Section","sync_key":null,"layout_variation":"button-right"}}},{"type":"Slide","id":"f_048b0f02-5ad5-4f36-8ec0-fa08cb6c60d4","defaultValue":null,"template_thumbnail_height":"177.22681333333333","template_id":null,"template_name":"hero","template_version":"s6","origin_id":"f_ed49430a-6806-4c86-b5ca-4989dff8dad4","components":{"slideSettings":{"type":"SlideSettings","id":"f_7cd6b3e5-c8e2-4246-8afa-1cf637708b8d","defaultValue":null,"show_nav":true,"nameChanged":true,"hidden_section":false,"name":"\u5934\u6761","sync_key":null,"layout_variation":"signup-right","padding":{"top":"normal","bottom":"normal"},"layout_config":{"width":"normal","height":"auto"}}}}],"title":"\u65b0\u9875\u9762 2","uid":"b36da4fd-91a2-40b0-be94-7f70cb20877c","path":"\/2","autoPath":true,"authorized":true},{"type":"Page","id":"f_aa2b4550-9ade-4a6d-9975-cc5989504ff4","sections":[{"type":"Slide","id":"f_34f39a36-7587-4bdc-a88a-fb57db9112d6","defaultValue":null,"template_name":"blog1","components":{"slideSettings":{"type":"SlideSettings","id":"f_30483d1a-f9af-435f-abff-49dc55b19e25","defaultValue":null,"show_nav":true,"show_nav_multi_mode":false,"hidden_section":false,"hidden_mobile_section":false,"name":"Blog","sync_key":null,"layout_variation":"one-smallCircle-long-none","layout_config":{"customized":false,"snippetLength":"short","templateName":"B","imageShape":"square","imageAlignment":"left","structure":"grid","textAlignment":"left","imageSize":"m","columns":3}},"text1":{"type":"RichText","id":"f_c8f55639-b532-41d2-b9fe-90a54eb6f63b","defaultValue":false,"value":"\u003cdiv\u003eThe Blog\u003c\/div\u003e","backupValue":false,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"text2":{"type":"RichText","id":"f_b518451f-cac2-4987-b857-c4a2db2c8349","defaultValue":false,"value":"\u003cdiv\u003eThoughts, musings, and ruminations.\u003c\/div\u003e","backupValue":false,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"background1":{"type":"Background","id":"f_b29dc3a8-f3f8-4b59-8b2c-62cd8cade0a5","defaultValue":true,"url":"","textColor":"light","backgroundVariation":"","sizing":"cover","videoUrl":"","videoHtml":""},"blog1":{"type":"BlogCollectionComponent","id":40,"defaultValue":false,"app_instance_id":null,"app_id":null,"category":{"id":450015,"name":"\u4e2d\u6587\u4e2d\u6587"}}}},{"type":"Slide","id":"f_b2e1c486-9758-4929-af0a-071c8737ee71","defaultValue":null,"template_thumbnail_height":99.50666666666666,"template_id":null,"template_name":"slider","origin_id":"f_0524e89d-3495-4a51-bf7b-900cccd84bde","components":{"slideSettings":{"type":"SlideSettings","id":"f_bebd3926-4be4-4c81-8e30-2372facd5722","defaultValue":null,"show_nav":true,"nameChanged":true,"hidden_section":false,"name":"Text + Button Slider","sync_key":null,"layout_variation":"[\"noImage\",\"left\"]","display_settings":{}},"slider1":{"type":"Slider","id":"f_b4e9d265-83b8-4c1b-8c51-87501e03da48","defaultValue":false,"list":[{"type":"RepeatableItem","id":"f_075d3a80-75f1-4a84-93ca-6b7bf91b1d7e","defaultValue":null,"components":{"text1":{"type":"RichText","id":"f_3a49f42b-6bae-42a2-a5a6-a89990ccc21e","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch1 class=\"s-rich-text-wrapper font-size-tag-header-one s-text-font-size-over-40\" style=\"font-size: 48px;\"\u003eHeading Text\u003c\/h1\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"text2":{"type":"RichText","id":"f_d10d7039-0512-4ff4-baf3-65b4b4b073c5","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003cp\u003eLorem ipsum dolor sit amet, consectetuer adipiscing\u003c\/p\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"background1":{"type":"Background","id":"f_453b43a0-90a1-4f6f-a28e-13754977df1b","defaultValue":false,"url":"!","textColor":"dark","backgroundVariation":"","sizing":"cover","userClassName":null,"videoUrl":"","videoHtml":"","storageKey":"https:\/\/images.unsplash.com\/photo-1580894732444-8ecded7900cd?ixlib=rb-4.0.3\u0026q=85\u0026fm=jpg\u0026crop=entropy\u0026cs=srgb","storage":"un","format":null,"h":null,"w":null,"s":null,"useImage":true,"focus":null,"backgroundColor":null},"media1":{"type":"Media","id":"f_6b630fc5-613c-4da6-8de8-7c6ef6f098c4","defaultValue":null,"video":{"type":"Video","id":"f_0e62ae59-f55c-43bd-a575-75382f0eed60","defaultValue":null,"html":"","url":"http:\/\/vimeo.com\/18150336","thumbnail_url":null,"maxwidth":700,"description":null},"image":{"type":"Image","id":"f_a20e934d-c1a0-4a1d-9f7d-fd9a0e735257","defaultValue":false,"link_url":"","thumb_url":"\/images\/icons\/transparent.png","url":"\/images\/icons\/transparent.png","caption":"","description":"","storageKey":null,"storage":null,"storagePrefix":null,"format":null,"h":null,"w":null,"s":null,"new_target":true,"focus":null},"current":"image"},"button1":{"type":"Button","id":"f_e6525f9e-3863-4ae8-a814-cdc6a7e97e48","defaultValue":false,"alignment":"center","text":"Buy Now","size":"medium","style":"","color":"","font":"","url":"http:\/\/strikingly.com","new_target":null,"version":"2"}}},{"type":"RepeatableItem","id":"f_e4954d76-419b-48b7-9acc-f58553be8432","components":{"text1":{"type":"RichText","id":"f_47c24767-f250-4623-af1a-4f85e94e3e17","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch1 class=\"s-text-color-default s-rich-text-wrapper font-size-tag-header-one s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper\" style=\"font-size: 48px;\"\u003e\u003cspan class=\"s-text-color-default\"\u003eHeading Text\u003c\/span\u003e\u003c\/h1\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"text2":{"type":"RichText","id":"f_13448a63-d834-443a-8fd0-7527797fac52","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003cp class=\"s-text-color-default s-text-color-default s-rich-text-wrapper s-rich-text-wrapper\"\u003e\u003cspan class=\"s-text-color-default\"\u003eLorem ipsum dolor sit amet, consectetuer adipiscing\u003c\/span\u003e\u003c\/p\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"background1":{"type":"Background","id":"f_a9c5b68f-cea4-4eef-8fba-fb8010963072","defaultValue":false,"url":"!","textColor":"","backgroundVariation":"","sizing":"","userClassName":"","videoUrl":"","videoHtml":"","storageKey":"https:\/\/images.unsplash.com\/photo-1598908314941-ddc4ef84509e?ixlib=rb-4.0.3\u0026q=85\u0026fm=jpg\u0026crop=entropy\u0026cs=srgb","storage":"un","h":null,"w":null,"s":null,"useImage":true,"focus":null,"backgroundColor":null},"media1":{"type":"Media","id":"f_9b165e82-29ce-40aa-981d-36da7140db20","defaultValue":null,"video":{"type":"Video","id":"f_eaff8d11-848e-47ae-a91b-f2f1f0f133c7","defaultValue":true,"html":"","url":"http:\/\/vimeo.com\/18150336","thumbnail_url":null,"maxwidth":700,"description":null},"image":{"type":"Image","id":"f_8fed7cae-69ae-4d85-856f-79ab441a5ffb","defaultValue":true,"link_url":"","thumb_url":"\/images\/icons\/transparent.png","url":"\/images\/icons\/transparent.png","caption":"","description":"","storageKey":null,"storage":null,"format":null,"h":null,"w":null,"s":null,"new_target":null},"current":"image"},"button1":{"type":"Button","id":"f_e89b0ed7-aef0-4628-a62d-7672014f888d","defaultValue":false,"alignment":"center","text":"Buy Now","size":"full","style":"","color":"","font":"","url":"http:\/\/strikingly.com","new_target":null,"version":"2"}}}],"components":{"text1":{"type":"RichText","id":"f_eea513fc-0ce6-4813-a5bd-9ee49da9abeb","defaultValue":true,"value":"Title Text","backupValue":null,"version":null},"text2":{"type":"RichText","id":"f_68278711-e987-404d-a783-c36b8d9bd71e","defaultValue":true,"value":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit","backupValue":null,"version":null},"background1":{"type":"Background","id":"f_641533d0-a745-440a-b69f-a5dcb487cdc1","defaultValue":true,"url":null,"textColor":"","backgroundVariation":"","sizing":"cover","videoUrl":"","videoHtml":"","storageKey":null,"storage":null,"format":null,"h":null,"w":null,"s":null},"media1":{"type":"Media","id":"f_7f7b47d5-317f-4dd6-8801-49b712cb1e09","defaultValue":null,"video":{"type":"Video","id":"f_47be2d1b-cfc0-4e2d-91ec-c5d7259381e3","defaultValue":true,"html":"","url":"http:\/\/vimeo.com\/18150336","thumbnail_url":null,"maxwidth":700,"description":null},"image":{"type":"Image","id":"f_aeafbe8b-374b-4a4e-ad3a-3753cc27ce52","defaultValue":true,"link_url":"","thumb_url":"","url":"\/images\/themes\/onyx_new\/stri.png","caption":"","description":"","storageKey":null,"storage":null,"format":null,"h":null,"w":null,"s":null,"new_target":null},"current":"image"},"button1":{"type":"Button","id":"f_9d02857f-f8b4-4eb9-b173-8a32171cb2a2","defaultValue":true,"alignment":"center","text":"Buy Now","size":"medium","style":"","color":"","font":"","url":"http:\/\/strikingly.com","new_target":null}},"infinite_slider":false,"auto_slide":false,"transition":"horizontal","auto_play":4200}}},{"type":"Slide","id":"f_d7d79cb7-c1a7-4594-88df-f6190c4cc40b","defaultValue":true,"template_thumbnail_height":"167.73333333333332","template_id":null,"template_name":"new_grid","origin_id":"f_45941ff4-6743-4168-8910-d394b89d9145","components":{"slideSettings":{"type":"SlideSettings","id":"f_3bf2b07f-d0f5-405f-abac-6e697aafc4ee","defaultValue":true,"show_nav":true,"show_nav_multi_mode":false,"nameChanged":true,"hidden_section":false,"hidden_mobile_section":false,"name":"Side by Side","sync_key":null,"layout_variation":"magazine---oneLeftOneBigRight-extraLarge-none-wide","display_settings":{},"layout_config":{"vertical_alignment":"middle","showTitle":false,"textAlignment":"center"}},"repeatable1":{"type":"Repeatable","id":"f_fa0aecc5-0f3a-442f-bac6-42ad92bfc6d6","defaultValue":false,"list":[{"type":"RepeatableItem","id":"f_f0b2bacf-fc13-4230-be2a-7c123d45606d","defaultValue":null,"components":{"media1":{"type":"Media","id":"f_8ed3727b-c5d8-477e-bf52-c1e982dbba23","defaultValue":null,"video":{"type":"Video","id":"f_ee7d7332-cc11-4118-962e-490ee0f909c9","defaultValue":null,"html":"","url":"http:\/\/vimeo.com\/18150336","thumbnail_url":null,"maxwidth":700,"description":null},"image":{"type":"Image","id":"f_47c564f4-96eb-45d1-9ce1-14fcf7affbd7","defaultValue":true,"link_url":null,"thumb_url":"","url":"","caption":"","description":"","new_target":true},"current":"image"},"email1":{"type":"EmailForm","id":"f_1d3131c7-16ae-4484-a45f-fe06606866da","defaultValue":false,"hideMessageBox":false,"hide_name":false,"hide_email":false,"hide_phone_number":true,"name_label":"Name","name_format":"single","first_name_label":"First Name","last_name_label":"Last Name","email_label":"Email","phone_number_label":"\u7535\u8bdd","message_label":"\u7559\u8a00","submit_label":"Submit","thanksMessage":"Thanks for your submission!","recipient":"","label":""},"button1":{"type":"Button","id":"f_19d3b339-d6ab-4b67-a66c-2862b914543b","defaultValue":false,"alignment":"center","text":"","link_type":"Web","size":"medium","mobile_size":"automatic","style":"","color":"","font":"Montserrat","url":"","new_target":null,"version":"2"},"text1":{"type":"RichText","id":"f_fb620966-ffbb-4cca-8630-544d5e6e0777","defaultValue":false,"value":"","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"text2":{"type":"RichText","id":"f_de54e7fb-5947-4c40-aae4-3cffc577e758","defaultValue":false,"value":"","backupValue":null,"version":null,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"background1":{"type":"Background","id":"f_ac490513-e32e-49bf-a920-9cb8a9f79667","defaultValue":false,"url":"!","textColor":"light","backgroundVariation":"","sizing":"cover","userClassName":null,"linkUrl":"","linkTarget":"_blank","clickable":"","videoUrl":"","videoHtml":"","storageKey":"1339460\/965827_574373","storage":"s","format":"png","h":1350,"w":1800,"s":259774,"useImage":true,"noCompression":null,"focus":null}},"layout_config":{"layout_component":"button","media_position":"noImage"}},{"type":"RepeatableItem","id":"f_70811c88-4914-42c0-b335-f5cc679d6c6f","defaultValue":null,"components":{"media1":{"type":"Media","id":"f_caf4bbe8-16b6-46f7-9974-045c4c80935b","defaultValue":null,"video":{"type":"Video","id":"f_dae88c04-8705-4121-99fb-0e0a9e85a515","defaultValue":null,"html":"","url":"http:\/\/vimeo.com\/18150336","thumbnail_url":null,"maxwidth":700,"description":null},"image":{"type":"Image","id":"f_4c2ae9e4-1f6c-4a9c-b58c-03bd967b0a4c","defaultValue":true,"link_url":null,"thumb_url":"","url":"","caption":"","description":"","new_target":true},"current":"image"},"email1":{"type":"EmailForm","id":"f_3a018cdb-e030-4823-85aa-0aa18e6df7b3","defaultValue":false,"hideMessageBox":false,"hide_name":false,"hide_email":false,"hide_phone_number":true,"name_label":"Name","name_format":"single","first_name_label":"First Name","last_name_label":"Last Name","email_label":"Email","phone_number_label":"\u7535\u8bdd","message_label":"\u7559\u8a00","submit_label":"Submit","thanksMessage":"Thanks for your submission!","recipient":"","label":""},"button1":{"type":"Button","id":"f_cb29c7d6-847b-40ac-9065-c50975a449ca","defaultValue":false,"alignment":"center","text":"RSVP","size":"full","mobile_size":"automatic","style":"","color":"","font":"","url":"https:\/\/www.strikingly.com\/","new_target":null,"version":"2"},"text1":{"type":"RichText","id":"f_582dbb30-0ade-466c-9229-b9d9ca6944f9","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003cp class=\"s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-rich-text-wrapper font-size-tag-custom s-text-font-size-over-50 s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper\" style=\"text-align: left; font-size: 60px;\"\u003e\u003cspan class=\"s-text-color-default\"\u003eIt begins with an idea. \u003c\/span\u003e\u003c\/p\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":"left","lastLineTextAlign":"left"}},"text2":{"type":"RichText","id":"f_1fdc3c8e-8b16-4aab-bb97-309cabe2d299","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003cp class=\"s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper font-size-tag-paragraph s-text-font-size-over-default s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper\" style=\"text-align: left; font-size: 18px;\"\u003e\u003cspan class=\"s-text-color-default\"\u003eLorem ipsum dolor sit amet, cum aliquam inermis consequuntur eu, cu zril tempor reformidans nam, ut pri democritum consectetuer.\u003c\/span\u003e\u003c\/p\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":"left","lastLineTextAlign":"left"}},"background1":{"type":"Background","id":"f_f3918505-1b1b-46ac-8f71-1eb0149914d8","defaultValue":false,"url":"","textColor":"","backgroundVariation":"","sizing":"","userClassName":"","linkUrl":null,"linkTarget":"_blank","clickable":"","videoUrl":"","videoHtml":"","storageKey":null,"storage":null,"format":null,"h":null,"w":null,"s":null,"useImage":false,"noCompression":null,"focus":null,"backgroundColor":{"themeColorRangeIndex":0,"value":"#e4f7f0","type":"highlight1","id":"f_c27ceb20-05f6-4ca3-a6b4-0acf8e4f94df"}}},"layout_config":{"layout_component":"button","media_position":"noImage"}}],"components":{"media1":{"type":"Media","id":"f_266f1edd-90d3-4e7f-9573-6b726202ed2a","defaultValue":null,"video":{"type":"Video","id":"f_60c40685-4a99-4089-bda8-d9145f1d513f","defaultValue":null,"html":"","url":"http:\/\/vimeo.com\/18150336","thumbnail_url":null,"maxwidth":700,"description":null},"image":{"type":"Image","id":"f_634b1bbd-dfc2-43ed-ac47-4a91c8ae3b51","defaultValue":true,"link_url":null,"thumb_url":"","url":"","caption":"","description":"","new_target":true},"current":"image"},"email1":{"type":"EmailForm","id":"f_f44ae8fd-9a4d-41be-a11f-d80e5d7c67ff","defaultValue":null,"hideMessageBox":false,"hide_name":false,"hide_email":false,"hide_phone_number":true,"name_label":"\u540d\u5b57","name_format":"single","first_name_label":"First Name","last_name_label":"Last Name","email_label":"\u90ae\u7bb1","phone_number_label":"\u7535\u8bdd","message_label":"\u7559\u8a00","submit_label":"\u63d0\u4ea4","thanksMessage":"\u611f\u8c22\u63d0\u4ea4","recipient":"","label":""},"button1":{"type":"Button","id":"f_0651d432-c5df-4625-824d-777d1f627da4","defaultValue":null,"alignment":"center","text":"","size":"medium","mobile_size":"automatic","style":"","color":"","font":"","url":"https:\/\/www.strikingly.com\/","new_target":null},"text1":{"type":"RichText","id":"f_48e73fd0-1de6-4039-abf3-d8e050e4be23","defaultValue":true,"value":"","backupValue":null,"version":null},"text2":{"type":"RichText","id":"f_f3c661be-87aa-430b-9519-277ac36f9a59","defaultValue":true,"value":"","backupValue":null,"version":null},"background1":{"type":"Background","id":"f_64df2245-6c1f-4d0b-a0da-c5e0d4debc41","defaultValue":true,"url":"","textColor":"overlay","backgroundVariation":"","sizing":"cover","userClassName":null,"linkUrl":null,"linkTarget":"_blank","clickable":"","videoUrl":"","videoHtml":"","storageKey":null,"storage":null,"format":null,"h":null,"w":null,"s":null,"noCompression":null,"backgroundColor":{"themeColorRangeIndex":null,"type":null,"value":"#E8EAEC"}}}},"text1":{"type":"RichText","id":"f_8a6618a8-1c13-4ed3-b8dd-7976b7ccb897","defaultValue":true,"value":"","backupValue":null,"version":null},"text2":{"type":"RichText","id":"f_a7e606b8-0cc4-40ae-aaa3-3662f10ff69c","defaultValue":true,"value":"","backupValue":null,"version":null},"background1":{"type":"Background","id":"f_d2f2cf12-6439-4792-9810-249adf640a0c","defaultValue":true,"url":"","textColor":"light","backgroundVariation":"","sizing":"cover","videoUrl":"","videoHtml":""}}},{"type":"Slide","id":"f_a9ea7447-d43a-41ba-9c91-5b277d712781","defaultValue":null,"template_thumbnail_height":"151.64521333333334","template_id":null,"template_name":"hero","origin_id":"f_41fab326-79b5-4d58-a693-6f6293687f2d","components":{"background1":{"type":"Background","id":"f_de50b139-abfd-464c-9008-f28b2b05e063","defaultValue":false,"url":"","textColor":"","backgroundVariation":"","sizing":"","userClassName":"","videoUrl":"","videoHtml":"","storageKey":null,"storage":null,"format":null,"h":null,"w":null,"s":null,"useImage":false,"focus":null,"backgroundColor":null},"text1":{"type":"RichText","id":"f_591e88be-c7f8-4b22-abce-865d98c348b2","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch1 class=\"s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper font-size-tag-header-one s-text-font-size-over-40 s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper\" style=\"font-size: 48px;\"\u003e\u003cspan class=\"s-text-color-default\"\u003eA Heroic Section \u003c\/span\u003e\u003c\/h1\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"text2":{"type":"RichText","id":"f_c76af614-0b42-4659-a0da-bb37a4dfabf4","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003cp class=\"s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper\"\u003e\u003cspan class=\"s-text-color-default\"\u003eIntroduce your product or service! \u003c\/span\u003e\u003c\/p\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"media1":{"type":"Media","id":"f_dffd9088-95b2-4acc-8997-350691b7bffb","defaultValue":null,"video":{"type":"Video","id":"f_5e715637-1a69-4057-a4f7-e4f20d5ced03","defaultValue":null,"html":"","url":"http:\/\/vimeo.com\/18150336","thumbnail_url":null,"maxwidth":700,"description":null},"image":{"type":"Image","id":"f_66184f6f-8f90-477d-9054-35f03ee1fb66","defaultValue":true,"link_url":null,"thumb_url":"!","url":"!","caption":"","description":"","storageKey":"1339460\/10135_573690","storage":"s","storagePrefix":null,"format":"png","h":1177,"w":1200,"s":435742,"new_target":true,"focus":null},"current":"image"},"slideSettings":{"type":"SlideSettings","id":"f_b639236c-7a91-48f3-84bd-1a217850dec7","defaultValue":null,"show_nav":true,"hidden_section":false,"name":"A Heroic Section","sync_key":null,"layout_variation":"images-noImage"},"email1":{"type":"EmailForm","id":"f_254a5433-b6b8-4203-bb01-23436a10678d","defaultValue":false,"hideMessageBox":false,"hide_name":false,"hide_email":false,"hide_phone_number":true,"name_label":"Name","name_format":"single","first_name_label":"First Name","last_name_label":"Last Name","email_label":"Email","phone_number_label":"Phone","message_label":"Message","submit_label":"Submit","thanksMessage":"Thanks for your submission!","recipient":"","label":""},"image1":{"type":"Image","id":"f_697570ed-4698-43db-adc3-667447b1ceb7","defaultValue":null,"link_url":null,"thumb_url":null,"url":"\/\/assets.strikingly.com\/static\/icons\/app-badges\/apple-ios.png","caption":"","description":"","h":51,"w":183,"new_target":true},"image2":{"type":"Image","id":"f_59b0919a-b4c8-4fe8-a5ad-901c600737e4","defaultValue":null,"link_url":null,"thumb_url":null,"url":"\/\/assets.strikingly.com\/static\/icons\/app-badges\/android2.png","caption":"","description":"","h":51,"w":183,"new_target":true},"button1":{"type":"Button","id":"f_d0097b25-4a4b-4933-92d3-dd65d38dfca6","defaultValue":null,"alignment":"center","text":"DOWNLOAD","size":"medium","style":"","color":"","font":"","url":"https:\/\/www.strikingly.com\/","new_target":null}}},{"type":"Slide","id":"f_c34e0e03-8499-415d-b57e-153dd943990c","defaultValue":null,"template_thumbnail_height":"129.60718400000002","template_id":null,"template_name":"featureListE","origin_id":"f_0205454c-13b8-4792-afb8-cd83ea617a72","components":{"slideSettings":{"type":"SlideSettings","id":"f_bf131080-cbfc-4855-a088-709379afb2ae","defaultValue":null,"show_nav":true,"nameChanged":true,"hidden_section":false,"hidden_mobile_section":false,"name":"About","sync_key":null,"layout_variation":"normal","layout_config":{"noTemplateDiff":true,"card_radius":"small","border_thickness":"small","card_padding":"medium","spacing":"l","subtitleReplaceToText":true,"mediaSize":"xs","horizontal_alignment":"center","layout":"E","border":false,"mediaPosition":"left","showButton":true,"border_color":"#cccccc","card":false,"structure":"list","card_color":"#ffffff","vertical_alignment":"middle","grid_media_position":"top","columns":"three","content_align":"center"}},"background1":{"type":"Background","id":"f_2eb1d5eb-d240-4bfc-b7c1-be299d87ccbe","defaultValue":false,"url":"","textColor":"","backgroundVariation":"","sizing":"","userClassName":"","videoUrl":"","videoHtml":"","storageKey":null,"storage":null,"format":null,"h":null,"w":null,"s":null,"useImage":false,"focus":null,"backgroundColor":null},"repeatable1":{"type":"Repeatable","id":"f_16c78ee9-b87e-429f-ad36-accdc36eff24","defaultValue":false,"list":[{"type":"RepeatableItem","id":"f_fe89fb1c-6975-4ca8-b9eb-46ba068794a7","defaultValue":true,"components":{"media1":{"type":"Media","id":"f_9b363491-51fa-4bfa-9281-57a0cc3233a9","defaultValue":true,"video":{"type":"Video","id":"f_ffc00391-6b12-428a-bd67-3e8bed8f31ae","defaultValue":true,"html":"","url":"http:\/\/vimeo.com\/18150336","thumbnail_url":null,"maxwidth":700,"description":null},"image":{"type":"Image","id":"f_2c3bb792-1882-4dbb-b07a-8efee37d4406","defaultValue":true,"link_url":"","thumb_url":"\/images\/icons\/transparent.png","url":"\/images\/icons\/transparent.png","caption":"","description":"","storageKey":null,"storage":null,"storagePrefix":null,"format":null,"border_radius":null,"aspect_ratio":null,"h":null,"w":null,"s":null,"new_target":true,"focus":null},"current":"image"},"text1":{"type":"RichText","id":"f_5627a251-204d-46b0-b852-d735d7279c4d","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch2 class=\"s-rich-text-wrapper font-size-tag-header-two s-text-font-size-over-default\" style=\"font-size: 28px;\"\u003eIs this a frequently asked question?\u003c\/h2\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"text2":{"type":"RichText","id":"f_1365ff0e-a094-48b0-9087-4f8c0618ca01","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003cp class=\"s-text-color-default s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper font-size-tag-paragraph s-text-font-size-over-default\" style=\"font-size: 18px;\"\u003e\u003cspan class=\"s-text-color-default\"\u003eLorem ipsum dolor sit amet, cum aliquam inermis consequuntur eu, cu zril tempor reformidans nam, ut pri democritum consectetuer.\u003c\/span\u003e\u003c\/p\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"button1":{"type":"Button","id":"f_cdac2241-93ba-4d20-bcd2-75e7d9544454","defaultValue":false,"alignment":"left","text":"Read More","size":"small","mobile_size":"automatic","style":"","color":"","font":"","url":"","new_target":null,"version":"2"}}},{"type":"RepeatableItem","id":"f_3b1dafb3-19f8-425f-9339-074a661897b7","components":{"media1":{"type":"Media","id":"f_22531b85-b447-4bc3-8f88-59e2e04d5434","defaultValue":true,"video":{"type":"Video","id":"f_9737f0f5-d7be-48ac-9b2a-67d915a995d3","defaultValue":true,"html":"","url":"http:\/\/vimeo.com\/18150336","thumbnail_url":null,"maxwidth":700,"description":null},"image":{"type":"Image","id":"f_3e0e623b-8d81-4c4f-baf4-d593eb69e06a","defaultValue":true,"link_url":"","thumb_url":"\/images\/icons\/transparent.png","url":"\/images\/icons\/transparent.png","caption":"","description":"","storageKey":null,"storage":null,"storagePrefix":null,"format":null,"border_radius":null,"aspect_ratio":null,"h":null,"w":null,"s":null,"new_target":true,"focus":null},"current":"image"},"text1":{"type":"RichText","id":"f_e9d10337-6f62-4fd9-b459-119c4f5a8b20","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch2 class=\"s-rich-text-wrapper font-size-tag-header-two s-text-font-size-over-default\" style=\"font-size: 28px;\"\u003eIs this a frequently asked question?\u003c\/h2\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"text2":{"type":"RichText","id":"f_aea0c183-c3c2-423c-8ef9-50c92f562fa2","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003cp class=\"s-text-color-default s-text-color-default s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper font-size-tag-paragraph s-text-font-size-over-default\" style=\"font-size: 18px;\"\u003e\u003cspan class=\"s-text-color-default\"\u003eLorem ipsum dolor sit amet, cum aliquam inermis consequuntur eu, cu zril tempor reformidans nam, ut pri democritum consectetuer.\u003c\/span\u003e\u003c\/p\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"button1":{"type":"Button","id":"f_49792ad7-ff44-4f90-805d-874bbe73735e","defaultValue":false,"alignment":"left","text":"Read More","size":"small","mobile_size":"automatic","style":"","color":"","font":"","url":"","new_target":null,"version":"2"}}},{"type":"RepeatableItem","id":"f_60451fbd-a8c8-4161-8556-54ff6faeacee","components":{"media1":{"type":"Media","id":"f_15d0cec6-3c09-43fb-93a6-14cedade02d3","defaultValue":true,"video":{"type":"Video","id":"f_38b68922-9ba2-4832-a5ee-e5416618ab65","defaultValue":true,"html":"","url":"http:\/\/vimeo.com\/18150336","thumbnail_url":null,"maxwidth":700,"description":null},"image":{"type":"Image","id":"f_f18a5765-6cf5-454a-a974-845eecfcf724","defaultValue":true,"link_url":"","thumb_url":"\/images\/icons\/transparent.png","url":"\/images\/icons\/transparent.png","caption":"","description":"","storageKey":null,"storage":null,"storagePrefix":null,"format":null,"border_radius":null,"aspect_ratio":null,"h":null,"w":null,"s":null,"new_target":true,"focus":null},"current":"image"},"text1":{"type":"RichText","id":"f_1d8fec67-2292-4c63-bebd-13e57d98a3d9","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch2 class=\" font-size-tag-header-two s-text-font-size-over-default\" style=\"font-size: 28px;\"\u003eIs this a frequently asked question?\u003c\/h2\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"text2":{"type":"RichText","id":"f_7300c134-3925-44cc-9a93-9d67d8ff11ca","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003cp class=\"s-text-color-default s-text-color-default s-text-color-default s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper font-size-tag-paragraph s-text-font-size-over-default\" style=\"font-size: 18px;\"\u003e\u003cspan class=\"s-text-color-default\"\u003eLorem ipsum dolor sit amet, cum aliquam inermis consequuntur eu, cu zril tempor reformidans nam, ut pri democritum consectetuer.\u003c\/span\u003e\u003c\/p\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"button1":{"type":"Button","id":"f_3224b241-8c42-4ec0-8524-66d5328e8b2f","defaultValue":false,"alignment":"left","text":"Read More","size":"small","mobile_size":"automatic","style":"","color":"","font":"","url":"","new_target":null,"version":"2"}}}],"components":{"media1":{"type":"Media","id":"f_4c2feab1-ec2d-4cbe-aff6-cce7eac176d3","defaultValue":true,"video":{"type":"Video","id":"f_61436011-cf01-4d39-ac30-9a5ac8bdcf51","defaultValue":true,"html":"","url":"http:\/\/vimeo.com\/18150336","thumbnail_url":null,"maxwidth":700,"description":null},"image":{"type":"Image","id":"f_5d7478a7-b35d-4441-921e-081cc8a89da1","defaultValue":true,"link_url":null,"thumb_url":"\/\/static-assets.strikinglycdn.com\/images\/editor2\/feature_list\/thumb-list-D-1.png","url":"\/\/static-assets.strikinglycdn.com\/images\/editor2\/feature_list\/list-D-1.png","caption":"","description":"","new_target":true},"current":"image"},"text1":{"type":"RichText","id":"f_663dd21b-c719-46c0-bab1-9b2b00aba183","defaultValue":true,"value":"What We Do","backupValue":null,"version":null},"text2":{"type":"RichText","id":"f_001bfcca-7bef-4c77-8c0f-f44ba7207d64","defaultValue":true,"value":"Show off your projects, features, or clients in this section.","backupValue":null,"version":null},"button1":{"type":"Button","id":"f_ef4d35fa-a130-4edf-b8bc-743a6dd69686","defaultValue":true,"alignment":"left","text":"Read More","size":"small","mobile_size":"automatic","style":"","color":"","font":"","url":"","new_target":null}}},"text1":{"type":"RichText","id":"f_9fa6769c-673e-4b00-8d15-9802522fd104","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch1 class=\"s-text-color-default s-text-color-default s-rich-text-wrapper font-size-tag-header-one s-text-font-size-over-40 s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper\" style=\"font-size: 48px;\"\u003e\u003cspan class=\"s-text-color-default\"\u003eIt all begins with an idea. You're preparing to launch a business. \u003c\/span\u003e\u003c\/h1\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"text2":{"type":"RichText","id":"f_9b6d1393-a5aa-4223-93b6-555ffbf2676d","defaultValue":false,"value":"","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}}}},{"type":"Slide","id":"f_caa27b56-22b1-420c-903e-4d2c99b6a6d8","defaultValue":true,"template_thumbnail_height":80,"template_id":null,"template_name":"cta","origin_id":"f_5289f50a-7ec2-4a75-a7f3-e09e9408fb57","components":{"slideSettings":{"type":"SlideSettings","id":"f_b4bcd5d0-a749-40e1-a05d-55caa6ea1385","defaultValue":true,"show_nav":true,"hidden_section":false,"name":"Download Now","sync_key":null,"layout_variation":"center-bottom-normal"},"text1":{"type":"RichText","id":"f_35fac312-3fbd-4bdc-afaf-14abe84e7020","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch1 class=\" font-size-tag-header-one s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper\" style=\"text-align: center; font-size: 48px;\"\u003eDownload Now\u003c\/h1\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":"center","lastLineTextAlign":"center"}},"text2":{"type":"RichText","id":"f_dfd753be-5e59-45fc-b13a-6ae49c3990ca","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003cp class=\"s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper\" style=\"text-align: center; font-size: 18px;\"\u003e\u003cspan class=\"s-text-color-default\"\u003eYou can add any link or even upload a file to this button!\u003c\/span\u003e\u003c\/p\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":"center","lastLineTextAlign":"center"}},"text3":{"type":"RichText","id":"f_f1b93c35-4b28-490f-b2f4-f16716d60ec8","defaultValue":null,"value":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet.","backupValue":null,"version":null},"button1":{"type":"Button","id":"f_91118fd3-91d8-48fe-bd54-3ba4174e8f63","defaultValue":false,"alignment":"center","text":"DOWNLOAD NOW","size":"medium","mobile_size":"automatic","style":"","color":"","font":"Montserrat","url":"","new_target":null,"version":"2"},"background1":{"type":"Background","id":"f_02b1bd7a-4d8c-4253-adeb-11d5455979ed","defaultValue":true,"url":"","textColor":"light","backgroundVariation":"","sizing":"cover","videoUrl":"","videoHtml":""},"media1":{"type":"Media","id":"f_3a995cfc-225a-4dc7-b7f0-a7624c1c7db4","defaultValue":true,"video":{"type":"Video","id":"f_f6fb32a6-7371-448e-b86d-9b9a22af534f","defaultValue":true,"html":"","url":"http:\/\/vimeo.com\/18150336","thumbnail_url":null,"maxwidth":700,"description":null},"image":{"type":"Image","id":"f_deda9a32-1b00-4460-b6e3-1f4f62a10bb1","defaultValue":true,"link_url":"","thumb_url":"\/images\/icons\/transparent.png","url":"\/images\/icons\/transparent.png","caption":"","description":"","storageKey":null,"storage":null,"storagePrefix":null,"format":null,"h":null,"w":null,"s":null,"new_target":true,"focus":null},"current":"image"}}},{"type":"Slide","id":"f_23247d46-1de5-4135-aa29-9231d3a0c794","defaultValue":null,"template_thumbnail_height":"254.60247199999995","template_id":null,"template_name":"featureListE","origin_id":"f_42c18694-3f29-48d6-a571-e393cc44873a","components":{"slideSettings":{"type":"SlideSettings","id":"f_95df63b4-dc3c-44d8-9be5-451a1c8577e3","defaultValue":null,"show_nav":true,"nameChanged":true,"hidden_section":false,"hidden_mobile_section":false,"name":"Feature List","sync_key":null,"layout_variation":"normal","layout_config":{"noTemplateDiff":true,"card_radius":"square","border_thickness":"small","card_padding":"small","spacing":"S","subtitleReplaceToText":true,"mediaSize":"xs","horizontal_alignment":"center","layout":"E","border":false,"mediaPosition":"alternating","showButton":false,"border_color":"#000000","card":false,"structure":"grid","card_color":null,"vertical_alignment":"middle","grid_media_position":"top","columns":"three","content_align":"center"}},"background1":{"type":"Background","id":"f_53396010-1718-4455-8003-500e499f205d","defaultValue":true,"url":"","textColor":"light","backgroundVariation":"","sizing":"cover","videoUrl":"","videoHtml":""},"repeatable1":{"type":"Repeatable","id":"f_b4ae1943-3282-4219-b2a0-2df26e7e4dd3","defaultValue":false,"list":[{"type":"RepeatableItem","id":"f_d32c26e0-d896-43ce-bd8b-2b0621eb7255","defaultValue":true,"components":{"media1":{"type":"Media","id":"f_49c68951-307d-4e72-805e-e989f11dab0c","defaultValue":true,"video":{"type":"Video","id":"f_d4d7f482-b7ac-497d-9339-11d1762cf261","defaultValue":true,"html":"","url":"http:\/\/vimeo.com\/18150336","thumbnail_url":null,"maxwidth":700,"description":null},"image":{"type":"Image","id":"f_7656e214-39a6-466f-8f70-942d9c95b13e","defaultValue":true,"link_url":null,"thumb_url":"!","url":"!","caption":"","description":"","storageKey":"1339460\/54463_778340","storage":"s","storagePrefix":null,"format":"png","h":540,"w":540,"s":243983,"new_target":true,"focus":null},"current":"image"},"text1":{"type":"RichText","id":"f_6f401678-0aca-418a-9ba4-27cb95eff3e6","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch2 class=\"s-rich-text-wrapper font-size-tag-header-two s-text-font-size-over-default s-rich-text-wrapper\" style=\"text-align: left; font-size: 28px;\"\u003e\u003cspan class=\"s-text-color-default\"\u003eFeature\u003c\/span\u003e\u003c\/h2\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":"left","lastLineTextAlign":"left"}},"text2":{"type":"RichText","id":"f_05d0e541-010b-4266-a16f-51841b94a139","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003cp\u003eUse a text section to describe your values, show more info, summarize a topic, or tell a story. Lorem ipsum dolor sit amet, cum aliquam inermis consequuntur eu, cu zril tempor reformidans nam, ut pri democritum consectetuer.\u003c\/p\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"button1":{"type":"Button","id":"f_1eab711a-1144-4700-b0ff-c0eb0180574b","defaultValue":true,"alignment":"left","text":"Read More","size":"small","mobile_size":"automatic","style":"","color":"","font":"","url":"","new_target":null}}},{"type":"RepeatableItem","id":"f_9fe8055c-2727-449b-9f57-c51fce3e6158","components":{"media1":{"type":"Media","id":"f_c05da18e-0a3d-46a6-a0c3-257f5559693c","defaultValue":true,"video":{"type":"Video","id":"f_9b4ebd88-ec85-4b1f-8ba8-11469cae084a","defaultValue":true,"html":"","url":"http:\/\/vimeo.com\/18150336","thumbnail_url":null,"maxwidth":700,"description":null},"image":{"type":"Image","id":"f_d96ca132-37ef-4cf0-9a1b-b05c85f6b62c","defaultValue":true,"link_url":null,"thumb_url":"!","url":"!","caption":"","description":"","storageKey":"1339460\/347658_498102","storage":"s","storagePrefix":null,"format":"png","h":540,"w":540,"s":139445,"new_target":true,"focus":null},"current":"image"},"text1":{"type":"RichText","id":"f_971be71f-830c-4709-b8a3-1f5113dd1833","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch2 class=\"s-rich-text-wrapper font-size-tag-header-two s-text-font-size-over-default\" style=\"font-size: 28px;\"\u003eFeature\u003c\/h2\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"text2":{"type":"RichText","id":"f_e877c84f-a279-48a3-818f-f7bfa3398353","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003cp\u003eUse a text section to describe your values, show more info, summarize a topic, or tell a story. Lorem ipsum dolor sit amet, cum aliquam inermis consequuntur eu, cu zril tempor reformidans nam, ut pri democritum consectetuer.\u003c\/p\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"button1":{"type":"Button","id":"f_e4abd870-456b-495a-8343-cf512dac698b","defaultValue":true,"alignment":"left","text":"Read More","size":"small","mobile_size":"automatic","style":"","color":"","font":"","url":"","new_target":null}}},{"type":"RepeatableItem","id":"f_fd5b03ed-d4e5-4d92-9794-56314a983707","components":{"media1":{"type":"Media","id":"f_6230f733-187a-4f58-9f9b-0ce7b2e2443e","defaultValue":true,"video":{"type":"Video","id":"f_5cd3001d-a348-4be9-b0c2-dd2cc56422af","defaultValue":true,"html":"","url":"http:\/\/vimeo.com\/18150336","thumbnail_url":null,"maxwidth":700,"description":null},"image":{"type":"Image","id":"f_3c1989b4-e103-4379-baf7-90b5763aa87c","defaultValue":true,"link_url":null,"thumb_url":"!","url":"!","caption":"","description":"","storageKey":"1339460\/331220_401967","storage":"s","storagePrefix":null,"format":"png","h":540,"w":540,"s":195701,"new_target":true,"focus":null},"current":"image"},"text1":{"type":"RichText","id":"f_df0ab663-8e26-4ff9-b4dd-ed9f38bbea56","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch2 class=\" font-size-tag-header-two s-text-font-size-over-default\" style=\"font-size: 28px;\"\u003eFeature\u003c\/h2\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"text2":{"type":"RichText","id":"f_75834f76-b0c1-4f1c-9b57-66c36bcfb637","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003cp\u003eUse a text section to describe your values, show more info, summarize a topic, or tell a story. Lorem ipsum dolor sit amet, cum aliquam inermis consequuntur eu, cu zril tempor reformidans nam, ut pri democritum consectetuer.\u003c\/p\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"button1":{"type":"Button","id":"f_80e7f909-e726-4348-9f8d-b0ac3c16ea20","defaultValue":true,"alignment":"left","text":"Read More","size":"small","mobile_size":"automatic","style":"","color":"","font":"","url":"","new_target":null}}}],"components":{"media1":{"type":"Media","id":"f_320e9052-cc53-4f37-9996-e5f4a28fc7a3","defaultValue":true,"video":{"type":"Video","id":"f_ff7c462e-4b65-4cff-8d97-e4f5a00d5398","defaultValue":true,"html":"","url":"http:\/\/vimeo.com\/18150336","thumbnail_url":null,"maxwidth":700,"description":null},"image":{"type":"Image","id":"f_0457f0f2-29b0-40d0-9b2c-b85987bbccce","defaultValue":true,"link_url":null,"thumb_url":"\/\/static-assets.strikinglycdn.com\/images\/editor2\/feature_list\/thumb-list-D-1.png","url":"\/\/static-assets.strikinglycdn.com\/images\/editor2\/feature_list\/list-D-1.png","caption":"","description":"","new_target":true},"current":"image"},"text1":{"type":"RichText","id":"f_76accbae-d617-4292-aefc-96b6f16a2733","defaultValue":true,"value":"What We Do","backupValue":null,"version":null},"text2":{"type":"RichText","id":"f_ce96c688-86a7-4b21-9982-4339c53c9b79","defaultValue":true,"value":"Show off your projects, features, or clients in this section.","backupValue":null,"version":null},"button1":{"type":"Button","id":"f_ce4e35fd-66b0-48d0-8452-69909085cd31","defaultValue":true,"alignment":"left","text":"Read More","size":"small","mobile_size":"automatic","style":"","color":"","font":"","url":"","new_target":null}}},"text1":{"type":"RichText","id":"f_e4e79b64-f2e5-4b75-a6aa-67b01502293f","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch1 class=\"s-rich-text-wrapper font-size-tag-header-one s-text-font-size-over-40 s-rich-text-wrapper\" style=\"font-size: 48px;\"\u003e What We Do\u003c\/h1\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"text2":{"type":"RichText","id":"f_f5fea84f-762f-44ab-b016-33118a9164af","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003cp class=\"s-rich-text-wrapper s-rich-text-wrapper\"\u003e Show off your projects, features, or clients in this section.\u003c\/p\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}}}},{"type":"Slide","id":"f_d0093acd-d70b-452a-a1da-49b8ee95612b","defaultValue":true,"template_thumbnail_height":170,"template_id":null,"template_name":"new_grid","origin_id":"f_39bcd2cf-1307-43b0-8d9b-73634a07408e","components":{"slideSettings":{"type":"SlideSettings","id":"f_c290b0a4-742c-4f15-9ab4-2afa37de96f6","defaultValue":true,"show_nav":true,"show_nav_multi_mode":false,"nameChanged":true,"hidden_section":false,"hidden_mobile_section":false,"name":"Grid","sync_key":null,"layout_variation":"grid-1-2--extraLarge-small-wide","display_settings":{},"layout_config":{"vertical_alignment":"top","showTitle":false,"textAlignment":"center"}},"repeatable1":{"type":"Repeatable","id":"f_83cea96c-13c3-4ef0-8f4d-a4e9808624f6","defaultValue":false,"list":[{"type":"RepeatableItem","id":"f_2daa340b-e0cf-4c37-bee7-b773ecec7f5c","defaultValue":null,"components":{"media1":{"type":"Media","id":"f_cf3e68bf-d0b7-4525-a852-387992625807","defaultValue":null,"video":{"type":"Video","id":"f_6511016a-f1e6-4163-92f2-68a41ddffbec","defaultValue":null,"html":"","url":"http:\/\/vimeo.com\/18150336","thumbnail_url":null,"maxwidth":700,"description":null},"image":{"type":"Image","id":"f_dd87c296-22f5-44a6-b8e6-379d37796302","defaultValue":true,"link_url":null,"thumb_url":"","url":"","caption":"","description":"","new_target":true},"current":"image"},"email1":{"type":"EmailForm","id":"f_7edd0540-9c63-4184-97d8-9723c9a3bd19","defaultValue":false,"hideMessageBox":false,"hide_name":false,"hide_email":false,"hide_phone_number":true,"name_label":"Name","name_format":"single","first_name_label":"First Name","last_name_label":"Last Name","email_label":"Email","phone_number_label":"\u7535\u8bdd","message_label":"\u7559\u8a00","submit_label":"Submit","thanksMessage":"Thanks for your submission!","recipient":"","label":""},"button1":{"type":"Button","id":"f_28e9c252-f753-4b83-ae93-26b673a798d5","defaultValue":false,"alignment":"center","text":"","link_type":"Web","size":"medium","mobile_size":"automatic","style":"","color":"","font":"Montserrat","url":"","new_target":null,"version":"2"},"text1":{"type":"RichText","id":"f_2f9a19c2-1d13-4572-8edc-5b559c150d39","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch1 class=\"s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper font-size-tag-header-one s-text-font-size-over-40 s-rich-text-wrapper\" style=\"text-align: center; font-size: 48px;\"\u003e\u003cspan class=\"s-text-color-default\"\u003e\u003cstrong\u003eEat Health\u003c\/strong\u003e\u003c\/span\u003e\u003c\/h1\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":"center","lastLineTextAlign":"center"}},"text2":{"type":"RichText","id":"f_3f06842d-6472-4a77-8eff-4f20e816e8fd","defaultValue":false,"value":"","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"background1":{"type":"Background","id":"f_10ff5c4f-6ef6-4323-bfa9-9a7cb4440898","defaultValue":false,"url":"!","textColor":"light","backgroundVariation":"","sizing":"cover","userClassName":null,"linkUrl":"","linkTarget":"_blank","clickable":"","videoUrl":"","videoHtml":"","storageKey":"https:\/\/images.unsplash.com\/photo-1543363136-3f2d17e6d6cd?ixlib=rb-4.0.3\u0026q=85\u0026fm=jpg\u0026crop=entropy\u0026cs=srgb","storage":"un","h":null,"w":null,"s":null,"useImage":true,"noCompression":null,"focus":null}},"layout_config":{"layout_component":"button","media_position":"noImage"}},{"type":"RepeatableItem","id":"f_6d7b7fa8-79e9-47cd-b16d-b59114f2776b","defaultValue":null,"components":{"media1":{"type":"Media","id":"f_6373cd20-ec35-4b88-b591-988d51fd264e","defaultValue":null,"video":{"type":"Video","id":"f_fb7b0147-1072-4df9-9178-b408afd476d6","defaultValue":null,"html":"","url":"http:\/\/vimeo.com\/18150336","thumbnail_url":null,"maxwidth":700,"description":null},"image":{"type":"Image","id":"f_074b69fa-cf5b-4da4-b004-8a00c54df5f3","defaultValue":true,"link_url":null,"thumb_url":"","url":"","caption":"","description":"","new_target":true},"current":"image"},"email1":{"type":"EmailForm","id":"f_fbbfc859-9b43-4eb0-833b-d2322fcaf96e","defaultValue":false,"hideMessageBox":false,"hide_name":false,"hide_email":false,"hide_phone_number":true,"name_label":"Name","name_format":"single","first_name_label":"First Name","last_name_label":"Last Name","email_label":"Email","phone_number_label":"\u7535\u8bdd","message_label":"\u7559\u8a00","submit_label":"Submit","thanksMessage":"Thanks for your submission!","recipient":"","label":""},"button1":{"type":"Button","id":"f_4612b1a4-0142-4dbf-b654-7d16b7b74797","defaultValue":false,"alignment":"center","text":"","link_type":"Web","size":"medium","mobile_size":"automatic","style":"","color":"","font":"Montserrat","url":"","new_target":null,"version":"2"},"text1":{"type":"RichText","id":"f_dfd3b04d-f9a9-4a8d-a00a-7b731cc0867c","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch1 class=\"s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper font-size-tag-header-one s-text-font-size-over-40 s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper\" style=\"text-align: center; font-size: 48px;\"\u003e\u003cspan style=\"color: #000000;\"\u003e\u003cstrong\u003eEat Fresh\u003c\/strong\u003e\u003c\/span\u003e\u003c\/h1\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":"center","lastLineTextAlign":"center"}},"text2":{"type":"RichText","id":"f_0a4e35e0-5f45-4bda-b9aa-6e407207a2e7","defaultValue":false,"value":"","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"background1":{"type":"Background","id":"f_e878d136-6d4f-4eba-ba18-85139f1a0aa8","defaultValue":false,"url":"!","textColor":"","backgroundVariation":"","sizing":"","userClassName":"","linkUrl":null,"linkTarget":"_blank","clickable":"","videoUrl":"","videoHtml":"","storageKey":"https:\/\/images.unsplash.com\/photo-1541696432-82c6da8ce7bf?ixlib=rb-4.0.3\u0026q=85\u0026fm=jpg\u0026crop=entropy\u0026cs=srgb","storage":"un","h":null,"w":null,"s":null,"useImage":true,"noCompression":null,"focus":null,"backgroundColor":{"themeColorRangeIndex":null,"value":"#E8EAEC","type":null}}},"layout_config":{"layout_component":"button","media_position":"noImage"}}],"components":{"media1":{"type":"Media","id":"f_72f7776b-f4f2-4440-b928-659539c2f55f","defaultValue":null,"video":{"type":"Video","id":"f_f83b3b40-92e6-4f19-8786-7f6391eb47d8","defaultValue":null,"html":"","url":"http:\/\/vimeo.com\/18150336","thumbnail_url":null,"maxwidth":700,"description":null},"image":{"type":"Image","id":"f_b8b53115-485e-4728-af4a-fdfd083fbf41","defaultValue":true,"link_url":null,"thumb_url":"","url":"","caption":"","description":"","new_target":true},"current":"image"},"email1":{"type":"EmailForm","id":"f_4ec9922d-6be9-4e63-910a-ac0e5b6be34c","defaultValue":null,"hideMessageBox":false,"hide_name":false,"hide_email":false,"hide_phone_number":true,"name_label":"\u540d\u5b57","name_format":"single","first_name_label":"First Name","last_name_label":"Last Name","email_label":"\u90ae\u7bb1","phone_number_label":"\u7535\u8bdd","message_label":"\u7559\u8a00","submit_label":"\u63d0\u4ea4","thanksMessage":"\u611f\u8c22\u63d0\u4ea4","recipient":"","label":""},"button1":{"type":"Button","id":"f_db4a0c14-2831-4a67-80cf-144f7d52c2d8","defaultValue":null,"alignment":"center","text":"","size":"medium","mobile_size":"automatic","style":"","color":"","font":"","url":"https:\/\/www.strikingly.com\/","new_target":null},"text1":{"type":"RichText","id":"f_a85a5b3a-e5b4-4c00-8a63-2c19d2a0eb4c","defaultValue":true,"value":"","backupValue":null,"version":null},"text2":{"type":"RichText","id":"f_d715ee51-ef28-49f7-a5f0-5224f939ecac","defaultValue":true,"value":"","backupValue":null,"version":null},"background1":{"type":"Background","id":"f_373ebd4e-f405-4a11-a0c8-05cb73732869","defaultValue":true,"url":"","textColor":"overlay","backgroundVariation":"","sizing":"cover","userClassName":null,"linkUrl":null,"linkTarget":"_blank","clickable":"","videoUrl":"","videoHtml":"","storageKey":null,"storage":null,"format":null,"h":null,"w":null,"s":null,"noCompression":null,"backgroundColor":{"themeColorRangeIndex":null,"type":null,"value":"#E8EAEC"}}}},"text1":{"type":"RichText","id":"f_955438e8-d7ec-44fd-a6e4-28498e49a5b3","defaultValue":true,"value":"","backupValue":null,"version":null},"text2":{"type":"RichText","id":"f_1bd85305-3b41-4d03-93a6-5431bf18b088","defaultValue":true,"value":"","backupValue":null,"version":null},"background1":{"type":"Background","id":"f_054841de-cf11-4309-9076-968827803a70","defaultValue":true,"url":"","textColor":"light","backgroundVariation":"","sizing":"cover","videoUrl":"","videoHtml":""}}},{"type":"Slide","id":"f_0d1699d7-98eb-4834-8064-1c2d3e6fcb26","defaultValue":null,"template_thumbnail_height":"193.40698266666664","template_id":null,"template_name":"featureListE","origin_id":"f_dea9210e-42dc-4a15-bb5a-35b8b3b0beb1","components":{"slideSettings":{"type":"SlideSettings","id":"f_4579c722-3131-46ad-8419-d37c6710ffec","defaultValue":null,"show_nav":true,"show_nav_multi_mode":false,"nameChanged":true,"hidden_section":false,"hidden_mobile_section":false,"name":"Team","sync_key":null,"layout_variation":"normal","layout_config":{"noTemplateDiff":true,"card_radius":"square","border_thickness":"small","card_padding":"medium","spacing":"S","subtitleReplaceToText":true,"mediaSize":"xs","horizontal_alignment":"left","layout":"E","border":false,"mediaPosition":"left","showButton":true,"border_color":"#cccccc","card":false,"structure":"grid","card_color":"#ffffff","vertical_alignment":"middle","grid_media_position":"top","columns":"three","content_align":"center"}},"background1":{"type":"Background","id":"f_10e2ba98-a418-4c3b-8836-cea26b49a94b","defaultValue":true,"url":"","textColor":"light","backgroundVariation":"","sizing":"cover","videoUrl":"","videoHtml":""},"repeatable1":{"type":"Repeatable","id":"f_11fc2991-c70a-44d8-ab9a-fbcf563c4362","defaultValue":false,"list":[{"type":"RepeatableItem","id":"f_954f6fef-4f97-4d22-843d-149423830bf4","defaultValue":true,"components":{"media1":{"type":"Media","id":"f_7a7f86f7-e26a-4248-b734-8ff843cdc20e","defaultValue":true,"video":{"type":"Video","id":"f_3640af62-3864-4c43-87de-84b9c60e1e5c","defaultValue":true,"html":"","url":"http:\/\/vimeo.com\/18150336","thumbnail_url":null,"maxwidth":700,"description":null},"image":{"type":"Image","id":"f_2ad8314c-4bb0-42aa-a06e-a882b404d143","defaultValue":true,"link_url":null,"thumb_url":"https:\/\/images.unsplash.com\/photo-1577806934037-32d94e326e84?crop=entropy\u0026cs=tinysrgb\u0026fit=max\u0026fm=jpg\u0026ixid=M3wxOTc2fDB8MXxzZWFyY2h8NjR8fHBvcnRyYWl0fGVufDB8fHx8MTcxMDA5OTc2OHww\u0026ixlib=rb-4.0.3\u0026q=80\u0026w=200","url":"!","caption":"","description":"","storageKey":"https:\/\/images.unsplash.com\/photo-1577806934037-32d94e326e84?ixlib=rb-4.0.3\u0026q=85\u0026fm=jpg\u0026crop=entropy\u0026cs=srgb","storage":"un","storagePrefix":null,"h":1617,"w":1200,"s":null,"new_target":true,"focus":null},"current":"image"},"text1":{"type":"RichText","id":"f_6f784546-1bc1-4752-ac7c-5b8a7e606eb9","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch2 class=\" font-size-tag-header-two s-text-font-size-over-default s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper\" style=\"font-size: 28px;\"\u003eLillian Morgan\u003c\/h2\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"text2":{"type":"RichText","id":"f_6f46e24a-1e3b-44f6-a160-f725fe4f75a5","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003cp\u003e\u003cspan class=\"s-text-color-default\"\u003eUse a text section to describe your values, show more info, summarize a topic, or tell a story.\u003c\/span\u003e\u003c\/p\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"button1":{"type":"Button","id":"f_6d342f2f-a4ff-41f7-b85e-3582ec496b3d","defaultValue":false,"alignment":"left","text":"Read More","size":"small","mobile_size":"automatic","style":"","color":"","font":"","url":"","new_target":null,"version":"2"}}},{"type":"RepeatableItem","id":"f_4ab7644f-962d-4ba8-a092-2ba42cc50fba","components":{"media1":{"type":"Media","id":"f_aa5f9420-b48f-4718-8d1d-02775cb7810d","defaultValue":true,"video":{"type":"Video","id":"f_19911d86-0cae-41b7-985a-f9e6374a9c11","defaultValue":true,"html":"","url":"http:\/\/vimeo.com\/18150336","thumbnail_url":null,"maxwidth":700,"description":null},"image":{"type":"Image","id":"f_472fe297-d108-4866-86ce-76ea40ce7e0b","defaultValue":true,"link_url":"","thumb_url":"https:\/\/images.unsplash.com\/photo-1614204424926-196a80bf0be8?crop=entropy\u0026cs=tinysrgb\u0026fit=max\u0026fm=jpg\u0026ixid=M3wxOTc2fDB8MXxzZWFyY2h8MzB8fHBvcnRyYWl0fGVufDB8fHx8MTcxMDA5OTc1M3ww\u0026ixlib=rb-4.0.3\u0026q=80\u0026w=200","url":"!","caption":"","description":"","storageKey":"https:\/\/images.unsplash.com\/photo-1614204424926-196a80bf0be8?ixlib=rb-4.0.3\u0026q=85\u0026fm=jpg\u0026crop=entropy\u0026cs=srgb","storage":"un","storagePrefix":null,"h":1800,"w":1200,"s":null,"new_target":true,"focus":null},"current":"image"},"text1":{"type":"RichText","id":"f_24ad3c15-e881-4077-aca2-fec71cbdd0d3","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch2 class=\"s-rich-text-wrapper s-rich-text-wrapper font-size-tag-header-two s-text-font-size-over-default s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper\" style=\"font-size: 28px;\"\u003eCynthia Lawson\u003c\/h2\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"text2":{"type":"RichText","id":"f_0efa5e54-008a-4076-a622-e346ba4ee7f8","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003cp\u003e\u003cspan class=\"s-text-color-default\"\u003eUse a text section to describe your values, show more info, summarize a topic, or tell a story.\u003c\/span\u003e\u003c\/p\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"button1":{"type":"Button","id":"f_3e6b0d39-646c-4de3-8f33-fa74b0134e9b","defaultValue":false,"alignment":"left","text":"Read More","size":"small","mobile_size":"automatic","style":"","color":"","font":"","url":"","new_target":null,"version":"2"}}},{"type":"RepeatableItem","id":"f_7ddcc32f-e10c-4432-80db-75a4320a0cb6","components":{"media1":{"type":"Media","id":"f_7749b0e6-845f-4423-be3e-1be9e47c270f","defaultValue":true,"video":{"type":"Video","id":"f_d66d5e52-988b-42e9-ac45-5d8a303e6369","defaultValue":true,"html":"","url":"http:\/\/vimeo.com\/18150336","thumbnail_url":null,"maxwidth":700,"description":null},"image":{"type":"Image","id":"f_98d42875-7114-4bc3-b656-2c85f50ae499","defaultValue":true,"link_url":null,"thumb_url":"https:\/\/images.unsplash.com\/photo-1531746020798-e6953c6e8e04?crop=entropy\u0026cs=tinysrgb\u0026fit=max\u0026fm=jpg\u0026ixid=M3wxOTc2fDB8MXxzZWFyY2h8MjB8fHBvcnRyYWl0JTIwb2YlMjBtYW58ZW58MHx8fHwxNzEwMTAxNjgzfDA\u0026ixlib=rb-4.0.3\u0026q=80\u0026w=200","url":"!","caption":"","description":"","storageKey":"https:\/\/images.unsplash.com\/photo-1531746020798-e6953c6e8e04?ixlib=rb-4.0.3\u0026q=85\u0026fm=jpg\u0026crop=entropy\u0026cs=srgb","storage":"un","storagePrefix":null,"h":1500,"w":1200,"s":null,"new_target":true,"focus":null},"current":"image"},"text1":{"type":"RichText","id":"f_27b795c1-6d9c-4b1d-8efa-b58c64332868","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch2 class=\"s-rich-text-wrapper font-size-tag-header-two s-text-font-size-over-default s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper\" style=\"font-size: 28px;\"\u003eElaine Isaac\u003c\/h2\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"text2":{"type":"RichText","id":"f_c61ef585-af6b-4557-9bf1-d4a9854f089e","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003cp\u003e\u003cspan class=\"s-text-color-default\"\u003eUse a text section to describe your values, show more info, summarize a topic, or tell a story.\u003c\/span\u003e\u003c\/p\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"button1":{"type":"Button","id":"f_686b7567-51bc-4cab-a509-0b2362cca0c2","defaultValue":false,"alignment":"left","text":"Read More","size":"small","mobile_size":"automatic","style":"","color":"","font":"","url":"","new_target":null,"version":"2"}}},{"type":"RepeatableItem","id":"f_92923ef4-cceb-43ea-8bd8-b7d48974172e","components":{"media1":{"type":"Media","id":"f_e766e9a0-d795-4cf5-b78c-302211e29d18","defaultValue":true,"video":{"type":"Video","id":"f_d66d5e52-988b-42e9-ac45-5d8a303e6369","defaultValue":true,"html":"","url":"http:\/\/vimeo.com\/18150336","thumbnail_url":null,"maxwidth":700,"description":null},"image":{"type":"Image","id":"f_98d42875-7114-4bc3-b656-2c85f50ae499","defaultValue":true,"link_url":null,"thumb_url":"https:\/\/images.unsplash.com\/photo-1531746020798-e6953c6e8e04?crop=entropy\u0026cs=tinysrgb\u0026fit=max\u0026fm=jpg\u0026ixid=M3wxOTc2fDB8MXxzZWFyY2h8MjB8fHBvcnRyYWl0JTIwb2YlMjBtYW58ZW58MHx8fHwxNzEwMTAxNjgzfDA\u0026ixlib=rb-4.0.3\u0026q=80\u0026w=200","url":"!","caption":"","description":"","storageKey":"https:\/\/images.unsplash.com\/photo-1531746020798-e6953c6e8e04?ixlib=rb-4.0.3\u0026q=85\u0026fm=jpg\u0026crop=entropy\u0026cs=srgb","storage":"un","storagePrefix":null,"h":1500,"w":1200,"s":null,"new_target":true,"focus":null},"current":"image"},"text1":{"type":"RichText","id":"f_7e387022-be23-41ee-a745-723414c5e217","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch2 class=\"s-rich-text-wrapper font-size-tag-header-two s-text-font-size-over-default s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper\" style=\"font-size: 28px;\"\u003eElaine Isaac\u003c\/h2\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"text2":{"type":"RichText","id":"f_6ef5a1be-d778-40f7-a045-b1f1fed7ce5e","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003cp\u003e\u003cspan class=\"s-text-color-default\"\u003eUse a text section to describe your values, show more info, summarize a topic, or tell a story.\u003c\/span\u003e\u003c\/p\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"button1":{"type":"Button","id":"f_aad67c00-18c9-4c77-8374-9a49bc42f37e","defaultValue":false,"alignment":"left","text":"Read More","size":"small","mobile_size":"automatic","style":"","color":"","font":"","url":"","new_target":null,"version":"2"}}}],"components":{"media1":{"type":"Media","id":"f_de9f77f7-6098-44de-bb41-615bcdf9e313","defaultValue":true,"video":{"type":"Video","id":"f_954f7fd1-33b2-4ae9-9ce4-91c4e834dae9","defaultValue":true,"html":"","url":"http:\/\/vimeo.com\/18150336","thumbnail_url":null,"maxwidth":700,"description":null},"image":{"type":"Image","id":"f_7fed334a-0a25-4467-8711-d5b8695fbab7","defaultValue":true,"link_url":null,"thumb_url":"\/\/static-assets.strikinglycdn.com\/images\/editor2\/feature_list\/thumb-list-D-1.png","url":"\/\/static-assets.strikinglycdn.com\/images\/editor2\/feature_list\/list-D-1.png","caption":"","description":"","new_target":true},"current":"image"},"text1":{"type":"RichText","id":"f_86fe4657-1d56-40e3-9b00-9cea8afb7a6d","defaultValue":true,"value":"What We Do","backupValue":null,"version":null},"text2":{"type":"RichText","id":"f_166b1330-7374-47d7-97fa-aa4b3298df14","defaultValue":true,"value":"Show off your projects, features, or clients in this section.","backupValue":null,"version":null},"button1":{"type":"Button","id":"f_94a5c55a-66e5-45fc-a97a-ba1977c0dde9","defaultValue":true,"alignment":"left","text":"Read More","size":"small","mobile_size":"automatic","style":"","color":"","font":"","url":"","new_target":null}}},"text1":{"type":"RichText","id":"f_596e3d08-2a15-4dba-8269-fe6395892222","defaultValue":false,"value":"","backupValue":null,"version":1},"text2":{"type":"RichText","id":"f_ad9eb575-d476-42cc-9c1a-de0b184e3693","defaultValue":false,"value":"","backupValue":null,"version":1}}},{"type":"Slide","id":"f_15da330d-7133-4b0f-b559-1a302f8f2767","defaultValue":null,"template_thumbnail_height":"113.10666666666665","template_id":null,"template_name":"slider","origin_id":"f_0a537811-9529-4603-a02e-10a50c27421e","components":{"slideSettings":{"type":"SlideSettings","id":"f_5126dc0d-1f71-4162-af60-1affb582cb7e","defaultValue":null,"show_nav":true,"nameChanged":true,"hidden_section":false,"name":"Banner Slider","sync_key":null,"layout_variation":"noForeground","display_settings":{}},"slider1":{"type":"Slider","id":"f_0487eee6-1f7e-4fa0-bf76-5737977c13e3","defaultValue":false,"list":[{"type":"RepeatableItem","id":"f_e9b3a6ac-c8db-4b96-8f74-8a93175c55f0","defaultValue":null,"components":{"text1":{"type":"RichText","id":"f_402f61dc-8a99-4bd3-a70e-22e1b679e3fd","defaultValue":false,"value":"","backupValue":null,"version":1},"text2":{"type":"RichText","id":"f_81a9ab68-c56c-4954-a3a6-f5c904f6ce80","defaultValue":false,"value":"","backupValue":null,"version":1},"background1":{"type":"Background","id":"f_ee989942-605d-4bd0-bb8b-a88e5de44944","defaultValue":false,"url":"!","textColor":"light","backgroundVariation":"","sizing":"cover","linkUrl":"","linkTarget":"_self","videoUrl":"","videoHtml":"","storageKey":"1339460\/714081_935734","storage":"s","format":"png","h":1000,"w":2400,"s":49933,"focus":null},"media1":{"type":"Media","id":"f_fc8095b7-9efa-4cb3-be74-4741a6b66761","defaultValue":null,"video":{"type":"Video","id":"f_3588d782-b017-460a-aeee-ca980e448f45","defaultValue":null,"html":"","url":"http:\/\/vimeo.com\/18150336","thumbnail_url":null,"maxwidth":700,"description":null},"image":{"type":"Image","id":"f_5bd858aa-9778-4021-b4ed-8927811ea1b6","defaultValue":false,"link_url":"","thumb_url":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,h_1440,w_720,f_auto\/194761\/Chat_k3d9ls_jnnobh.png","url":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/194761\/Chat_k3d9ls_jnnobh.png","caption":"","description":"","storageKey":null,"storage":"c","format":"png","h":278,"w":256,"s":6553,"new_target":true},"current":"image"},"button1":{"type":"Button","id":"f_a39eb2cc-b05f-406c-bffc-1494e8a6d963","defaultValue":null,"alignment":"center","text":"Buy Now","size":"medium","style":"","color":"","font":"","url":"http:\/\/strikingly.com","new_target":null}}},{"type":"RepeatableItem","id":"f_5cf95d89-824a-492c-bb4f-8004b17bde40","defaultValue":null,"components":{"text1":{"type":"RichText","id":"f_5b85bedd-bc13-45d3-be2c-3f44c04152b6","defaultValue":false,"value":"","backupValue":null,"version":1},"text2":{"type":"RichText","id":"f_688b217b-55b4-4cec-ad89-784beee68bed","defaultValue":false,"value":"","backupValue":null,"version":1},"background1":{"type":"Background","id":"f_ada90982-9e7e-4e1f-a544-e03c4a8a0ca4","defaultValue":false,"url":"!","textColor":"light","backgroundVariation":"","sizing":"cover","linkUrl":"","linkTarget":"_self","videoUrl":"","videoHtml":"","storageKey":"1339460\/592214_661321","storage":"s","format":"png","h":1000,"w":2400,"s":78782,"focus":null},"media1":{"type":"Media","id":"f_3cae4da8-223d-442e-a7bc-cd8877c9fd42","defaultValue":null,"video":{"type":"Video","id":"f_cdae9204-9fed-4272-b8ad-29bf93fb15da","defaultValue":null,"html":"","url":"http:\/\/vimeo.com\/18150336","thumbnail_url":null,"maxwidth":700,"description":null},"image":{"type":"Image","id":"f_d2195dbf-25c7-4527-bc4d-e059a839368e","defaultValue":false,"link_url":"","thumb_url":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,h_1440,w_720,f_auto\/194761\/Chat_k3d9ls_jnnobh.png","url":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/194761\/Chat_k3d9ls_jnnobh.png","caption":"","description":"","storageKey":null,"storage":"c","format":"png","h":278,"w":256,"s":6553,"new_target":true},"current":"image"},"button1":{"type":"Button","id":"f_90b53b7c-e749-4856-875a-a819b7f33e5a","defaultValue":null,"alignment":"center","text":"Buy Now","size":"medium","style":"","color":"","font":"","url":"http:\/\/strikingly.com","new_target":null}}}],"components":{"text1":{"type":"RichText","id":"f_2a22031d-e141-406f-aa31-08bf123b2c69","defaultValue":true,"value":"","backupValue":null,"version":null},"text2":{"type":"RichText","id":"f_6ea03d6d-7e93-41a7-bdb7-f49518e9fd33","defaultValue":true,"value":"","backupValue":null,"version":null},"background1":{"type":"Background","id":"f_d63682e3-f895-49aa-b76c-9c3350b79b87","defaultValue":true,"url":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1500,w_2000,f_auto,q_auto\/1291474\/banner-section-1_dumgcv.jpg","textColor":"light","backgroundVariation":"","sizing":"cover","linkUrl":"","linkTarget":"_self","videoUrl":"","videoHtml":"","storageKey":null,"storage":null,"format":null,"h":600,"w":1600,"s":null},"media1":{"type":"Media","id":"f_808c6eda-235e-4d94-b826-b4fbeea85fe8","defaultValue":null,"video":{"type":"Video","id":"f_4d439002-8c04-41fa-a747-e5561809ad2a","defaultValue":true,"html":"","url":"http:\/\/vimeo.com\/18150336","thumbnail_url":null,"maxwidth":700,"description":null},"image":{"type":"Image","id":"f_3231a504-3177-4f77-ae57-134de2da029c","defaultValue":true,"link_url":"","thumb_url":"","url":"\/images\/themes\/onyx_new\/stri.png","caption":"","description":"","storageKey":null,"storage":null,"format":null,"h":null,"w":null,"s":null,"new_target":null},"current":"image"},"button1":{"type":"Button","id":"f_e18c1a93-d3be-4940-b802-bb61678f04df","defaultValue":true,"alignment":"center","text":"Buy Now","size":"medium","style":"","color":"","font":"","url":"http:\/\/strikingly.com","new_target":null}},"infinite_slider":false,"auto_slide":false,"transition":"horizontal","auto_play":4200}}},{"type":"Slide","id":"f_a6aa4d6f-3b38-4328-9742-464b7b698e8e","defaultValue":true,"template_thumbnail_height":"177.68354666666667","template_id":null,"template_name":"ecommerce","template_version":"beta-s6","origin_id":"f_84186746-4d45-4989-885c-13ab439ddca6","components":{"slideSettings":{"type":"SlideSettings","id":"f_477e602c-2f94-4caf-aaef-d02526f6f555","defaultValue":true,"show_nav":true,"nameChanged":true,"hidden_section":false,"name":"Simple Store","sync_key":null,"layout_variation":"landscape-one","layout_config":{"customized":false,"templateName":"C","imageShape":"square","disabledProductReview":true,"structure":"card","textAlignment":"left-align","imageSize":"m","productPerPage":3,"columns":3}},"background1":{"type":"Background","id":"f_1926764f-da5b-41cc-9ea1-affc954106a0","defaultValue":false,"url":"","textColor":"","backgroundVariation":"","sizing":"","userClassName":"","videoUrl":"","videoHtml":"","storageKey":null,"storage":null,"format":null,"h":null,"w":null,"s":null,"useImage":false,"focus":null,"backgroundColor":null},"text1":{"type":"RichText","id":"f_63d8b031-a46e-4225-ba97-36937a12d71e","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003cp class=\"s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-title s-font-title s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper font-size-tag-custom s-text-font-size-over-40 s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper\" style=\"font-size: 48px;\"\u003e\u003cspan class=\"s-text-color-default\"\u003eOrder Now\u003c\/span\u003e\u003c\/p\u003e\u003cp class=\"s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-subtitle font-size-tag-custom s-text-font-size-over-default\" style=\"font-size: 28px;\"\u003e\u003cspan class=\"s-text-color-default\"\u003ePlease Check out our products.\u003c\/span\u003e\u003c\/p\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"text2":{"type":"RichText","id":"f_b3be3e6d-a183-43fc-aa17-0de3158783ae","defaultValue":true,"value":"Check out our products.","backupValue":null,"version":null},"ecommerce1":{"type":"EcommerceComponent","id":"f_250f2b7c-dd68-4fbc-a0c6-a463d6c8e611","defaultValue":false,"text":null,"category":"all"}}},{"type":"Slide","id":"f_24ce7bbb-82b1-45c5-896d-f744c2753381","defaultValue":true,"template_thumbnail_height":"167.73333333333332","template_id":null,"template_name":"new_grid","origin_id":"f_4695b130-7f6e-469d-a02c-647be1a2346f","components":{"slideSettings":{"type":"SlideSettings","id":"f_4882e246-59be-408a-950e-0100281c6f09","defaultValue":true,"show_nav":true,"nameChanged":true,"hidden_section":false,"hidden_mobile_section":false,"name":"Grid","sync_key":null,"layout_variation":"grid-1-2--extraLarge-none-wide","display_settings":{},"layout_config":{"vertical_alignment":"middle","showTitle":false,"textAlignment":"center"}},"repeatable1":{"type":"Repeatable","id":"f_2ec8e069-527d-4dff-8e43-6eabcbff9175","defaultValue":false,"list":[{"type":"RepeatableItem","id":"f_4a3bab3c-7456-4f54-9c4b-ee105a902818","defaultValue":null,"components":{"media1":{"type":"Media","id":"f_5f5c78fb-d14a-4179-86c7-31d62f4b40a2","defaultValue":null,"video":{"type":"Video","id":"f_684e65f6-19aa-417c-9e24-b2344f95bbb6","defaultValue":null,"html":"","url":"http:\/\/vimeo.com\/18150336","thumbnail_url":null,"maxwidth":700,"description":null},"image":{"type":"Image","id":"f_0af57a9c-aaec-48a7-b586-8b3be68e104f","defaultValue":true,"link_url":null,"thumb_url":"","url":"","caption":"","description":"","new_target":true},"current":"image"},"email1":{"type":"EmailForm","id":"f_9a615268-e8fe-44ab-9cd8-ec8bfc398842","defaultValue":false,"hideMessageBox":false,"hide_name":false,"hide_email":false,"hide_phone_number":true,"name_label":"Name","name_format":"single","first_name_label":"First Name","last_name_label":"Last Name","email_label":"Email","phone_number_label":"\u7535\u8bdd","message_label":"\u7559\u8a00","submit_label":"Submit","thanksMessage":"Thanks for your submission!","recipient":"","label":""},"button1":{"type":"Button","id":"f_f1736187-ae67-4c00-b1be-966a29ed61cf","defaultValue":false,"alignment":"center","text":"","link_type":"Web","size":"medium","mobile_size":"automatic","style":"","color":"","font":"Montserrat","url":"","new_target":null,"version":"2"},"text1":{"type":"RichText","id":"f_92287be6-bc07-4aec-a875-2d7e743baf25","defaultValue":false,"value":"","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"text2":{"type":"RichText","id":"f_651f6f7c-64d8-46b7-8f01-3a8384a6cbd2","defaultValue":false,"value":"","backupValue":null,"version":null,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"background1":{"type":"Background","id":"f_8644357e-f524-4c9d-8082-816f3155d095","defaultValue":false,"url":"!","textColor":"light","backgroundVariation":"","sizing":"cover","userClassName":null,"linkUrl":"","linkTarget":"_blank","clickable":"","videoUrl":"","videoHtml":"","storageKey":"1339460\/54343_382253","storage":"s","format":"jpg","h":4772,"w":3181,"s":2288177,"useImage":true,"noCompression":null,"focus":null}},"layout_config":{"layout_component":"button","media_position":"noImage"}},{"type":"RepeatableItem","id":"f_f6210977-6cf1-4f77-9018-0bdaea107fc0","defaultValue":null,"components":{"media1":{"type":"Media","id":"f_155f3d4a-73c2-4143-8286-8069dc6139c7","defaultValue":null,"video":{"type":"Video","id":"f_dbbe449d-b20a-4fcd-8ab6-2a03cff8f6f1","defaultValue":null,"html":"","url":"http:\/\/vimeo.com\/18150336","thumbnail_url":null,"maxwidth":700,"description":null},"image":{"type":"Image","id":"f_3bfc04dd-eea2-48e7-a87f-a6a3f81ff284","defaultValue":true,"link_url":null,"thumb_url":"","url":"","caption":"","description":"","new_target":true},"current":"image"},"email1":{"type":"EmailForm","id":"f_b4be73cb-986d-4f22-abf0-b8bdc351767a","defaultValue":false,"hideMessageBox":false,"hide_name":false,"hide_email":false,"hide_phone_number":true,"name_label":"Name","name_format":"single","first_name_label":"First Name","last_name_label":"Last Name","email_label":"Email","phone_number_label":"\u7535\u8bdd","message_label":"\u7559\u8a00","submit_label":"Submit","thanksMessage":"Thanks for your submission!","recipient":"","label":""},"button1":{"type":"Button","id":"f_08f3a09a-df27-47b1-a4f8-7265993bd4dd","defaultValue":false,"alignment":"center","text":"RSVP","size":"full","mobile_size":"automatic","style":"","color":"","font":"","url":"https:\/\/www.strikingly.com\/","new_target":null,"version":"2"},"text1":{"type":"RichText","id":"f_8c0f4d21-3a39-41b5-96c6-ea78e3fb8158","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch1 class=\"s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper font-size-tag-header-one s-text-font-size-over-40 s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper\" style=\"text-align: left; font-size: 48px;\"\u003e\u003cspan class=\"s-text-color-default\"\u003eGrid Layout Title\u003c\/span\u003e\u003c\/h1\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":"left","lastLineTextAlign":"left"}},"text2":{"type":"RichText","id":"f_2971a6f0-2321-4cbc-8691-360d242645ed","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003cp class=\"s-rich-text-wrapper\" style=\"text-align: left;\"\u003e\u003cspan style=\"color: #222222;\"\u003eLorem ipsum dolor sit amet, cum aliquam inermis consequuntur eu, cu zril tempor reformidans nam, ut pri democritum consectetuer.\u003c\/span\u003e\u003c\/p\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":"left","lastLineTextAlign":"left"}},"background1":{"type":"Background","id":"f_d2b794a1-f9c8-4234-9a78-3c4555527049","defaultValue":false,"url":"","textColor":"","backgroundVariation":"","sizing":"","userClassName":"","linkUrl":null,"linkTarget":"_blank","clickable":"","videoUrl":"","videoHtml":"","storageKey":null,"storage":null,"format":null,"h":null,"w":null,"s":null,"useImage":false,"noCompression":null,"focus":null,"backgroundColor":{"themeColorRangeIndex":null,"value":"#E8EAEC","type":null}}},"layout_config":{"layout_component":"button","media_position":"noImage"}}],"components":{"media1":{"type":"Media","id":"f_0fe15f34-04b1-41a4-a042-1b814b511d3f","defaultValue":null,"video":{"type":"Video","id":"f_60b560f7-eae9-4b8a-b476-6d46590dd12e","defaultValue":null,"html":"","url":"http:\/\/vimeo.com\/18150336","thumbnail_url":null,"maxwidth":700,"description":null},"image":{"type":"Image","id":"f_931d1a45-5ff6-42f9-9767-cdda730dd240","defaultValue":true,"link_url":null,"thumb_url":"","url":"","caption":"","description":"","new_target":true},"current":"image"},"email1":{"type":"EmailForm","id":"f_5c6df6d0-a3d5-48bf-8bed-6cbd9128d434","defaultValue":null,"hideMessageBox":false,"hide_name":false,"hide_email":false,"hide_phone_number":true,"name_label":"\u540d\u5b57","name_format":"single","first_name_label":"First Name","last_name_label":"Last Name","email_label":"\u90ae\u7bb1","phone_number_label":"\u7535\u8bdd","message_label":"\u7559\u8a00","submit_label":"\u63d0\u4ea4","thanksMessage":"\u611f\u8c22\u63d0\u4ea4","recipient":"","label":""},"button1":{"type":"Button","id":"f_06bc2a4f-a406-4063-8a7b-8502ee175805","defaultValue":null,"alignment":"center","text":"","size":"medium","mobile_size":"automatic","style":"","color":"","font":"","url":"https:\/\/www.strikingly.com\/","new_target":null},"text1":{"type":"RichText","id":"f_a91310b1-4935-40ed-869f-49d0a3f56125","defaultValue":true,"value":"","backupValue":null,"version":null},"text2":{"type":"RichText","id":"f_b98cd6c8-a58b-4dc1-a91b-ed2ef35fc085","defaultValue":true,"value":"","backupValue":null,"version":null},"background1":{"type":"Background","id":"f_ee8121fe-2c8d-4cb5-8d5d-7cdccab427c5","defaultValue":true,"url":"","textColor":"overlay","backgroundVariation":"","sizing":"cover","userClassName":null,"linkUrl":null,"linkTarget":"_blank","clickable":"","videoUrl":"","videoHtml":"","storageKey":null,"storage":null,"format":null,"h":null,"w":null,"s":null,"noCompression":null,"backgroundColor":{"themeColorRangeIndex":null,"type":null,"value":"#E8EAEC"}}}},"text1":{"type":"RichText","id":"f_6d9e0876-4d0f-4212-a146-f467288634f2","defaultValue":true,"value":"","backupValue":null,"version":null},"text2":{"type":"RichText","id":"f_4bbbdaee-99ad-4423-bd85-3eecd40da193","defaultValue":true,"value":"","backupValue":null,"version":null},"background1":{"type":"Background","id":"f_ce527344-85b8-4140-9d21-086da50cd414","defaultValue":true,"url":"","textColor":"light","backgroundVariation":"","sizing":"cover","videoUrl":"","videoHtml":""}}},{"type":"Slide","id":"f_03abdd1e-5e3a-4152-b452-6d2769ac9eae","defaultValue":true,"template_thumbnail_height":"134.90569866666667","template_id":null,"template_name":"text","origin_id":"f_4d72a004-a263-4099-add9-38a873691862","components":{"slideSettings":{"type":"SlideSettings","id":"f_fd3a4c9c-1a48-4030-9162-1d6100ea9bf0","defaultValue":null,"show_nav":true,"hidden_section":false,"name":"Plain Text","sync_key":null,"layout_variation":"text-two-text"},"background1":{"type":"Background","id":"f_1b9f37aa-70d4-486d-93d3-1d296054f3ca","defaultValue":true,"url":"","textColor":"light","backgroundVariation":"","sizing":"cover","videoUrl":"","videoHtml":"","storageKey":null,"storage":null,"format":null,"h":null,"w":null,"focus":null},"text1":{"type":"RichText","id":"f_cc48cdeb-f4a2-445b-9688-a83285458701","defaultValue":true,"value":"","backupValue":null,"version":null},"text2":{"type":"RichText","id":"f_647fa5aa-aa19-4f56-bc81-f8186bdf3cb0","defaultValue":true,"value":"","backupValue":null,"version":null},"repeatable1":{"type":"Repeatable","id":"f_51ca458f-6e8c-4681-8fd2-79831b526ff7","defaultValue":false,"list":[{"type":"RepeatableItem","id":"f_54620b54-cdc1-483d-8c56-0ab343fb11de","defaultValue":true,"components":{"text1":{"type":"RichText","id":"f_6b4ef6d9-da4b-48be-9798-d7bedd55e346","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch1 class=\" font-size-tag-header-one s-text-font-size-over-40\" style=\"font-size: 48px;\"\u003e\u003cspan class=\"s-text-color-default\"\u003ePassion\u003c\/span\u003e\u003c\/h1\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"text2":{"type":"RichText","id":"f_f1a51427-6b32-4066-871c-e523f0d0f9db","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003cp class=\"s-text-color-default s-rich-text-wrapper s-rich-text-wrapper font-size-tag-paragraph s-text-font-size-over-default\" style=\"font-size: 18px;\"\u003e\u003cspan class=\"s-text-color-default\"\u003eUse a text section to describe your values, show more info, summarize a topic, or tell a story. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore.\u003c\/span\u003e\u003c\/p\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"button1":{"type":"Button","id":"f_90c83d09-7201-41a5-92b8-21e523b55c9c","defaultValue":true,"alignment":"center","text":"","size":"medium","style":"","color":"","font":"","url":"","new_target":null}}},{"type":"RepeatableItem","id":"f_239bdfcb-0703-4f43-bbe0-16e189cd02dd","defaultValue":true,"components":{"text1":{"type":"RichText","id":"f_6141c694-dd91-4bb8-8fc2-32db1e0cfabe","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch1 class=\"s-rich-text-wrapper font-size-tag-header-one s-text-font-size-over-40\" style=\"font-size: 48px;\"\u003eIndependence\u003c\/h1\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"text2":{"type":"RichText","id":"f_8e8be85d-c5cf-4de7-949c-5746c418e640","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003cp class=\"s-text-color-default s-rich-text-wrapper s-rich-text-wrapper font-size-tag-paragraph s-text-font-size-over-default\" style=\"font-size: 18px;\"\u003e\u003cspan class=\"s-text-color-default\"\u003eUse a text section to describe your values, show more info, summarize a topic, or tell a story. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore.\u003c\/span\u003e\u003c\/p\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"button1":{"type":"Button","id":"f_b4c9cd8c-7684-48a5-8742-84cab617a12a","defaultValue":true,"alignment":"center","text":"","size":"medium","style":"","color":"","font":"","url":"","new_target":null}}},{"type":"RepeatableItem","id":"f_a430df0f-d816-4b6f-92a9-132fd5fe2d5e","components":{"text1":{"type":"RichText","id":"f_e04feeb1-fd09-45e1-89a6-7b765e43e9d0","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch1 class=\" font-size-tag-header-one s-text-font-size-over-40\" style=\"font-size: 48px;\"\u003e\u003cspan class=\"s-text-color-default\"\u003eCourage\u003c\/span\u003e\u003c\/h1\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"text2":{"type":"RichText","id":"f_ef7e5929-abcf-4c63-a470-3a84b2a7286a","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003cp class=\"s-text-color-default s-rich-text-wrapper s-rich-text-wrapper font-size-tag-paragraph s-text-font-size-over-default\" style=\"font-size: 18px;\"\u003e\u003cspan class=\"s-text-color-default\"\u003eUse a text section to describe your values, show more info, summarize a topic, or tell a story. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore.\u003c\/span\u003e\u003c\/p\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"button1":{"type":"Button","id":"f_4e30d824-03ed-4d02-9e27-5846f646dfda","defaultValue":true,"alignment":"center","text":"","size":"medium","style":"","color":"","font":"","url":"","new_target":null}}}],"components":{"text1":{"type":"RichText","id":"f_c88d3e92-1304-4a25-aff5-531e6939dfdd","defaultValue":true,"value":"Title Text","backupValue":null,"version":null},"text2":{"type":"RichText","id":"f_69d661d3-dc3d-43e2-8f78-ab53556534e6","defaultValue":true,"value":"Use a text section to describe your values, or show more info, or summarize a topic, or tell a story. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore.","backupValue":null,"version":null},"button1":{"type":"Button","id":"f_6007b04b-c1ef-41c0-b606-c846de2f3d85","defaultValue":true,"alignment":"center","text":"","size":"medium","style":"","color":"","font":"","url":"","new_target":null}}}}},{"type":"Slide","id":"f_3fe1c4d9-3cf1-4caa-ad24-4156e965071e","defaultValue":true,"template_thumbnail_height":"174.53333333333333","template_id":null,"template_name":"new_grid","origin_id":"f_ae70e6fb-eef2-4b84-8221-5556c1be1077","components":{"slideSettings":{"type":"SlideSettings","id":"f_d80b5829-247d-49ee-b244-e1d9d0153ae8","defaultValue":true,"show_nav":true,"nameChanged":true,"hidden_section":false,"hidden_mobile_section":false,"name":"Grid","sync_key":null,"layout_variation":"grid-1-1--extraLarge-large-wide","display_settings":{},"layout_config":{"vertical_alignment":"middle","showTitle":false,"textAlignment":"center"}},"repeatable1":{"type":"Repeatable","id":"f_ac4a5db0-0c27-4eb0-a8f9-508120ce72b6","defaultValue":false,"list":[{"type":"RepeatableItem","id":"f_303d4f88-42b1-4d86-8a1c-50135bbdd7db","defaultValue":null,"components":{"media1":{"type":"Media","id":"f_52d2a361-cbd9-47e4-a826-5843ad964c3f","defaultValue":null,"video":{"type":"Video","id":"f_6a2aba1c-609f-4f55-97b0-adb86d9bb267","defaultValue":null,"html":"","url":"http:\/\/vimeo.com\/18150336","thumbnail_url":null,"maxwidth":700,"description":null},"image":{"type":"Image","id":"f_857e16f3-ebf6-41c6-a535-2ddacad5e3d4","defaultValue":true,"link_url":null,"thumb_url":"","url":"","caption":"","description":"","new_target":true},"current":"image"},"email1":{"type":"EmailForm","id":"f_8a774256-f418-4d86-954d-adbcec0497a4","defaultValue":false,"hideMessageBox":false,"hide_name":false,"hide_email":false,"hide_phone_number":true,"name_label":"Name","name_format":"single","first_name_label":"First Name","last_name_label":"Last Name","email_label":"Email","phone_number_label":"\u7535\u8bdd","message_label":"\u7559\u8a00","submit_label":"Submit","thanksMessage":"Thanks for your submission!","recipient":"","label":""},"button1":{"type":"Button","id":"f_114df393-8089-4533-b8c0-12d8afc49efd","defaultValue":false,"alignment":"center","text":"Learn More","size":"medium","mobile_size":"automatic","style":"","color":"","font":"Montserrat","url":"","new_target":null,"version":"2"},"text1":{"type":"RichText","id":"f_644b37cb-7f6e-404b-9760-266cf2530edd","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch1 class=\"s-rich-text-wrapper font-size-tag-header-one s-text-font-size-over-40 s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper\" style=\"font-size: 48px;\"\u003e\u003cspan class=\"s-text-color-default\"\u003eWe Hope You Can Make It \u003c\/span\u003e\u003c\/h1\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"text2":{"type":"RichText","id":"f_a3beabe1-aeaa-4b13-8ddf-ca7d345c48cf","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003cp class=\"s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper\"\u003e\u003cspan class=\"s-text-color-default\"\u003eUse a text section to describe your values, show more info, summarize a topic, or tell a story. \u003c\/span\u003e\u003c\/p\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"background1":{"type":"Background","id":"f_fd20379c-0525-41ae-81c6-dbe8e92a1b39","defaultValue":false,"url":"","textColor":"","backgroundVariation":"","sizing":"","userClassName":"","linkUrl":"","linkTarget":"_blank","clickable":"","videoUrl":"","videoHtml":"","storageKey":null,"storage":null,"format":null,"h":null,"w":null,"s":null,"useImage":false,"noCompression":null,"focus":null,"backgroundColor":{"themeColorRangeIndex":null,"value":"#E8EAEC","type":null}}},"layout_config":{"layout_component":"button","media_position":"noImage"}}],"components":{"media1":{"type":"Media","id":"f_8459cc7d-8e08-462a-a58d-0f006ca0879c","defaultValue":null,"video":{"type":"Video","id":"f_02e9db1c-c71e-4c36-8372-3e11062d86f1","defaultValue":null,"html":"","url":"http:\/\/vimeo.com\/18150336","thumbnail_url":null,"maxwidth":700,"description":null},"image":{"type":"Image","id":"f_eb5a7af7-540d-45ea-86bd-ccda3fef4bc4","defaultValue":true,"link_url":null,"thumb_url":"","url":"","caption":"","description":"","new_target":true},"current":"image"},"email1":{"type":"EmailForm","id":"f_c1545f0e-33ac-4298-99f8-64cd0204c4e4","defaultValue":null,"hideMessageBox":false,"hide_name":false,"hide_email":false,"hide_phone_number":true,"name_label":"\u540d\u5b57","name_format":"single","first_name_label":"First Name","last_name_label":"Last Name","email_label":"\u90ae\u7bb1","phone_number_label":"\u7535\u8bdd","message_label":"\u7559\u8a00","submit_label":"\u63d0\u4ea4","thanksMessage":"\u611f\u8c22\u63d0\u4ea4","recipient":"","label":""},"button1":{"type":"Button","id":"f_a8494f22-c38f-407c-8c87-3d2dba76afc1","defaultValue":null,"alignment":"center","text":"","size":"medium","mobile_size":"automatic","style":"","color":"","font":"","url":"https:\/\/www.strikingly.com\/","new_target":null},"text1":{"type":"RichText","id":"f_be211ee0-827b-4ebf-874e-346d0553ecae","defaultValue":true,"value":"","backupValue":null,"version":null},"text2":{"type":"RichText","id":"f_c70d9a6f-dac5-4e20-80c6-dece12fe4bfd","defaultValue":true,"value":"","backupValue":null,"version":null},"background1":{"type":"Background","id":"f_2e0f5dcc-bc73-435f-998e-c7b2d4edb0a6","defaultValue":true,"url":"","textColor":"overlay","backgroundVariation":"","sizing":"cover","userClassName":null,"linkUrl":null,"linkTarget":"_blank","clickable":"","videoUrl":"","videoHtml":"","storageKey":null,"storage":null,"format":null,"h":null,"w":null,"s":null,"noCompression":null,"backgroundColor":{"themeColorRangeIndex":null,"type":null,"value":"#E8EAEC"}}}},"text1":{"type":"RichText","id":"f_9d85fa31-f8f2-4964-a880-e6336fd2edbb","defaultValue":true,"value":"","backupValue":null,"version":null},"text2":{"type":"RichText","id":"f_e3505286-d520-4e59-8c2f-b300980abea9","defaultValue":true,"value":"","backupValue":null,"version":null},"background1":{"type":"Background","id":"f_f30b1e62-3954-430f-b990-85467576d97c","defaultValue":true,"url":"","textColor":"light","backgroundVariation":"","sizing":"cover","videoUrl":"","videoHtml":""}}},{"type":"Slide","id":"f_991ebcb6-38f8-47ee-963f-0def71056285","defaultValue":true,"template_thumbnail_height":"140.77407599999998","template_id":null,"template_name":"info","origin_id":"f_c8b271c2-2ed3-4c26-a5a5-05bb68619695","components":{"slideSettings":{"type":"SlideSettings","id":"f_f0947c8f-144f-424d-bdcd-80f3c2bab807","defaultValue":true,"show_nav":true,"show_nav_multi_mode":false,"hidden_section":false,"name":"Info","sync_key":null,"layout_variation":"box-two-text"},"background1":{"type":"Background","id":"f_4bbcb75c-046f-40df-b50f-23a2ec7f8c6b","defaultValue":true,"url":"","textColor":"light","backgroundVariation":"","sizing":"cover","videoUrl":"","videoHtml":""},"text1":{"type":"RichText","id":"f_6c234025-8b62-42cd-8d41-e35f9ba4e66e","defaultValue":true,"value":"","backupValue":null,"version":null},"text2":{"type":"RichText","id":"f_988f1c52-c06a-48d3-bdbd-355ecd573285","defaultValue":true,"value":"","backupValue":null,"version":null},"repeatable1":{"type":"Repeatable","id":"f_8e05c453-0500-4771-8f39-fcf836d82034","defaultValue":false,"list":[{"type":"RepeatableItem","id":"f_30ec90f3-4858-484f-85f2-f3d237ead92b","defaultValue":true,"components":{"text1":{"type":"RichText","id":"f_e6c33de7-a5d4-41fd-8746-77211dd5aef6","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch1 class=\"s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper font-size-tag-header-one\" style=\"font-size: 48px;\"\u003e\u003cspan class=\"s-text-color-default\"\u003e20M\u003c\/span\u003e\u003c\/h1\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"text2":{"type":"RichText","id":"f_6660ad6b-0685-4116-89bc-18ee93a8fae9","defaultValue":false,"value":"People reached","backupValue":null,"version":null,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"button1":{"type":"Button","id":"f_4a841d3b-3afb-46da-a0ea-d5c500ab1172","defaultValue":true,"alignment":"center","text":"","size":"medium","style":"","color":"","font":"","url":"","new_target":null}}},{"type":"RepeatableItem","id":"f_c04e1a48-f3b0-4039-8613-9bddba4aa923","defaultValue":true,"components":{"text1":{"type":"RichText","id":"f_2114f9e3-4ec4-4483-b06a-39181050e623","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch1 class=\"s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper font-size-tag-header-one s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper\" style=\"font-size: 48px;\"\u003e\u003cspan class=\"s-text-color-default\"\u003e\u20ac30M\u003c\/span\u003e\u003c\/h1\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"text2":{"type":"RichText","id":"f_e40245f1-d7f7-4f20-ab40-9a9c7780be30","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003cp\u003eFunding raised\u003c\/p\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"button1":{"type":"Button","id":"f_eab0556a-6a83-4e1d-b130-6859286fdc65","defaultValue":true,"alignment":"center","text":"","size":"medium","style":"","color":"","font":"","url":"","new_target":null}}},{"type":"RepeatableItem","id":"f_4361d649-3d34-4fac-a5d2-62b111645793","components":{"text1":{"type":"RichText","id":"f_95f39566-79cb-48c1-a139-e8aa6df45b03","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch1 class=\"s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper font-size-tag-header-one s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper\" style=\"font-size: 48px;\"\u003e\u003cspan class=\"s-text-color-default\"\u003e\u20ac1.5M\u003c\/span\u003e\u003c\/h1\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"text2":{"type":"RichText","id":"f_a0220ec2-7aab-4033-b878-7777e7724540","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003cp class=\"s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper\"\u003eFunding raised\u003c\/p\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"button1":{"type":"Button","id":"f_e54faf97-202c-49f7-bc65-8a6aca8d4acd","defaultValue":true,"alignment":"center","text":"","size":"medium","style":"","color":"","font":"","url":"","new_target":null}}},{"type":"RepeatableItem","id":"f_fc072dd4-0862-475b-bb03-04c5c9584359","components":{"text1":{"type":"RichText","id":"f_19a9316f-cba6-4934-b2a7-57e596c868e4","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch1 class=\"s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper font-size-tag-header-one s-rich-text-wrapper s-rich-text-wrapper\" style=\"font-size: 48px;\"\u003e\u003cspan class=\"s-text-color-default\"\u003e\u20ac25M\u003c\/span\u003e\u003c\/h1\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"text2":{"type":"RichText","id":"f_aad4078c-c3fb-4ce7-9956-025d6b1d2fb7","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003cp class=\"s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper\"\u003eFunding raised\u003c\/p\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"button1":{"type":"Button","id":"f_db89c06f-768f-454d-aca1-df4af66aa912","defaultValue":true,"alignment":"center","text":"","size":"medium","style":"","color":"","font":"","url":"","new_target":null}}},{"type":"RepeatableItem","id":"f_eff87e2c-420e-4514-ac8e-8a8814ba3bfa","components":{"text1":{"type":"RichText","id":"f_33b7eab0-9755-40ba-b083-ff9892f6799c","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch1 class=\"s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper font-size-tag-header-one s-rich-text-wrapper s-rich-text-wrapper\" style=\"font-size: 48px;\"\u003e\u003cspan class=\"s-text-color-default\"\u003e\u20ac10M\u003c\/span\u003e\u003c\/h1\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"text2":{"type":"RichText","id":"f_a5b1fcbc-e5b3-42a9-b6b4-a6c20cc092fd","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003cp\u003e\u003cspan class=\"s-text-color-default\"\u003eFunding raised\u003c\/span\u003e\u003c\/p\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"button1":{"type":"Button","id":"f_430f3cb3-ba6c-45fa-9bca-904fef067fb9","defaultValue":true,"alignment":"center","text":"","size":"medium","style":"","color":"","font":"","url":"","new_target":null}}},{"type":"RepeatableItem","id":"f_af88a9bc-6a03-400f-9be4-c50cf3781990","components":{"text1":{"type":"RichText","id":"f_c8af0a5c-952f-4c10-9f88-c0371a96b884","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch1 class=\"s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper font-size-tag-header-one s-rich-text-wrapper s-rich-text-wrapper\" style=\"font-size: 48px;\"\u003e\u003cspan class=\"s-text-color-default\"\u003e\u20ac15M\u003c\/span\u003e\u003c\/h1\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"text2":{"type":"RichText","id":"f_bd2eb903-6208-4132-9eb7-611a7e982297","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003cp class=\"s-text-color-default s-rich-text-wrapper\"\u003e\u003cspan class=\"s-text-color-default\"\u003eFunding raised\u003c\/span\u003e\u003c\/p\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"button1":{"type":"Button","id":"f_72cde7a5-003e-43b5-8387-22a4e428fd30","defaultValue":true,"alignment":"center","text":"","size":"medium","style":"","color":"","font":"","url":"","new_target":null}}}],"components":{"text1":{"type":"RichText","id":"f_2cc6f6ef-fe8e-4d34-8beb-fa32be1498e7","defaultValue":true,"value":"500","backupValue":null,"version":null},"text2":{"type":"RichText","id":"f_6a9073c9-ea5d-4763-9c39-e3edf6295081","defaultValue":true,"value":"Clients served","backupValue":null,"version":null},"button1":{"type":"Button","id":"f_8517b870-1e35-4990-8b85-c185c52bd205","defaultValue":true,"alignment":"center","text":"","size":"medium","style":"","color":"","font":"","url":"","new_target":null}}}}},{"type":"Slide","id":"f_486cea7c-40c2-4511-a5ae-b364a797ede8","defaultValue":true,"template_thumbnail_height":"109.06204933333332","template_id":null,"template_name":"info","origin_id":"f_6a763980-7e8e-4d00-bce3-7914b6e09c19","components":{"slideSettings":{"type":"SlideSettings","id":"f_f0e690b3-2016-4cc3-aa61-22e9bf7e8ce2","defaultValue":true,"show_nav":true,"hidden_section":false,"name":"Info","sync_key":null,"layout_variation":"box-three-button"},"background1":{"type":"Background","id":"f_8944f96d-9983-4a84-b3d6-2dfee794fdeb","defaultValue":true,"url":"","textColor":"light","backgroundVariation":"","sizing":"cover","videoUrl":"","videoHtml":""},"text1":{"type":"RichText","id":"f_2d3c12b0-3fb8-4dc1-ae50-7ac83e4a800e","defaultValue":true,"value":"","backupValue":null,"version":null},"text2":{"type":"RichText","id":"f_0f09a3e3-8f1d-4c23-8f80-d825d9b735fc","defaultValue":true,"value":"","backupValue":null,"version":null},"repeatable1":{"type":"Repeatable","id":"f_aa7d7076-edd6-4eba-9dd7-d3b308c8977c","defaultValue":false,"list":[{"type":"RepeatableItem","id":"f_3dee32cc-4dda-4502-9d9d-334308b4cead","defaultValue":true,"components":{"text1":{"type":"RichText","id":"f_b833b383-91b2-4b95-a773-1942b80a3971","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch1 class=\"s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default font-size-tag-header-one s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper\" style=\"font-size: 48px;\"\u003e\u003cspan class=\"s-text-color-default\"\u003e20M\u003c\/span\u003e\u003c\/h1\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"text2":{"type":"RichText","id":"f_cc203ee6-2950-419c-943d-772079de198f","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003cp class=\"s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper font-size-tag- s-text-font-size-over- s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper\" style=\"font-size: unset;\"\u003e\u003cspan class=\"s-text-color-default\"\u003eUse a text section to describe your values, show more info, summarize a topic, or tell a story. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore.\u003c\/span\u003e\u003c\/p\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"button1":{"type":"Button","id":"f_59e05b1c-53b1-4aec-900b-c4844da3bf70","defaultValue":false,"alignment":"center","text":"Submit","size":"full","style":"","color":"","font":"","url":"","new_target":null,"version":"2"},"background1":{"type":"Background","id":"f_1a87acac-7c96-4d88-af52-8f175e9eb31f","defaultValue":true,"url":"","textColor":"light","backgroundVariation":"","sizing":"cover","videoUrl":"","videoHtml":""}}},{"type":"RepeatableItem","id":"f_743abe9e-d2bd-4832-b923-42c790b9c959","defaultValue":true,"components":{"text1":{"type":"RichText","id":"f_f87d20d3-8dbd-4ded-86c6-4549bd1aa70f","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch1 class=\"s-text-color-default s-text-color-default s-text-color-default s-text-color-default font-size-tag-header-one s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper\" style=\"font-size: 48px;\"\u003e\u003cspan class=\"s-text-color-default\"\u003e\u20ac30M\u003c\/span\u003e\u003c\/h1\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"text2":{"type":"RichText","id":"f_29158daf-1a25-46bf-9e58-d8149d7adbf8","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003cp class=\"s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper font-size-tag- s-text-font-size-over- s-rich-text-wrapper s-rich-text-wrapper\" style=\"font-size: unset;\"\u003e\u003cspan class=\"s-text-color-default\"\u003eUse a text section to describe your values, show more info, summarize a topic, or tell a story. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore.\u003c\/span\u003e\u003c\/p\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"button1":{"type":"Button","id":"f_afdecc10-e20d-434d-b292-f208cc5975ac","defaultValue":false,"alignment":"center","text":"Submit","size":"full","style":"","color":"","font":"","url":"","new_target":null,"version":"2"},"background1":{"type":"Background","id":"f_0372bd69-8111-4afb-a67e-295f02b0326c","defaultValue":true,"url":"","textColor":"light","backgroundVariation":"","sizing":"cover","videoUrl":"","videoHtml":""}}},{"type":"RepeatableItem","id":"f_ff72ff9f-cf81-4cca-a197-086abe7cc4c0","components":{"text1":{"type":"RichText","id":"f_c165058a-cbb1-42b8-9291-e72e7fec226e","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch1 class=\"s-text-color-default s-text-color-default font-size-tag-header-one s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper\" style=\"font-size: 48px;\"\u003e\u003cspan class=\"s-text-color-default\"\u003e\u20ac1.5M\u003c\/span\u003e\u003c\/h1\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"text2":{"type":"RichText","id":"f_ab6d9ba0-37b6-46b1-88d1-b3a7012c8832","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003cp class=\"s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper font-size-tag- s-text-font-size-over- s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper\" style=\"font-size: unset;\"\u003e\u003cspan class=\"s-text-color-default\"\u003eUse a text section to describe your values, show more info, summarize a topic, or tell a story. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore.\u003c\/span\u003e\u003c\/p\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"button1":{"type":"Button","id":"f_c1b922b3-dc25-46bf-9681-8410a202cd3a","defaultValue":false,"alignment":"center","text":"Submit","size":"full","style":"","color":"","font":"","url":"","new_target":null,"version":"2"},"background1":{"type":"Background","id":"f_9667ceb8-4475-4f0e-95bf-190a5af29313","defaultValue":true,"url":"","textColor":"light","backgroundVariation":"","sizing":"cover","videoUrl":"","videoHtml":""}}}],"components":{"text1":{"type":"RichText","id":"f_37421411-efcc-4f3c-b252-ac48803feeb3","defaultValue":true,"value":"500","backupValue":null,"version":null},"text2":{"type":"RichText","id":"f_d1726ee2-ad0e-44d0-aad9-2f44a92698ce","defaultValue":true,"value":"Clients served","backupValue":null,"version":null},"button1":{"type":"Button","id":"f_7f446b25-4bec-401b-a20d-59609272990f","defaultValue":true,"alignment":"center","text":"","size":"medium","style":"","color":"","font":"","url":"","new_target":null}}}}},{"type":"Slide","id":"f_6243cf57-f513-4aaf-ad00-84d55c4d8e6d","defaultValue":true,"template_thumbnail_height":"149.25299599999997","template_id":null,"template_name":"faq","origin_id":"f_2c2fa4c1-39aa-4e89-9ce1-4d5ee2a7f741","components":{"slideSettings":{"type":"SlideSettings","id":"f_20c6bbaa-42f8-4ade-8d38-b2514a669ff7","defaultValue":null,"show_nav":true,"show_nav_multi_mode":false,"hidden_section":false,"name":"FAQs","sync_key":null,"layout_variation":"normal","layout_config":{"layout":"A","columns":"one","color":""}},"background1":{"type":"Background","id":"f_e06eb693-6772-489a-b760-13fcde9945fd","defaultValue":true,"url":"","textColor":"light","backgroundVariation":"","sizing":"cover","videoUrl":"","videoHtml":""},"text1":{"type":"RichText","id":"f_3ca9d02e-7b09-4639-a670-c3bb680c56c4","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch1 class=\"s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper font-size-tag-header-one\" style=\"font-size: 48px;\"\u003eFAQs\u003c\/h1\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"text2":{"type":"RichText","id":"f_564969c0-a272-4fa0-a29c-df14ae56bdb1","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch2 class=\"s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper font-size-tag-header-two s-text-font-size-over-default\" style=\"font-size: 28px;\"\u003e\u003cspan class=\"s-text-color-default\"\u003eAdd a subtitle here. \u003c\/span\u003e\u003c\/h2\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"repeatable1":{"type":"Repeatable","id":"f_d8ef82df-8ad0-4007-aa02-cde4d618bb37","list":[{"type":"RepeatableItem","id":"f_42ee1e3e-74aa-4352-82a3-ce77c4b9be84","defaultValue":true,"components":{"text1":{"type":"RichText","id":"f_3f45342b-cf87-4ad1-8331-6ad6bbe1693c","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch2 class=\"font-size-tag-header-two\" style=\"font-size: 28px;\"\u003eWhat is the FAQ section?\u003c\/h2\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"text2":{"type":"RichText","id":"f_e8e09490-6811-4d89-b820-b0b7804bc043","defaultValue":false,"value":"The FAQ section lets you show expandable content. Enter questions and answers, or more detailed information for anything you want!","backupValue":null,"version":null,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}}}},{"type":"RepeatableItem","id":"f_8ee53ce0-52f8-48f4-843a-728f42c70c39","defaultValue":true,"components":{"text1":{"type":"RichText","id":"f_650909d0-da9c-490f-8f63-8749c6410b17","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch2 class=\"font-size-tag-header-two s-rich-text-wrapper\" style=\"font-size: 28px;\"\u003e\u003cspan class=\"s-text-color-default\"\u003eWhat is Strikingly?\u003c\/span\u003e\u003c\/h2\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"text2":{"type":"RichText","id":"f_7338d458-4a1c-4fbc-adf7-f5eeb6daeaca","defaultValue":true,"value":"Strikingly is a store \u0026amp; site builder that allows anyone to create a beautiful website and start selling products within minutes.","backupValue":null,"version":null}}},{"type":"RepeatableItem","id":"f_5418c2c0-66a8-46b0-baf8-a1ff6cc79a72","defaultValue":true,"components":{"text1":{"type":"RichText","id":"f_02f28f88-52c0-4bad-baf8-2afb1174d473","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch2 class=\"font-size-tag-header-two\" style=\"font-size: 28px;\"\u003eHow do I create a website?\u003c\/h2\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"text2":{"type":"RichText","id":"f_860c5010-9f2f-4b34-b563-e303420f093b","defaultValue":true,"value":"With Strikingly, it's incredibly easy to create a website. Just pick a template, add sections, change the content, and click Publish. Millions of sites have already been created -- yours is next!","backupValue":null,"version":null}}}]}}},{"type":"Slide","id":"f_9c5d64ce-d1b3-45d0-b9c7-0f921106bf1f","defaultValue":true,"template_thumbnail_height":"196.73945866666665","template_id":null,"template_name":"pricing","template_version":"beta-s6","origin_id":"f_f63485b7-3a4b-4573-bf0d-8181c5995627","components":{"slideSettings":{"type":"SlideSettings","id":"f_9ae1b8cd-5e25-434f-b7ad-eefc3d58cbd6","defaultValue":true,"show_nav":true,"nameChanged":true,"hidden_section":false,"name":"Pricing Table","sync_key":null,"layout_variation":"pricing-layout-1","display_settings":{"highlighted_id":"item-middle-id","highlighted_index":1}},"text1":{"type":"RichText","id":"f_80d9734b-a169-4ade-8fac-6928ae2352d6","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch1 class=\"s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-title s-font-title s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper font-size-tag-header-one s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper\" style=\"font-size: 48px;\"\u003e\u003cspan class=\"s-text-color-default\"\u003eBecome a Member Today\u003c\/span\u003e\u003c\/h1\u003e\u003ch2 class=\"s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-subtitle font-size-tag-header-two s-text-font-size-over-default\" style=\"font-size: 28px;\"\u003e\u003cspan class=\"s-text-color-default\"\u003eJoin us for these amazing benefits.\u003c\/span\u003e\u003c\/h2\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"text2":{"type":"RichText","id":"f_0f55ed80-30a9-461d-87df-52b6b4e293ba","defaultValue":true,"value":"\u003cdiv\u003eJoin us for these amazing benefits.\u003c\/div\u003e","backupValue":null,"version":null},"text3":{"type":"RichText","id":"f_0d430a3d-ae0e-40b4-a21d-25f7859ee6f9","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003cp class=\"s-text-color-default s-text-color-default s-rich-text-wrapper s-rich-text-wrapper\" style=\"font-size: 80%;\"\u003e\u003cspan class=\"s-text-color-default\"\u003eRecommended\u003c\/span\u003e\u003c\/p\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"background1":{"type":"Background","id":"f_04ac9373-4011-4593-a653-e402c9a7d403","defaultValue":false,"url":null,"textColor":"overlay","backgroundVariation":"","sizing":"cover","videoUrl":"","videoHtml":"","storageKey":null,"storage":null,"format":null,"h":null,"w":null,"s":null},"repeatable1":{"type":"Repeatable","id":"f_631b5d0c-2ff9-4598-82e0-4ff334225ca5","defaultValue":false,"list":[{"type":"RepeatableItem","id":"f_fa992977-2413-42f8-9a89-1f7bd8c26d30","defaultValue":null,"components":{"image1":{"type":"Image","id":"f_c8e94325-951d-4d25-a821-34011881a78f","defaultValue":true,"link_url":null,"thumb_url":"!","url":"!","caption":"","description":"","storageKey":"1339460\/348708_289203","storage":"s","storagePrefix":null,"format":"png","h":360,"w":480,"s":47961,"new_target":true,"focus":null},"title1":{"type":"RichText","id":"f_e02ab9c5-c989-4368-a856-99a37b364893","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003cp class=\"s-text-color-default s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper\" style=\"font-size: 100%;\"\u003e\u003cspan class=\"s-text-color-default\"\u003e\u003cstrong\u003eStarter Plan\u003c\/strong\u003e\u003c\/span\u003e\u003c\/p\u003e\u003cp class=\"s-text-color-default\" style=\"font-size: 80%;\"\u003e\u003cspan class=\"s-text-color-default\"\u003eFor individual users\u003c\/span\u003e\u003c\/p\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"text1":{"type":"RichText","id":"f_4da1de3c-878e-4515-9502-44534f961893","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003cp class=\"s-text-color-default s-text-color-default s-text-color-default s-subtitle s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper\" style=\"font-size: 160%;\"\u003e\u003cspan class=\"s-text-color-default\"\u003e$9.00\u003c\/span\u003e\u003c\/p\u003e\u003cp class=\"s-text-color-default s-text-color-default s-text-color-default\" style=\"font-size: 80%;\"\u003e\u003cspan class=\"s-text-color-default\"\u003eper month\u003c\/span\u003e\u003c\/p\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"button":{"type":"Button","id":"f_f25e6921-3e78-4e23-8c6e-833792457bcc","defaultValue":false,"alignment":"","text":"SELECT","url":"https:\/\/www.strikingly.com\/","new_target":null,"version":"2"},"text2":{"type":"RichText","id":"f_230ef69d-d890-46b2-b07e-cff8e5aa8389","defaultValue":false,"value":"\u003cp\u003eBasic course unlocked\u003c\/p\u003e\u003cp\u003eEmail support\u003c\/p\u003e\u003cp\u003eNo video guides\u003c\/p\u003e","backupValue":null,"version":null,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"background1":{"type":"Background","id":"f_1404633e-b4df-464b-91e7-a78b78e20d42","defaultValue":false,"url":null,"textColor":"overlay","backgroundVariation":"","sizing":"cover","videoUrl":"","videoHtml":"","storageKey":null,"storage":null,"format":null,"h":null,"w":null,"s":null}}},{"type":"RepeatableItem","id":"f_9007dd5f-22ca-422b-9787-97157ca7c367","defaultValue":null,"components":{"image1":{"type":"Image","id":"f_9991a752-7a57-4225-bad0-2ebaae37f0d2","defaultValue":true,"link_url":null,"thumb_url":"!","url":"!","caption":"","description":"","storageKey":"1339460\/311212_71871","storage":"s","storagePrefix":null,"format":"png","h":360,"w":480,"s":61855,"new_target":true,"focus":null},"title1":{"type":"RichText","id":"f_ff3b933c-5a3f-438e-a58f-03798c99817e","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003cp class=\"s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper\" style=\"font-size: 100%;\"\u003e\u003cspan class=\"s-text-color-default\"\u003e\u003cstrong\u003ePro Plan\u003c\/strong\u003e\u003c\/span\u003e\u003c\/p\u003e\u003cp style=\"font-size: 80%;\"\u003e\u003cspan class=\"s-text-color-default\"\u003eFor team users\u003c\/span\u003e\u003c\/p\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"text1":{"type":"RichText","id":"f_c2b203b6-9098-49ee-9d88-40b66a166d21","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003cp class=\"s-subtitle\" style=\"font-size: 160%;\"\u003e\u003cspan class=\"s-text-color-default\"\u003e$19.00\u003c\/span\u003e\u003c\/p\u003e\u003cp style=\"font-size: 80%;\"\u003e\u003cspan class=\"s-text-color-default\"\u003eper month\u003c\/span\u003e\u003c\/p\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"button":{"type":"Button","id":"f_b6b9d6e2-eb05-4c03-9728-bab5699566e7","defaultValue":false,"alignment":"","text":"SELECT","url":"https:\/\/www.strikingly.com\/","new_target":null,"version":"2"},"text2":{"type":"RichText","id":"f_eb8437e6-1802-4c39-a126-96507f7c2c35","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003cp class=\"s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper\"\u003eAdvanced course unlocked\u003c\/p\u003e\u003cp\u003eLive chat support\u003c\/p\u003e\u003cp\u003eVideo guides\u003c\/p\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"background1":{"type":"Background","id":"f_f5013989-8cf3-4d8f-a881-8fd90b874360","defaultValue":false,"url":null,"textColor":"overlay","backgroundVariation":"","sizing":"cover","videoUrl":"","videoHtml":"","storageKey":null,"storage":null,"format":null,"h":null,"w":null,"s":null}}},{"type":"RepeatableItem","id":"f_d53cef09-e948-4f09-86f3-372bc45ebb2a","defaultValue":null,"components":{"image1":{"type":"Image","id":"f_9764a776-f510-4c0c-b97c-f21e4d51904b","defaultValue":true,"link_url":null,"thumb_url":"!","url":"!","caption":"","description":"","storageKey":"1339460\/709193_284258","storage":"s","storagePrefix":null,"format":"png","h":360,"w":480,"s":43533,"new_target":true,"focus":null},"title1":{"type":"RichText","id":"f_80d2fb5c-7551-43fe-94dc-b5c41680a180","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003cp class=\"s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper\" style=\"font-size: 100%;\"\u003e\u003cspan class=\"s-text-color-default\"\u003e\u003cstrong\u003eEnterprise Plan\u003c\/strong\u003e\u003c\/span\u003e\u003c\/p\u003e\u003cp style=\"font-size: 80%;\"\u003e\u003cspan class=\"s-text-color-default\"\u003eFor large teams\u003c\/span\u003e\u003c\/p\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"text1":{"type":"RichText","id":"f_8219ffc9-3225-4444-ac9f-b5ea14c6aba3","defaultValue":false,"value":"\u003cp class=\"s-subtitle\" style=\"font-size: 160%;\"\u003e$39.00\u003c\/p\u003e\u003cp style=\"font-size: 80%;\"\u003eper month\u003c\/p\u003e","backupValue":null,"version":null,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"button":{"type":"Button","id":"f_565c1440-c0c0-456b-ab36-893dd196ba76","defaultValue":false,"alignment":"","text":"SELECT","url":"https:\/\/www.strikingly.com\/","new_target":null,"version":"2"},"text2":{"type":"RichText","id":"f_25712445-7908-46f0-9af1-da82ee06e336","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003cp class=\"s-rich-text-wrapper s-rich-text-wrapper\"\u003eEverything in Pro, plus:\u003c\/p\u003e\u003cp\u003eOne-on-one coaching\u003c\/p\u003e\u003cp\u003eBonus care package!\u003c\/p\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"background1":{"type":"Background","id":"f_2f039bf4-4269-4b67-9ce9-2a23594c620b","defaultValue":false,"url":null,"textColor":"overlay","backgroundVariation":"","sizing":"cover","videoUrl":"","videoHtml":"","storageKey":null,"storage":null,"format":null,"h":null,"w":null,"s":null}}}]}}},{"type":"Slide","id":"f_40551004-718e-4345-81ea-3bed490b751a","defaultValue":true,"template_thumbnail_height":97.10354666666667,"template_id":null,"template_name":"signup_form","template_version":"","origin_id":"f_d78f6be6-ec51-4a6d-b2f7-658ef57e9a1d","components":{"background1":{"type":"Background","id":"f_d49ceae6-94fd-4fd0-b06c-464bdaad7884","defaultValue":true,"url":"","textColor":"light","backgroundVariation":"","sizing":"cover","videoUrl":"","videoHtml":""},"text1":{"type":"RichText","id":"f_6fb4b8be-8ea1-48f5-a24a-b0fa1720969d","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch1 class=\" font-size-tag-header-one s-text-font-size-over-40 s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper\" style=\"font-size: 48px;\"\u003eSubscribe to our newsletter.\u003c\/h1\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"block1":{"type":"BlockComponent","id":"f_f80cc360-4dc8-432c-8c81-b22b32485bc7","defaultValue":null,"items":[{"type":"BlockComponentItem","id":"f_d917629c-142d-42db-b479-73b251722c0c","name":"rowBlock","components":{"block1":{"type":"BlockComponent","id":"f_09af1121-942a-4655-a641-c34056097f6a","items":[{"type":"BlockComponentItem","id":"f_5e2c5d7c-cb18-435e-b9a4-a3e157d0eca1","name":"columnBlock","components":{"block1":{"type":"BlockComponent","id":"f_c3583e1e-bb79-42b0-82cc-a383096f63be","items":[{"type":"BlockComponentItem","id":"f_b8ab51e7-f53e-4a18-966a-932ca206a435","defaultValue":null,"name":"title","components":{"text1":{"type":"RichText","id":"f_801ccae4-c314-4777-9759-0ccb6844ce84","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch2 class=\"s-title s-font-title s-rich-text-wrapper s-rich-text-wrapper\"\u003eSign Up\u003c\/h2\u003e\u003ch4 class=\"s-subtitle\"\u003eWe'll get in touch with you soon.\u003c\/h4\u003e\u003c\/div\u003e","backupValue":null,"version":1}}},{"type":"BlockComponentItem","id":"f_7b693303-ef35-439c-8c27-045e7a381f83","defaultValue":null,"name":"signUpForm","components":{"email1":{"type":"EmailForm","id":"f_7ab8684d-18a3-4a9a-b021-49d1fd39a0b3","defaultValue":true,"hideMessageBox":false,"hide_name":false,"hide_email":false,"hide_phone_number":true,"name_label":"Name","form_name_label":"Sign Up Form","email_label":"Email","phone_number_label":"Phone","message_label":"Message","submit_label":"Submit","thanksMessage":"Thanks for your submission!","recipient":"","label":""}}}],"inlineLayout":null}}}],"inlineLayout":"12"}}},{"type":"BlockComponentItem","id":"f_815b00b1-f927-4a53-84aa-c9fbe47ba1ca","name":"rowBlock","components":{"block1":{"type":"BlockComponent","id":"f_f4efcdde-965e-452f-8ec7-e641b850c411","items":[{"type":"BlockComponentItem","id":"f_7aa67ec4-1f8d-48a5-9cb4-8c3b6abacafe","name":"columnBlock","components":{"block1":{"type":"BlockComponent","id":"f_3c654faf-2f78-4bbf-9012-9b0d3ae2fe93","items":[{"type":"Spacer","id":"f_89668a7d-a9b2-48a1-9d9b-9f906b6be1cd","defaultValue":null,"value":"82"}]}}}],"inlineLayout":"12"}}}],"inlineLayout":"1"},"text2":{"type":"RichText","id":"f_282ae5e3-6b06-42ac-9a34-59dfd5c34731","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch2 class=\"s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper font-size-tag-header-two s-text-font-size-over-default\" style=\"font-size: 28px;\"\u003eSign up with your email address to receive news and updates.\u003c\/h2\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"media1":{"type":"Media","id":"f_699aa63d-31ee-464a-a28d-0ec327b59d5f","defaultValue":null,"video":{"type":"Video","id":"f_9fb954fc-856c-45ee-9827-3920bffbedce","defaultValue":null,"html":"","url":"http:\/\/vimeo.com\/18150336","thumbnail_url":null,"maxwidth":700,"description":null},"image":{"type":"Image","id":"f_9c59a0cd-a9d5-4cbe-9d61-1d87dab0e5b6","defaultValue":true,"link_url":null,"thumb_url":"\/\/uploads.strikinglycdn.com\/static\/backgrounds\/striking-pack-3\/7.jpg","url":"\/\/uploads.strikinglycdn.com\/static\/sections\/iphone6-1.png","caption":"","description":"","h":470,"w":250,"new_target":true},"current":"image"},"slideSettings":{"type":"SlideSettings","id":"f_bf1aa1bc-b1bc-41c8-9c6a-610fba2b5d57","defaultValue":true,"show_nav":true,"nameChanged":true,"hidden_section":false,"name":"Newsletter","sync_key":null,"layout_variation":"signup-noImage","padding":{"top":"normal","bottom":"normal"},"layout_config":{"width":"wide","height":"large","content_align":"center"}},"email1":{"type":"EmailForm","id":"f_a3f005d4-4fbc-4e7c-b7ec-9bc3b865736a","defaultValue":false,"hideMessageBox":false,"hide_name":false,"hide_email":false,"hide_phone_number":true,"name_label":"Name","name_format":"single","first_name_label":"First Name","last_name_label":"Last Name","form_name_label":"Sign Up Form3","email_label":"Email","phone_number_label":"Phone","message_label":"Message","submit_label":"Suscribe","thanksMessage":"Thanks for your submission!","recipient":"","label":""},"image1":{"type":"Image","id":"f_a45a6d39-56a9-4b1e-b00c-c1bbdf59a477","defaultValue":null,"link_url":null,"thumb_url":null,"url":"\/\/assets.strikingly.com\/static\/icons\/app-badges\/apple-ios.png","caption":"","description":"","h":51,"w":183,"new_target":true},"image2":{"type":"Image","id":"f_1e87c952-0d21-4516-ba0b-4a0fba23ff83","defaultValue":null,"link_url":null,"thumb_url":null,"url":"\/\/assets.strikingly.com\/static\/icons\/app-badges\/android2.png","caption":"","description":"","h":51,"w":183,"new_target":true},"button1":{"type":"Button","id":"f_aa303881-3b9d-449c-984b-fbf73cbed4f9","defaultValue":null,"alignment":"center","text":"DOWNLOAD","size":"medium","style":"","color":"","font":"","url":"https:\/\/www.strikingly.com\/","new_target":null}}},{"type":"Slide","id":"f_06afd2cb-cfbf-4cfe-920c-8879a40fbd1f","defaultValue":true,"template_thumbnail_height":"153.17707199999998","template_id":null,"template_name":"text","origin_id":"f_5260caea-9e58-45ca-b8da-56e228423ece","components":{"slideSettings":{"type":"SlideSettings","id":"f_11dca694-b4c1-442f-aac1-6c7337ea5f82","defaultValue":null,"show_nav":true,"nameChanged":true,"hidden_section":false,"name":"Plain Text","sync_key":null,"layout_variation":"text-one-button"},"background1":{"type":"Background","id":"f_30619661-d6fc-448b-ab8f-72f4eee9d1ea","defaultValue":true,"url":"","textColor":"light","backgroundVariation":"","sizing":"cover","videoUrl":"","videoHtml":"","storageKey":null,"storage":null,"format":null,"h":null,"w":null,"focus":null},"text1":{"type":"RichText","id":"f_7cba040e-3325-466a-b8ed-e039f1073d37","defaultValue":true,"value":"","backupValue":null,"version":null},"text2":{"type":"RichText","id":"f_225c6996-1a97-4456-83c0-b3c1ab6de82f","defaultValue":true,"value":"","backupValue":null,"version":null},"repeatable1":{"type":"Repeatable","id":"f_26c613fd-8ad1-4be0-884f-5b51cffeccbd","defaultValue":false,"list":[{"type":"RepeatableItem","id":"f_61bb19d5-468f-47e3-879f-d4bb4e3a136a","defaultValue":true,"components":{"text1":{"type":"RichText","id":"f_c7a7a689-e779-40c2-bb90-4b7d1fb4b097","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch1 class=\"s-rich-text-wrapper font-size-tag-header-one s-text-font-size-over-40\" style=\"font-size: 48px;\"\u003ePassion\u003c\/h1\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"text2":{"type":"RichText","id":"f_f4b91f98-366d-486e-b5c2-b4a86a84457b","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003cp class=\"s-text-color-default font-size-tag-paragraph s-text-font-size-over-default s-rich-text-wrapper\" style=\"font-size: 18px;\"\u003e\u003cspan class=\"s-text-color-default\"\u003eUse a text section to describe your values, show more info, summarize a topic, or tell a story. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore.\u003c\/span\u003e\u003c\/p\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"button1":{"type":"Button","id":"f_21bff357-6c7c-4a04-a0b9-cef9ce93110c","defaultValue":false,"alignment":"center","text":"Submit","size":"medium","style":"","color":"","font":"","url":"","new_target":null},"background1":{"type":"Background","id":"f_8aec54eb-0f62-43dc-88d3-869659a5bb5d","defaultValue":true,"url":"","textColor":"light","backgroundVariation":"","sizing":"cover","videoUrl":"","videoHtml":"","storageKey":null,"storage":null,"format":null,"h":null,"w":null,"focus":null},"buttons":{"type":"Buttons","id":"f_79e803d4-eecc-446f-baeb-5cb483fc213f","defaultValue":false,"alignment":"flex-start","components":{"block1":{"type":"BlockComponent","id":"f_273be684-fb29-4a55-9a63-afd0044a8726","items":[{"type":"Button","id":"f_6d140f86-f070-40f5-bc80-92e7fc3eed75","defaultValue":false,"alignment":"flex-start","text":"Learn More","size":"medium","style":"","color":"","font":"","url":"","new_target":null,"version":"2"}]}},"size":"medium","version":"2"}}},{"type":"RepeatableItem","id":"f_ed75f33c-9969-4b65-8efa-7ee64781baa8","components":{"text1":{"type":"RichText","id":"f_1dc7e1f9-7ccb-45db-a3fc-489dd7bc8fc5","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch1 class=\"s-rich-text-wrapper font-size-tag-header-one s-text-font-size-over-40\" style=\"font-size: 48px;\"\u003eIndependence\u003c\/h1\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"text2":{"type":"RichText","id":"f_cabf0147-1e05-4c04-a923-298760096d96","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003cp class=\"s-rich-text-wrapper font-size-tag-paragraph s-text-font-size-over-default\" style=\"font-size: 18px;\"\u003eUse a text section to describe your values, show more info, summarize a topic, or tell a story. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore.\u003c\/p\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"button1":{"type":"Button","id":"f_33a874e6-c8ad-4f1f-8a43-90f97819b100","defaultValue":false,"alignment":"center","text":"Submit","size":"medium","style":"","color":"","font":"","url":"","new_target":null},"background1":{"type":"Background","id":"f_da749ca6-bf67-44d9-ab06-1c88dbc48891","defaultValue":true,"url":"","textColor":"light","backgroundVariation":"","sizing":"cover","videoUrl":"","videoHtml":"","storageKey":null,"storage":null,"format":null,"h":null,"w":null,"focus":null},"buttons":{"type":"Buttons","id":"f_e9987583-9d60-4c21-80d5-47d378927edf","defaultValue":false,"alignment":"flex-start","components":{"block1":{"type":"BlockComponent","id":"f_91292a96-eaaa-46da-b25e-4a9ac2273e72","items":[{"type":"Button","id":"f_0c0444ac-0087-4d05-988b-c08a6343e924","defaultValue":false,"alignment":"flex-start","text":"Learn More","size":"medium","style":"","color":"","font":"","url":"","new_target":null,"version":"2"}]}},"size":"medium","version":"2"}}},{"type":"RepeatableItem","id":"f_2373137e-f142-4aa3-ae5c-f2ce27e690d6","components":{"text1":{"type":"RichText","id":"f_2a282d17-df6b-4c29-8399-2d4c1d6a1966","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch1 class=\" font-size-tag-header-one s-text-font-size-over-40\" style=\"font-size: 48px;\"\u003eHappiness \u003c\/h1\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"text2":{"type":"RichText","id":"f_7850212e-4e1c-449a-aff8-57130784b316","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003cp class=\" font-size-tag-paragraph s-text-font-size-over-default\" style=\"font-size: 18px;\"\u003eUse a text section to describe your values, show more info, summarize a topic, or tell a story. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore.\u003c\/p\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"button1":{"type":"Button","id":"f_5c4f5904-4d8d-4a22-8171-14b43da64d05","defaultValue":false,"alignment":"center","text":"Submit","size":"medium","style":"","color":"","font":"","url":"","new_target":null},"background1":{"type":"Background","id":"f_403d515f-7678-4ea5-8e85-0aeabb330acb","defaultValue":true,"url":"","textColor":"light","backgroundVariation":"","sizing":"cover","videoUrl":"","videoHtml":"","storageKey":null,"storage":null,"format":null,"h":null,"w":null,"focus":null},"buttons":{"type":"Buttons","id":"f_957c3ab1-1b52-4c16-bc62-2b8ad8da48a8","defaultValue":false,"alignment":"flex-start","components":{"block1":{"type":"BlockComponent","id":"f_bef48782-8d7b-43d7-935e-9551a0750567","items":[{"type":"Button","id":"f_0804e133-8771-4e87-bd76-9fa4a6dbeefa","defaultValue":false,"alignment":"flex-start","text":"Learn More","size":"medium","style":"","color":"","font":"","url":"","new_target":null,"version":"2"}]}},"size":"medium","version":"2"}}},{"type":"RepeatableItem","id":"f_b6cc8ad9-1c1c-4d45-affe-6a90db733f83","components":{"text1":{"type":"RichText","id":"f_29287c0c-acab-4672-90c3-cf0ab68efb45","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch1 class=\"s-rich-text-wrapper font-size-tag-header-one s-text-font-size-over-40\" style=\"font-size: 48px;\"\u003eHappiness\u003c\/h1\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"text2":{"type":"RichText","id":"f_9f68337e-0ae1-4b65-b61c-29ef1df8b109","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003cp class=\" font-size-tag-paragraph s-text-font-size-over-default\" style=\"font-size: 18px;\"\u003e\u003cspan class=\"s-text-color-default\"\u003eUse a text section to describe your values, show more info, summarize a topic, or tell a story. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore.\u003c\/span\u003e\u003c\/p\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"button1":{"type":"Button","id":"f_bd436e86-48d3-41c1-ade9-32df97b5418e","defaultValue":false,"alignment":"center","text":"Submit","size":"medium","style":"","color":"","font":"","url":"","new_target":null},"background1":{"type":"Background","id":"f_5a15dfcc-6540-42d6-bef5-395bd8ae95b1","defaultValue":true,"url":"","textColor":"light","backgroundVariation":"","sizing":"cover","videoUrl":"","videoHtml":"","storageKey":null,"storage":null,"format":null,"h":null,"w":null,"focus":null},"buttons":{"type":"Buttons","id":"f_565f003a-79d7-4796-93f3-dae5f266b594","defaultValue":false,"alignment":"flex-start","components":{"block1":{"type":"BlockComponent","id":"f_79377d7b-fd3b-4da0-a10b-d99a4b600bb8","items":[{"type":"Button","id":"f_e386b474-5e3f-4b9c-b504-eda9810c3faa","defaultValue":false,"alignment":"flex-start","text":"Learn More","size":"medium","style":"","color":"","font":"","url":"","new_target":null,"version":"2"}]}},"size":"medium","version":"2"}}}],"components":{"text1":{"type":"RichText","id":"f_040b7d0d-3b85-44af-a05f-8e310cea5c57","defaultValue":true,"value":"Title Text","backupValue":null,"version":null},"text2":{"type":"RichText","id":"f_2efb6834-3e67-4f77-9558-38876795d91e","defaultValue":true,"value":"Use a text section to describe your values, or show more info, or summarize a topic, or tell a story. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore.","backupValue":null,"version":null},"button1":{"type":"Button","id":"f_361e07dd-71e4-4ab5-bb14-82731b5b4269","defaultValue":true,"alignment":"center","text":"","size":"medium","style":"","color":"","font":"","url":"","new_target":null}}}}},{"type":"Slide","id":"f_1f1c3376-2cd8-4aa6-832d-f73198d96dad","defaultValue":true,"template_name":"text","components":{"slideSettings":{"type":"SlideSettings","id":"f_fad2df1b-4fc7-4bd3-8743-8a586f9b6baa","defaultValue":null,"show_nav":true,"nameChanged":true,"hidden_section":false,"name":"\u7eaf\u6587\u672c","sync_key":null,"layout_variation":"text-two-button"},"background1":{"type":"Background","id":"f_7095229b-771c-48e5-8a46-ecddf5fe85d7","defaultValue":true,"url":"","textColor":"light","backgroundVariation":"","sizing":"cover","videoUrl":"","videoHtml":"","storageKey":null,"storage":null,"format":null,"h":null,"w":null,"focus":null},"text1":{"type":"RichText","id":"f_e1153ec0-19d2-4d5c-b803-110b588217ee","defaultValue":true,"value":"","backupValue":null,"version":null},"text2":{"type":"RichText","id":"f_c3fb6d31-d059-4aef-8ecf-9808584ccc69","defaultValue":true,"value":"","backupValue":null,"version":null},"repeatable1":{"type":"Repeatable","id":"f_6e4d0ed0-6a91-440d-8dda-80ec298c0869","defaultValue":false,"list":[{"type":"RepeatableItem","id":"f_3f479971-5fe2-4e61-9b8b-55b936192493","defaultValue":true,"components":{"text1":{"type":"RichText","id":"f_bbc5f6e0-681f-414a-8f85-c13bd2e243fb","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch1 class=\"s-text-color-default s-rich-text-wrapper font-size-tag-header-one s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper font-size-tag-header-one s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper\" style=\"font-size: 48px;\"\u003e\u003cspan class=\"s-text-color-default s-rich-text-wrapper font-size-tag-header-one\"\u003e\u70ed\u60c5\u003c\/span\u003e\u003c\/h1\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"text2":{"type":"RichText","id":"f_d49bc3ac-fa31-4400-9312-d3b01bb126e7","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003cp class=\"s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-rich-text-wrapper s-rich-text-wrapper font-size-tag-paragraph s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper\" style=\"font-size: 17px;\"\u003e\u003cspan class=\"s-text-color-default s-rich-text-wrapper font-size-tag-paragraph\"\u003e\u7b80\u4ecb\u4f60\u7684\u9879\u76ee\u548c\u4ea7\u54c1\uff0c\u6216\u8005\u5c55\u793a\u4f60\u7684\u54c1\u724c\u6587\u5316\u3002\u590f\u5929\u7684\u98de\u9e1f\uff0c\u98de\u5230\u6211\u7684\u7a97\u524d\u5531\u6b4c\uff0c\u53c8\u98de\u53bb\u4e86\u3002\u79cb\u5929\u7684\u9ec4\u53f6\uff0c\u5b83\u4eec\u6ca1\u6709\u4ec0\u4e48\u53ef\u5531\uff0c\u53ea\u53f9\u606f\u4e00\u58f0\uff0c\u98de\u843d\u5728\u90a3\u91cc\u3002\u003c\/span\u003e\u003c\/p\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"button1":{"type":"Button","id":"f_6b06ce01-44b4-4014-a801-427c7b2d55aa","defaultValue":false,"alignment":"auto","text":"\u63d0\u4ea4","link_type":"Web","size":"medium","mobile_size":"automatic","style":"","color":"","font":"Montserrat","url":"","new_target":false,"backgroundSettings":{"default":"#c192e7","preIndex":null,"type":"default","id":"f_a6bad82d-50f3-44fb-8416-f7b8f4c7bc1b"},"version":"2"},"background1":{"type":"Background","id":"f_7934eb16-b865-489f-909e-52e98e8336c8","defaultValue":true,"url":"","textColor":"light","backgroundVariation":"","sizing":"cover","videoUrl":"","videoHtml":"","storageKey":null,"storage":null,"format":null,"h":null,"w":null,"focus":null}}},{"type":"RepeatableItem","id":"f_895aaa47-7605-4973-8a73-3d2ef95f9b29","defaultValue":true,"components":{"text1":{"type":"RichText","id":"f_c0163c5b-9963-4dbe-b19a-4daa50fb608b","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch1 class=\"s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper font-size-tag-header-one s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper\" style=\"font-size: 48px;\"\u003e\u003cspan class=\"s-text-color-default s-rich-text-wrapper font-size-tag-header-one\"\u003e\u72ec\u7acb\u003c\/span\u003e\u003c\/h1\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"text2":{"type":"RichText","id":"f_9f020ec9-7070-437a-911c-87ff98672ec9","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003cp class=\"s-text-color-default s-rich-text-wrapper s-rich-text-wrapper\" style=\"font-size: 17px;\"\u003e\u003cspan class=\"s-text-color-default\"\u003e\u7b80\u4ecb\u4f60\u7684\u9879\u76ee\u548c\u4ea7\u54c1\uff0c\u6216\u8005\u5c55\u793a\u4f60\u7684\u54c1\u724c\u6587\u5316\u3002\u590f\u5929\u7684\u98de\u9e1f\uff0c\u98de\u5230\u6211\u7684\u7a97\u524d\u5531\u6b4c\uff0c\u53c8\u98de\u53bb\u4e86\u3002\u79cb\u5929\u7684\u9ec4\u53f6\uff0c\u5b83\u4eec\u6ca1\u6709\u4ec0\u4e48\u53ef\u5531\uff0c\u53ea\u53f9\u606f\u4e00\u58f0\uff0c\u98de\u843d\u5728\u90a3\u91cc\u3002\u003c\/span\u003e\u003c\/p\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"button1":{"type":"Button","id":"f_991a14a3-335f-4760-af16-1c55681140c5","defaultValue":false,"alignment":"auto","text":"\u63d0\u4ea4","size":"medium","style":"","color":"","font":"","url":"","new_target":null,"version":"2"},"background1":{"type":"Background","id":"f_5da7a085-6630-47ee-a4a8-72e3620e882f","defaultValue":true,"url":"","textColor":"light","backgroundVariation":"","sizing":"cover","videoUrl":"","videoHtml":"","storageKey":null,"storage":null,"format":null,"h":null,"w":null,"focus":null}}},{"type":"RepeatableItem","id":"f_f5afc4ec-b646-42b2-9eeb-1314b7974d21","components":{"text1":{"type":"RichText","id":"f_f7b8f06e-b039-49cb-bc8b-aa17e30f98bd","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch1 class=\" font-size-tag-header-one s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper\" style=\"font-size: 48px;\"\u003e\u52c7\u6c14\u003c\/h1\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"text2":{"type":"RichText","id":"f_0e2f1767-1658-4914-acb2-a71d3f0c2b3a","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003cp class=\"s-text-color-default s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper\" style=\"font-size: 17px;\"\u003e\u003cspan class=\"s-text-color-default\"\u003e\u7b80\u4ecb\u4f60\u7684\u9879\u76ee\u548c\u4ea7\u54c1\uff0c\u6216\u8005\u5c55\u793a\u4f60\u7684\u54c1\u724c\u6587\u5316\u3002\u590f\u5929\u7684\u98de\u9e1f\uff0c\u98de\u5230\u6211\u7684\u7a97\u524d\u5531\u6b4c\uff0c\u53c8\u98de\u53bb\u4e86\u3002\u79cb\u5929\u7684\u9ec4\u53f6\uff0c\u5b83\u4eec\u6ca1\u6709\u4ec0\u4e48\u53ef\u5531\uff0c\u53ea\u53f9\u606f\u4e00\u58f0\uff0c\u98de\u843d\u5728\u90a3\u91cc\u3002\u003c\/span\u003e\u003c\/p\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"button1":{"type":"Button","id":"f_7888183d-944d-4262-8dda-0d565b9d8590","defaultValue":false,"alignment":"auto","text":"\u63d0\u4ea4","size":"medium","style":"","color":"","font":"","url":"","new_target":null,"version":"2"},"background1":{"type":"Background","id":"f_39a64a27-f12e-494b-87a7-16aadee9fbce","defaultValue":true,"url":"","textColor":"light","backgroundVariation":"","sizing":"cover","videoUrl":"","videoHtml":"","storageKey":null,"storage":null,"format":null,"h":null,"w":null,"focus":null}}},{"type":"RepeatableItem","id":"f_786cf8f4-90d4-42e3-935d-70f6796900ff","components":{"text1":{"type":"RichText","id":"f_aeb90cb7-8c21-44d5-9e73-4567dac6266d","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch1 class=\" font-size-tag-header-one s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper\" style=\"font-size: 48px;\"\u003e\u5e78\u798f\u0026nbsp;\u003c\/h1\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"text2":{"type":"RichText","id":"f_138e449a-5fb2-4b2b-92cc-6f1fb1b7d580","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003cp class=\"s-text-color-default s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper\" style=\"font-size: 17px;\"\u003e\u003cspan class=\"s-text-color-default\"\u003e\u7b80\u4ecb\u4f60\u7684\u9879\u76ee\u548c\u4ea7\u54c1\uff0c\u6216\u8005\u5c55\u793a\u4f60\u7684\u54c1\u724c\u6587\u5316\u3002\u590f\u5929\u7684\u98de\u9e1f\uff0c\u98de\u5230\u6211\u7684\u7a97\u524d\u5531\u6b4c\uff0c\u53c8\u98de\u53bb\u4e86\u3002\u79cb\u5929\u7684\u9ec4\u53f6\uff0c\u5b83\u4eec\u6ca1\u6709\u4ec0\u4e48\u53ef\u5531\uff0c\u53ea\u53f9\u606f\u4e00\u58f0\uff0c\u98de\u843d\u5728\u90a3\u91cc\u3002\u003c\/span\u003e\u003c\/p\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"button1":{"type":"Button","id":"f_2ee49880-26bf-493f-a12e-27835932d296","defaultValue":false,"alignment":"auto","text":"\u63d0\u4ea4","size":"medium","style":"","color":"","font":"","url":"","new_target":null,"version":"2"},"background1":{"type":"Background","id":"f_c28b9c02-b763-4abd-b329-7a7325e5f902","defaultValue":true,"url":"","textColor":"light","backgroundVariation":"","sizing":"cover","videoUrl":"","videoHtml":"","storageKey":null,"storage":null,"format":null,"h":null,"w":null,"focus":null}}}],"components":{"text1":{"type":"RichText","id":"f_1918459b-6c9a-41eb-8eec-8e86e90d5530","defaultValue":true,"value":"\u6807\u9898\u6587\u672c","backupValue":null,"version":null},"text2":{"type":"RichText","id":"f_05d6ff77-b968-4275-9a1b-378d2a8a384f","defaultValue":true,"value":"\u7b80\u4ecb\u4f60\u7684\u9879\u76ee\u548c\u4ea7\u54c1\uff0c\u6216\u8005\u5c55\u793a\u4f60\u7684\u54c1\u724c\u6587\u5316\u3002\u590f\u5929\u7684\u98de\u9e1f\uff0c\u98de\u5230\u6211\u7684\u7a97\u524d\u5531\u6b4c\uff0c\u53c8\u98de\u53bb\u4e86\u3002\u79cb\u5929\u7684\u9ec4\u53f6\uff0c\u5b83\u4eec\u6ca1\u6709\u4ec0\u4e48\u53ef\u5531\uff0c\u53ea\u53f9\u606f\u4e00\u58f0\uff0c\u98de\u843d\u5728\u90a3\u91cc\u3002","backupValue":null,"version":null},"button1":{"type":"Button","id":"f_920d237a-e3c5-419d-a806-243a5fb6d727","defaultValue":true,"alignment":"auto","text":"","size":"medium","style":"","color":"","font":"","url":"","new_target":null}}}}},{"type":"Slide","id":"f_3fd1fc22-4cae-4267-ba23-841627aa27c8","defaultValue":true,"template_thumbnail_height":"156.83021333333332","template_id":null,"template_name":"ecommerce","template_version":"beta-s6","origin_id":"f_28586155-ca90-4c0d-a464-6e2688abd298","components":{"slideSettings":{"type":"SlideSettings","id":"f_5ab29507-0ccc-4e62-944c-2053bc97785f","defaultValue":true,"show_nav":true,"show_nav_multi_mode":false,"nameChanged":true,"hidden_section":false,"name":"Digital Download","sync_key":null,"layout_variation":"landscape-one","layout_config":{"customized":true,"templateName":"C","imageShape":"square","disabledProductReview":true,"structure":"card","textAlignment":"left-align","imageSize":"m","productPerPage":"3","columns":3}},"background1":{"type":"Background","id":"f_314a1330-cee9-4f97-bcc8-b5bd2c90d211","defaultValue":false,"url":"","textColor":"","backgroundVariation":"","sizing":"","userClassName":"","videoUrl":"","videoHtml":"","storageKey":null,"storage":null,"format":null,"h":null,"w":null,"s":null,"useImage":false,"focus":null,"backgroundColor":null},"text1":{"type":"RichText","id":"f_733af6ad-457a-45d9-b6e8-9111eff782bb","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch1 class=\" font-size-tag-header-one s-text-font-size-over-40\" style=\"font-size: 48px;\"\u003e\u003cspan class=\"s-text-color-default\"\u003eSubscribe \u0026amp; Download Now \u003c\/span\u003e\u003c\/h1\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"text2":{"type":"RichText","id":"f_9903318e-8924-4d5f-a1df-2ab7e8dfcb59","defaultValue":true,"value":"Check out our products.","backupValue":null,"version":null},"ecommerce1":{"type":"EcommerceComponent","id":"f_69413bf8-6ede-4ed0-87c2-5fd8fc98b084","defaultValue":false,"text":null,"category":"all"}}},{"type":"Slide","id":"f_71d5a191-8839-4433-a66e-175dce31d167","defaultValue":null,"template_thumbnail_height":"209.30894399999997","template_id":null,"template_name":"featureListE","origin_id":"f_593527a2-149f-4a55-9a60-fd830c8b742c","components":{"slideSettings":{"type":"SlideSettings","id":"f_4825d331-3cc5-4740-8b8d-cc7f13d12ddb","defaultValue":null,"show_nav":true,"show_nav_multi_mode":false,"nameChanged":true,"hidden_section":false,"hidden_mobile_section":false,"name":"Testimonials","sync_key":null,"layout_variation":"normal","layout_config":{"noTemplateDiff":true,"card_radius":"small","border_thickness":"small","card_padding":"medium","spacing":"l","subtitleReplaceToText":true,"mediaSize":"xs","horizontal_alignment":"center","layout":"E","border":false,"mediaPosition":"left","showButton":false,"border_color":"#cccccc","card":false,"structure":"grid","card_color":"#ffffff","vertical_alignment":"middle","grid_media_position":"top","columns":"three","content_align":"center"}},"background1":{"type":"Background","id":"f_0501780b-10c0-4814-972e-0d326125f209","defaultValue":true,"url":"","textColor":"light","backgroundVariation":"","sizing":"cover","videoUrl":"","videoHtml":""},"repeatable1":{"type":"Repeatable","id":"f_53a6b3de-b5e8-49fd-8d2d-01845950aa82","defaultValue":false,"list":[{"type":"RepeatableItem","id":"f_d70a4de5-5242-463d-853f-c52fdf3e73da","defaultValue":true,"components":{"media1":{"type":"Media","id":"f_0072a66c-48a3-4f04-aa8a-fb5ba726c23f","defaultValue":true,"video":{"type":"Video","id":"f_680244bf-d6d9-4d74-89a4-3a3cff8e6d20","defaultValue":true,"html":"","url":"http:\/\/vimeo.com\/18150336","thumbnail_url":null,"maxwidth":700,"description":null},"image":{"type":"Image","id":"f_9c1cb780-f184-4f17-8271-74e09caf395a","defaultValue":true,"link_url":"","thumb_url":"!","url":"!","caption":"","description":"","storageKey":"1339460\/855266_22088","storage":"s","storagePrefix":null,"format":"png","border_radius":"","aspect_ratio":"","h":1244,"w":1000,"s":1810753,"new_target":true,"focus":null},"current":"image"},"text1":{"type":"RichText","id":"f_61410d04-d4df-43e0-bf6e-efc28cd81ef7","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch4 class=\" s-rich-text-wrapper font-size-tag-header-four s-text-font-size-over-default s-rich-text-wrapper\" style=\"font-size: 20px;\"\u003e\u003cspan class=\"s-text-color-default\"\u003e\u201cI love Strikingly. Definitely the most structured, seamless and easy way I\u2019ve ever launched a new website.\u201d\u003c\/span\u003e\u003c\/h4\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"text2":{"type":"RichText","id":"f_0d06c0ce-edc3-47fc-8055-369f787f1311","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003cp\u003e\u003cspan class=\"s-text-color-default\"\u003e\u2014 Felix Zeltner\u003c\/span\u003e\u003c\/p\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"button1":{"type":"Button","id":"f_7bc30da3-27ae-4122-99da-665188710a48","defaultValue":true,"alignment":"left","text":"Read More","size":"small","mobile_size":"automatic","style":"","color":"","font":"","url":"","new_target":null}}},{"type":"RepeatableItem","id":"f_6878707e-edf1-401e-8870-2c8ad7432962","components":{"media1":{"type":"Media","id":"f_5242aa7c-823f-47e4-a20d-a1d78c9d2408","defaultValue":true,"video":{"type":"Video","id":"f_05461086-5de4-4a77-b6b9-1b687fb56678","defaultValue":true,"html":"","url":"http:\/\/vimeo.com\/18150336","thumbnail_url":null,"maxwidth":700,"description":null},"image":{"type":"Image","id":"f_f312b414-89e2-49b3-9673-df1a46d6d648","defaultValue":true,"link_url":"","thumb_url":"!","url":"!","caption":"","description":"","storageKey":"1339460\/497003_95467","storage":"s","storagePrefix":null,"format":"png","border_radius":"","aspect_ratio":"","h":1244,"w":1000,"s":1906176,"new_target":true,"focus":null},"current":"image"},"text1":{"type":"RichText","id":"f_b60d1348-62b1-45ed-8054-f2bcfed89ab8","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch4 class=\" font-size-tag-header-four s-text-font-size-over-default\" style=\"font-size: 20px;\"\u003e\u003cspan class=\"s-text-color-default\"\u003e\u201cAs a business owner, finding time to step away is difficult. Strikingly made an overwhelming project simple and easy.\u201d \u003c\/span\u003e\u003c\/h4\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"text2":{"type":"RichText","id":"f_31a2d62c-ec49-4c57-9a70-6532ef47ff87","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003cp\u003e\u2014 Alice Johnson \u003c\/p\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"button1":{"type":"Button","id":"f_6c6fbd9e-b974-4068-8e04-f5fbf25f98f2","defaultValue":true,"alignment":"left","text":"Read More","size":"small","mobile_size":"automatic","style":"","color":"","font":"","url":"","new_target":null}}},{"type":"RepeatableItem","id":"f_848eb6a8-f8f5-4697-8382-17b732a9fcde","components":{"media1":{"type":"Media","id":"f_39f3856a-3128-4c18-9fd8-98b8ae3d5b6f","defaultValue":true,"video":{"type":"Video","id":"f_891dbe30-2f82-42ef-8c6d-5c34a7bcc653","defaultValue":true,"html":"","url":"http:\/\/vimeo.com\/18150336","thumbnail_url":null,"maxwidth":700,"description":null},"image":{"type":"Image","id":"f_09415a88-550b-4d95-a782-82f8b5a6f094","defaultValue":true,"link_url":"","thumb_url":"!","url":"!","caption":"","description":"","storageKey":"1339460\/141783_935008","storage":"s","storagePrefix":null,"format":"png","border_radius":"","aspect_ratio":"","h":1244,"w":1000,"s":1936608,"new_target":true,"focus":null},"current":"image"},"text1":{"type":"RichText","id":"f_e7bd9989-2016-450a-b1ab-9330d4054d00","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch4 class=\" font-size-tag-header-four s-text-font-size-over-default\" style=\"font-size: 20px;\"\u003e\u003cspan class=\"s-text-color-default\"\u003e\u201cStrikingly is easy to work with, patient and pleasant which made the experience like no other.\u201d \u003c\/span\u003e\u003c\/h4\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"text2":{"type":"RichText","id":"f_5abd7b18-4d8d-4719-8c45-8ba46097a22f","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003cp\u003e \u2014 Darryl Duncan\u003c\/p\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"button1":{"type":"Button","id":"f_bc9b481b-8650-4c7a-a936-1ef733b18c78","defaultValue":true,"alignment":"left","text":"Read More","size":"small","mobile_size":"automatic","style":"","color":"","font":"","url":"","new_target":null}}}],"components":{"media1":{"type":"Media","id":"f_cf6dcf4d-1fcd-4a29-ba26-fbcc5a933075","defaultValue":true,"video":{"type":"Video","id":"f_ffed1ceb-32fd-4bd2-87f9-dcdea49d5ae3","defaultValue":true,"html":"","url":"http:\/\/vimeo.com\/18150336","thumbnail_url":null,"maxwidth":700,"description":null},"image":{"type":"Image","id":"f_2646fe46-f629-46b1-8353-09816a9150c7","defaultValue":true,"link_url":null,"thumb_url":"\/\/static-assets.strikinglycdn.com\/images\/editor2\/feature_list\/thumb-list-D-1.png","url":"\/\/static-assets.strikinglycdn.com\/images\/editor2\/feature_list\/list-D-1.png","caption":"","description":"","new_target":true},"current":"image"},"text1":{"type":"RichText","id":"f_7d4876c7-76f5-4c74-bbda-b0f0d996cc17","defaultValue":true,"value":"What We Do","backupValue":null,"version":null},"text2":{"type":"RichText","id":"f_5f5bee2b-5f42-4bfb-9d23-e3008198c3f2","defaultValue":true,"value":"Show off your projects, features, or clients in this section.","backupValue":null,"version":null},"button1":{"type":"Button","id":"f_2381a6d7-d985-4999-a630-3c98027adc75","defaultValue":true,"alignment":"left","text":"Read More","size":"small","mobile_size":"automatic","style":"","color":"","font":"","url":"","new_target":null}}},"text1":{"type":"RichText","id":"f_0fc7360d-946a-4e64-8a6c-ec46fd90acae","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch1 class=\"s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper font-size-tag-header-one s-text-font-size-over-40 s-rich-text-wrapper s-rich-text-wrapper\" style=\"font-size: 48px;\"\u003eOur team has helped 500+ organizations successfully launch their websites.\u003c\/h1\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"text2":{"type":"RichText","id":"f_d524f147-c8a1-43b3-beb3-ce33a038d909","defaultValue":false,"value":"","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}}}},{"type":"Slide","id":"f_117229f2-0645-4438-b696-4453d192943a","defaultValue":null,"template_thumbnail_height":148.416464,"template_id":null,"template_name":"featureListE","origin_id":"f_c90e5d81-48cd-4650-a19e-fdf803866ad1","components":{"slideSettings":{"type":"SlideSettings","id":"f_4eaa5e00-0435-4b2f-b449-25aa71b0d997","defaultValue":null,"show_nav":true,"show_nav_multi_mode":false,"nameChanged":true,"hidden_section":false,"hidden_mobile_section":false,"name":"Testimonials","sync_key":null,"layout_variation":"normal","layout_config":{"noTemplateDiff":true,"card_radius":"large","cardBackgroundSettings":{"default":"#f1e6f9"},"border_thickness":"small","card_padding":"medium","spacing":"l","subtitleReplaceToText":true,"mediaSize":"xs","horizontal_alignment":"center","layout":"E","border":false,"mediaPosition":"left","showButton":true,"border_color":"#cccccc","card":true,"structure":"grid","card_color":"#e4f7f0","vertical_alignment":"middle","grid_media_position":"top","columns":"three","content_align":"center"}},"background1":{"type":"Background","id":"f_cc681c15-dfc8-476a-bb59-1d6ce594d6f2","defaultValue":true,"url":"","textColor":"light","backgroundVariation":"","sizing":"cover","videoUrl":"","videoHtml":""},"repeatable1":{"type":"Repeatable","id":"f_40060165-c84e-43de-9d50-6b0b2354bf77","defaultValue":false,"list":[{"type":"RepeatableItem","id":"f_03ec2026-5868-4969-814e-aeeb0627ecdb","defaultValue":true,"components":{"media1":{"type":"Media","id":"f_03566fb4-7c82-48dd-a71c-41295798fbcf","defaultValue":true,"video":{"type":"Video","id":"f_f383d30e-31f9-4831-a3cf-3e229d74883c","defaultValue":true,"html":"","url":"http:\/\/vimeo.com\/18150336","thumbnail_url":null,"maxwidth":700,"description":null},"image":{"type":"Image","id":"f_50650b46-36a4-4a0f-b14c-37add420ca53","defaultValue":true,"link_url":"","thumb_url":"\/images\/icons\/transparent.png","url":"\/images\/icons\/transparent.png","caption":"","description":"","storageKey":null,"storage":null,"storagePrefix":null,"format":null,"border_radius":null,"aspect_ratio":null,"h":null,"w":null,"s":null,"new_target":true,"focus":null},"current":"image"},"text1":{"type":"RichText","id":"f_5373106f-d173-4136-96ae-f002e842e61f","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch3 class=\"s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper font-size-tag-header-three s-text-font-size-over-default s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper\" style=\"text-align: left; font-size: 24px;\"\u003e\u003cspan class=\"s-text-color-default\"\u003e\u201cI love Strikingly. Definitely the most structured, seamless and easy way I\u2019ve ever launched a new website.\u201d\u003c\/span\u003e\u003c\/h3\u003e\u003cp\u003e\u003cspan style=\"display: inline-block\"\u003e\u0026nbsp;\u003c\/span\u003e\u003c\/p\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":"left","lastLineTextAlign":"left"}},"text2":{"type":"RichText","id":"f_9b58f038-48cd-4548-aa28-ac5b48755bd4","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003cp class=\"s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper\" style=\"text-align: left; font-size: 18px;\"\u003e\u003cspan style=\"color: #545454;\"\u003e\u2014 Felix Zeltner\u003c\/span\u003e\u003c\/p\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":"left","lastLineTextAlign":"left"}},"button1":{"type":"Button","id":"f_ca57fc05-4677-444a-8129-5dc654c6df72","defaultValue":false,"alignment":"left","text":"Read More","size":"small","mobile_size":"automatic","style":"","color":"","font":"","url":"","new_target":null,"version":"2"}}},{"type":"RepeatableItem","id":"f_04d39637-1c80-48c9-82fd-2c38d9e521cd","components":{"media1":{"type":"Media","id":"f_1a643b14-6cd2-4583-8e60-78b86929d37f","defaultValue":true,"video":{"type":"Video","id":"f_ff8ed20a-de10-4d73-8d7f-f08880a5c1d2","defaultValue":true,"html":"","url":"http:\/\/vimeo.com\/18150336","thumbnail_url":null,"maxwidth":700,"description":null},"image":{"type":"Image","id":"f_4b718ee1-95c1-4358-803d-be1b3eb40da1","defaultValue":true,"link_url":"","thumb_url":"\/images\/icons\/transparent.png","url":"\/images\/icons\/transparent.png","caption":"","description":"","storageKey":null,"storage":null,"storagePrefix":null,"format":null,"border_radius":null,"aspect_ratio":null,"h":null,"w":null,"s":null,"new_target":true,"focus":null},"current":"image"},"text1":{"type":"RichText","id":"f_59c8f502-fa88-4675-942d-1c7fb8f01139","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch3 class=\" s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper font-size-tag-header-three s-text-font-size-over-default\" style=\"text-align: left; font-size: 24px;\"\u003e\u201cAs a business owner, finding time to step away is difficult. \u003cspan style=\"color: #1d2023;\"\u003eStrikingly\u003c\/span\u003e made an overwhelming project simple and easy.\u201d\u003c\/h3\u003e\u003ch3 class=\" font-size-tag-header-three s-text-font-size-over-default\" style=\"font-size: 24px;\"\u003e\u003cspan style=\"display: inline-block\"\u003e\u0026nbsp;\u003c\/span\u003e\u003c\/h3\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":"left","lastLineTextAlign":"left"}},"text2":{"type":"RichText","id":"f_e5822cc1-4d82-4940-8371-888c798ce093","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003cp class=\"s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper\" style=\"text-align: left;\"\u003e\u2014 Alice Johnson\u003c\/p\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":"left","lastLineTextAlign":"left"}},"button1":{"type":"Button","id":"f_fbdbc795-4cd8-4c95-b65c-ce0148912da4","defaultValue":false,"alignment":"left","text":"Read More","size":"small","mobile_size":"automatic","style":"","color":"","font":"","url":"","new_target":null,"version":"2"}}},{"type":"RepeatableItem","id":"f_70268d88-c4ab-4bb0-8c9d-33e8412304d2","components":{"media1":{"type":"Media","id":"f_0ec2176e-b755-4202-baea-3e727c299d1e","defaultValue":true,"video":{"type":"Video","id":"f_ce3c3e31-ddd5-425b-9374-1e1db6c73d23","defaultValue":true,"html":"","url":"http:\/\/vimeo.com\/18150336","thumbnail_url":null,"maxwidth":700,"description":null},"image":{"type":"Image","id":"f_2cb6b49b-48d6-4713-bb46-04c14ada008e","defaultValue":true,"link_url":"","thumb_url":"\/images\/icons\/transparent.png","url":"\/images\/icons\/transparent.png","caption":"","description":"","storageKey":null,"storage":null,"storagePrefix":null,"format":null,"border_radius":null,"aspect_ratio":null,"h":null,"w":null,"s":null,"new_target":true,"focus":null},"current":"image"},"text1":{"type":"RichText","id":"f_ef737c4a-a664-4321-adc3-c9952ba27387","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch3 class=\"s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper font-size-tag-header-three s-text-font-size-over-default s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper\" style=\"text-align: left; font-size: 24px;\"\u003e\u003cspan class=\"s-text-color-default\"\u003e\u201c\u003c\/span\u003e\u003cspan style=\"color: #1d2023;\"\u003eStrikingly\u003c\/span\u003e\u003cspan class=\"s-text-color-default\"\u003e is easy to work with, patient and pleasant which made the experience like no other.\u201d\u003c\/span\u003e\u003c\/h3\u003e\u003cp class=\"s-text-color-default\"\u003e\u003cspan style=\"display: inline-block\"\u003e\u0026nbsp;\u003c\/span\u003e\u003c\/p\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":"left","lastLineTextAlign":"left"}},"text2":{"type":"RichText","id":"f_c8f844dc-111d-4a06-83eb-fab96b08fbe4","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003cp class=\"s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper\" style=\"text-align: left;\"\u003e\u2014 Darryl Duncan\u003c\/p\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":"left","lastLineTextAlign":"left"}},"button1":{"type":"Button","id":"f_8343e8b1-1248-4551-9818-e498e650cf2f","defaultValue":false,"alignment":"left","text":"Read More","size":"small","mobile_size":"automatic","style":"","color":"","font":"","url":"","new_target":null,"version":"2"}}}],"components":{"media1":{"type":"Media","id":"f_3b7212df-c148-460c-993e-a6eefc064fc7","defaultValue":true,"video":{"type":"Video","id":"f_31ab2bd3-e724-4993-947d-e51fa2d8da2c","defaultValue":true,"html":"","url":"http:\/\/vimeo.com\/18150336","thumbnail_url":null,"maxwidth":700,"description":null},"image":{"type":"Image","id":"f_82c339e6-a110-4cf1-95ad-c3e8543eedde","defaultValue":true,"link_url":null,"thumb_url":"\/\/static-assets.strikinglycdn.com\/images\/editor2\/feature_list\/thumb-list-D-1.png","url":"\/\/static-assets.strikinglycdn.com\/images\/editor2\/feature_list\/list-D-1.png","caption":"","description":"","new_target":true},"current":"image"},"text1":{"type":"RichText","id":"f_7b1a8a14-9219-471a-aefd-a9d76a7deb89","defaultValue":true,"value":"What We Do","backupValue":null,"version":null},"text2":{"type":"RichText","id":"f_1e09baaf-3192-422d-95ef-9ef526b8bfe6","defaultValue":true,"value":"Show off your projects, features, or clients in this section.","backupValue":null,"version":null},"button1":{"type":"Button","id":"f_1c8b3028-7cc5-496c-bc40-ca68df890542","defaultValue":true,"alignment":"left","text":"Read More","size":"small","mobile_size":"automatic","style":"","color":"","font":"","url":"","new_target":null}}},"text1":{"type":"RichText","id":"f_62934cf3-cb81-4680-94d3-bf897252e06d","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch1 class=\"s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper font-size-tag-header-one s-text-font-size-over-40\" style=\"font-size: 48px;\"\u003eOur team has helped 500+ organizations successfully launch their websites.\u003c\/h1\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"text2":{"type":"RichText","id":"f_87c84c4e-a8bb-4b9c-8335-df1cb4eeb302","defaultValue":false,"value":"","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}}}},{"type":"Slide","id":"f_ab55a28e-296f-4f2f-b195-fed2d7a94242","defaultValue":true,"template_thumbnail_height":300,"template_id":null,"template_name":"gallery4","origin_id":"f_72838e4a-3724-4b7c-b1c1-ec38e26d1408","components":{"slideSettings":{"type":"SlideSettings","id":"f_8aad1289-fbb3-4004-9aa6-e30ab3737eba","defaultValue":"","show_nav":true,"nameChanged":null,"hidden_section":false,"name":"Gallery","sync_key":null,"layout_variation":"normal","display_settings":{},"layout_config":{"customized":false,"isNewMobileLayout":true,"spacing":"large","templateName":"A","width":"wide","imageShape":"landscape-16-9","structure":"grid","showTitle":true,"columns":2}},"text1":{"type":"RichText","id":"f_cf09bc4c-0cb9-4209-83d1-839b55a6bab5","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch1 class=\"s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper font-size-tag-header-one\" style=\"font-size: 48px;\"\u003e\u003cspan class=\"s-text-color-default\"\u003eGallery\u003c\/span\u003e\u003c\/h1\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"text2":{"type":"RichText","id":"f_de55ad11-cddd-4f53-9fed-f38845e7fc88","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch2 class=\"s-text-color-default s-text-color-default s-text-color-default s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper font-size-tag-header-two s-text-font-size-over-default\" style=\"font-size: 28px;\"\u003e\u003cspan class=\"s-text-color-default\"\u003ePhotos \u0026amp; videos from our travels.\u003c\/span\u003e\u003c\/h2\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"background1":{"type":"Background","id":"f_5d11fc57-1751-4125-bc9b-4f34d38633c8","defaultValue":true,"url":"","textColor":"light","backgroundVariation":"","sizing":"cover","videoUrl":"","videoHtml":"","storageKey":null,"storage":null,"format":null,"h":null,"w":null,"s":null},"gallery1":{"type":"Gallery","id":"f_d5a14b4e-25b8-4d16-9fa1-b403ebfc3f62","defaultValue":true,"image_type":null,"sources":[{"type":"Image","id":"f_9e5129f3-e308-4f63-b242-5a6d27869275","defaultValue":null,"link_url":"","thumb_url":"!","url":"\/\/static-assets.strikingly.com\/images\/editor2\/gallery\/annie-spratt-small.jpg","caption":"","description":"","storageKey":"","storage":"c","format":"png","h":1624,"w":1544,"s":1233846,"new_target":false},{"type":"Image","id":"f_e0c6edd0-70a4-495b-a8b0-7631c07fd3ef","defaultValue":null,"link_url":"","thumb_url":"!","url":"\/\/static-assets.strikingly.com\/images\/editor2\/gallery\/zak-boca-small.jpg","caption":"","description":"","storageKey":"","storage":"c","format":"png","h":1216,"w":1544,"s":1233846,"new_target":false},{"type":"Image","id":"f_659130c5-d5bd-414a-b163-03dbde044473","defaultValue":null,"link_url":"","thumb_url":"!","url":"\/\/static-assets.strikingly.com\/images\/editor2\/gallery\/polina-kuzovkova-small.jpg","caption":"","description":"","storageKey":"","storage":"c","format":"png","h":1576,"w":1544,"s":1233846,"new_target":false},{"type":"Image","id":"f_92f49812-6ecc-489f-80b9-a575df758204","defaultValue":null,"link_url":"","thumb_url":"!","url":"\/\/static-assets.strikingly.com\/images\/editor2\/gallery\/adam-jang-small.jpg","caption":"","description":"","storageKey":"","storage":"c","format":"png","h":1264,"w":1544,"s":1233846,"new_target":false},{"type":"Image","id":"f_28eb7b2e-e86f-472d-8ac4-1cbb55b97068","thumb_url":"\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_fill,fl_lossy,h_200,w_200,f_auto,g_faces:auto,q_auto\/1339460\/114926_638686.jpg","url":"\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_9000,w_1200,f_auto,q_auto\/1339460\/114926_638686.jpg","storageKey":"1339460\/114926_638686","storage":"s","storagePrefix":null,"format":"jpg","h":3000,"w":2000,"s":981410,"focus":null},{"type":"Image","id":"f_bbf06826-99ce-44e0-8470-f5daa0f3d03c","thumb_url":"\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_fill,fl_lossy,h_200,w_200,f_auto,g_faces:auto,q_auto\/1339460\/764630_591531.png","url":"\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_9000,w_1200,f_auto,q_auto\/1339460\/764630_591531.png","storageKey":"1339460\/764630_591531","storage":"s","storagePrefix":null,"format":"png","h":500,"w":1000,"s":303775,"focus":null}]}}},{"type":"Slide","id":"f_8383a07c-c144-4e85-b2f7-f0589aab5fbc","defaultValue":true,"template_thumbnail_height":"118.21373866666666","template_id":null,"template_name":"icons","origin_id":"f_bfb5397e-4159-4dab-beed-b57fc980d0f8","components":{"slideSettings":{"type":"SlideSettings","id":"f_8dabfcce-aef0-4059-8bf3-80b073f75747","defaultValue":true,"show_nav":true,"show_nav_multi_mode":false,"hidden_section":false,"name":"Contact Us","sync_key":null,"layout_variation":"natural"},"background1":{"type":"Background","id":"f_35cbab1d-5533-4849-9d71-668a798c472e","defaultValue":false,"url":"","textColor":"","backgroundVariation":"","sizing":"","userClassName":"","videoUrl":"","videoHtml":"","storageKey":null,"storage":null,"format":null,"h":null,"w":null,"s":null,"useImage":false,"focus":null,"backgroundColor":null},"text1":{"type":"RichText","id":"f_a22599e7-eaf0-496a-88d3-eafc8d3bc30f","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch1 class=\"s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-rich-text-wrapper font-size-tag-header-one s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper\" style=\"font-size: 48px;\"\u003e\u003cspan class=\"s-text-color-default\"\u003eConnect With Us\u003c\/span\u003e\u003c\/h1\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"text2":{"type":"RichText","id":"f_0595fbb4-4080-448d-9415-15479f2e8acc","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch2 class=\"s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper font-size-tag-header-two s-text-font-size-over-default\" style=\"font-size: 28px;\"\u003e\u003cspan class=\"s-text-color-default\"\u003eMake sure to add links to the icons!\u003c\/span\u003e\u003c\/h2\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"repeatable1":{"type":"Repeatable","id":"f_0f53b002-0b91-4be5-91af-ca1cf9d3ffa6","defaultValue":false,"list":[{"type":"RepeatableItem","id":"f_92840cf9-4d41-4c5b-bc11-8cbb7d395437","defaultValue":true,"components":{"image1":{"type":"Image","id":"f_32da9013-b0f3-4c45-beef-ab4ed8132635","defaultValue":true,"link_url":null,"thumb_url":null,"url":"\/\/uploads.strikinglycdn.com\/page\/images\/icons\/email-icon.png","caption":"","description":"","storageKey":null,"storage":null,"storagePrefix":null,"format":null,"h":160,"w":160,"s":null,"new_target":true,"noCompression":false,"focus":null},"text1":{"type":"RichText","id":"f_4853658c-8e8c-4cf4-82eb-c0ebbb2f0422","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch2 class=\"font-size-tag-header-two\" style=\"font-size: 28px;\"\u003eEmail\u003c\/h2\u003e\u003c\/div\u003e","backupValue":null,"version":1}}},{"type":"RepeatableItem","id":"f_78014909-21c7-4f03-a0fe-c0a5dc8bc854","components":{"image1":{"type":"Image","id":"f_b92074a4-e1a8-4f91-9da5-75e253267d9b","defaultValue":true,"link_url":null,"thumb_url":"http:\/\/uploads.strikinglycdn.com\/page\/images\/icons\/linkedin-icon.png","url":"http:\/\/uploads.strikinglycdn.com\/page\/images\/icons\/linkedin-icon.png","caption":"","description":"","storageKey":null,"storage":null,"storagePrefix":null,"format":null,"h":160,"w":160,"s":null,"new_target":true,"focus":null},"text1":{"type":"RichText","id":"f_9c7c7e40-1287-4060-b3c1-01ed9ec177e5","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch2 class=\"font-size-tag-header-two\" style=\"font-size: 28px;\"\u003eLinkedIn\u003c\/h2\u003e\u003c\/div\u003e","backupValue":null,"version":1}}},{"type":"RepeatableItem","id":"f_fc54ceee-9b21-415f-a976-f2ffa686f94d","components":{"image1":{"type":"Image","id":"f_6b837000-39b9-46ca-bed8-fec3d279f9d1","defaultValue":true,"link_url":null,"thumb_url":"http:\/\/uploads.strikinglycdn.com\/static\/icons\/black\/location-icon.png","url":"http:\/\/uploads.strikinglycdn.com\/static\/icons\/black\/location-icon.png","caption":"","description":"","storageKey":null,"storage":null,"storagePrefix":null,"format":null,"h":160,"w":160,"s":null,"new_target":true,"focus":null},"text1":{"type":"RichText","id":"f_5ca3dc17-b4dc-4be9-9e57-902b69caf6f9","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch2 class=\"s-rich-text-wrapper font-size-tag-header-two\" style=\"font-size: 28px;\"\u003eLocation\u003c\/h2\u003e\u003c\/div\u003e","backupValue":null,"version":1}}},{"type":"RepeatableItem","id":"f_93ca431b-4acf-47f9-9b93-992cd2b7f8dc","components":{"image1":{"type":"Image","id":"f_41b512f1-6701-4a5d-a596-549fa518131a","defaultValue":true,"link_url":null,"thumb_url":"http:\/\/uploads.strikinglycdn.com\/page\/images\/icons\/phone-icon.png","url":"http:\/\/uploads.strikinglycdn.com\/page\/images\/icons\/phone-icon.png","caption":"","description":"","storageKey":null,"storage":null,"storagePrefix":null,"format":null,"h":160,"w":160,"s":null,"new_target":true,"focus":null},"text1":{"type":"RichText","id":"f_80a425f7-88db-4de5-8e5c-1c1295ad0586","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch2 class=\"s-rich-text-wrapper font-size-tag-header-two s-rich-text-wrapper\" style=\"font-size: 28px;\"\u003ePhone\u003c\/h2\u003e\u003c\/div\u003e","backupValue":null,"version":1}}}],"components":{"image1":{"type":"Image","id":"f_c5bf6618-b8a9-4f38-be3b-a4999ba02250","defaultValue":true,"link_url":null,"thumb_url":null,"url":"\/\/uploads.strikinglycdn.com\/page\/images\/icons\/email-icon.png","caption":"","description":"","new_target":true},"text1":{"type":"RichText","id":"f_8d0deba6-075a-4db6-8aa1-8f0f330e9795","defaultValue":true,"value":"Add text here","backupValue":null,"version":null}}}}},{"type":"Slide","id":"f_0a45ce8a-c9a6-465f-a763-7610658de58f","defaultValue":null,"template_thumbnail_height":"129.60718400000002","template_id":null,"template_name":"featureListE","origin_id":"f_0205454c-13b8-4792-afb8-cd83ea617a72","components":{"slideSettings":{"type":"SlideSettings","id":"f_65b7774d-d999-405d-adad-93e94746c492","defaultValue":null,"show_nav":true,"nameChanged":true,"hidden_section":false,"hidden_mobile_section":false,"name":"About","sync_key":null,"layout_variation":"normal","layout_config":{"noTemplateDiff":true,"card_radius":"small","border_thickness":"small","card_padding":"medium","spacing":"l","subtitleReplaceToText":true,"mediaSize":"xs","horizontal_alignment":"center","layout":"E","border":false,"mediaPosition":"left","showButton":true,"border_color":"#cccccc","card":false,"structure":"grid","card_color":"#ffffff","vertical_alignment":"middle","grid_media_position":"top","columns":"three","content_align":"center"}},"background1":{"type":"Background","id":"f_93a60281-0aea-4c81-80b2-c439a84f3b61","defaultValue":false,"url":"","textColor":"","backgroundVariation":"","sizing":"","userClassName":"","videoUrl":"","videoHtml":"","storageKey":null,"storage":null,"format":null,"h":null,"w":null,"s":null,"useImage":false,"focus":null,"backgroundColor":null},"repeatable1":{"type":"Repeatable","id":"f_9320a380-9203-4e53-b70e-80ddbe897022","defaultValue":false,"list":[{"type":"RepeatableItem","id":"f_8999d524-edda-4523-a950-8e23a3a2d409","defaultValue":true,"components":{"media1":{"type":"Media","id":"f_e65bc5b6-a8b5-42f6-8e07-a93299413fb1","defaultValue":true,"video":{"type":"Video","id":"f_10fd0d19-4a89-477f-9c4b-3e57454b5ea7","defaultValue":true,"html":"","url":"http:\/\/vimeo.com\/18150336","thumbnail_url":null,"maxwidth":700,"description":null},"image":{"type":"Image","id":"f_57b505b3-e257-4d57-b839-dce03aff74e6","defaultValue":true,"link_url":"","thumb_url":"\/images\/icons\/transparent.png","url":"\/images\/icons\/transparent.png","caption":"","description":"","storageKey":null,"storage":null,"storagePrefix":null,"format":null,"border_radius":null,"aspect_ratio":null,"h":null,"w":null,"s":null,"new_target":true,"focus":null},"current":"image"},"text1":{"type":"RichText","id":"f_e4568546-7fb2-406c-8b51-4c34bd664467","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch2 class=\"s-rich-text-wrapper font-size-tag-header-two s-text-font-size-over-default\" style=\"font-size: 28px;\"\u003eIs this a frequently asked question?\u003c\/h2\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"text2":{"type":"RichText","id":"f_0e72e153-b346-437d-b94e-c8500280b21c","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003cp class=\"s-text-color-default s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper font-size-tag-paragraph s-text-font-size-over-default\" style=\"font-size: 18px;\"\u003e\u003cspan class=\"s-text-color-default\"\u003eLorem ipsum dolor sit amet, cum aliquam inermis consequuntur eu, cu zril tempor reformidans nam, ut pri democritum consectetuer.\u003c\/span\u003e\u003c\/p\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"button1":{"type":"Button","id":"f_fb0d57f1-0cec-47a6-aed9-0a6b5fb752a5","defaultValue":false,"alignment":"left","text":"Read More","size":"small","mobile_size":"automatic","style":"","color":"","font":"","url":"","new_target":null,"version":"2"}}},{"type":"RepeatableItem","id":"f_e09effd8-690a-4305-a619-77b10fb55c88","components":{"media1":{"type":"Media","id":"f_22c665f7-633b-4f45-b9c7-cdb58901427a","defaultValue":true,"video":{"type":"Video","id":"f_df6a039f-2f5d-4332-86a3-eeb7c69aca76","defaultValue":true,"html":"","url":"http:\/\/vimeo.com\/18150336","thumbnail_url":null,"maxwidth":700,"description":null},"image":{"type":"Image","id":"f_344e9216-69be-4ade-96c7-47d02702f3f3","defaultValue":true,"link_url":"","thumb_url":"\/images\/icons\/transparent.png","url":"\/images\/icons\/transparent.png","caption":"","description":"","storageKey":null,"storage":null,"storagePrefix":null,"format":null,"border_radius":null,"aspect_ratio":null,"h":null,"w":null,"s":null,"new_target":true,"focus":null},"current":"image"},"text1":{"type":"RichText","id":"f_8eae7012-ef29-46a0-9a45-93a987530d07","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch2 class=\"s-rich-text-wrapper font-size-tag-header-two s-text-font-size-over-default\" style=\"font-size: 28px;\"\u003eIs this a frequently asked question?\u003c\/h2\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"text2":{"type":"RichText","id":"f_a9eeb336-1ec1-4cc1-94fb-aa550f8d8ca2","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003cp class=\"s-text-color-default s-text-color-default s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper font-size-tag-paragraph s-text-font-size-over-default\" style=\"font-size: 18px;\"\u003e\u003cspan class=\"s-text-color-default\"\u003eLorem ipsum dolor sit amet, cum aliquam inermis consequuntur eu, cu zril tempor reformidans nam, ut pri democritum consectetuer.\u003c\/span\u003e\u003c\/p\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"button1":{"type":"Button","id":"f_8a8548c4-b340-4445-b85c-dbe3ae5c9b79","defaultValue":false,"alignment":"left","text":"Read More","size":"small","mobile_size":"automatic","style":"","color":"","font":"","url":"","new_target":null,"version":"2"}}},{"type":"RepeatableItem","id":"f_831506ba-744a-4860-92ad-24d7a212c3bd","components":{"media1":{"type":"Media","id":"f_c91b67ef-aa23-4a28-aaa2-abf36b7b9d39","defaultValue":true,"video":{"type":"Video","id":"f_dcd9ab8d-a77f-45e8-8d2c-8b2b62b511df","defaultValue":true,"html":"","url":"http:\/\/vimeo.com\/18150336","thumbnail_url":null,"maxwidth":700,"description":null},"image":{"type":"Image","id":"f_0659f642-e842-43d5-84f4-6e978e759620","defaultValue":true,"link_url":"","thumb_url":"\/images\/icons\/transparent.png","url":"\/images\/icons\/transparent.png","caption":"","description":"","storageKey":null,"storage":null,"storagePrefix":null,"format":null,"border_radius":null,"aspect_ratio":null,"h":null,"w":null,"s":null,"new_target":true,"focus":null},"current":"image"},"text1":{"type":"RichText","id":"f_7c245b45-6c4b-40ef-a260-26f82c4dee8f","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch2 class=\" font-size-tag-header-two s-text-font-size-over-default\" style=\"font-size: 28px;\"\u003eIs this a frequently asked question?\u003c\/h2\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"text2":{"type":"RichText","id":"f_5e1e870b-e93e-4f3c-ae91-1a6c2f688fee","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003cp class=\"s-text-color-default s-text-color-default s-text-color-default s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper font-size-tag-paragraph s-text-font-size-over-default\" style=\"font-size: 18px;\"\u003e\u003cspan class=\"s-text-color-default\"\u003eLorem ipsum dolor sit amet, cum aliquam inermis consequuntur eu, cu zril tempor reformidans nam, ut pri democritum consectetuer.\u003c\/span\u003e\u003c\/p\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"button1":{"type":"Button","id":"f_332a071f-363f-4278-9f0e-77d55898904e","defaultValue":false,"alignment":"left","text":"Read More","size":"small","mobile_size":"automatic","style":"","color":"","font":"","url":"","new_target":null,"version":"2"}}},{"type":"RepeatableItem","id":"f_cf3db858-a3e7-46a7-b566-7c42e3091b68","components":{"media1":{"type":"Media","id":"f_457f9d1b-2e49-4ca6-a684-df216f380cf1","defaultValue":true,"video":{"type":"Video","id":"f_dcd9ab8d-a77f-45e8-8d2c-8b2b62b511df","defaultValue":true,"html":"","url":"http:\/\/vimeo.com\/18150336","thumbnail_url":null,"maxwidth":700,"description":null},"image":{"type":"Image","id":"f_0659f642-e842-43d5-84f4-6e978e759620","defaultValue":true,"link_url":"","thumb_url":"\/images\/icons\/transparent.png","url":"\/images\/icons\/transparent.png","caption":"","description":"","storageKey":null,"storage":null,"storagePrefix":null,"format":null,"border_radius":null,"aspect_ratio":null,"h":null,"w":null,"s":null,"new_target":true,"focus":null},"current":"image"},"text1":{"type":"RichText","id":"f_ec109df1-47eb-43f9-99fe-30aa7a7e9837","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch2 class=\" font-size-tag-header-two s-text-font-size-over-default\" style=\"font-size: 28px;\"\u003eIs this a frequently asked question?\u003c\/h2\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"text2":{"type":"RichText","id":"f_347e080a-98da-4135-8562-d324d68b9e55","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003cp class=\"s-text-color-default s-text-color-default s-text-color-default s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper font-size-tag-paragraph s-text-font-size-over-default\" style=\"font-size: 18px;\"\u003e\u003cspan class=\"s-text-color-default\"\u003eLorem ipsum dolor sit amet, cum aliquam inermis consequuntur eu, cu zril tempor reformidans nam, ut pri democritum consectetuer.\u003c\/span\u003e\u003c\/p\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"button1":{"type":"Button","id":"f_80d29863-5763-4705-85e0-5f8fb0d8349a","defaultValue":false,"alignment":"left","text":"Read More","size":"small","mobile_size":"automatic","style":"","color":"","font":"","url":"","new_target":null,"version":"2"}}}],"components":{"media1":{"type":"Media","id":"f_e8e5d056-360a-4f93-9902-c43b9f69daec","defaultValue":true,"video":{"type":"Video","id":"f_83edac12-3053-4260-9ba3-5aa661975cf3","defaultValue":true,"html":"","url":"http:\/\/vimeo.com\/18150336","thumbnail_url":null,"maxwidth":700,"description":null},"image":{"type":"Image","id":"f_55e28424-8a23-43d3-9fe4-85f8fba6b3f6","defaultValue":true,"link_url":null,"thumb_url":"\/\/static-assets.strikinglycdn.com\/images\/editor2\/feature_list\/thumb-list-D-1.png","url":"\/\/static-assets.strikinglycdn.com\/images\/editor2\/feature_list\/list-D-1.png","caption":"","description":"","new_target":true},"current":"image"},"text1":{"type":"RichText","id":"f_32db2a83-5f6c-46cc-becb-9b776d080be4","defaultValue":true,"value":"What We Do","backupValue":null,"version":null},"text2":{"type":"RichText","id":"f_b3f6e0a3-a132-4adf-93d8-f3c0c9e68558","defaultValue":true,"value":"Show off your projects, features, or clients in this section.","backupValue":null,"version":null},"button1":{"type":"Button","id":"f_d19c70f3-3290-4707-83dd-21f2d8fc8078","defaultValue":true,"alignment":"left","text":"Read More","size":"small","mobile_size":"automatic","style":"","color":"","font":"","url":"","new_target":null}}},"text1":{"type":"RichText","id":"f_5d7a25e1-5183-48c7-aca6-9e2ccc7167bc","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch1 class=\"s-text-color-default s-text-color-default s-rich-text-wrapper font-size-tag-header-one s-text-font-size-over-40 s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper\" style=\"font-size: 48px;\"\u003e\u003cspan class=\"s-text-color-default\"\u003eIt all begins with an idea. You're preparing to launch a business. \u003c\/span\u003e\u003c\/h1\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"text2":{"type":"RichText","id":"f_bf4adecd-a8d6-4467-841a-b50992eeb13e","defaultValue":false,"value":"","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}}}},{"type":"Slide","id":"f_d8073300-5da8-48b9-8ae0-6f7df705b495","defaultValue":true,"template_thumbnail_height":"156.83021333333332","template_id":null,"template_name":"ecommerce","template_version":"beta-s6","origin_id":"f_28586155-ca90-4c0d-a464-6e2688abd298","components":{"slideSettings":{"type":"SlideSettings","id":"f_c922b70c-b025-4885-8f39-04525ada3e49","defaultValue":true,"show_nav":true,"show_nav_multi_mode":false,"nameChanged":true,"hidden_section":false,"name":"Digital Download","sync_key":null,"layout_variation":"landscape-one","layout_config":{"customized":true,"templateName":"C","imageShape":"square","disabledProductReview":true,"structure":"grid","textAlignment":"left-align","imageSize":"m","productPerPage":"3","columns":3}},"background1":{"type":"Background","id":"f_a47c2e21-5095-47f7-9ff9-0f605e0d6fe5","defaultValue":false,"url":"","textColor":"","backgroundVariation":"","sizing":"","userClassName":"","videoUrl":"","videoHtml":"","storageKey":null,"storage":null,"format":null,"h":null,"w":null,"s":null,"useImage":false,"focus":null,"backgroundColor":null},"text1":{"type":"RichText","id":"f_dab0b018-ba85-4140-adbc-61f6bbfb5373","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch1 class=\" font-size-tag-header-one s-text-font-size-over-40\" style=\"font-size: 48px;\"\u003e\u003cspan class=\"s-text-color-default\"\u003eSubscribe \u0026amp; Download Now \u003c\/span\u003e\u003c\/h1\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"text2":{"type":"RichText","id":"f_e0739149-d16d-48d1-8770-9ff19e42e3e6","defaultValue":true,"value":"Check out our products.","backupValue":null,"version":null},"ecommerce1":{"type":"EcommerceComponent","id":"f_11477e8c-4fe4-4363-8f88-80ad655f65ef","defaultValue":false,"text":null,"category":"all"}}}],"title":"\u65b0\u9875\u9762 3","uid":"a57857db-40c7-4f88-8b0a-1a6caff4a66e","path":"\/3","autoPath":true,"authorized":true},{"type":"Page","id":"f_955002e0-f33d-48cb-8467-55c70bcb60e8","sections":[{"type":"Slide","id":"f_7ed28e0d-3947-4dff-9586-d2fbdb5f7672","defaultValue":null,"template_thumbnail_height":"151.64521333333334","template_id":null,"template_name":"hero","template_version":"","origin_id":"f_41fab326-79b5-4d58-a693-6f6293687f2d","components":{"buttons":{"type":"Buttons","id":"f_b4aaa050-15f5-4473-b2f8-906680c2bafd","alignment":"center","components":{"block1":{"type":"BlockComponent","id":"f_1244f8dc-a120-464d-9244-2cddf8f57181","items":[]}},"size":"medium","mobile_size":"automatic"},"background1":{"type":"Background","id":"f_20f493f5-ed06-4e93-a28f-6a8f85fc64a4","defaultValue":true,"url":"","textColor":"overlay","backgroundVariation":"","sizing":"cover","videoUrl":"","videoHtml":""},"text1":{"type":"RichText","id":"f_3b1e0e94-1a44-4db9-96df-12188acf0230","defaultValue":false,"value":"A Heroic Section","backupValue":null,"version":null,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"text2":{"type":"RichText","id":"f_93d8405b-4b7d-42f8-8dba-5cf38f66ad68","defaultValue":false,"value":"Introduce your product or service!","backupValue":null,"version":null,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"media1":{"type":"Media","id":"f_103c631b-450c-445d-bc00-948bce6efd99","defaultValue":null,"video":{"type":"Video","id":"f_309adcaf-177d-4ec9-8a8b-b501f562be9c","defaultValue":null,"html":"","url":"http:\/\/vimeo.com\/18150336","thumbnail_url":null,"maxwidth":700,"description":null},"image":{"type":"Image","id":"f_61099050-5721-4199-ba1a-9ae131d39af4","defaultValue":true,"link_url":null,"thumb_url":"\/\/uploads.strikinglycdn.com\/static\/backgrounds\/striking-pack-3\/7.jpg","url":"\/\/uploads.strikinglycdn.com\/static\/sections\/iphone6-1.png","caption":"","description":"","new_target":true},"current":"image"},"slideSettings":{"type":"SlideSettings","id":"f_260129cb-8ff8-4c40-b50b-8c8f4b654be0","defaultValue":null,"show_nav":true,"hidden_section":false,"hidden_mobile_section":false,"name":"Hero","sync_key":null,"layout_variation":"button-right","layout_config":{"height_mobile":"automatic"}},"email1":{"type":"EmailForm","id":"f_e8b621f8-ad13-4285-9400-a030f1516d9e","defaultValue":null,"hideMessageBox":false,"hide_name":false,"hide_email":false,"hide_phone_number":true,"name_label":"Name","name_format":"single","first_name_label":"First Name","last_name_label":"Last Name","email_label":"Email","phone_number_label":"Phone","message_label":"Message","submit_label":"Submit","thanksMessage":"Thanks for your submission!","recipient":"","label":""},"image1":{"type":"Image","id":"f_32d24ea3-236d-4e36-be23-ee82b08750ce","defaultValue":null,"link_url":null,"thumb_url":null,"url":"\/\/assets.strikingly.com\/static\/icons\/app-badges\/apple-ios.png","caption":"","description":"","new_target":true},"image2":{"type":"Image","id":"f_11219eb4-4259-4b82-ae11-6de0b0331b03","defaultValue":null,"link_url":null,"thumb_url":null,"url":"\/\/assets.strikingly.com\/static\/icons\/app-badges\/android2.png","caption":"","description":"","new_target":true},"button1":{"type":"Button","id":"f_a1746b1f-fd97-42d9-b279-702848584240","defaultValue":false,"alignment":"center","text":"DOWNLOAD","size":"medium","mobile_size":"automatic","style":"","color":"","font":"","url":"https:\/\/www.strikingly.com\/","new_target":null,"version":"2"}}},{"type":"Slide","id":"f_9be02a19-927a-41ea-beb8-29fa0667ce04","defaultValue":true,"template_thumbnail_height":97.10354666666667,"template_id":null,"template_name":"signup_form","template_version":"","origin_id":"f_d78f6be6-ec51-4a6d-b2f7-658ef57e9a1d","components":{"slideSettings":{"type":"SlideSettings","id":"f_374f465e-af75-404b-ba08-60ef6267ae05","defaultValue":true,"show_nav":true,"nameChanged":true,"hidden_section":false,"name":"Newsletter","sync_key":null,"layout_variation":"button-noImage","padding":{"top":"normal","bottom":"normal"},"layout_config":{"width":"wide","height":"large","content_align":"center"}}}},{"type":"Slide","id":"f_f0613300-e5db-4b1b-80ca-eea184fa9ee3","defaultValue":true,"template_thumbnail_height":97.10354666666667,"template_id":null,"template_name":"signup_form","template_version":"","origin_id":"f_d78f6be6-ec51-4a6d-b2f7-658ef57e9a1d","components":{"slideSettings":{"type":"SlideSettings","id":"f_e58d4400-ba39-49ce-a21f-688871fd3eef","defaultValue":true,"show_nav":true,"nameChanged":true,"hidden_section":false,"name":"Newsletter","sync_key":null,"layout_variation":"button-right","padding":{"top":"normal","bottom":"normal"},"layout_config":{"width":"wide","height":"large","content_align":"center"}}}},{"type":"Slide","id":"f_2c50d6cf-3cf7-4524-a539-c510b2e6b608","defaultValue":null,"template_thumbnail_height":"110.27035999999998","template_id":null,"template_name":"hero","template_version":"s6","origin_id":"f_f58ab5cc-ee2a-42d2-92ae-b080ca7d9219","components":{"slideSettings":{"type":"SlideSettings","id":"f_00415c23-bbdb-4e84-b5b3-7cd2bad1e886","defaultValue":null,"show_nav":true,"hidden_section":false,"name":"A Heroic Section","sync_key":null,"layout_variation":"images-right","padding":{"top":"half","bottom":"half"},"layout_config":{"width":"small","height":"auto","content_align":"center_right"}}}},{"type":"Slide","id":"f_134c8385-5dfd-4e60-981d-551a0a4dbc2c","defaultValue":null,"template_thumbnail_height":80.32970666666667,"template_id":null,"template_name":"hero","template_version":"s6","origin_id":"f_e2574dce-e7b7-4ac9-b2fe-864890147669","components":{"slideSettings":{"type":"SlideSettings","id":"f_ea2ab17a-7b51-46b2-84ba-43894ae76057","defaultValue":null,"show_nav":true,"hidden_section":false,"name":"A Heroic Section","sync_key":null,"layout_variation":"images-right","padding":{"top":"large","bottom":"large"},"layout_config":{"width":"small","height":"auto","large_legacy":true}}}},{"type":"Slide","id":"f_4766085b-b5d7-4acc-81dd-80c5666ca2fb","defaultValue":null,"template_thumbnail_height":99.50666666666666,"template_id":null,"template_name":"slider","origin_id":"f_0524e89d-3495-4a51-bf7b-900cccd84bde","components":{"slideSettings":{"type":"SlideSettings","id":"f_0c075891-15c1-4fea-8472-84748267ac0b","defaultValue":null,"show_nav":true,"nameChanged":true,"hidden_section":false,"name":"Text + Button Slider","sync_key":null,"layout_variation":"[\"left\",\"left\"]","display_settings":{}}}},{"type":"Slide","id":"f_41559b49-261f-4784-8861-d041b9c636ab","defaultValue":true,"template_thumbnail_height":"167.73333333333332","template_id":null,"template_name":"new_grid","origin_id":"f_45941ff4-6743-4168-8910-d394b89d9145","components":{"slideSettings":{"type":"SlideSettings","id":"f_9e05a7a9-e61f-4206-8fa9-22cf4842ba2e","defaultValue":true,"show_nav":true,"show_nav_multi_mode":false,"nameChanged":true,"hidden_section":false,"hidden_mobile_section":false,"name":"Side by Side","sync_key":null,"layout_variation":"magazine---oneLeftOneBigRight-extraLarge-none-wide","display_settings":{},"layout_config":{"vertical_alignment":"middle","showTitle":false,"textAlignment":"center"}}}},{"type":"Slide","id":"f_fc00d5cf-db12-496f-8d69-e47fdd4b0286","defaultValue":true,"template_thumbnail_height":"167.73333333333332","template_id":null,"template_name":"new_grid","origin_id":"f_e13e54ea-f60e-40c6-9d4f-3ad3f9fd6d63","components":{"slideSettings":{"type":"SlideSettings","id":"f_436046fc-7976-46c2-b41b-183c2b8665b9","defaultValue":true,"show_nav":true,"nameChanged":true,"hidden_section":false,"hidden_mobile_section":false,"name":"Side by Side","sync_key":null,"layout_variation":"magazine---oneLeftOneBigRight-extraLarge-none-wide","display_settings":{},"layout_config":{"vertical_alignment":"middle","showTitle":false,"textAlignment":"center"}}}},{"type":"Slide","id":"f_b9b824a8-7331-4efe-bb60-0ec498928ee8","defaultValue":true,"template_thumbnail_height":"167.73333333333332","template_id":null,"template_name":"new_grid","origin_id":"f_e13e54ea-f60e-40c6-9d4f-3ad3f9fd6d63","components":{"slideSettings":{"type":"SlideSettings","id":"f_d239527b-cc1b-4e9f-9450-f6c5d1bea989","defaultValue":true,"show_nav":true,"nameChanged":true,"hidden_section":false,"hidden_mobile_section":false,"name":"Side by Side","sync_key":null,"layout_variation":"magazine---twoTopTwoBottom-extraLarge-none-wide","display_settings":{},"layout_config":{"vertical_alignment":"middle","showTitle":false,"textAlignment":"center"}}}},{"type":"Slide","id":"f_7c58ce1b-5653-45d7-b1a9-9ec0f97d08e7","defaultValue":null,"template_thumbnail_height":"129.60718400000002","template_id":null,"template_name":"featureListE","template_version":"s6","origin_id":"f_0205454c-13b8-4792-afb8-cd83ea617a72","components":{"slideSettings":{"type":"SlideSettings","id":"f_fcff0c60-e902-402a-a682-9bcbf96eb9c6","defaultValue":null,"show_nav":true,"nameChanged":true,"hidden_section":false,"hidden_mobile_section":false,"name":"About","sync_key":null,"layout_variation":"normal","padding":{"top":"normal","bottom":"normal"},"layout_config":{"noTemplateDiff":true,"card_radius":"small","border_thickness":"small","card_padding":"medium","spacing":"l","subtitleReplaceToText":true,"mediaSize":"xs","width":"normal","height":"auto","horizontal_alignment":"center","layout":"E","border":true,"mediaPosition":"left","showButton":true,"border_color":"#cccccc","card":false,"structure":"list","card_color":"#ffffff","vertical_alignment":"middle","grid_media_position":"top","columns":"three"}}}},{"type":"Slide","id":"f_d4bc4d6a-4a71-4b1a-a70b-51f3f8d33423","defaultValue":true,"template_thumbnail_height":170,"template_id":null,"template_name":"new_grid","origin_id":"f_39bcd2cf-1307-43b0-8d9b-73634a07408e","components":{"slideSettings":{"type":"SlideSettings","id":"f_a76873a7-5a80-4816-8ff4-7bffdf7dcef5","defaultValue":true,"show_nav":true,"show_nav_multi_mode":false,"nameChanged":true,"hidden_section":false,"hidden_mobile_section":false,"name":"Grid","sync_key":null,"layout_variation":"grid-2-2--extraLarge-small-wide","display_settings":{},"layout_config":{"vertical_alignment":"top","showTitle":false,"textAlignment":"center"}}}},{"type":"Slide","id":"f_f929888a-7d52-46c4-a98b-fa0eb04c75b5","defaultValue":true,"template_thumbnail_height":"167.73333333333332","template_id":null,"template_name":"new_grid","origin_id":"f_4695b130-7f6e-469d-a02c-647be1a2346f","components":{"slideSettings":{"type":"SlideSettings","id":"f_8d44e320-462d-464a-91ed-ab59298d54ac","defaultValue":true,"show_nav":true,"nameChanged":true,"hidden_section":false,"hidden_mobile_section":false,"name":"Grid","sync_key":null,"layout_variation":"grid-2-2--extraLarge-none-wide","display_settings":{},"layout_config":{"vertical_alignment":"middle","showTitle":false,"textAlignment":"center"}}}},{"type":"Slide","id":"f_3e9589a9-e001-43a2-ad50-2963f0432954","defaultValue":null,"template_thumbnail_height":"64.11","template_id":null,"template_name":"title","origin_id":"f_432aec76-59f0-4f18-8b18-f2278e20a7b8","components":{"slideSettings":{"type":"SlideSettings","id":"f_ca7965a9-8d41-4f10-8677-0f82e29c52bf","defaultValue":null,"show_nav":true,"nameChanged":true,"hidden_section":false,"name":"Headline","sync_key":null,"layout_variation":"center-bottom-full","padding":{"top":"normal","bottom":"normal"}}}},{"type":"Slide","id":"f_a4cd365f-a4eb-49d5-9bb1-dd8bbd86a8c3","defaultValue":true,"template_thumbnail_height":"134.90569866666667","template_id":null,"template_name":"text","origin_id":"f_4d72a004-a263-4099-add9-38a873691862","components":{"slideSettings":{"type":"SlideSettings","id":"f_b1225a33-c0ab-4c71-b9c5-fa16fd7657f9","defaultValue":null,"show_nav":true,"hidden_section":false,"name":"Plain Text","sync_key":null,"layout_variation":"text-one-button"}}},{"type":"Slide","id":"f_d4fe27ae-3487-47bc-a883-2073b4731847","defaultValue":true,"template_thumbnail_height":"153.17707199999998","template_id":null,"template_name":"text","origin_id":"f_5260caea-9e58-45ca-b8da-56e228423ece","components":{"slideSettings":{"type":"SlideSettings","id":"f_facee206-7ec5-4df8-8b8f-2fb89302cb7a","defaultValue":null,"show_nav":true,"nameChanged":true,"hidden_section":false,"name":"Plain Text","sync_key":null,"layout_variation":"box-one-button"}}},{"type":"Slide","id":"f_b4046220-2e32-4f4d-b6ae-38033d2f0089","defaultValue":null,"template_thumbnail_height":"193.40698266666664","template_id":null,"template_name":"featureListE","origin_id":"f_dea9210e-42dc-4a15-bb5a-35b8b3b0beb1","components":{"slideSettings":{"type":"SlideSettings","id":"f_b5d619e5-0495-4034-a9ad-d11cdf0f1144","defaultValue":null,"show_nav":true,"show_nav_multi_mode":false,"nameChanged":true,"hidden_section":false,"hidden_mobile_section":false,"name":"Team","sync_key":null,"layout_variation":"normal","layout_config":{"noTemplateDiff":true,"card_radius":"square","border_thickness":"small","card_padding":"medium","spacing":"S","subtitleReplaceToText":true,"mediaSize":"xs","horizontal_alignment":"left","layout":"E","border":false,"mediaPosition":"left","showButton":true,"border_color":"#cccccc","card":false,"structure":"grid","card_color":"#ffffff","vertical_alignment":"middle","grid_media_position":"top","columns":"three","content_align":"center"}}}},{"type":"Slide","id":"f_96a75e47-e4e6-455a-a386-0f7c9f3879d8","defaultValue":true,"template_thumbnail_height":"140.77407599999998","template_id":null,"template_name":"info","origin_id":"f_c8b271c2-2ed3-4c26-a5a5-05bb68619695","components":{"slideSettings":{"type":"SlideSettings","id":"f_027e2aa0-c731-481c-8c88-97ae29027a89","defaultValue":true,"show_nav":true,"show_nav_multi_mode":false,"hidden_section":false,"name":"Info","sync_key":null,"layout_variation":"box-one-button"}}},{"type":"Slide","id":"f_817f990f-4547-4dc3-affd-81d6eafd4706","defaultValue":true,"template_thumbnail_height":"196.73945866666665","template_id":null,"template_name":"pricing","template_version":"beta-s6","origin_id":"f_f63485b7-3a4b-4573-bf0d-8181c5995627","components":{"slideSettings":{"type":"SlideSettings","id":"f_1fbc983e-7999-404e-b21d-8b064924e0e4","defaultValue":true,"show_nav":true,"nameChanged":true,"hidden_section":false,"name":"Pricing Table","sync_key":null,"layout_variation":"pricing-layout-1","display_settings":{"highlighted_id":"item-middle-id","highlighted_index":1}}}},{"type":"Slide","id":"f_9dba1e67-9d19-4e3c-a055-111656c6dd6f","defaultValue":null,"template_thumbnail_height":148.416464,"template_id":null,"template_name":"featureListE","origin_id":"f_c90e5d81-48cd-4650-a19e-fdf803866ad1","components":{"slideSettings":{"type":"SlideSettings","id":"f_bce4a4c2-2d00-4944-8b83-ee1bbba53243","defaultValue":null,"show_nav":true,"show_nav_multi_mode":false,"nameChanged":true,"hidden_section":false,"hidden_mobile_section":false,"name":"Testimonials","sync_key":null,"layout_variation":"normal","layout_config":{"noTemplateDiff":true,"card_radius":"large","border_thickness":"small","card_padding":"medium","spacing":"l","subtitleReplaceToText":true,"mediaSize":"xs","horizontal_alignment":"left","layout":"E","border":false,"mediaPosition":"right","showButton":true,"border_color":"#cccccc","card":false,"structure":"list","card_color":"#e4f7f0","vertical_alignment":"middle","grid_media_position":"top","columns":"three","content_align":"center"}}}},{"type":"Slide","id":"f_73de4954-a790-419f-a593-f91b1899f6e8","defaultValue":null,"template_thumbnail_height":"193.40698266666664","template_id":null,"template_name":"featureListE","origin_id":"f_dea9210e-42dc-4a15-bb5a-35b8b3b0beb1","components":{"slideSettings":{"type":"SlideSettings","id":"f_e0e7daa7-7fa4-4de8-834a-546e14c85430","defaultValue":null,"show_nav":true,"show_nav_multi_mode":false,"nameChanged":true,"hidden_section":false,"hidden_mobile_section":false,"name":"Team","sync_key":null,"layout_variation":"normal","layout_config":{"noTemplateDiff":true,"card_radius":"square","border_thickness":"small","card_padding":"medium","spacing":"S","subtitleReplaceToText":true,"mediaSize":"xs","horizontal_alignment":"left","layout":"E","border":false,"mediaPosition":"alternating","showButton":true,"border_color":"#cccccc","card":false,"structure":"list","card_color":"#ffffff","vertical_alignment":"middle","grid_media_position":"top","columns":"three","content_align":"center"}}}},{"type":"Slide","id":"f_19193a4f-5742-45fb-b64c-706b08503bb3","defaultValue":true,"template_thumbnail_height":"156.83021333333332","template_id":null,"template_name":"ecommerce","template_version":"beta-s6","origin_id":"f_28586155-ca90-4c0d-a464-6e2688abd298","components":{"slideSettings":{"type":"SlideSettings","id":"f_28f084ef-5ac1-4622-8f5c-2409e2b6a37c","defaultValue":true,"show_nav":true,"show_nav_multi_mode":false,"nameChanged":true,"hidden_section":false,"name":"Digital Download","sync_key":null,"layout_variation":"landscape-one","layout_config":{"customized":true,"templateName":"C","imageShape":"square","disabledProductReview":true,"structure":"card","textAlignment":"left-align","imageSize":"m","productPerPage":"3","columns":3}},"background1":{"type":"Background","id":"f_0b63b5a3-212b-4c04-aa09-57defac38ca6","defaultValue":false,"url":"","textColor":"","backgroundVariation":"","sizing":"","userClassName":"","videoUrl":"","videoHtml":"","storageKey":null,"storage":null,"format":null,"h":null,"w":null,"s":null,"useImage":false,"focus":null,"backgroundColor":null},"text1":{"type":"RichText","id":"f_d2c65a1f-c396-4f1d-be08-efad8ce19cdb","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch1 class=\" font-size-tag-header-one s-text-font-size-over-40\" style=\"font-size: 48px;\"\u003e\u003cspan class=\"s-text-color-default\"\u003eSubscribe \u0026amp; Download Now \u003c\/span\u003e\u003c\/h1\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"text2":{"type":"RichText","id":"f_df9d19e0-0bd7-44a5-9db0-20f52c845bde","defaultValue":true,"value":"Check out our products.","backupValue":null,"version":null},"ecommerce1":{"type":"EcommerceComponent","id":"f_1bbab66a-0cd6-4b56-9e8c-7b921cbcf751","defaultValue":false,"text":null,"category":"all"}}},{"type":"Slide","id":"f_d67d5e41-69b7-41b1-b599-4d2b52594249","defaultValue":true,"template_thumbnail_height":139.53464,"template_id":null,"template_name":"contact_form","template_version":"","origin_id":"f_aa74055f-cb4c-4670-a9be-93a872182b4c","components":{"slideSettings":{"type":"SlideSettings","id":"f_91e25b6f-0f0e-40e0-8fd5-ba4b1855cce7","defaultValue":true,"show_nav":true,"hidden_section":false,"name":"Contact Us","sync_key":null,"layout_variation":null,"display_settings":{"hide_form":false,"show_map":true,"show_info":true},"layout_config":{"width":"wide","height":"normal","content_align":"center"}}}},{"type":"Slide","id":"f_f15752b9-88fd-466d-b642-f58cdfcde1c9","defaultValue":null,"template_thumbnail_height":151,"template_id":null,"template_name":"s6_common_section","template_version":"s6","origin_id":"f_8f80b9fa-9563-4ea3-bcdf-51077880fa96","components":{"slideSettings":{"type":"SlideSettings","id":"f_2955f680-cfd1-4d49-8f74-ad709ccd0f32","defaultValue":null,"show_nav":true,"show_nav_multi_mode":false,"nameChanged":null,"hidden_section":false,"name":"Make Your Own","sync_key":null,"layout_variation":null,"display_settings":{},"padding":{"top":"normal","bottom":"normal"},"layout_config":{"width":"wide","height":"auto"}}}}],"title":"New Page 4","uid":"dce06b27-8172-44e7-8096-d75362429cb0","path":"\/new-page-4","autoPath":true,"authorized":true},{"type":"Page","id":"f_566e80d6-f75c-49db-af6f-72ab4f07c5e6","sections":[{"type":"Slide","id":"f_f271cad0-24be-452f-a870-0619799976c3","defaultValue":null,"template_thumbnail_height":"254.60247199999995","template_id":null,"template_name":"featureListE","template_version":"s6","origin_id":"f_42c18694-3f29-48d6-a571-e393cc44873a","components":{"slideSettings":{"type":"SlideSettings","id":"f_992a7d2b-2c2b-42cf-90a3-ae851a7e5522","defaultValue":null,"show_nav":true,"hidden_section":false,"hidden_mobile_section":false,"name":"Feature Listing","sync_key":null,"layout_variation":"normal","padding":{"top":"normal","bottom":"normal"},"layout_config":{"noTemplateDiff":true,"card_radius":"square","border_thickness":"small","card_padding":"small","spacing":"S","subtitleReplaceToText":true,"mediaSize":"m","width":"normal","height":"auto","horizontal_alignment":"center","layout":"E","border":false,"mediaPosition":"alternating","showButton":true,"border_color":"#000000","card":false,"structure":"list","card_color":null,"vertical_alignment":"middle","grid_media_position":"top","columns":"three"}},"background1":{"type":"Background","id":"f_fe0a59e9-a4e7-4cb3-9dda-4499ad1916b5","defaultValue":true,"url":"","textColor":"light","backgroundVariation":"","sizing":"cover","videoUrl":"","videoHtml":""},"text1":{"type":"RichText","id":"f_2e0a4607-b4f0-4d3d-b4dc-36addee8bc78","defaultValue":true,"value":"What We Do","backupValue":null,"version":null},"text2":{"type":"RichText","id":"f_124303a9-1fad-4e8c-a3ea-3d017e8bdd50","defaultValue":true,"value":"Show off your projects, features, or clients in this section.","backupValue":null,"version":null},"block1":{"type":"BlockComponent","id":"6aa646a0-6cb2-41c2-98d3-14a961acd381","defaultValue":null,"items":[{"type":"BlockComponentItem","id":"f_d93120cb-e544-498c-affc-59763f177d57","name":"rowBlock","components":{"block1":{"type":"BlockComponent","id":"56da8c81-e782-4e8f-8b01-68b26cd339e4","items":[{"type":"BlockComponentItem","id":"959c9234-c6b4-4928-bc74-62baae652ef0","name":"columnBlock","components":{"block1":{"type":"BlockComponent","id":"f_d4338b2a-97a9-4b45-b68e-2b3e0fb0c494","items":[{"type":"BlockComponentItem","id":"b939f8e3-9b23-49f8-a844-c7beb4a23679","defaultValue":null,"name":"title","components":{"text1":{"type":"RichText","id":"c9b4f2e1-8e25-4699-8de1-172af4c7e435","defaultValue":false,"value":"\u003ch2 class=\"s-title s-font-title\" style=\"text-align: center;\"\u003eWhat We Do\u003c\/h2\u003e\u003ch4 class=\"s-subtitle\" style=\"text-align: center;\"\u003eShow off your projects, features, or clients in this section.\u003c\/h4\u003e","backupValue":null,"version":6,"lineAlignment":{"firstLineTextAlign":"center","lastLineTextAlign":"center"}}}}],"inlineLayout":null}}}],"inlineLayout":"12"}}},{"type":"BlockComponentItem","id":"f_c5bae807-a865-482b-91d4-8370d0cf132a","name":"rowBlock","components":{"block1":{"type":"BlockComponent","id":"2acab926-23ff-4572-b0e8-c5a27508bc2e","items":[{"type":"BlockComponentItem","id":"123760a8-0625-42a8-8914-f2dee38f44e3","name":"columnBlock","components":{"block1":{"type":"BlockComponent","id":"f_b6f66dc8-2e8f-4a8b-b85e-80580a48e2cf","items":[{"type":"BlockComponentItem","id":"f_fd3bc53c-478a-4162-91b1-3d9d550a8865","defaultValue":true,"name":"mediumFeatureLeft","components":{"media1":{"type":"Media","id":"f_ff9e2185-bc14-400a-9bd1-15419e8076e5","defaultValue":true,"video":{"type":"Video","id":"f_2441f694-1335-45ec-9ff2-b6f1d4d53692","defaultValue":true,"html":"","url":"http:\/\/vimeo.com\/18150336","thumbnail_url":null,"maxwidth":700,"description":null},"image":{"type":"Image","id":"f_912699cc-acc8-4b0e-a178-c4a4046889f2","defaultValue":true,"link_url":null,"thumb_url":"\/\/static-assets.strikinglycdn.com\/images\/editor2\/feature_list\/thumb-list-C-1.png","url":"\/\/static-assets.strikinglycdn.com\/images\/editor2\/feature_list\/list-C-1.png","caption":"","description":"","new_target":true},"current":"image"},"text1":{"type":"RichText","id":"f_c09db36a-2272-4f32-bb1b-adf4ef94ebaa","defaultValue":false,"value":"How to Build a Website Like a Professional","backupValue":null,"version":null,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"text2":{"type":"RichText","id":"f_10200cf2-e775-4c1e-9a8a-6f5e1380e1bf","defaultValue":false,"value":"Use a text section to describe your values, show more info, summarize a topic, or tell a story.","backupValue":null,"version":null,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"button1":{"type":"Button","id":"f_b9964b4e-4902-4a73-9f64-3725d2c286f9","defaultValue":false,"alignment":"center","text":"Read More","size":"small","mobile_size":"automatic","style":"","color":"","font":"","url":"","new_target":null,"version":"2"},"buttons":{"type":"Buttons","id":"f_11db5b41-7852-4050-80c3-b02de419370e","alignment":"center","components":{"block1":{"type":"BlockComponent","id":"f_fbb29306-164f-4a56-a9a2-3b32b69673ff","items":[]}},"size":"small","mobile_size":"automatic"}},"layout_config":{"noTemplateDiff":true,"card_radius":"square","border_thickness":"small","card_padding":"small","spacing":"S","subtitleReplaceToText":true,"mediaSize":"m","horizontal_alignment":"center","layout":"E","border":false,"mediaPosition":"alternating","showButton":true,"border_color":"#000000","card":false,"structure":"list","card_color":null,"vertical_alignment":"middle","grid_media_position":"top","columns":"three","isNewFeatureList":true,"content_align":"center"}}],"inlineLayout":null}}}],"inlineLayout":"12"}}},{"type":"BlockComponentItem","id":"f_7094241c-56a2-4f47-b1c3-12a8d4801ddb","name":"rowBlock","components":{"block1":{"type":"BlockComponent","id":"a4d3b92e-2d77-45ce-a639-a665fcab27bf","items":[{"type":"BlockComponentItem","id":"3c07b359-4c46-4cf0-9b1a-413f45cdb6ad","name":"columnBlock","components":{"block1":{"type":"BlockComponent","id":"f_a806f830-225c-42f9-88b9-cf98a697625a","items":[{"type":"BlockComponentItem","id":"f_f0ed4a95-9b28-4be1-9114-abdcc88f04fc","defaultValue":true,"name":"mediumFeatureRight","components":{"media1":{"type":"Media","id":"f_14da9f18-3fe8-4d53-80de-fcf11548b908","defaultValue":true,"video":{"type":"Video","id":"f_48e908fd-800e-4dd6-a516-d823aa0fdc72","defaultValue":true,"html":"","url":"http:\/\/vimeo.com\/18150336","thumbnail_url":null,"maxwidth":700,"description":null},"image":{"type":"Image","id":"f_5580f3b7-f48b-4482-bc18-f115c8d5cbdb","defaultValue":true,"link_url":null,"thumb_url":"\/\/static-assets.strikinglycdn.com\/images\/editor2\/feature_list\/thumb-list-C-2.png","url":"\/\/static-assets.strikinglycdn.com\/images\/editor2\/feature_list\/list-C-2.png","caption":"","description":"","new_target":true},"current":"image"},"text1":{"type":"RichText","id":"f_8b4c25a9-70a5-4bc8-b7be-79eee443b415","defaultValue":false,"value":"How to Build a Website Like a Professional","backupValue":null,"version":null,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"text2":{"type":"RichText","id":"f_fac9d7bc-432e-475a-86ed-1d0234ebb245","defaultValue":false,"value":"Use a text section to describe your values, show more info, summarize a topic, or tell a story.","backupValue":null,"version":null,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"button1":{"type":"Button","id":"f_d81c44fa-38b9-4b86-a593-cd4647259dcc","defaultValue":false,"alignment":"inherit","text":"Read More","size":"small","mobile_size":"automatic","style":"","color":"","font":"","url":"","new_target":null,"version":"2"},"buttons":{"type":"Buttons","id":"f_589ec71b-4415-4ed3-ade2-6d573ae8c52f","alignment":"center","components":{"block1":{"type":"BlockComponent","id":"f_71c5a1d9-66db-40c7-9252-0b82a4ee9faa","items":[]}},"size":"small","mobile_size":"automatic"}},"layout_config":{"noTemplateDiff":true,"card_radius":"square","border_thickness":"small","card_padding":"small","spacing":"S","subtitleReplaceToText":true,"mediaSize":"m","horizontal_alignment":"center","layout":"E","border":false,"mediaPosition":"alternating","showButton":true,"border_color":"#000000","card":false,"structure":"list","card_color":null,"vertical_alignment":"middle","grid_media_position":"top","columns":"three","isNewFeatureList":true,"content_align":"center"}}],"inlineLayout":null}}}],"inlineLayout":"12"}}}],"inlineLayout":"1"}}},{"type":"Slide","id":"f_57dd25f2-dfb1-4161-8cee-f6799f0336df","defaultValue":null,"template_thumbnail_height":151,"template_id":null,"template_name":"s6_common_section","template_version":"s6","origin_id":"f_8f80b9fa-9563-4ea3-bcdf-51077880fa96","components":{"slideSettings":{"type":"SlideSettings","id":"f_f40ca2b5-b614-44ce-bbbb-3cdf745338f2","defaultValue":null,"show_nav":true,"show_nav_multi_mode":false,"nameChanged":null,"hidden_section":false,"name":"Make Your Own","sync_key":null,"layout_variation":null,"display_settings":{},"padding":{"top":"normal","bottom":"normal"},"layout_config":{"width":"wide","height":"auto"}}}},{"type":"Slide","id":"f_c398f917-c10b-4e91-9cdd-83c54903d038","defaultValue":null,"template_thumbnail_height":"271.39393866666666","template_id":null,"template_name":"featureListE","template_version":"s6","origin_id":"f_1df0b3b1-78ee-4f1b-908b-e565e909aa5e","components":{"slideSettings":{"type":"SlideSettings","id":"f_116be200-57e6-42a3-a7c8-d43777aedcfc","defaultValue":null,"show_nav":true,"nameChanged":true,"hidden_section":false,"hidden_mobile_section":false,"name":"Feature List","sync_key":null,"layout_variation":"normal","padding":{"top":"normal","bottom":"normal"},"layout_config":{"noTemplateDiff":true,"card_radius":"square","border_thickness":"small","card_padding":"medium","spacing":"S","subtitleReplaceToText":true,"mediaSize":"xs","width":"normal","height":"auto","horizontal_alignment":"center","layout":"E","border":false,"mediaPosition":"left","showButton":true,"border_color":"#000000","card":true,"structure":"list","card_color":null,"vertical_alignment":"middle","grid_media_position":"top","columns":"three"}}}}],"title":"feature list auto","uid":"1779d199-7fc6-4d3c-b417-9f4fbfa722e7","path":"\/feature-list-auto","autoPath":true,"authorized":true},{"type":"Page","id":"f_25fcdca3-c9ea-4557-aadb-53473f0e8748","sections":[{"type":"Slide","id":"f_72714bd8-96d9-4e3a-8e0c-012faa596186","defaultValue":null,"template_thumbnail_height":"110.27035999999998","template_id":null,"template_name":"hero","template_version":"s6","origin_id":"f_f58ab5cc-ee2a-42d2-92ae-b080ca7d9219","components":{"slideSettings":{"type":"SlideSettings","id":"f_cc1ef211-6daf-407b-9312-91ac4783e49c","defaultValue":null,"show_nav":true,"show_nav_multi_mode":false,"hidden_section":false,"name":"A Heroic Section","sync_key":null,"layout_variation":"images-right","padding":{"top":"normal","bottom":"normal"},"layout_config":{"width":"small","height":"auto","vertical_alignment":"middle"}},"background1":{"type":"Background","id":"f_b19b6629-077a-4f3f-b79f-c2e51c892635","defaultValue":false,"url":"!","textColor":"overlay","backgroundVariation":"","sizing":"","userClassName":null,"videoUrl":"","videoHtml":"","storageKey":"1339460\/752735_883777","storage":"s","format":"jpg","h":2665,"w":3997,"s":2018633,"useImage":true,"focus":null,"backgroundColor":{"themeColorRangeIndex":null,"value":"#FFFFFF","type":null}},"text1":{"type":"RichText","id":"f_f5cb7058-3de5-4fb0-b636-185fc78443a6","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003cp class=\"s-rich-text-wrapper font-size-tag-custom\" style=\"font-size: 100px;\"\u003e\u003cspan class=\"s-text-color-default\"\u003eA Heroic Section\u003c\/span\u003e\u003c\/p\u003e\u003c\/div\u003e","backupValue":null,"version":1},"text2":{"type":"RichText","id":"f_59015221-c03d-441e-9d2f-eb0cf61b0122","defaultValue":null,"value":"Introduce your product or service!","backupValue":null,"version":null},"block1":{"type":"BlockComponent","id":"f_dc98b6fb-b911-4006-86fb-98fb4ba0dd06","defaultValue":null,"items":[{"type":"BlockComponentItem","id":"f_a86ae938-5dc1-461f-acfd-3ca2da79c8e0","name":"rowBlock","components":{"block1":{"type":"BlockComponent","id":"f_4166150a-bf73-444d-88d5-1711554c418c","items":[{"type":"BlockComponentItem","id":"f_13edf667-4d3c-4e8e-b9df-58201f733378","name":"columnBlock","components":{"block1":{"type":"BlockComponent","id":"f_c7f95f78-6b74-4739-ac71-09ce6f0cc263","items":[{"type":"BlockComponentItem","id":"f_ef634647-3339-4f58-aff0-ad59f411c79a","defaultValue":null,"name":"title","components":{"text1":{"type":"RichText","id":"f_1f2c9c0a-8d48-45cd-a0b3-8c4e5ae386e1","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch1 class=\"s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-title s-font-title s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper font-size-tag-header-one s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper\" style=\"text-align: left; font-size: 48px;\"\u003e\u003cspan class=\"s-text-color-default\"\u003eIt begins with \u003c\/span\u003e\u003c\/h1\u003e\u003ch1 class=\"s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-title s-font-title s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper font-size-tag-header-one\" style=\"text-align: left; font-size: 48px;\"\u003e\u003cspan class=\"s-text-color-default\"\u003ean idea.\u003c\/span\u003e\u003cspan class=\"s-text-color-default s-title s-font-title s-rich-text-wrapper font-size-tag-header-one\"\u003e\u0026nbsp;\u003c\/span\u003e\u003c\/h1\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":"left","lastLineTextAlign":"left"}}}},{"type":"BlockComponentItem","id":"f_07229ef8-8b18-45e5-8453-c7df14b6e5f8","defaultValue":null,"name":"context","components":{"text1":{"type":"RichText","id":"f_c76e360d-8bf7-4a9b-b6b2-79cfa82f00c4","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003ch3 class=\"s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-text-color-default s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper font-size-tag-header-three s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper s-rich-text-wrapper\" style=\"text-align: left; font-size: 24px;\"\u003e\u003cspan class=\"s-text-color-default\"\u003eThe Power of Positive Thinking: How Optimism Can Transform Your Life.\u003c\/span\u003e\u003c\/h3\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":"left","lastLineTextAlign":"left"}}}},{"type":"Button","id":"f_0f0ccb09-ca59-4abb-848a-453ca7e2f9af","defaultValue":false,"alignment":"flex-start","text":"LEARN MORE","size":"medium","style":"","color":"","font":"","url":"http:\/\/strikingly.com","new_target":null,"version":"2"}],"inlineLayout":"center"}}},{"type":"BlockComponentItem","id":"f_84c251af-5873-4a1a-9537-6930bccd2fd7","name":"columnBlock","components":{"block1":{"type":"BlockComponent","id":"f_ebd4adb8-5b23-44fc-8616-af30464c36ab","items":[{"type":"Spacer","id":"f_ad83dbb8-401e-417f-a7b0-0a052311110f","defaultValue":null,"value":"40"}]}}}],"inlineLayout":"7-5"}}},{"type":"BlockComponentItem","id":"dcfb2e4e-4975-4705-a761-eba2393b985c","name":"rowBlock","components":{"block1":{"type":"BlockComponent","id":"46307475-2cc5-40f4-8b2e-1ae1a4702f82","items":[{"type":"BlockComponentItem","id":"e1ac0e22-9c5b-43cf-8d42-7fa87ef5c9ce","name":"columnBlock","components":{"block1":{"type":"BlockComponent","id":"68ca538a-a6d0-4b18-8760-a428e0904ee2","items":[{"type":"HtmlComponent","id":27521966,"defaultValue":false,"value":"\u0026lt;div id=\"dtspace-infinity-wrapper\"\u0026gt;\n \u0026lt;style\u0026gt;\n \/* 1. \u5b89\u5168\u8f09\u5165\u5b57\u9ad4\u8207\u5716\u793a\u5eab *\/\n @import url('https:\/\/fonts.googleapis.com\/css2?family=Noto+Sans+TC:wght@300;400;500;700\u0026amp;family=Playfair+Display:ital,wght@0,600;0,700;1,600\u0026amp;display=swap');\n @import url('https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/font-awesome\/6.4.0\/css\/all.min.css');\n\n \/* 2. \u57fa\u790e\u8a2d\u5b9a\u8207\u8b8a\u6578\u5c01\u88dd *\/\n #dtspace-infinity-wrapper {\n --primary-gold: #c2a36b;\n --gold-light: #f3e5c8;\n --bg-main: #0b0e14;\n --text-white: #ffffff;\n --text-gray: #a0a0a0;\n\n font-family: 'Noto Sans TC', -apple-system, BlinkMacSystemFont, sans-serif;\n background-color: var(--bg-main);\n color: var(--text-white);\n overflow-x: hidden;\n min-height: 1000px; \n position: relative;\n width: 100%;\n box-sizing: border-box;\n line-height: 1.6;\n }\n\n #dtspace-infinity-wrapper * { \n margin: 0; \n padding: 0; \n box-sizing: border-box; \n }\n\n \/* --- \u9583\u720d\u91d1\u8272\u6587\u5b57\u6548\u679c --- *\/\n @keyframes dt-shimmer {\n 0% { background-position: -200% center; }\n 100% { background-position: 200% center; }\n }\n\n #dtspace-infinity-wrapper .shimmer-text {\n background: linear-gradient(90deg, var(--primary-gold) 0%, var(--gold-light) 30%, var(--primary-gold) 60%, var(--gold-light) 80%, var(--primary-gold) 100%);\n background-size: 200% auto;\n -webkit-background-clip: text;\n background-clip: text;\n -webkit-text-fill-color: transparent;\n animation: dt-shimmer 4s linear infinite;\n display: inline-block;\n }\n\n #dtspace-infinity-wrapper .dt-header {\n display: flex;\n justify-content: space-between;\n align-items: center;\n padding: 25px 5%;\n width: 100%;\n z-index: 10;\n position: absolute;\n top: 0;\n left: 0;\n }\n\n #dtspace-infinity-wrapper .logo-box { \n display: flex; \n align-items: center; \n gap: 12px; \n }\n \n #dtspace-infinity-wrapper .logo-d {\n background: var(--primary-gold);\n color: white; \n width: 40px; \n height: 40px;\n display: flex; \n align-items: center; \n justify-content: center;\n font-family: 'Playfair Display', serif; \n font-size: 22px; \n border-radius: 4px;\n }\n \n #dtspace-infinity-wrapper .logo-txt h2 { \n font-size: 18px; \n letter-spacing: 2px; \n margin: 0;\n color: var(--text-white);\n }\n \n #dtspace-infinity-wrapper .logo-txt p { \n font-size: 9px; \n color: var(--primary-gold); \n letter-spacing: 2px; \n margin: 0;\n }\n\n #dtspace-infinity-wrapper .hero {\n padding: 150px 10% 80px;\n background: linear-gradient(rgba(11, 14, 20, 0.7), rgba(11, 14, 20, 0.9)), \n url('https:\/\/images.unsplash.com\/photo-1497366216548-37526070297c?auto=format\u0026amp;fit=crop\u0026amp;q=80\u0026amp;w=1200') no-repeat center center\/cover;\n text-align: left;\n }\n\n #dtspace-infinity-wrapper .badge {\n border: 1px solid var(--primary-gold);\n color: var(--primary-gold);\n padding: 4px 12px; \n font-size: 12px; \n letter-spacing: 2px; \n margin-bottom: 25px; \n display: inline-block;\n }\n\n #dtspace-infinity-wrapper .hero h3 { \n font-size: clamp(32px, 6vw, 56px); \n line-height: 1.3; \n margin-bottom: 20px; \n color: var(--text-white);\n }\n \n #dtspace-infinity-wrapper .hero p { \n color: var(--text-gray); \n font-size: 16px; \n margin-bottom: 5px; \n }\n\n #dtspace-infinity-wrapper .stats-section { \n padding: 80px 8%; \n text-align: center; \n }\n \n #dtspace-infinity-wrapper .section-tag { \n color: var(--primary-gold); \n letter-spacing: 4px; \n font-size: 12px; \n margin-bottom: 10px; \n display: block; \n }\n \n #dtspace-infinity-wrapper .section-title { \n font-size: 28px; \n margin-bottom: 50px; \n font-weight: 500; \n color: var(--text-white);\n }\n\n #dtspace-infinity-wrapper .stats-grid {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));\n gap: 25px;\n }\n\n #dtspace-infinity-wrapper .stat-card {\n background: rgba(255, 255, 255, 0.03);\n border: 1px solid rgba(194, 163, 107, 0.1);\n padding: 45px 20px; \n border-radius: 12px; \n transition: all 0.4s ease;\n display: flex; \n flex-direction: column; \n align-items: center;\n }\n\n #dtspace-infinity-wrapper .stat-card:hover { \n transform: translateY(-8px); \n border-color: var(--primary-gold); \n background: rgba(255, 255, 255, 0.05); \n }\n\n \/* --- \u7121\u9650\u5927\u7b26\u865f\u7279\u6b8a\u52d5\u756b --- *\/\n @keyframes dt-infinity-glow {\n 0% { transform: scale(1); filter: drop-shadow(0 0 2px var(--primary-gold)); }\n 50% { transform: scale(1.1); filter: drop-shadow(0 0 15px var(--primary-gold)); }\n 100% { transform: scale(1); filter: drop-shadow(0 0 2px var(--primary-gold)); }\n }\n\n #dtspace-infinity-wrapper .infinity-icon {\n font-size: 50px;\n color: var(--primary-gold);\n margin-bottom: 20px;\n animation: dt-infinity-glow 3s infinite ease-in-out;\n }\n\n \/* --- CTA \u7279\u5225\u5361\u7247\u6a23\u5f0f --- *\/\n #dtspace-infinity-wrapper .stat-card.cta-card {\n background: linear-gradient(145deg, rgba(194, 163, 107, 0.08), transparent);\n border: 1px solid var(--primary-gold);\n box-shadow: 0 0 20px rgba(194, 163, 107, 0.1);\n }\n \n #dtspace-infinity-wrapper .cta-btn {\n margin-top: 20px;\n padding: 12px 35px;\n background: var(--primary-gold);\n color: white;\n text-decoration: none;\n border-radius: 50px;\n font-weight: 700;\n font-size: 15px;\n letter-spacing: 1px;\n transition: 0.3s;\n box-shadow: 0 4px 15px rgba(194, 163, 107, 0.3);\n display: inline-block;\n }\n \n #dtspace-infinity-wrapper .cta-btn:hover { \n background: var(--gold-light); \n color: var(--bg-main); \n transform: scale(1.05);\n box-shadow: 0 6px 20px rgba(194, 163, 107, 0.5);\n }\n\n #dtspace-infinity-wrapper .icon-box { \n color: var(--primary-gold); \n font-size: 24px; \n margin-bottom: 20px; \n }\n \n #dtspace-infinity-wrapper .num-wrapper { \n font-family: 'Playfair Display', serif; \n font-size: 48px; \n font-weight: 700; \n margin-bottom: 10px; \n color: var(--text-white);\n }\n \n #dtspace-infinity-wrapper .num-wrapper::after { \n content: ''; \n display: block; \n width: 30px; \n height: 2px; \n background: var(--primary-gold); \n margin: 10px auto; \n }\n \n #dtspace-infinity-wrapper .stat-label { \n color: var(--primary-gold); \n font-weight: 700; \n font-size: 18px; \n margin-bottom: 8px; \n }\n \n #dtspace-infinity-wrapper .stat-desc { \n color: var(--text-gray); \n font-size: 14px; \n line-height: 1.6; \n margin: 0;\n }\n\n @media (max-width: 600px) {\n #dtspace-infinity-wrapper .dt-header { \n flex-direction: column; \n gap: 15px; \n position: relative; \n padding-bottom: 10px; \n }\n #dtspace-infinity-wrapper .hero { \n padding-top: 40px; \n }\n }\n \u0026lt;\/style\u0026gt;\n\n \u0026lt;div class=\"dt-header\"\u0026gt;\n \u0026lt;div class=\"logo-box\"\u0026gt;\n \u0026lt;div class=\"logo-d\"\u0026gt;D\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"logo-txt\"\u0026gt;\n \u0026lt;h2\u0026gt;DT Space Team \u9ad8\u96c4\u6703\u8b70\u4e2d\u5fc3\u0026lt;\/h2\u0026gt;\n \u0026lt;p\u0026gt;CONFERENCE\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n\n \u0026lt;section class=\"hero\"\u0026gt;\n \u0026lt;span class=\"badge\"\u0026gt;\u2022 KAOHSIUNG'S PREMIER SPACE\u0026lt;\/span\u0026gt;\n \u0026lt;h3\u0026gt;\u70ba\u60a8\u7684\u5c08\u696d\u0026lt;br\u0026gt;\u0026lt;span class=\"shimmer-text\"\u0026gt;\u52a0\u5195\u69ae\u8000\u0026lt;\/span\u0026gt;\u0026lt;\/h3\u0026gt;\n \u0026lt;p\u0026gt;\u7d50\u5408\u661f\u7d1a\u7a7a\u9593\u7f8e\u5b78\u8207\u77fd\u8c37\u7d1a\u6578\u4f4d\u6548\u7387\u3002\u0026lt;\/p\u0026gt;\n \u0026lt;p\u0026gt;\u63d0\u4f9b\u8d85\u8d8a\u300c\u7a7a\u9593\u300d\u7684\u5546\u696d\u52a0\u901f\u751f\u614b\u7cfb\u3002\u0026lt;\/p\u0026gt;\n \u0026lt;\/section\u0026gt;\n\n \u0026lt;section class=\"stats-section\"\u0026gt;\n \u0026lt;span class=\"section-tag\"\u0026gt;OUR MILESTONES\u0026lt;\/span\u0026gt;\n \u0026lt;h3 class=\"section-title\"\u0026gt;\u4ee5\u6578\u64da\u898b\u8b49 \u0026lt;span class=\"shimmer-text\" style=\"font-style: italic;\"\u0026gt;\u5353\u8d8a\u975e\u51e1\u0026lt;\/span\u0026gt;\u0026lt;\/h3\u0026gt;\n\n \u0026lt;div class=\"stats-grid\"\u0026gt;\n \u0026lt;div class=\"stat-card\"\u0026gt;\n \u0026lt;div class=\"icon-box\"\u0026gt;\u0026lt;i class=\"fa-solid fa-pen-nib\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"num-wrapper\"\u0026gt;\u0026lt;span class=\"count-up\" data-value=\"10\"\u0026gt;0\u0026lt;\/span\u0026gt;+\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"stat-label\"\u0026gt;\u6df1\u8015\u9ad8\u96c4\u7d93\u9a57\u0026lt;\/div\u0026gt;\n \u0026lt;p class=\"stat-desc\"\u0026gt;\u5341\u5e74\u78e8\u4e00\u528d\uff0c\u5c08\u6ce8\u5546\u52d9\u670d\u52d9\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n\n \u0026lt;div class=\"stat-card\"\u0026gt;\n \u0026lt;div class=\"icon-box\"\u0026gt;\u0026lt;i class=\"fa-solid fa-building\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"num-wrapper\"\u0026gt;\u0026lt;span class=\"count-up\" data-value=\"30\"\u0026gt;0\u0026lt;\/span\u0026gt;+\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"stat-label\"\u0026gt;\u5834\u5730\u8cc7\u6e90\u0026lt;\/div\u0026gt;\n \u0026lt;p class=\"stat-desc\"\u0026gt;10-300\u4eba \u591a\u5143\u5f48\u6027\u7a7a\u9593\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n\n \u0026lt;div class=\"stat-card\"\u0026gt;\n \u0026lt;div class=\"icon-box\"\u0026gt;\u0026lt;i class=\"fa-solid fa-share-nodes\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"num-wrapper\"\u0026gt;\u0026lt;span class=\"count-up\" data-value=\"500\"\u0026gt;0\u0026lt;\/span\u0026gt;+\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"stat-label\"\u0026gt;\u5546\u52d9\u52a0\u901f\u751f\u614b\u0026lt;\/div\u0026gt;\n \u0026lt;p class=\"stat-desc\"\u0026gt;\u5f37\u529b\u5a92\u5408\u8cc7\u6e90\uff0c\u70ba\u4e8b\u696d\u8ce6\u80fd\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n\n \u0026lt;div class=\"stat-card\"\u0026gt;\n \u0026lt;div class=\"icon-box\"\u0026gt;\u0026lt;i class=\"fa-solid fa-award\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"num-wrapper\"\u0026gt;\u0026lt;span class=\"count-up\" data-value=\"5000\"\u0026gt;0\u0026lt;\/span\u0026gt;+\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"stat-label\"\u0026gt;\u6d3b\u52d5\u8209\u8fa6\u7d93\u9a57\u0026lt;\/div\u0026gt;\n \u0026lt;p class=\"stat-desc\"\u0026gt;\u54c1\u8cea\u4fdd\u8b49\uff0c\u6bcf\u4e00\u6b21\u90fd\u5b8c\u7f8e\u4ea4\u4ed8\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n\n \u0026lt;div class=\"stat-card cta-card\"\u0026gt;\n \u0026lt;div class=\"infinity-icon\"\u0026gt;\n \u0026lt;i class=\"fa-solid fa-infinity\"\u0026gt;\u0026lt;\/i\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"stat-label\"\u0026gt;\u958b\u555f\u60a8\u7684\u5546\u696d\u7248\u5716\u0026lt;\/div\u0026gt;\n \u0026lt;p class=\"stat-desc\"\u0026gt;\u5373\u523b\u9810\u7d04\uff0c\u91cf\u8eab\u6253\u9020\u5c08\u696d\u7a7a\u9593\u65b9\u6848\u0026lt;\/p\u0026gt;\n \u0026lt;a href=\"https:\/\/lin.ee\/Uu9rqUP\" target=\"_blank\" rel=\"noopener noreferrer\" class=\"cta-btn\"\u0026gt;\u5834\u5730\u8aee\u8a62 \u0026lt;i class=\"fa-brands fa-line\" style=\"margin-left: 5px;\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;\/a\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/section\u0026gt;\n\n \u0026lt;!-- 3. \u5b89\u5168\u8173\u672c\u9694\u96e2 --\u0026gt;\n \u0026lt;script\u0026gt;\n (function() {\n function initCounters() {\n const wrapper = document.getElementById('dtspace-infinity-wrapper');\n if (!wrapper) return;\n\n const counters = wrapper.querySelectorAll('.count-up');\n const startCounter = (el) =\u0026gt; {\n const target = parseInt(el.getAttribute('data-value'));\n const duration = 2500;\n const stepTime = 20; \n const totalSteps = duration \/ stepTime;\n const increment = target \/ totalSteps;\n let current = 0;\n const timer = setInterval(() =\u0026gt; {\n current += increment;\n if (current \u0026gt;= target) {\n el.innerText = target;\n clearInterval(timer);\n } else {\n el.innerText = Math.floor(current);\n }\n }, stepTime);\n };\n\n \/\/ \u4f7f\u7528 IntersectionObserver \u78ba\u4fdd\u6efe\u52d5\u5230\u8996\u7a97\u5167\u624d\u958b\u59cb\u8a08\u7b97\n const observer = new IntersectionObserver((entries) =\u0026gt; {\n entries.forEach(entry =\u0026gt; {\n if (entry.isIntersecting) {\n startCounter(entry.target);\n observer.unobserve(entry.target);\n }\n });\n }, { threshold: 0.1 });\n\n counters.forEach(c =\u0026gt; observer.observe(c));\n }\n\n \/\/ \u78ba\u4fdd\u8173\u672c\u5728\u4e0d\u540c\u74b0\u5883\uff08\u5982 iframe \u6216\u7570\u6b65\u52a0\u8f09\uff09\u7686\u80fd\u9806\u5229\u89f8\u767c\n if (document.readyState === 'loading') {\n document.addEventListener('DOMContentLoaded', initCounters);\n } else {\n initCounters();\n }\n })();\n \u0026lt;\/script\u0026gt;\n\u0026lt;\/div\u0026gt;","render_as_iframe":true,"selected_app_name":"HtmlApp","app_list":"{\"HtmlApp\":9338612}"}]}}}],"inlineLayout":"12"}}},{"type":"BlockComponentItem","id":"732d421e-5133-4f7d-a2a1-54e2ed2a69a9","name":"rowBlock","components":{"block1":{"type":"BlockComponent","id":"631e985d-26e6-42ef-a74f-1f2214edbfac","items":[{"type":"BlockComponentItem","id":"407e6c00-84eb-4c84-b3cd-751e6023de08","name":"columnBlock","components":{"block1":{"type":"BlockComponent","id":"49675e51-99e4-430f-9508-13ea162caaba","items":[{"type":"HtmlComponent","id":27664685,"defaultValue":false,"value":"","render_as_iframe":null,"selected_app_name":null,"app_list":"{}"}]}}}],"inlineLayout":"12"}}}],"inlineLayout":"1"}}},{"type":"Slide","id":"f_b6768eb9-0ee4-4f45-a634-9995d347fca8","defaultValue":true,"template_name":"html","components":{"slideSettings":{"type":"SlideSettings","id":"f_9496badf-d14c-4b48-b103-d5febc037a67","defaultValue":true,"show_nav":true,"nameChanged":true,"hidden_section":false,"name":"\u5e94\u7528\u5546\u5e97\u53caHTML\u4ee3\u7801","sync_key":null}}},{"type":"Slide","id":"f_6d570dec-5d25-44cf-b3db-8d17964b7013","defaultValue":null,"template_name":"s6_common_section","template_version":"s6","components":{"slideSettings":{"type":"SlideSettings","id":"f_5f5fd0c2-e3ab-4c52-9f75-b14ca8269edd","defaultValue":null,"show_nav":true,"show_nav_multi_mode":false,"nameChanged":true,"hidden_section":false,"name":"\u81ea\u5b9a\u4e49\u7248\u5757","sync_key":null,"layout_variation":null,"display_settings":{},"padding":{"top":"normal","bottom":"normal"},"layout_config":{"width":"auto","height":"auto"}}}},{"type":"Slide","id":"f_d1903c3e-4e44-4591-8340-01e37ce87423","defaultValue":null,"template_name":"s6_common_section","template_version":"s6","components":{"slideSettings":{"type":"SlideSettings","id":"f_eaf18027-71a5-4b89-9b17-d684ca28cf41","defaultValue":null,"show_nav":true,"show_nav_multi_mode":false,"nameChanged":true,"hidden_section":false,"name":"\u81ea\u5b9a\u4e49\u7248\u5757","sync_key":null,"layout_variation":null,"display_settings":{},"padding":{"top":"normal","bottom":"normal"},"layout_config":{"width":"auto","height":"auto"}}}},{"type":"Slide","id":"f_ba6707ce-f053-4685-8e87-7369f2c23b2c","defaultValue":true,"template_name":"html","components":{"slideSettings":{"type":"SlideSettings","id":"f_a11c095f-e162-4171-a712-813ccef3b527","defaultValue":true,"show_nav":true,"nameChanged":true,"hidden_section":false,"name":"\u5e94\u7528\u5546\u5e97\u53caHTML\u4ee3\u7801","sync_key":null}}},{"type":"Slide","id":"f_aa0a8e5d-c03a-4f1c-a721-975cee4e6315","defaultValue":true,"template_name":"html","components":{"slideSettings":{"type":"SlideSettings","id":"f_6a4957d4-89e4-4c72-94d2-540a243582b0","defaultValue":true,"show_nav":true,"nameChanged":true,"hidden_section":false,"name":"\u5e94\u7528\u5546\u5e97\u53caHTML\u4ee3\u7801","sync_key":null}}},{"type":"Slide","id":"f_232249f3-3ec7-4a72-8ed1-6a909064f03b","defaultValue":null,"template_name":"s6_common_section","template_version":"s6","components":{"slideSettings":{"type":"SlideSettings","id":"f_74ea62a6-7a25-416f-b4fb-120c2ddbcc85","defaultValue":null,"show_nav":true,"show_nav_multi_mode":false,"nameChanged":true,"hidden_section":false,"name":"\u81ea\u5b9a\u4e49\u7248\u5757","sync_key":null,"layout_variation":null,"display_settings":{},"padding":{"top":"normal","bottom":"normal"},"layout_config":{"width":"auto","height":"auto"}}}}],"title":"New Page 6","uid":"e9810d4c-834a-4b21-8899-86eff6a42170","path":"\/new-page-6","autoPath":true,"authorized":true}],"menu":{"type":"Menu","id":"f_a2a8e5fc-1aa2-430f-80b1-775f972d618f","defaultValue":null,"template_name":"navbar","logo":null,"components":{"image1":{"type":"Image","id":"f_b52c6fb8-bb7b-4e8a-b3c0-e385b1cb64de","defaultValue":true,"link_url":"","thumb_url":"\/images\/icons\/transparent.png","url":"\/images\/icons\/transparent.png","caption":"","description":"","storageKey":null,"storage":null,"storagePrefix":null,"format":null,"border_radius":null,"aspect_ratio":null,"h":null,"w":null,"s":null,"new_target":true,"noCompression":true,"cropMode":null,"focus":null},"image2":{"type":"Image","id":"f_04c902e2-9e5c-4037-b715-1eed89c3b78f","defaultValue":true,"link_url":"","thumb_url":"\/images\/icons\/transparent.png","url":"","caption":"","description":"","storageKey":null,"storage":null,"storagePrefix":null,"format":null,"h":null,"w":null,"s":null,"new_target":true,"noCompression":null,"cropMode":null,"focus":{}},"text1":{"type":"RichText","id":"f_654173b3-cd1e-4cf9-82bf-b6794301e142","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003cp\u003eeveee\u003c\/p\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"background1":{"type":"Background","id":"f_8ae7161d-ac4d-439d-b7f5-6aab8f91003a","defaultValue":true,"url":"\/assets\/themes\/profile\/bg.jpg","textColor":"light","backgroundVariation":"","sizing":"cover","userClassName":null,"linkUrl":null,"linkTarget":null,"videoUrl":null,"videoHtml":null,"storageKey":null,"storage":null,"format":null,"h":null,"w":null,"s":null,"useImage":null,"noCompression":null,"focus":{}},"text2":{"type":"RichText","id":"f_7dc59986-9eed-4932-85d3-183a2aba463e","defaultValue":true,"value":"\u5b57\u5e55\u6587\u5b57","backupValue":null,"version":null},"button1":{"type":"Button","id":"f_809c18ad-fe1d-405f-9738-4217e4a4cd17","defaultValue":false,"alignment":"","text":"Login\/Register","page_id":null,"section_id":null,"size":"small","mobile_size":"automatic","style":"","color":"","font":"Montserrat","url":"http:\/\/bilibili.com","new_target":false,"version":"2"},"image3":{"type":"Image","id":"c95ff3b7-4e44-438f-b9e7-e372add54173","defaultValue":true,"link_url":"https:\/\/www.qualityleads.com","thumb_url":"!","url":"!","caption":"Quality Leads: 100% Exclusive. On the lookout for JV Partnerships","description":"","storageKey":"11031790\/448586_391880","storage":"s","storagePrefix":null,"format":"jpg","h":600,"w":600,"s":114529,"new_target":true,"noCompression":true,"focus":null}}},"footer":{"type":"Footer","id":"f_027e0664-4457-4c60-85c1-3ce4d408a11c","defaultValue":false,"socialMedia":null,"copyright":null,"components":{"socialMedia":{"type":"SocialMediaList","id":"f_64dff20e-ab66-4242-aa84-7b8367b47566","defaultValue":false,"link_list":[{"type":"SocialMediaItem","id":"f7cde280-c073-11ec-99db-092bc28540ba","url":"instagram.com\/strikingly","className":"fab fa-instagram","show_button":true},{"type":"SocialMediaItem","id":"fa5e2a50-c073-11ec-99db-092bc28540ba","url":"facebook.com\/strikingly","className":"fab fa-facebook-f","show_button":true},{"type":"SocialMediaItem","id":"c0e107e0-507a-11ef-82e8-2be2952114c6","url":"https:\/\/x.com","className":"fas fa-link","show_button":true}],"button_list":[{"type":"Facebook","id":"f_27d2f361-29c9-4565-aa1b-035d3c044712","defaultValue":false,"url":"https:\/\/www.facebook.com\/strikingly","link_url":"","share_text":"","show_button":true,"app_id":543870062356274},{"type":"Twitter","id":"f_bd6c5b6f-7f93-41eb-abf1-bb1051de4773","defaultValue":false,"url":"","link_url":"","share_text":"","show_button":true},{"type":"LinkedIn","id":"f_dc1dea16-ee5b-4a54-b96a-d0ecb6af7edf","defaultValue":false,"url":"","link_url":"","share_text":"","show_button":true},{"type":"Pinterest","id":"f_94ed8e4c-62c3-4f55-bcae-d07c781ca7a4","defaultValue":false,"url":"","link_url":null,"share_text":null,"show_button":true}],"contact_list":[{"type":"SocialMediaPhone","id":"28bb251e-8779-11ee-b687-772f8745a9fe","defaultValue":"","className":"fas fa-phone-alt"},{"type":"SocialMediaEmail","id":"28bb251f-8779-11ee-b687-772f8745a9fe","defaultValue":"","className":"fas fa-envelope"}],"list_type":"link"},"copyright":{"type":"RichText","id":"f_669e8eaf-7e73-44dd-93a4-c50ddb9b215e","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block;\"\u003e\u003cp class=\"s-rich-text-wrapper\"\u003e\u003cstrong\u003eStrikingly\u63d0\u4f9b\u6280\u672f\u652f\u6301\u003c\/strong\u003e\u003c\/p\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"background1":{"type":"Background","id":"f_0defc920-8588-40c0-9d90-3d6b2cb1e671","defaultValue":false,"url":"","textColor":"light","backgroundVariation":"","sizing":"cover","userClassName":"s-bg-dark","linkUrl":null,"linkTarget":null,"videoUrl":"","videoHtml":"","storageKey":null,"storage":null,"format":null,"h":null,"w":null,"s":null,"useImage":null,"noCompression":null,"focus":{},"useSameBg":true,"backgroundApplySettings":{}},"text1":{"type":"RichText","id":"f_3cc97805-c3e8-4f0f-af5e-146a4a0746c1","defaultValue":null,"value":"\u003cp\u003e\u003cstrong\u003e\u5173\u4e8e\u6211\u4eec\u003c\/strong\u003e\u003c\/p\u003e\u003cp\u003e\u6211\u4eec\u7684\u4efb\u52a1\u003c\/p\u003e\u003cp\u003e\u6211\u4eec\u6b63\u5728\u62db\u8058\uff01\u003c\/p\u003e","backupValue":null,"version":null},"text2":{"type":"RichText","id":"f_0316ed58-c88f-4410-95a3-69dc2c92e8f3","defaultValue":null,"value":"\u003cp\u003e\u003cstrong\u003e\u8d44\u6e90\u003c\/strong\u003e\u003c\/p\u003e\u003cp\u003e\u6559\u7a0b\u003c\/p\u003e\u003cp\u003e\u54c1\u724c\u8d44\u4ea7\u003c\/p\u003e","backupValue":null,"version":null},"text3":{"type":"RichText","id":"f_8f372bd1-beb8-4d6c-9395-ddc137f955aa","defaultValue":false,"value":"\u003cp\u003e\u003cstrong\u003e\u8054\u7cfb\u6211\u4eec\u003c\/strong\u003e\u003c\/p\u003e\u003cp\u003e321-555-5555\u003c\/p\u003e\u003cp\u003e info@company.com\u003c\/p\u003e","backupValue":null,"version":1},"image1":{"type":"Image","id":"f_e7142fbe-2ac0-4dbf-b9f6-04668b1e4a9b","defaultValue":true,"link_url":"","thumb_url":"\/images\/icons\/transparent.png","url":"\/images\/icons\/transparent.png","caption":"","description":"","storageKey":null,"storage":null,"storagePrefix":null,"format":null,"h":null,"w":null,"s":null,"new_target":true,"noCompression":null,"cropMode":null,"focus":{}}},"layout_variation":"vertical","padding":{}},"submenu":{"type":"SubMenu","id":"f_37ccca79-01d4-4974-a695-7f7b82a1eaf7","defaultValue":null,"list":[{"type":"RepeatableItem","id":"f_30fbce77-4f3d-411d-80d8-a6b48daf5238","components":{"link":{"type":"Button","id":"f_3be8020f-3bf5-43c4-8338-6bce827a21e4","text":"Facebook","url":"http:\/\/www.facebook.com","new_target":true}}},{"type":"RepeatableItem","id":"f_0ef0f79a-4841-49bd-a34c-31feccba5842","components":{"link":{"type":"Button","id":"f_b23a13a1-f57f-4c9c-b677-337cf87fc015","text":"Facebook","url":"http:\/\/www.facebook.com","new_target":true}}}],"components":{"link":{"type":"Button","id":"f_000de008-d04d-40c5-ace8-332c32feb7d4","defaultValue":null,"text":"Facebook","link_type":null,"page_id":null,"section_id":null,"url":"http:\/\/www.facebook.com","new_target":true}}},"customColors":{"type":"CustomColors","id":"f_d35970ff-fab0-4cef-a27f-e8b4bf8cae86","defaultValue":null,"active":true,"highlight1":"#5c1f8e","highlight2":"#1c1c1c"},"animations":{"type":"Animations","id":"f_1e864d09-1899-4c92-98b3-d7c80ca2377e","defaultValue":null,"page_scroll":"slide_in","background":"none","image_link_hover":"zoom_in"},"s5Theme":{"type":"Theme","id":"f_247e5d2c-d437-4993-a487-1c633cb2e339","defaultValue":null,"version":"11","nav":{"type":"NavTheme","id":"f_a7eefaef-c78a-4fe1-925d-f515062961c4","defaultValue":null,"name":"topBar","layout":"a","padding":"medium","sidebarWidth":"medium","topContentWidth":"full","horizontalContentAlignment":"center","verticalContentAlignment":"middle","fontSize":"medium","backgroundColor1":"#1c1c1c","highlightColor":null,"presetColorName":"lightMinimal","itemColor":"#ffffff","itemSpacing":"compact","dropShadow":"no","socialMediaListType":"link","isTransparent":false,"isSticky":true,"keptOldLayout":false,"showSocialMedia":false,"highlight":{"blockBackgroundColor":null,"blockTextColor":null,"blockBackgroundColorSettings":{"id":"5ed9de25-55d9-4b37-ad28-ad2dff9a0901","default":"#b5b5b5","preIndex":null,"type":"custom"},"blockTextColorSettings":{"id":"3ad74662-90ef-4286-a551-46dd899e807e","default":"#000000","preIndex":null,"type":"custom"},"blockShape":"pill","textColor":null,"textColorSettings":{"id":"4bef658b-572d-4a7c-a99e-ac69cf273531","default":"#b5b5b5","preIndex":null,"type":"custom"},"type":"underline","id":"f_4c3ccd23-d02c-4939-b335-f6daf188f962"},"border":{"enable":false,"borderColor":"#000","position":"bottom","thickness":"small","borderColorSettings":{"preIndex":null,"type":"custom","default":"#ffffff","id":"f_9588ea71-d5e2-4eda-b88f-685e501d827b"}},"layoutsVersionStatus":{"a":{"status":"done","from":"v1","to":"v2","currentVersion":"v2"},"b":{"status":"done","from":"v1","to":"v2","currentVersion":"v2"},"g":{"status":"done","from":"v1","to":"v2","currentVersion":"v2"}},"socialMedia":[],"socialMediaButtonList":[{"type":"Facebook","id":"68f8ba38-46a3-11f0-be82-2bfee6fdd598","url":"","link_url":"","share_text":"","show_button":false},{"type":"Twitter","id":"68f8ba39-46a3-11f0-be82-2bfee6fdd598","url":"","link_url":"","share_text":"","show_button":false},{"type":"LinkedIn","id":"68f8ba3a-46a3-11f0-be82-2bfee6fdd598","url":"","link_url":"","share_text":"","show_button":false},{"type":"Pinterest","id":"68f8ba3b-46a3-11f0-be82-2bfee6fdd598","url":"","link_url":"","share_text":"","show_button":false}],"socialMediaContactList":[{"type":"SocialMediaPhone","id":"68f8ba3e-46a3-11f0-be82-2bfee6fdd598","defaultValue":"","className":"fas fa-phone-alt"},{"type":"SocialMediaEmail","id":"68f8ba3f-46a3-11f0-be82-2bfee6fdd598","defaultValue":"","className":"fas fa-envelope"}],"backgroundColorSettings":{"id":"a3bbf1f0-8553-4b76-a611-d79a816899aa","default":"#1c1c1c","preIndex":null,"type":"default"},"highlightColorSettings":{"id":"db5feadc-f815-4a49-8170-87970c9b2f6e","default":"#b5b5b5","preIndex":null,"type":"custom"},"itemColorSettings":{"id":"2c76e0eb-528d-41d3-bf3a-5c490174c1d3","default":"#ffffff","preIndex":null,"type":"default"}},"section":{"type":"SectionTheme","id":"f_4fc6197e-5182-4a82-a157-ca9ae223252b","defaultValue":null,"padding":"large","contentWidth":"full","contentAlignment":"left","baseFontSize":null,"titleFontSize":null,"subtitleFontSize":null,"itemTitleFontSize":null,"itemSubtitleFontSize":null,"textHighlightColor":null,"baseColor":"","titleColor":"","subtitleColor":"#5c1f8e","itemTitleColor":"","itemSubtitleColor":"#5c1f8e","textHighlightSelection":{"type":"TextHighlightSelection","id":"f_5f98e979-65ce-45f0-bb6f-391065eab152","defaultValue":null,"title":false,"subtitle":true,"itemTitle":false,"itemSubtitle":true},"base":{"preIndex":null,"type":"default","default":"#50555c","id":"f_9f7f2daf-3344-43d4-aca5-b4a2cbffd489"},"title":{"preIndex":null,"type":"default","default":"#1D2023","id":"f_7918235b-6522-4618-862f-78128d846b23"},"subtitle":{"preIndex":null,"type":"default","default":"#5c1f8e","id":"f_fbddcf87-96b0-4281-af18-87c2218fcd28"},"itemTitle":{"preIndex":null,"type":"default","default":"#1D2023","id":"f_7fc2293c-a95c-4768-874f-05e7d311fc82"},"itemSubtitle":{"preIndex":null,"type":"default","default":"#5c1f8e","id":"f_15cc5af2-0176-4bac-a89f-47f35827609f"}},"firstSection":{"type":"FirstSectionTheme","id":"f_db90f220-e55e-4a61-8251-f8e855dc7278","defaultValue":null,"height":"full","shape":"none"},"button":{"type":"ButtonTheme","id":"f_78383a89-ed4d-4cda-9d68-f5c72825706d","defaultValue":null,"backgroundColor":"#c192e7","shape":"rounded","fill":"solid","backgroundSettings":{"preIndex":3,"type":"pre-color","default":"#5c1f8e","id":"f_7edeac60-9bc1-4d79-898f-98a78ba32750"}}},"navigation":{"items":[{"id":"2e74e4ab-fbbb-4103-b5e5-07cab5f9227f","type":"page","visibility":true},{"id":"b36da4fd-91a2-40b0-be94-7f70cb20877c","type":"page","visibility":true},{"type":"link","id":"f_3be8020f-3bf5-43c4-8338-6bce827a21e4","visibility":true},{"type":"dropdown","title":"\u65b0\u4e0b\u62c9\u83dc\u5355","id":"da632779-27fb-4bac-8bac-24c40f924ece","items":[{"type":"link","id":"f_b23a13a1-f57f-4c9c-b677-337cf87fc015","visibility":true},{"id":"a57857db-40c7-4f88-8b0a-1a6caff4a66e","type":"page","visibility":true},{"id":"dce06b27-8172-44e7-8096-d75362429cb0","type":"page","visibility":true}]},{"id":"1779d199-7fc6-4d3c-b417-9f4fbfa722e7","type":"page","visibility":true},{"id":"e9810d4c-834a-4b21-8899-86eff6a42170","type":"page","visibility":true}],"links":[]},"categorySettings":{"ecommerce":{"categoryMenu":{"name":"Products","index":3,"categoryType":"ecommerce"},"categoryMenuEnabled":true},"portfolio":{"categoryMenu":{"name":"Portfolio","index":2,"categoryType":"portfolio"},"categoryMenuEnabled":true},"blog":{"categoryMenu":{"name":"Blog","index":1,"categoryType":"blog"},"categoryMenuEnabled":true}},"migrateFeatures":{"migratedRtlFeatureListE":true,"migratedRtlBlogImageAlignment":true,"migratedRtlSlider":true,"migratedS6SectionPadding":false,"migrateS6SectionContentPosition":false}},"pageMeta":{"user":{"membership":"vip","subscription_plan":"free","subscription_period":null,"is_on_trial":false,"id":11031790,"enable_desktop_notifications":true,"canUseLiveChat":true,"hideNavTextColor":true,"hideNewDashboardTour":true,"hideMobileEditorTour":true,"hideMobileActionsTour":true,"hideNewEditorTour":true,"hideChangeStyleTooltip":false},"guides":{"display_site_new_editor_modal":false},"ecommerceSettings":{"currencyCode":"USD","currencyData":{"code":"USD","symbol":"$","decimal":".","thousand":",","precision":2,"name":"\u7f8e\u5143"},"displayTax":true,"registration":"no_registration","postOrderRedirection":{},"enableProductReview":true,"paymentGateways":{"stripe":false,"square":false,"offline":true,"paypal":false,"midtrans":false,"alipay":false,"pingpp_wx_pub":false,"pingpp_wx_pub_qr":false,"pingpp_alipay_qr":false,"pingpp_alipay_wap":false,"wechatpay":false}},"bookingSetting":true,"booking":{"has_events":true,"orderList":{},"categoryOrder":{},"eventTypes":[{"id":5415525,"name":"concert 1","description":"","picture":[],"capacity":2,"location":"la","availableSchedules":{"disabledDates":[],"enabledWeekDays":[1,2,3,4,5],"enabledWeekdaySchedules":{"1":[{"endTime":"5:00 PM","startTime":"9:00 AM"}],"2":[{"endTime":"5:00 PM","startTime":"9:00 AM"}],"3":[{"endTime":"5:00 PM","startTime":"9:00 AM"}],"4":[{"endTime":"5:00 PM","startTime":"9:00 AM"}],"5":[{"endTime":"5:00 PM","startTime":"9:00 AM"}]},"enabledOverrideSchedules":{}},"publicUrl":"https:\/\/testeve.us.weitie.me\/booking\/events\/concert-1","slugPath":"\/booking\/events\/concert-1","translatedAvailableTimezone":"\u4e9a\u6d32\/\u4e0a\u6d77 GMT+08:00"},{"id":19445,"name":"concert","description":"","picture":[],"capacity":2,"location":"la","availableSchedules":{"disabledDates":[],"enabledWeekDays":[1,2,3,4,5],"enabledWeekdaySchedules":{"1":[{"endTime":"5:00 PM","startTime":"9:00 AM"}],"2":[{"endTime":"5:00 PM","startTime":"9:00 AM"}],"3":[{"endTime":"5:00 PM","startTime":"9:00 AM"}],"4":[{"endTime":"5:00 PM","startTime":"9:00 AM"}],"5":[{"endTime":"5:00 PM","startTime":"9:00 AM"}]},"enabledOverrideSchedules":{}},"publicUrl":"https:\/\/testeve.us.weitie.me\/booking\/events\/concert","slugPath":"\/booking\/events\/concert","translatedAvailableTimezone":"\u4e9a\u6d32\/\u4e0a\u6d77 GMT+08:00"}],"categories":[]},"portfolioSetting":true,"portfolioCurrencyCode":"JPY","portfolioContactRequired":true,"portfolioRestrictedDetails":"product_detail_page,price","portfolioRegionOptions":{"al":[{"product_id":1951308,"line_item_id":null,"price":"8900","currency_code":"NOK","type":"Ecommerce::Product"}],"af":[{"product_id":1951308,"line_item_id":null,"price":"11100","currency_code":"RUB","type":"Ecommerce::Product"}],"it":[{"product_id":1959924,"line_item_id":null,"price":"1231231200","currency_code":"EUR","type":"Ecommerce::Product"}]},"portfolioCustomButton":{"buttonType":"request_quote","urlType":null,"individualButtonMigrated":true,"buttonSetting":{"text":"Get a Quote"}},"blogSettings":true,"chatSettings":{"enable":false,"greetingMessage":null,"awayMessage":null,"agentName":"724148","agentTitle":"","agentProfilePictureUrl":"https:\/\/static-assets.strikinglycdn.com\/images\/fb_images\/default.png","enableDesktopNotifications":true,"colorTheme":"#fff76a","autoPopup":10,"hasUploadAvatar":false,"emailOption":2,"showStrikinglyLogo":true,"requiredFields":[],"enableGoogleAdsConversionTracking":null,"googleAdsConversionName":"submit_lead_form","enableRecaptcha":true,"blockDisposableEmails":false},"membershipSettings":{"unread":false,"isMembershipUsed":true,"isLoginShownInNavBar":true,"canRegister":true,"hasPaidMembershipTier":false,"requiredFields":["first_name"],"enableRecaptcha":false,"memberLimitReached":false},"connectedSites":[{"label":"\u7b80\u4f53\u4e2d\u6587","siteId":23484433,"countryCode":"zh-CN","publicUrl":"https:\/\/testeve.us.weitie.me\/"},{"label":"\u0639\u0631\u0628\u064a","siteId":26763473,"countryCode":"ar","publicUrl":"https:\/\/ocher-daffodil-dxhgv1.mystrikingly.com\/"}],"s4_migration":{"is_migrated":false,"is_retired_theme":false,"has_custom_code":true},"page_groups":[],"slide_names":["\u56fe\u518c","Custom Form","Simple Store","Contact Us","\u5934\u6761","store","Banner Slider","Text + Button Slider","\u5934\u6761","Contact Us","\u6807\u9898","A Heroic Section","Simple Store","Blog","\u062c\u062f\u0648\u0644 \u0627\u0644\u062a\u0633\u0639\u064a\u0631","\u4fe1\u606f\u6846","\u6309\u94ae","\u5217\u8868\u5e03\u5c40","Text + Button Slider","\u670d\u52a1\u9884\u7ea6","Simple Blog","Sign Up","Contact Us","Team","Feature List","Feature Listing","About","Download Now","Gallery","\u4ea7\u54c1\u5c55\u793a","\u793e\u4ea4\u5185\u5bb9","\u5b9a\u4ef7\u8868","Big Media","\u6309\u94ae","\u5e94\u7528\u5546\u5e97\u53caHTML\u4ee3\u7801","\u5e94\u7528\u5546\u5e97\u53caHTML\u4ee3\u7801","About","Custom Form 5 \u6ca1\u6709\u4e0a\u4f20\u7a97\u53e3","Blog","\u81ea\u5b9a\u4e49\u7248\u5757","Headline","\u5934\u6761","A Heroic Section","\u5934\u6761","Blog","Text + Button Slider","Side by Side","A Heroic Section","About","Download Now","Feature List","Grid","Team","Banner Slider","Simple Store","Grid","Plain Text","Grid","Info","Info","FAQs","Pricing Table","Newsletter","Plain Text","\u7eaf\u6587\u672c","Digital Download","Testimonials","Testimonials","Gallery","Contact Us","About","Digital Download","Hero","Newsletter","Newsletter","A Heroic Section","A Heroic Section","Text + Button Slider","Side by Side","Side by Side","Side by Side","About","Grid","Grid","Headline","Plain Text","Plain Text","Team","Info","Pricing Table","Testimonials","Team","Digital Download","Contact Us","Make Your Own","Feature Listing","Make Your Own","Feature List","A Heroic Section","\u5e94\u7528\u5546\u5e97\u53caHTML\u4ee3\u7801","\u81ea\u5b9a\u4e49\u7248\u5757","\u81ea\u5b9a\u4e49\u7248\u5757","\u5e94\u7528\u5546\u5e97\u53caHTML\u4ee3\u7801","\u5e94\u7528\u5546\u5e97\u53caHTML\u4ee3\u7801","\u81ea\u5b9a\u4e49\u7248\u5757"],"theme":{"name":"s5-theme"},"theme_selection":{"id":1010,"theme_id":59,"display_name":"Musio","description":"","is_new":null,"priority":null,"thumb_image":"https://static-assets.strikinglycdn.com/templates/1667875249688.jpg","demo_page_permalink":"musio-fr","data_page_permalink":"musio-fr","created_at":"2022-11-07T11:27:38.181-08:00","updated_at":"2026-09-03T02:04:41.723-07:00","name":"Musio_fr","is_control":false,"control_name":"Musio","locale":"fr","version":"v4","tags":[],"mobile_thumb_image":"","platforms":[""],"required_membership":[""],"priority_automated":null,"priority_b":0,"one_page_only":false,"rank_automated":140,"rank_score":1.66,"only_asb":false,"theme_name":"s5-theme"},"description":"","connected_sites":[],"linkedin_app":false,"is_weitie_page":false,"canonical_locale_supported":true,"forced_locale":"zh-CN","china_optimization":false,"mobile_actions":{"phone":null,"sms":null,"location":null,"email":null,"version":"v2","actions":[{"type":"home","icon":"entypo-home","name":"Home"},{"type":"ecommerce","icon":"entypo-bag","name":"Store"},{"type":"blog","icon":"fa fa-list-ul","name":"Posts"}]},"domain_connection":{"domain_id":null,"idn":"testeve.us.weitie.me","fqdn":"testeve.us.weitie.me","https_status":"ssl_active","ssl_cert_status":"activated","dns_status":null,"connect_status":"disconnected"},"public_url":"https:\/\/testeve.us.weitie.me\/","current_path":"\/3","rollouts":{"custom_code":true,"pro_sections":true,"pro_apps":true,"custom_form":true,"new_settings_dialog_feature":true,"google_analytics":true,"strikingly_analytics":true,"popup":true,"sections_name_sync":true,"membership_feature":true,"disable_google_invisible_recaptcha":false,"popup_trial":false,"multiple_languages":true},"membership_feature_active":true,"site_mode":"show","password_protected":false,"is_section_template":false,"google":{"enable_ga_universal":true,"analytics_tracker":null,"analytics_type":"universal","site_checker":null},"facebook_pixel_id":null,"enable_site_search":true,"enable_card_preset_color":true,"enable_fixed_button_color":true,"enable_fixed_text_color":true,"enable_fixed_text_color_remaining":true,"enable_fixed_text_color_has_bg_color":true,"enable_fixed_gallery_section_rtl_style":true,"enable_fixed_nav_horizontal_align":true,"enable_used_mobile_new_breakpoint":true,"enable_section_smart_binding":true,"enable_fixed_section_content_style_20251020":true,"enable_fixed_s6_transfer_2025112":true,"enable_fixed_section_height_20251209":true,"enable_fixed_mobile_section_style_20251103":true,"enable_fixed_mobile_section_style_20251117":true,"enable_section_padding_adjust":true,"enable_faq_text_color_adjust":true,"enable_new_luma_version":true,"enable_fixed_nav_special_logic_color":true,"enable_match_height_for_feature_list":true,"enable_tweaked_text_alignment":true,"enable_layout_setting_text_alignment":true,"enable_grid_slider_first_section_full_height":true,"enable_tweak_footer_hyperlink_color":true,"enable_slider_layout_c_content_align":true,"enable_form_alignment_fix":true,"enable_fixed_section_fix_20260113":true,"optimizely":{"project_id":null,"experiment_id":null},"splash_screen_color":"#ffffff","id":23484433,"permalink":"cooperative-camel-dxhgvm","created_at":"2023-05-30T21:08:13.694-07:00","logo_url":"https:\/\/static-assets.strikinglycdn.com\/images\/fb_images\/default.png","icon_url":"https:\/\/static-assets.strikinglycdn.com\/images\/favicon.ico","name":"auto","url_type":"subdomain_link","icp_filing_number":"","psb_filing_number":"","social_media_config":{"url":"https:\/\/testeve.us.weitie.me\/","title":"auto","image":"https:\/\/static-assets.strikinglycdn.com\/images\/fb_images\/default.png","description":"","fb_app_id":"138736959550286"},"keenio_config":{"keenio_project_id":"5317e03605cd66236a000002","keenio_write_key":"efd460f8e282891930ff1957321c12b64a6db50694fd0b4a01d01f347920dfa3ce48e8ca249b5ea9917f98865696cfc39bc6814e4743c39af0a4720bb711627d9cf0fe63d5d52c3866c9c1c3178aaec6cbfc1a9ab62a3c9a827d2846a9be93ecf4ee3d61ebee8baaa6a1d735bff6e37b"},"show_strikingly_logo":false,"show_navigation_buttons":false,"social_media":null,"has_optimizely":false,"optimizely_experiment_id":null,"services":[],"strk_upvt":"dXd4V3YwR0Z4eG5nVnJscW5POWdoWVNNc2l0Q0NtaUs0ZFlHaWx4dXlyN3E4K3JwN3J2aVJjTTl0Y3dsRkVZTGJqVlFsdG95QXNHRDF3Nk5JbmxnbzhFcnI2M0plQmJKQXhKVjBOVEpoZG1OSXBvaE4yRWUrdFF0bEFmVjMvc09PMlgzeW9QMjZlSWlpYUswUU0zZSt3PT0tLTgwZjlzc0R3dnhJUnV6Vkg5WXVvMEE9PQ==--59805aec6ebf5ad1ca68333deb7534025e24130c","strk_ga_tracker":"UA-25124444-6","google_analytics_tracker":null,"google_analytics_type":"universal","exception_tracking":false,"ecommerce":{"seller_wechat_app_id":null,"has_set_payment_account":true},"customCodes":{"site_footer_code":{"value":"\u003c!-- Google tag (gtag.js) --\u003e\n\u003cscript async src=\"https:\/\/www.googletagmanager.com\/gtag\/js?id=G-QTPR4BYDD0\"\u003e\n\u003c\/script\u003e\n\n\u003cscript\u003e\n window.dataLayer = window.dataLayer || [];\n\n function gtag(){\n dataLayer.push(arguments);\n }\n\n gtag('js', new Date());\n gtag('config', 'G-QTPR4BYDD0');\n\u003c\/script\u003e\n\n\u003c!-- Fix generic \"Learn More\" cookie-policy link text for SEO --\u003e\n\u003cscript\u003e\nwindow.addEventListener(\"load\", function () {\n document.querySelectorAll('a[href*=\"\/pages\/cookie-policy\"]').forEach(function(link) {\n if (link.textContent.trim() === \"Learn More\") {\n link.textContent = \"Cookie Policy\";\n link.setAttribute(\"aria-label\", \"Cookie Policy\");\n }\n });\n});\n\u003c\/script\u003e","status":"passed","reviewer":"auto"},"site_header_code":{"value":"\u003c!-- CUSTOM_CODE_START --\u003e\n\n\u003cscript type=\"application\/ld+json\"\u003e\n{\"@context\":\"https:\/\/schema.org\",\"@type\":\"WebSite\",\"url\":\"https:\/\/www.ballstonchildrenscenter.com\/\",\"name\":\"Ballston Children\u2019s Center\",\"alternateName\":\"Ballston Children's Center | Premier Daycare in Arlington, VA\",\"description\":\"Warm, stable daycare and preschool in Arlington, VA, with long-tenured teachers supporting early learning and development for children ages 2.5 to 5.\"}\n\u003c\/script\u003e\n\n\u003cscript type=\"application\/ld+json\"\u003e\n{\"@context\":\"https:\/\/schema.org\",\"@type\":\"ChildCare\",\"@id\":\"https:\/\/www.ballstonchildrenscenter.com\/#childcare\",\"name\":\"Ballston Children's Center\",\"url\":\"https:\/\/www.ballstonchildrenscenter.com\/\",\"telephone\":\"+17035277200\",\"description\":\"Award-winning daycare and preschool in Arlington, VA for children ages 2.5 to 5. Voted #1 Preschool in Arlington by ARLnow Readers' Choice Awards and named Best Day Care \u0026 Preschool by Northern Virginia Magazine.\",\"address\":{\"@type\":\"PostalAddress\",\"streetAddress\":\"3850 Wilson Blvd\",\"addressLocality\":\"Arlington\",\"addressRegion\":\"VA\",\"postalCode\":\"22203\",\"addressCountry\":\"US\"},\"geo\":{\"@type\":\"GeoCoordinates\",\"latitude\":38.8799,\"longitude\":-77.1087},\"image\":\"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/f_auto,q_auto\/1217565\/IMG_6044_gyblb9.jpg\",\"openingHoursSpecification\":[{\"@type\":\"OpeningHoursSpecification\",\"dayOfWeek\":[\"Monday\",\"Tuesday\",\"Wednesday\",\"Thursday\",\"Friday\"],\"opens\":\"07:00\",\"closes\":\"18:00\"}],\"sameAs\":[\"https:\/\/www.facebook.com\/daycareinarlingtonva\",\"https:\/\/www.youtube.com\/@ballstonchildrenscenter2682\/videos\"],\"priceRange\":\"$300\u2013$560\/week\",\"aggregateRating\":{\"@type\":\"AggregateRating\",\"ratingValue\":\"4.7\",\"reviewCount\":\"36\",\"bestRating\":\"5\",\"worstRating\":\"1\"},\"areaServed\":[\"Arlington, VA\",\"Ballston, Arlington, VA\",\"Virginia Square, Arlington, VA\",\"Clarendon, Arlington, VA\"],\"makesOffer\":[{\"@type\":\"Offer\",\"name\":\"5-Day Daycare and Preschool Program\",\"price\":\"560\",\"priceCurrency\":\"USD\"},{\"@type\":\"Offer\",\"name\":\"3-Day Daycare and Preschool Program\",\"price\":\"420\",\"priceCurrency\":\"USD\"},{\"@type\":\"Offer\",\"name\":\"2-Day Daycare and Preschool Program\",\"price\":\"300\",\"priceCurrency\":\"USD\"}]}\n\u003c\/script\u003e\n\n\u003cstyle\u003e\n.slide .s-bg-image._animate-background{transform:translate3d(0,0,0)}\n\n.s-section{\n border-bottom:1px solid rgba(185,185,190,.82)\n}\n\n.s-section:nth-child(even){\n background:#fafaf8!important\n}\n\n\/* Stronger compact rhythm *\/\n.s-section:not(.s-section-1){\n min-height:0!important\n}\n\n.s-section:not(.s-section-1) .container,\n.s-section:not(.s-section-1) .s-container{\n padding-top:18px!important;\n padding-bottom:22px!important\n}\n\n\/* Reduce extra Strikingly internal vertical space *\/\n.s-section:not(.s-section-1) .s-block,\n.s-section:not(.s-section-1) .s-component,\n.s-section:not(.s-section-1) .s-repeatable,\n.s-section:not(.s-section-1) .s-mh{\n margin-top:0!important;\n margin-bottom:0!important\n}\n\n\/* Headings *\/\n.s-section:not(.s-section-1) h1,\n.s-section:not(.s-section-1) h2,\n.s-section:not(.s-section-1) h3{\n color:#111114!important;\n font-weight:800!important;\n letter-spacing:-.032em!important;\n line-height:1.07!important;\n margin-top:0!important;\n margin-bottom:8px!important;\n text-rendering:optimizeLegibility\n}\n\n\/* Body text *\/\n.s-section:not(.s-section-1) p,\n.s-section:not(.s-section-1) li{\n color:#424245!important;\n letter-spacing:-.002em!important;\n line-height:1.44!important;\n margin-bottom:9px!important\n}\n\n\/* Apple-style images: no white frame, tiny radius, clean edge *\/\n.s-section:not(.s-section-1) img{\n margin-top:8px!important;\n padding:0!important;\n background:transparent!important;\n border-radius:3px!important;\n border:1px solid rgba(0,0,0,.055)!important;\n box-shadow:0 1px 2px rgba(0,0,0,.03),0 5px 12px rgba(0,0,0,.04)!important;\n overflow:hidden!important;\n box-sizing:border-box!important;\n transition:all .25s ease\n}\n\n\/* Tiny tracking images \/ icons *\/\n.s-section:not(.s-section-1) img[width=\"1\"],\n.s-section:not(.s-section-1) img[height=\"1\"]{\n box-shadow:none!important;\n border-radius:0!important;\n border:none!important;\n padding:0!important;\n background:transparent!important\n}\n\n\/* Buttons *\/\n.s-button-element{\n margin-top:10px!important\n}\n\n\/* Hero *\/\n.s-page-1 .s-section-1{\n border-bottom:1px solid rgba(210,210,215,.65)!important\n}\n\n.s-page-1 .s-section-1 h1,\n.s-page-1 .s-section-1 h1 span,\n.s-page-1 .s-section-1 h1 strong,\nh1.s-rich-text-wrapper.font-size-tag-header-one.s-text-font-size-over-40 span strong{\n font-weight:700!important;\n letter-spacing:-.025em!important;\n line-height:1.08!important;\n text-shadow:0 2px 6px rgba(0,0,0,.34)!important\n}\n\n.s-page-1 .s-section-1 h2,\n.s-page-1 .s-section-1 h3{\n font-weight:700!important;\n letter-spacing:-.018em!important;\n line-height:1.12!important;\n text-shadow:0 2px 5px rgba(0,0,0,.30)!important\n}\n\n.s-page-1 .s-section-1 h1,\n.s-page-1 .s-section-1 h2,\n.s-page-1 .s-section-1 h3,\n.s-page-1 .s-section-1 p,\n.s-page-1 .s-section-1 span{\n color:#fff!important;\n text-shadow:0 2px 5px rgba(0,0,0,.28)!important\n}\n\n.s-page-1 .s-section-1 .s-button-element{\n box-shadow:0 6px 16px rgba(0,0,0,.25)!important;\n transition:all .25s ease\n}\n\n.s-page-1 .s-section-1 .s-button-element:hover{\n transform:translateY(-2px);\n box-shadow:0 10px 22px rgba(0,0,0,.32)!important\n}\n\n.s-page-1 .s-section-1~* .nav-link,\n.s-page-1 .s-section-1~* a{\n letter-spacing:-.01em\n}\n\n\/* Awards \/ feature layout fix *\/\n.s-page-1 .s-section-11 .position-wrapper{\n position:static!important;\n display:inline-block;\n margin:5px\n}\n\n\/* Reviews section \u2014 tighter *\/\n.s-page-1 .s-section-6 .container,\n.s-page-1 .s-section-6 .s-container{\n padding-top:12px!important;\n padding-bottom:20px!important\n}\n\n.s-page-1 .s-section-6 h2+p,\n.s-page-1 .s-section-6 h3+p{\n font-size:18px!important;\n line-height:1.42!important;\n font-weight:560!important;\n color:#4A4A4F!important;\n letter-spacing:-.012em!important\n}\n\n\/* Review cards *\/\n.review-card,\n.testimonial-card,\n.s-gallery-card,\n[data-section-type=\"testimonials\"] .card{\n display:flex!important;\n flex-direction:column!important;\n justify-content:space-between!important;\n height:100%!important;\n min-height:270px!important;\n box-sizing:border-box!important\n}\n\n[data-section-type=\"testimonials\"] .container,\n.review-grid,\n.testimonial-grid{\n align-items:stretch!important\n}\n\n.review-card p,\n.testimonial-card p{\n flex-grow:1!important;\n line-height:1.46!important\n}\n\n.review-card strong,\n.testimonial-card strong{\n margin-top:auto!important;\n display:block!important\n}\n\n\/* Hide blog navigation \/ unnecessary post elements *\/\na[href*=\"\/blog\/\"],\na[href*=\"\/blog\"],\n.post-footer,\n.blog-footer,\n.s-blog-post-footer,\n.s-blog-post-nav,\n.s-blog-nav,\n.s-blog-post .s-prev-next,\n.s-prev-next,\n.prev-next,\n.previous-next,\n.blog-post-pagination,\n.next-prev-post,\n.post-pagination,\n.s-pagination,\n.s-blog-date,\n.s-blog-author,\n.s-blog-category,\n.s-blog-tags,\n.s-blog-comments{\n display:none!important\n}\n\n\/* Mobile *\/\n@media(max-width:727px){\n\n .s-section:not(.s-section-1) .container,\n .s-section:not(.s-section-1) .s-container{\n padding-top:16px!important;\n padding-bottom:18px!important\n }\n\n .s-section:not(.s-section-1) h1,\n .s-section:not(.s-section-1) h2,\n .s-section:not(.s-section-1) h3{\n letter-spacing:-.024em!important;\n line-height:1.09!important;\n margin-top:0!important;\n margin-bottom:8px!important\n }\n\n .s-section:not(.s-section-1) p,\n .s-section:not(.s-section-1) li{\n letter-spacing:-.001em!important;\n line-height:1.42!important;\n margin-bottom:8px!important\n }\n\n .s-section h2+p,\n .s-section h3+p{\n font-size:16px!important;\n line-height:1.42!important\n }\n\n .s-section:not(.s-section-1) img{\n margin-top:7px!important;\n border-radius:3px!important;\n border:1px solid rgba(0,0,0,.05)!important;\n box-shadow:0 1px 2px rgba(0,0,0,.025),0 4px 10px rgba(0,0,0,.035)!important\n }\n\n .s-page-1 .s-section-6 .container,\n .s-page-1 .s-section-6 .s-container{\n padding-top:10px!important;\n padding-bottom:18px!important\n }\n\n .review-card,\n .testimonial-card,\n .s-gallery-card,\n [data-section-type=\"testimonials\"] .card{\n min-height:auto!important\n }\n\n .s-page-1 .s-section-1 h1.h1Tag{\n font-size:48px!important;\n line-height:1.15!important;\n letter-spacing:-.025em!important\n }\n\n .s-page-1 .s-section-3 .s-repeatable.s-block.s-component.s-mh .s-block-item.s-repeatable-item.s-block-sortable-item.s-block-smallFeatureRight.block-component-item:nth-child(4) .s-block-feature.s-rva.right,\n .s-page-1 .s-section-3 .s-repeatable.s-block.s-component.s-mh .s-block-item.s-repeatable-item.s-block-sortable-item.s-block-smallFeatureRight.block-component-item:nth-child(5) .s-block-feature.s-rva.right{\n display:flex;\n flex-direction:column-reverse\n }\n}\n\u003c\/style\u003e\n\n\n\u003cstyle\u003e\n@import url('https:\/\/fonts.googleapis.com\/css2?family=Montserrat:wght@400;700;800;900\u0026display=swap');\n\n\/* Make all bold text heavier *\/\nb,\nstrong {\n font-family: 'Montserrat', sans-serif !important;\n font-weight: 900 !important;\n}\n\n\/* Make Strikingly button text heavier *\/\n.s-common-button,\n.s-common-button span,\n.s-font-button,\n.s-common-button * {\n font-family: 'Montserrat', sans-serif !important;\n font-weight: 900 !important;\n}\n\u003c\/style\u003e\n\n\u003c!-- CUSTOM_CODE_END --\u003e\n","status":"passed","reviewer":"auto"},"blog_footer_code":{"value":"","status":"passed","reviewer":"auto"},"blog_header_code":{"value":"","status":"passed","reviewer":"auto"}},"hideDummyData":{"hideEcommerceDummyData":true,"hidePortfolioDummyData":true,"hideBlogDummyData":true,"hideBookingDummyData":true},"redirectUrls":[],"isMainSitePage":false},"blogCollection":{"data":{"blog":{"id":23484433,"blogSettings":{"previewLayout":1,"mailchimpCode":"","hasSubscriptionCode":false,"hasSubscriptionCodeBefore":null,"showMorePostsWith":null,"usedDisqusCommentsBefore":null,"showRss":null,"showMip":null,"enableComments":true,"lastReadCommentsAt":null,"showAmp":null,"reviewNumber":null,"commentsRequireApproval":null,"showSubscriptionForm":true,"showSubscriptionsTab":null,"headerCustomCode":"","footerCustomCode":"","shortcuts":[],"shortcutsOrder":{},"banner":[],"previewNumber":null,"wechatMomentEnabled":null,"categoryOrder":{"23222":2,"44167":0,"385514":1},"showNav":true,"hideNewBlogTips":true,"positiveOrder":true},"blogPosts":[{"id":40877893,"state":"published","settings":{"hideBlogDate":null,"metaDescription":"Find the perfect food recipes for home cooking. Delicious, authentic, and easy to make!","customSlug":"authentic-easy-food-recipes-home-cooking","keyword":"food","extraKeywords":["delicious","china","yumyum"]},"title":"Authentic and Easy Food Recipes for Home Cooking","icon":{"type":"Image","id":"e456b5af-49d7-4d45-9253-c280f97af4d4","defaultValue":null,"linkUrl":"","thumbUrl":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/f_auto,q_auto,w_4096\/unsplashcom\/photo-1679965088380-9e9fb8059a4e","url":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/f_auto,q_auto,w_4096\/unsplashcom\/photo-1679965088380-9e9fb8059a4e","caption":null,"description":null,"storageKey":null,"storage":null,"storagePrefix":null,"format":null,"h":2733,"w":2048,"s":null,"newTarget":true,"focus":null},"headerImage":{"type":"Blog.BackgroundImage","id":"4ab14a7d-21db-40af-a9ad-f6c07963c12b","url":"\/\/assets.strikingly.com\/static\/backgrounds\/blur\/9.jpg","textColor":"overlay","sizing":"cover"},"firstContentImage":{"type":"Image","id":"e456b5af-49d7-4d45-9253-c280f97af4d4","defaultValue":null,"linkUrl":"","thumbUrl":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/f_auto,q_auto,w_4096\/unsplashcom\/photo-1679965088380-9e9fb8059a4e","url":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/f_auto,q_auto,w_4096\/unsplashcom\/photo-1679965088380-9e9fb8059a4e","caption":null,"description":null,"storageKey":null,"storage":null,"storagePrefix":null,"format":null,"h":2733,"w":2048,"s":null,"newTarget":true,"focus":null},"publishedAt":"2026-07-15T20:14:43.375-07:00","updatedAt":"2026-07-15T20:14:43.410-07:00","createdAt":"2024-11-11T00:59:34.254-08:00","publicUrl":"https:\/\/testeve.us.weitie.me\/blog\/authentic-easy-food-recipes-home-cooking","relativeUrl":"\/blog\/authentic-easy-food-recipes-home-cooking","pinned":false,"allTagsList":[],"postedToWechat":false,"longBlurb":"Introduction\\n \\nAre you ready to embark on a culinary journey to China from the comfort of your own kitchen? Get ready for an adventure in food with our collection of easy and tasty recipes for home cooking. From mouthwatering appetizers to delectable desserts, we've got all the delicious dishes you need to satisfy your cravings for authentic Chinese cuisine. Whether you're a seasoned chef or a novice cook, these recipes are sure to impress your taste buds and leave you craving more.\\n Easy and Tasty Recipes for Home Cooking\\n \\nIf you're tired of ordering takeout and want to try your hand at making your favorite Chinese dishes at home, look no further. Our easy and tasty recipes are perfect for anyone looking to whip up some delicious meals without spending hours in the kitchen. With simple ingredients and straightforward instructions, you'll be amazed at how quickly you can create restaurant-quality dishes right in your own kitchen.\\n Authentic Chinese Dishes to Try Today\\n...","blurb":"Introduction Are you ready to embark on a culinary journey to China from the comfort of your own kitchen? Get ready for an adventure in food with our collection of easy and tasty recipes for home cooking. From mouthwatering appetizers to delectable desserts, we've got all the delicious dishes you...","pendingCommentsCount":0,"approvedCommentsCount":0},{"id":39115081,"state":"published","settings":{"hideBlogDate":null,"components":{"20487894":null}},"title":"\u6dfb\u52a0\u535a\u5ba2\u6807\u9898","icon":{"type":"Image","id":"2b6b8f5f-04d3-482c-931d-ea40be442807","defaultValue":null,"linkUrl":"","thumbUrl":"https:\/\/uploads.strikinglycdn.com\/static\/backgrounds\/business-2\/t139.jpg","url":"https:\/\/uploads.strikinglycdn.com\/static\/backgrounds\/business-2\/139.jpg","caption":"","description":"","storageKey":null,"storage":null,"storagePrefix":null,"format":null,"h":900,"w":1600,"s":null,"newTarget":true,"focus":null},"headerImage":{"type":"Blog.BackgroundImage","id":"f_6300afc0-5316-4658-9b06-9548495f1d4c","url":"\/\/assets.strikingly.com\/static\/backgrounds\/blur\/2.jpg","textColor":"light","sizing":"cover"},"firstContentImage":{"type":"Image","id":"2b6b8f5f-04d3-482c-931d-ea40be442807","defaultValue":null,"linkUrl":"","thumbUrl":"https:\/\/uploads.strikinglycdn.com\/static\/backgrounds\/business-2\/t139.jpg","url":"https:\/\/uploads.strikinglycdn.com\/static\/backgrounds\/business-2\/139.jpg","caption":"","description":"","storageKey":null,"storage":null,"storagePrefix":null,"format":null,"h":900,"w":1600,"s":null,"newTarget":true,"focus":null},"publishedAt":"2024-08-08T02:55:40.130-07:00","updatedAt":"2024-08-08T02:55:40.144-07:00","createdAt":"2024-08-08T02:11:48.213-07:00","publicUrl":"https:\/\/testeve.us.weitie.me\/blog\/8726d06dfb0","relativeUrl":"\/blog\/8726d06dfb0","pinned":false,"allTagsList":["中文"],"postedToWechat":false,"longBlurb":"\\n\u7f51\u7ad9\u4e3b\u66f4\u65b0\uff0c\u672a\u53d1\u5e03\u3002\\n \\n\u534f\u4f5c\u8005\u8fdb\u6765\u4e86\uff0c17\uff1a21\u5de6\u53f3\u3002\\n \\n\u5047\u88c5\u5728\u7f16\u8f91\u4e2d\u3002\u505c\u7559\u5728\u7f16\u8f91\u5668\u4e2d\u3002\u7b49\u534a\u4e2a\u70b9\u3002\u73b0\u572817\uff1a55 hmm\uff0c\u6709\u4e9b\u626f\u62d0\uff0c\u4f46\u662f\u95ee\u9898\u4e0d\u5927\\n \\n\u4fdd\u5b58\u4e86\\n \\n\u00a0\\n \\n\u00a0\\n \\n11111111111111111111111\u8fd9\u4f1a\u513f17\uff1a50\\n \\n1111111111111111111111111111111\u8fd8\u5f97\u7b49\u7b49\uff0c\u56e0\u4e3a\u8fd8\u6ca1\u51fa\u5f39\u7a97 \uff1f\uff1f\\n \\n111111111111111111111111111111111111111\u5f00\u59cb\u5f55\u5c4f\u4e86\uff0c\u5e94\u8be5\u6709\u534a\u4e2a\u5c0f\u65f6\u4e86\u5427\uff0c\u518d\u7b49\u7b49\\n \\n\u7f16\u8f91\u7f16\u8f91\u7f16\u8f91\u518d\u7b49\u4e24\u5206\u949f\u5c31\u4fdd\u5b58\u7136\u540e\u53d1\u5e03\\n \\n\u7f16\u8f91\u7f16\u8f91\u7f16\u8f91\u53f3\u4fa7\u53c8\u51fa\u73b0\u62a5\u9519\u4e86\uff0c\u7528\u6237\u672a\u6709\u6743\u9650\\n \\n\u7f16\u8f91\u7f16\u8f91\u7f16\u8f91\\n \\n\u7f16\u8f91\u7f16\u8f91\u7f16\u8f91\\n \\n\u7f16\u8f91\u7f16\u8f91\u7f16\u8f91\\n \\n\u00a0","blurb":"\u7f51\u7ad9\u4e3b\u66f4\u65b0\uff0c\u672a\u53d1\u5e03\u3002 \u534f\u4f5c\u8005\u8fdb\u6765\u4e86\uff0c17\uff1a21\u5de6\u53f3\u3002 \u5047\u88c5\u5728\u7f16\u8f91\u4e2d\u3002\u505c\u7559\u5728\u7f16\u8f91\u5668\u4e2d\u3002\u7b49\u534a\u4e2a\u70b9\u3002\u73b0\u572817\uff1a55 hmm\uff0c\u6709\u4e9b\u626f\u62d0\uff0c\u4f46\u662f\u95ee\u9898\u4e0d\u5927 \u4fdd\u5b58\u4e86 \u00a0 \u00a0 11111111111111111111111\u8fd9\u4f1a\u513f17\uff1a50 1111111111111111111111111111111\u8fd8\u5f97\u7b49\u7b49\uff0c\u56e0\u4e3a\u8fd8\u6ca1\u51fa\u5f39\u7a97 \uff1f\uff1f 111111111111111111111111111111111111111\u5f00\u59cb\u5f55\u5c4f\u4e86\uff0c\u5e94\u8be5\u6709\u534a\u4e2a\u5c0f\u65f6\u4e86\u5427\uff0c\u518d\u7b49\u7b49 \u7f16\u8f91\u7f16\u8f91\u7f16\u8f91\u518d\u7b49\u4e24\u5206\u949f\u5c31\u4fdd\u5b58\u7136\u540e\u53d1\u5e03 \u7f16\u8f91\u7f16\u8f91\u7f16\u8f91\u53f3\u4fa7\u53c8\u51fa\u73b0\u62a5\u9519\u4e86\uff0c\u7528\u6237\u672a\u6709\u6743\u9650 \u7f16\u8f91\u7f16\u8f91\u7f16\u8f91 \u7f16\u8f91\u7f16\u8f91\u7f16\u8f91 \u7f16\u8f91\u7f16\u8f91\u7f16\u8f91 \u00a0","pendingCommentsCount":0,"approvedCommentsCount":0},{"id":39111216,"state":"published","settings":{"hideBlogDate":null},"title":"\u6dfb\u52a0\u535a\u5ba2\u6807\u9898","icon":{"type":"Blog.BackgroundImage","id":null,"url":"\/\/assets.strikingly.com\/static\/backgrounds\/blur\/2.jpg","textColor":"light","sizing":"cover"},"headerImage":{"type":"Blog.BackgroundImage","id":null,"url":"\/\/assets.strikingly.com\/static\/backgrounds\/blur\/2.jpg","textColor":"light","sizing":"cover"},"firstContentImage":null,"publishedAt":"2024-08-07T22:52:25.663-07:00","updatedAt":"2024-08-07T22:52:25.686-07:00","createdAt":"2024-08-07T22:25:28.873-07:00","publicUrl":"https:\/\/testeve.us.weitie.me\/blog\/3967d141cd8","relativeUrl":"\/blog\/3967d141cd8","pinned":false,"allTagsList":[],"postedToWechat":false,"longBlurb":"","blurb":"","pendingCommentsCount":0,"approvedCommentsCount":0},{"id":39111396,"state":"published","settings":{"hideBlogDate":null},"title":"Add a Blog Post Title\u7f51\u7ad9\u4e3b\u0026\u534f\u4f5c\u8005","icon":{"type":"Blog.BackgroundImage","id":"f_5aac39ed-dce5-42f7-bf98-f943e9aad358","url":"\/\/assets.strikingly.com\/static\/backgrounds\/blur\/6.jpg","textColor":"light","sizing":"cover"},"headerImage":{"type":"Blog.BackgroundImage","id":"f_5aac39ed-dce5-42f7-bf98-f943e9aad358","url":"\/\/assets.strikingly.com\/static\/backgrounds\/blur\/6.jpg","textColor":"light","sizing":"cover"},"firstContentImage":null,"publishedAt":"2024-08-07T22:49:43.315-07:00","updatedAt":"2024-08-07T22:49:43.369-07:00","createdAt":"2024-08-07T22:36:26.055-07:00","publicUrl":"https:\/\/testeve.us.weitie.me\/blog\/add-a-blog-post-title-6b65b29c-76f8-403c-928a-cc1ffc278113","relativeUrl":"\/blog\/add-a-blog-post-title-6b65b29c-76f8-403c-928a-cc1ffc278113","pinned":false,"allTagsList":[],"postedToWechat":false,"longBlurb":"\\n\u535a\u5ba2\u6587\u7ae0\\n \\n\u7f51\u7ad9\u7f16\u8f91\u5c06\u81ea\u52a8\u4fdd\u5b58 \u4fdd\u5b58\\n \\n\u7f51\u7ad9\u4e3b\u7f16\u8f91\u4e86\u4e00\u4e0b\uff0c\u4fdd\u5b58\u4e86\u4f46\u662f\u6ca1\u6709\u53d1\u5e0313\uff1a48\\n \\n\u534f\u4f5c\u8005\u4e86\uff0c13\uff1a49\u4fdd\u5b58\u53d1\u5e03\\n \\n\u8349\u7a3f\\n \\n!\\n \\n\u53d1\u5e03\\n \\n\u9884\u89c8\\n \\n\u8bbe\u7f6e\\n \\n\u9000\u51fa\\n \\n\u7acb\u5373\u4e0a\u7ebf\u5b9a\u65f6\u4e0a\u7ebf\\n \\n\u7acb\u5373\u4e0a\u7ebf\\n \\n\u535a\u6587\u8bbe\u7f6e\\n \\n\u6dfb\u52a0\u535a\u5ba2\u5206\u7c7b\\n \\n\u66f4\u65b0\u5143\u63cf\u8ff0\\n \\n\u4f7f\u7528\u81ea\u5b9a\u4e49\u7f51\u5740\\n \\n\u8bbe\u7f6e\u5bc6\u7801\u4fdd\u5b58\\n \\n\u5bc6\u7801\\n \\n\u5bc6\u7801\u9875\u9762\u63d0\u793a(\u9009\u586b)\u4fdd\u5b58\\n \\n\u80cc\u666f\u989c\u8272\\n \\n\\n\\n \\n\u6dfb\u52a0\u535a\u5ba2\u6807\u9898\\n \\n\\n\\n \\n\u6dfb\u52a0\u526f\u6807\u9898\\n \\n\u7f16\u8f912024\u5e748\u67087\u65e5\u6dfb\u52a0\u535a\u5ba2\u5206\u7c7b\\n \\n+\\n \\n\u786e\u5b9a\uff1f\\n \\n\u63d0\u5347\u90ae\u4ef6\u8425\u9500\u7b56\u7565\u768410\u4e2a\u6709\u6548\u6280\u5de7\\n \\n+\\n \\n\u786e\u5b9a\uff1f\\n \\n\u00b7\u63a8\u5e7f\u60a8\u7684\u7f51\u7ad9,\u521b\u4e1a,\u00a0\u5c0f\u8d34\u58eb\u548c\u6280\u5de7\\n \\n+\\n \\n\u786e\u5b9a\uff1f\\n \\n\u90ae\u4ef6\u8425\u9500\u662f\u5e2e\u52a9\u4f01\u4e1a\u4e0e\u5176\u53d7\u4f17\u6216\u8bfb\u8005\u5efa\u7acb\u8054\u7cfb\u5e76\u63a8\u52a8\u8f6c\u5316\u7684\u5f3a\u5927\u5de5\u5177\u3002\u7136\u800c\uff0c\u521b\u5efa\u4e00\u4e2a\u6709\u6548\u7684\u90ae\u4ef6\u8425\u9500\u7b56\u7565\u53ef\u80fd\u662f\u4e00\u9879\u8270\u5de8\u7684\u4efb\u52a1\u3002\u5728\u672c\u6587\u4e2d\uff0c\u6211\u4eec\u5c06\u5206\u4eab10\u4e2a\u7ecf\u8fc7\u9a8c\u8bc1\u7684\u6280\u5de7\uff0c\u4ee5\u5e2e\u52a9\u60a8\u63d0\u5347\u60a8\u7684\u90ae\u4ef6\u8425\u9500\u7b56\u7565\u3002\u5982\u679c\u60a8\u60f3\u6539\u5584\u73b0\u6709\u7684\u90ae\u4ef6\u8425\u9500\u5de5\u4f5c\uff0c\u8fd9\u4e9b\u90ae\u4ef6\u8425\u9500\u7b56\u7565\u548c\u6280\u5de7\u5c06\u5e2e\u52a9\u60a8\u5236\u5b9a\u4e00\u4e2a\u4e0e\u53d7\u4f17\u5171\u9e23\u5e76\u4ea7\u751f\u7ed3\u679c\u7684\u8ba1\u5212\u3002\u7136\u800c\uff0c\u5728\u6df1\u5165\u7814\u7a76\u8fd9\u4e9b\u6280\u5de7\u548c\u7a8d\u95e8\u4e4b\u524d\uff0c\u8ba9\u6211\u4eec\u9996\u5148\u4e86\u89e3\u4ec0\u4e48\u662f\u90ae\u4ef6\u8425\u9500\u7b56\u7565\u3002\\n \\n+\\n \\n\u786e\u5b9a\uff1f\\n \\n\u7535\u5b50\u90ae\u4ef6\u8425\u9500\u7b56\u7565\\n \\n+\\n \\n\u786e\u5b9a\uff1f\\n \\n\u7535\u5b50\u90ae\u4ef6\u8425\u9500\u7b56\u7565\u662f\u6307\u7528\u4e8e\u521b\u5efa\u6709\u6548\u7535\u5b50\u90ae\u4ef6\u6d3b\u52a8\u7684\u5404\u79cd\u6280\u672f\u548c\u65b9\u6cd5\uff0c\u8fd9\u4e9b\u6d3b\u52a8\u53ef\u4ee5\u5e2e\u52a9\u4f01\u4e1a\u63a5\u89e6\u548c\u5438\u5f15\u76ee\u6807\u53d7\u4f17\uff0c\u5efa\u7acb\u54c1\u724c\u77e5\u540d\u5ea6\uff0c\u5e76\u63a8\u52a8\u8f6c\u5316\u3002\u4e00\u4e9b\u5e38\u89c1\u7684\u7535\u5b50\u90ae\u4ef6\u8425\u9500\u7b56\u7565\u5305\u62ec\uff1a\\n \\n+\\n \\n\u786e\u5b9a\uff1f\\n...","blurb":"\u535a\u5ba2\u6587\u7ae0 \u7f51\u7ad9\u7f16\u8f91\u5c06\u81ea\u52a8\u4fdd\u5b58 \u4fdd\u5b58 \u7f51\u7ad9\u4e3b\u7f16\u8f91\u4e86\u4e00\u4e0b\uff0c\u4fdd\u5b58\u4e86\u4f46\u662f\u6ca1\u6709\u53d1\u5e0313\uff1a48 \u534f\u4f5c\u8005\u4e86\uff0c13\uff1a49\u4fdd\u5b58\u53d1\u5e03 \u8349\u7a3f ! \u53d1\u5e03 \u9884\u89c8 \u8bbe\u7f6e \u9000\u51fa \u7acb\u5373\u4e0a\u7ebf\u5b9a\u65f6\u4e0a\u7ebf \u7acb\u5373\u4e0a\u7ebf \u535a\u6587\u8bbe\u7f6e \u6dfb\u52a0\u535a\u5ba2\u5206\u7c7b \u66f4\u65b0\u5143\u63cf\u8ff0 \u4f7f\u7528\u81ea\u5b9a\u4e49\u7f51\u5740 \u8bbe\u7f6e\u5bc6\u7801\u4fdd\u5b58 \u5bc6\u7801 \u5bc6\u7801\u9875\u9762\u63d0\u793a(\u9009\u586b)\u4fdd\u5b58 \u80cc\u666f\u989c\u8272 \u6dfb\u52a0\u535a\u5ba2\u6807\u9898 \u6dfb\u52a0\u526f\u6807\u9898 \u7f16\u8f912024\u5e748\u67087\u65e5\u6dfb\u52a0\u535a\u5ba2\u5206\u7c7b + \u786e\u5b9a\uff1f \u63d0\u5347\u90ae\u4ef6\u8425\u9500\u7b56\u7565\u768410\u4e2a\u6709\u6548\u6280\u5de7 + \u786e\u5b9a\uff1f \u00b7\u63a8\u5e7f\u60a8\u7684\u7f51\u7ad9,\u521b\u4e1a,\u00a0\u5c0f\u8d34\u58eb\u548c\u6280\u5de7 + \u786e\u5b9a\uff1f...","pendingCommentsCount":0,"approvedCommentsCount":0},{"id":39111361,"state":"published","settings":{"hideBlogDate":null},"title":"Add a Blog Post Title\u534f\u4f5c\u80053","icon":{"type":"Blog.BackgroundImage","id":"f_bab979bf-c382-4e40-80d6-ba62c31e073b","url":"\/\/assets.strikingly.com\/static\/backgrounds\/blur\/8.jpg","textColor":"light","sizing":"cover"},"headerImage":{"type":"Blog.BackgroundImage","id":"f_bab979bf-c382-4e40-80d6-ba62c31e073b","url":"\/\/assets.strikingly.com\/static\/backgrounds\/blur\/8.jpg","textColor":"light","sizing":"cover"},"firstContentImage":null,"publishedAt":"2024-08-07T22:35:03.768-07:00","updatedAt":"2024-08-07T22:35:03.917-07:00","createdAt":"2024-08-07T22:33:45.073-07:00","publicUrl":"https:\/\/testeve.us.weitie.me\/blog\/add-a-blog-post-title-3","relativeUrl":"\/blog\/add-a-blog-post-title-3","pinned":false,"allTagsList":[],"postedToWechat":false,"longBlurb":"\\n\u535a\u5ba2\u6587\u7ae0\\n \\n\u7f51\u7ad9\u7f16\u8f91\u5c06\u81ea\u52a8\u4fdd\u5b58 \u4fdd\u5b58\\n \\n\u8349\u7a3f\\n \\n!\\n \\n\u53d1\u5e03\\n \\n\u9884\u89c8\\n \\n\u8bbe\u7f6e\\n \\n\u9000\u51fa\\n \\n\u7acb\u5373\u4e0a\u7ebf\u5b9a\u65f6\u4e0a\u7ebf\\n \\n\u7acb\u5373\u4e0a\u7ebf\\n \\n\u535a\u6587\u8bbe\u7f6e\\n \\n\u6dfb\u52a0\u535a\u5ba2\u5206\u7c7b\\n \\n\u66f4\u65b0\u5143\u63cf\u8ff0\\n \\n\u4f7f\u7528\u81ea\u5b9a\u4e49\u7f51\u5740\\n \\n\u8bbe\u7f6e\u5bc6\u7801\u4fdd\u5b58\\n \\n\u5bc6\u7801\\n \\n\u5bc6\u7801\u9875\u9762\u63d0\u793a(\u9009\u586b)\u4fdd\u5b58\\n \\n\u80cc\u666f\u989c\u8272\\n \\n\\n\\n \\n\u6dfb\u52a0\u535a\u5ba2\u6807\u9898\\n \\n\\n\\n \\n\u6dfb\u52a0\u526f\u6807\u9898\\n \\n\u7f16\u8f912024\u5e748\u67087\u65e5\u6dfb\u52a0\u535a\u5ba2\u5206\u7c7b\\n \\n+\\n \\n\u786e\u5b9a\uff1f\\n \\n\u63d0\u5347\u90ae\u4ef6\u8425\u9500\u7b56\u7565\u768410\u4e2a\u6709\u6548\u6280\u5de7\\n \\n+\\n \\n\u786e\u5b9a\uff1f\\n \\n\u00b7\u63a8\u5e7f\u60a8\u7684\u7f51\u7ad9,\u521b\u4e1a,\u00a0\u5c0f\u8d34\u58eb\u548c\u6280\u5de7\\n \\n+\\n \\n\u786e\u5b9a\uff1f\\n \\n\u90ae\u4ef6\u8425\u9500\u662f\u5e2e\u52a9\u4f01\u4e1a\u4e0e\u5176\u53d7\u4f17\u6216\u8bfb\u8005\u5efa\u7acb\u8054\u7cfb\u5e76\u63a8\u52a8\u8f6c\u5316\u7684\u5f3a\u5927\u5de5\u5177\u3002\u7136\u800c\uff0c\u521b\u5efa\u4e00\u4e2a\u6709\u6548\u7684\u90ae\u4ef6\u8425\u9500\u7b56\u7565\u53ef\u80fd\u662f\u4e00\u9879\u8270\u5de8\u7684\u4efb\u52a1\u3002\u5728\u672c\u6587\u4e2d\uff0c\u6211\u4eec\u5c06\u5206\u4eab10\u4e2a\u7ecf\u8fc7\u9a8c\u8bc1\u7684\u6280\u5de7\uff0c\u4ee5\u5e2e\u52a9\u60a8\u63d0\u5347\u60a8\u7684\u90ae\u4ef6\u8425\u9500\u7b56\u7565\u3002\u5982\u679c\u60a8\u60f3\u6539\u5584\u73b0\u6709\u7684\u90ae\u4ef6\u8425\u9500\u5de5\u4f5c\uff0c\u8fd9\u4e9b\u90ae\u4ef6\u8425\u9500\u7b56\u7565\u548c\u6280\u5de7\u5c06\u5e2e\u52a9\u60a8\u5236\u5b9a\u4e00\u4e2a\u4e0e\u53d7\u4f17\u5171\u9e23\u5e76\u4ea7\u751f\u7ed3\u679c\u7684\u8ba1\u5212\u3002\u7136\u800c\uff0c\u5728\u6df1\u5165\u7814\u7a76\u8fd9\u4e9b\u6280\u5de7\u548c\u7a8d\u95e8\u4e4b\u524d\uff0c\u8ba9\u6211\u4eec\u9996\u5148\u4e86\u89e3\u4ec0\u4e48\u662f\u90ae\u4ef6\u8425\u9500\u7b56\u7565\u3002\\n \\n+\\n \\n\u786e\u5b9a\uff1f\\n \\n\u7535\u5b50\u90ae\u4ef6\u8425\u9500\u7b56\u7565\\n \\n+\\n \\n\u786e\u5b9a\uff1f\\n \\n\u7535\u5b50\u90ae\u4ef6\u8425\u9500\u7b56\u7565\u662f\u6307\u7528\u4e8e\u521b\u5efa\u6709\u6548\u7535\u5b50\u90ae\u4ef6\u6d3b\u52a8\u7684\u5404\u79cd\u6280\u672f\u548c\u65b9\u6cd5\uff0c\u8fd9\u4e9b\u6d3b\u52a8\u53ef\u4ee5\u5e2e\u52a9\u4f01\u4e1a\u63a5\u89e6\u548c\u5438\u5f15\u76ee\u6807\u53d7\u4f17\uff0c\u5efa\u7acb\u54c1\u724c\u77e5\u540d\u5ea6\uff0c\u5e76\u63a8\u52a8\u8f6c\u5316\u3002\u4e00\u4e9b\u5e38\u89c1\u7684\u7535\u5b50\u90ae\u4ef6\u8425\u9500\u7b56\u7565\u5305\u62ec\uff1a\\n \\n+\\n \\n\u786e\u5b9a\uff1f\\n \u7ec6\u5206\u60a8\u7684\u7535\u5b50\u90ae\u4ef6\u5217\u8868\u3002\u4e0e\u5176\u5411\u6574\u4e2a\u5217\u8868\u53d1\u9001\u76f8\u540c\u7684\u7535\u5b50\u90ae\u4ef6\uff0c\u4e0d\u5982\u6839\u636e\u53d7\u4f17\u7684\u5174\u8da3\u3001\u4eba\u53e3\u7edf\u8ba1\u6216\u884c\u4e3a\u5bf9\u5176\u8fdb\u884c\u7ec6\u5206\uff0c\u5e76\u53d1\u9001\u66f4\u7b26\u5408\u6bcf\u4e2a\u7fa4\u4f53\u9700\u6c42\u7684\u5b9a\u5411\u7535\u5b50\u90ae\u4ef6\u3002\u4e2a\u6027\u5316\u60a8\u7684\u7535\u5b50\u90ae\u4ef6\u3002\u4f7f\u7528\u6536\u4ef6\u4eba\u7684\u59d3\u540d\u3001\u4f4d\u7f6e\u6216\u5176\u4ed6\u4e2a\u6027\u5316\u4fe1\u606f\uff0c\u4f7f\u60a8\u7684\u7535\u5b50\u90ae\u4ef6\u66f4\u52a0\u4e2a\u4eba\u5316\u548c\u5438\u5f15\u4eba\u3002\u521b\u5efa\u5f15\u4eba\u6ce8\u76ee\u7684\u4e3b\u9898\u884c\u3002\u4f7f\u7528\u6e05\u6670\u7b80\u6d01\u7684\u4e3b\u9898\u884c\u6293\u4f4f\u6536\u4ef6\u4eba\u7684\u6ce8\u610f\u529b\uff0c\u5e76\u5438\u5f15\u4ed6\u4eec\u6253\u5f00\u7535\u5b50\u90ae\u4ef6\u3002\u8bbe\u8ba1\u89c6\u89c9\u4e0a\u5438\u5f15\u4eba\u7684\u7535\u5b50\u90ae\u4ef6\u3002\u4f7f\u7528\u56fe\u7247\u3001\u56fe\u5f62\u548c\u683c\u5f0f\uff0c\u4f7f\u60a8\u7684\u7535\u5b50\u90ae\u4ef6\u5728\u89c6\u89c9\u4e0a\u5438\u5f15\u4eba\u4e14\u6613\u4e8e\u9605\u8bfb\u3002\u63d0\u4f9b\u6709\u4ef7\u503c\u7684\u5185\u5bb9\u3002\u521b\u5efa\u4fe1\u606f\u4e30\u5bcc\u3001\u5a31\u4e50\u6027\u5f3a\u6216\u6709\u5e2e\u52a9\u7684\u5185\u5bb9\uff0c\u5e76\u4e3a\u60a8\u7684\u53d7\u4f17\u63d0\u4f9b\u4ef7\u503c\u3002\u5305\u542b\u5f15\u5bfc\u6027\u884c\u4e3a\u3002\u9f13\u52b1\u53d7\u4f17\u91c7\u53d6\u7279\u5b9a\u884c\u52a8\uff0c\u4f8b\u5982\u8d2d\u4e70\u3001\u6ce8\u518c\u8425\u9500\u90ae\u4ef6\u6216\u5728\u793e\u4ea4\u5a92\u4f53\u4e0a\u5173\u6ce8\u60a8\u3002\u6d4b\u8bd5\u548c\u4f18\u5316\u3002\u6d4b\u8bd5\u7535\u5b50\u90ae\u4ef6\u7684\u4e0d\u540c\u5143\u7d20\uff0c\u5982\u4e3b\u9898\u884c\u3001\u5185\u5bb9\u548c\u5f15\u5bfc\u6027\u884c\u4e3a\uff0c\u5e76\u6839\u636e\u7ed3\u679c\u4f18\u5316\u60a8\u7684\u6d3b\u52a8\uff0c\u4ee5\u63d0\u9ad8\u5176\u968f\u65f6\u95f4\u7684\u6709\u6548\u6027\u3002\\n \\n+\\n...","blurb":"\u535a\u5ba2\u6587\u7ae0 \u7f51\u7ad9\u7f16\u8f91\u5c06\u81ea\u52a8\u4fdd\u5b58 \u4fdd\u5b58 \u8349\u7a3f ! \u53d1\u5e03 \u9884\u89c8 \u8bbe\u7f6e \u9000\u51fa \u7acb\u5373\u4e0a\u7ebf\u5b9a\u65f6\u4e0a\u7ebf \u7acb\u5373\u4e0a\u7ebf \u535a\u6587\u8bbe\u7f6e \u6dfb\u52a0\u535a\u5ba2\u5206\u7c7b \u66f4\u65b0\u5143\u63cf\u8ff0 \u4f7f\u7528\u81ea\u5b9a\u4e49\u7f51\u5740 \u8bbe\u7f6e\u5bc6\u7801\u4fdd\u5b58 \u5bc6\u7801 \u5bc6\u7801\u9875\u9762\u63d0\u793a(\u9009\u586b)\u4fdd\u5b58 \u80cc\u666f\u989c\u8272 \u6dfb\u52a0\u535a\u5ba2\u6807\u9898 \u6dfb\u52a0\u526f\u6807\u9898 \u7f16\u8f912024\u5e748\u67087\u65e5\u6dfb\u52a0\u535a\u5ba2\u5206\u7c7b + \u786e\u5b9a\uff1f \u63d0\u5347\u90ae\u4ef6\u8425\u9500\u7b56\u7565\u768410\u4e2a\u6709\u6548\u6280\u5de7 + \u786e\u5b9a\uff1f \u00b7\u63a8\u5e7f\u60a8\u7684\u7f51\u7ad9,\u521b\u4e1a,\u00a0\u5c0f\u8d34\u58eb\u548c\u6280\u5de7 + \u786e\u5b9a\uff1f...","pendingCommentsCount":0,"approvedCommentsCount":0},{"id":39111232,"state":"published","settings":{"hideBlogDate":null},"title":"\u6dfb\u52a0\u535a\u5ba2\u6807\u9898\u534f\u4f5c\u80052","icon":{"type":"Blog.BackgroundImage","id":"f_3acbbf6c-cd0e-4485-a681-849b9c5cbfe1","url":"\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_progressive,h_1200,q_90,w_2000\/wxewyckdmotqycwfb8pk.jpg","textColor":"light","sizing":"cover"},"headerImage":{"type":"Blog.BackgroundImage","id":"f_3acbbf6c-cd0e-4485-a681-849b9c5cbfe1","url":"\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_progressive,h_1200,q_90,w_2000\/wxewyckdmotqycwfb8pk.jpg","textColor":"light","sizing":"cover"},"firstContentImage":null,"publishedAt":"2024-08-07T22:27:24.917-07:00","updatedAt":"2024-08-07T22:27:24.964-07:00","createdAt":"2024-08-07T22:27:01.409-07:00","publicUrl":"https:\/\/testeve.us.weitie.me\/blog\/2","relativeUrl":"\/blog\/2","pinned":false,"allTagsList":[],"postedToWechat":false,"longBlurb":"\\n\u535a\u5ba2\u6587\u7ae0\\n \\n\u7f51\u7ad9\u7f16\u8f91\u5c06\u81ea\u52a8\u4fdd\u5b58 \u4fdd\u5b58\\n \\n\u8349\u7a3f\\n \\n!\\n \\n\u53d1\u5e03\\n \\n\u9884\u89c8\\n \\n\u8bbe\u7f6e\\n \\n\u9000\u51fa\\n \\n\u7acb\u5373\u4e0a\u7ebf\u5b9a\u65f6\u4e0a\u7ebf\\n \\n\u7acb\u5373\u4e0a\u7ebf\\n \\n\u535a\u6587\u8bbe\u7f6e\\n \\n\u6dfb\u52a0\u535a\u5ba2\u5206\u7c7b\\n \\n\u66f4\u65b0\u5143\u63cf\u8ff0\\n \\n\u4f7f\u7528\u81ea\u5b9a\u4e49\u7f51\u5740\\n \\n\u8bbe\u7f6e\u5bc6\u7801\u4fdd\u5b58\\n \\n\u5bc6\u7801\\n \\n\u5bc6\u7801\u9875\u9762\u63d0\u793a(\u9009\u586b)\u4fdd\u5b58\\n \\n\u80cc\u666f\u989c\u8272\\n \\n\\n\\n \\n\u6dfb\u52a0\u535a\u5ba2\u6807\u9898\\n \\n\\n\\n \\n\u6dfb\u52a0\u526f\u6807\u9898\\n \\n\u7f16\u8f912024\u5e748\u67087\u65e5\u6dfb\u52a0\u535a\u5ba2\u5206\u7c7b\\n \\n+\\n \\n\u786e\u5b9a\uff1f\\n \\n\u63d0\u5347\u90ae\u4ef6\u8425\u9500\u7b56\u7565\u768410\u4e2a\u6709\u6548\u6280\u5de7\\n \\n+\\n \\n\u786e\u5b9a\uff1f\\n \\n\u00b7\u63a8\u5e7f\u60a8\u7684\u7f51\u7ad9,\u521b\u4e1a,\u00a0\u5c0f\u8d34\u58eb\u548c\u6280\u5de7\\n \\n+\\n \\n\u786e\u5b9a\uff1f\\n \\n\u90ae\u4ef6\u8425\u9500\u662f\u5e2e\u52a9\u4f01\u4e1a\u4e0e\u5176\u53d7\u4f17\u6216\u8bfb\u8005\u5efa\u7acb\u8054\u7cfb\u5e76\u63a8\u52a8\u8f6c\u5316\u7684\u5f3a\u5927\u5de5\u5177\u3002\u7136\u800c\uff0c\u521b\u5efa\u4e00\u4e2a\u6709\u6548\u7684\u90ae\u4ef6\u8425\u9500\u7b56\u7565\u53ef\u80fd\u662f\u4e00\u9879\u8270\u5de8\u7684\u4efb\u52a1\u3002\u5728\u672c\u6587\u4e2d\uff0c\u6211\u4eec\u5c06\u5206\u4eab10\u4e2a\u7ecf\u8fc7\u9a8c\u8bc1\u7684\u6280\u5de7\uff0c\u4ee5\u5e2e\u52a9\u60a8\u63d0\u5347\u60a8\u7684\u90ae\u4ef6\u8425\u9500\u7b56\u7565\u3002\u5982\u679c\u60a8\u60f3\u6539\u5584\u73b0\u6709\u7684\u90ae\u4ef6\u8425\u9500\u5de5\u4f5c\uff0c\u8fd9\u4e9b\u90ae\u4ef6\u8425\u9500\u7b56\u7565\u548c\u6280\u5de7\u5c06\u5e2e\u52a9\u60a8\u5236\u5b9a\u4e00\u4e2a\u4e0e\u53d7\u4f17\u5171\u9e23\u5e76\u4ea7\u751f\u7ed3\u679c\u7684\u8ba1\u5212\u3002\u7136\u800c\uff0c\u5728\u6df1\u5165\u7814\u7a76\u8fd9\u4e9b\u6280\u5de7\u548c\u7a8d\u95e8\u4e4b\u524d\uff0c\u8ba9\u6211\u4eec\u9996\u5148\u4e86\u89e3\u4ec0\u4e48\u662f\u90ae\u4ef6\u8425\u9500\u7b56\u7565\u3002\\n \\n+\\n \\n\u786e\u5b9a\uff1f\\n \\n\u7535\u5b50\u90ae\u4ef6\u8425\u9500\u7b56\u7565\\n \\n+\\n \\n\u786e\u5b9a\uff1f\\n \\n\u7535\u5b50\u90ae\u4ef6\u8425\u9500\u7b56\u7565\u662f\u6307\u7528\u4e8e\u521b\u5efa\u6709\u6548\u7535\u5b50\u90ae\u4ef6\u6d3b\u52a8\u7684\u5404\u79cd\u6280\u672f\u548c\u65b9\u6cd5\uff0c\u8fd9\u4e9b\u6d3b\u52a8\u53ef\u4ee5\u5e2e\u52a9\u4f01\u4e1a\u63a5\u89e6\u548c\u5438\u5f15\u76ee\u6807\u53d7\u4f17\uff0c\u5efa\u7acb\u54c1\u724c\u77e5\u540d\u5ea6\uff0c\u5e76\u63a8\u52a8\u8f6c\u5316\u3002\u4e00\u4e9b\u5e38\u89c1\u7684\u7535\u5b50\u90ae\u4ef6\u8425\u9500\u7b56\u7565\u5305\u62ec\uff1a\\n \\n+\\n \\n\u786e\u5b9a\uff1f\\n \u7ec6\u5206\u60a8\u7684\u7535\u5b50\u90ae\u4ef6\u5217\u8868\u3002\u4e0e\u5176\u5411\u6574\u4e2a\u5217\u8868\u53d1\u9001\u76f8\u540c\u7684\u7535\u5b50\u90ae\u4ef6\uff0c\u4e0d\u5982\u6839\u636e\u53d7\u4f17\u7684\u5174\u8da3\u3001\u4eba\u53e3\u7edf\u8ba1\u6216\u884c\u4e3a\u5bf9\u5176\u8fdb\u884c\u7ec6\u5206\uff0c\u5e76\u53d1\u9001\u66f4\u7b26\u5408\u6bcf\u4e2a\u7fa4\u4f53\u9700\u6c42\u7684\u5b9a\u5411\u7535\u5b50\u90ae\u4ef6\u3002\u4e2a\u6027\u5316\u60a8\u7684\u7535\u5b50\u90ae\u4ef6\u3002\u4f7f\u7528\u6536\u4ef6\u4eba\u7684\u59d3\u540d\u3001\u4f4d\u7f6e\u6216\u5176\u4ed6\u4e2a\u6027\u5316\u4fe1\u606f\uff0c\u4f7f\u60a8\u7684\u7535\u5b50\u90ae\u4ef6\u66f4\u52a0\u4e2a\u4eba\u5316\u548c\u5438\u5f15\u4eba\u3002\u521b\u5efa\u5f15\u4eba\u6ce8\u76ee\u7684\u4e3b\u9898\u884c\u3002\u4f7f\u7528\u6e05\u6670\u7b80\u6d01\u7684\u4e3b\u9898\u884c\u6293\u4f4f\u6536\u4ef6\u4eba\u7684\u6ce8\u610f\u529b\uff0c\u5e76\u5438\u5f15\u4ed6\u4eec\u6253\u5f00\u7535\u5b50\u90ae\u4ef6\u3002\u8bbe\u8ba1\u89c6\u89c9\u4e0a\u5438\u5f15\u4eba\u7684\u7535\u5b50\u90ae\u4ef6\u3002\u4f7f\u7528\u56fe\u7247\u3001\u56fe\u5f62\u548c\u683c\u5f0f\uff0c\u4f7f\u60a8\u7684\u7535\u5b50\u90ae\u4ef6\u5728\u89c6\u89c9\u4e0a\u5438\u5f15\u4eba\u4e14\u6613\u4e8e\u9605\u8bfb\u3002\u63d0\u4f9b\u6709\u4ef7\u503c\u7684\u5185\u5bb9\u3002\u521b\u5efa\u4fe1\u606f\u4e30\u5bcc\u3001\u5a31\u4e50\u6027\u5f3a\u6216\u6709\u5e2e\u52a9\u7684\u5185\u5bb9\uff0c\u5e76\u4e3a\u60a8\u7684\u53d7\u4f17\u63d0\u4f9b\u4ef7\u503c\u3002\u5305\u542b\u5f15\u5bfc\u6027\u884c\u4e3a\u3002\u9f13\u52b1\u53d7\u4f17\u91c7\u53d6\u7279\u5b9a\u884c\u52a8\uff0c\u4f8b\u5982\u8d2d\u4e70\u3001\u6ce8\u518c\u8425\u9500\u90ae\u4ef6\u6216\u5728\u793e\u4ea4\u5a92\u4f53\u4e0a\u5173\u6ce8\u60a8\u3002\u6d4b\u8bd5\u548c\u4f18\u5316\u3002\u6d4b\u8bd5\u7535\u5b50\u90ae\u4ef6\u7684\u4e0d\u540c\u5143\u7d20\uff0c\u5982\u4e3b\u9898\u884c\u3001\u5185\u5bb9\u548c\u5f15\u5bfc\u6027\u884c\u4e3a\uff0c\u5e76\u6839\u636e\u7ed3\u679c\u4f18\u5316\u60a8\u7684\u6d3b\u52a8\uff0c\u4ee5\u63d0\u9ad8\u5176\u968f\u65f6\u95f4\u7684\u6709\u6548\u6027\u3002\\n \\n+\\n...","blurb":"\u535a\u5ba2\u6587\u7ae0 \u7f51\u7ad9\u7f16\u8f91\u5c06\u81ea\u52a8\u4fdd\u5b58 \u4fdd\u5b58 \u8349\u7a3f ! \u53d1\u5e03 \u9884\u89c8 \u8bbe\u7f6e \u9000\u51fa \u7acb\u5373\u4e0a\u7ebf\u5b9a\u65f6\u4e0a\u7ebf \u7acb\u5373\u4e0a\u7ebf \u535a\u6587\u8bbe\u7f6e \u6dfb\u52a0\u535a\u5ba2\u5206\u7c7b \u66f4\u65b0\u5143\u63cf\u8ff0 \u4f7f\u7528\u81ea\u5b9a\u4e49\u7f51\u5740 \u8bbe\u7f6e\u5bc6\u7801\u4fdd\u5b58 \u5bc6\u7801 \u5bc6\u7801\u9875\u9762\u63d0\u793a(\u9009\u586b)\u4fdd\u5b58 \u80cc\u666f\u989c\u8272 \u6dfb\u52a0\u535a\u5ba2\u6807\u9898 \u6dfb\u52a0\u526f\u6807\u9898 \u7f16\u8f912024\u5e748\u67087\u65e5\u6dfb\u52a0\u535a\u5ba2\u5206\u7c7b + \u786e\u5b9a\uff1f \u63d0\u5347\u90ae\u4ef6\u8425\u9500\u7b56\u7565\u768410\u4e2a\u6709\u6548\u6280\u5de7 + \u786e\u5b9a\uff1f \u00b7\u63a8\u5e7f\u60a8\u7684\u7f51\u7ad9,\u521b\u4e1a,\u00a0\u5c0f\u8d34\u58eb\u548c\u6280\u5de7 + \u786e\u5b9a\uff1f...","pendingCommentsCount":0,"approvedCommentsCount":0},{"id":39111218,"state":"published","settings":{"hideBlogDate":null},"title":"\u6dfb\u52a0\u535a\u5ba2\u6807\u9898\u534f\u4f5c\u8005","icon":{"type":"Blog.BackgroundImage","id":"f_cdf2dd12-9ffb-4e94-ac97-d18bbf63785d","url":"\/\/assets.strikingly.com\/static\/backgrounds\/blur\/10.jpg","textColor":"light","sizing":"cover"},"headerImage":{"type":"Blog.BackgroundImage","id":"f_cdf2dd12-9ffb-4e94-ac97-d18bbf63785d","url":"\/\/assets.strikingly.com\/static\/backgrounds\/blur\/10.jpg","textColor":"light","sizing":"cover"},"firstContentImage":null,"publishedAt":"2024-08-07T22:26:00.219-07:00","updatedAt":"2024-08-07T22:26:00.280-07:00","createdAt":"2024-08-07T22:25:29.294-07:00","publicUrl":"https:\/\/testeve.us.weitie.me\/blog\/ff3c38000d6","relativeUrl":"\/blog\/ff3c38000d6","pinned":false,"allTagsList":[],"postedToWechat":false,"longBlurb":"\\n\u535a\u5ba2\u6587\u7ae0\\n \\n\u7f51\u7ad9\u7f16\u8f91\u5c06\u81ea\u52a8\u4fdd\u5b58 \u4fdd\u5b58\\n \\n\u8349\u7a3f\\n \\n!\\n \\n\u53d1\u5e03\\n \\n\u9884\u89c8\\n \\n\u8bbe\u7f6e\\n \\n\u9000\u51fa\\n \\n\u7acb\u5373\u4e0a\u7ebf\u5b9a\u65f6\u4e0a\u7ebf\\n \\n\u7acb\u5373\u4e0a\u7ebf\\n \\n\u535a\u6587\u8bbe\u7f6e\\n \\n\u6dfb\u52a0\u535a\u5ba2\u5206\u7c7b\\n \\n\u66f4\u65b0\u5143\u63cf\u8ff0\\n \\n\u4f7f\u7528\u81ea\u5b9a\u4e49\u7f51\u5740\\n \\n\u8bbe\u7f6e\u5bc6\u7801\u4fdd\u5b58\\n \\n\u5bc6\u7801\\n \\n\u5bc6\u7801\u9875\u9762\u63d0\u793a(\u9009\u586b)\u4fdd\u5b58\\n \\n\u80cc\u666f\u989c\u8272\\n \\n\\n\\n \\n\u6dfb\u52a0\u535a\u5ba2\u6807\u9898\\n \\n\\n\\n \\n\u6dfb\u52a0\u526f\u6807\u9898\\n \\n\u7f16\u8f912024\u5e748\u67087\u65e5\u6dfb\u52a0\u535a\u5ba2\u5206\u7c7b\\n \\n+\\n \\n\u786e\u5b9a\uff1f\\n \\n\u63d0\u5347\u90ae\u4ef6\u8425\u9500\u7b56\u7565\u768410\u4e2a\u6709\u6548\u6280\u5de7\\n \\n+\\n \\n\u786e\u5b9a\uff1f\\n \\n\u00b7\u63a8\u5e7f\u60a8\u7684\u7f51\u7ad9,\u521b\u4e1a,\u00a0\u5c0f\u8d34\u58eb\u548c\u6280\u5de7\\n \\n+\\n \\n\u786e\u5b9a\uff1f\\n \\n\u90ae\u4ef6\u8425\u9500\u662f\u5e2e\u52a9\u4f01\u4e1a\u4e0e\u5176\u53d7\u4f17\u6216\u8bfb\u8005\u5efa\u7acb\u8054\u7cfb\u5e76\u63a8\u52a8\u8f6c\u5316\u7684\u5f3a\u5927\u5de5\u5177\u3002\u7136\u800c\uff0c\u521b\u5efa\u4e00\u4e2a\u6709\u6548\u7684\u90ae\u4ef6\u8425\u9500\u7b56\u7565\u53ef\u80fd\u662f\u4e00\u9879\u8270\u5de8\u7684\u4efb\u52a1\u3002\u5728\u672c\u6587\u4e2d\uff0c\u6211\u4eec\u5c06\u5206\u4eab10\u4e2a\u7ecf\u8fc7\u9a8c\u8bc1\u7684\u6280\u5de7\uff0c\u4ee5\u5e2e\u52a9\u60a8\u63d0\u5347\u60a8\u7684\u90ae\u4ef6\u8425\u9500\u7b56\u7565\u3002\u5982\u679c\u60a8\u60f3\u6539\u5584\u73b0\u6709\u7684\u90ae\u4ef6\u8425\u9500\u5de5\u4f5c\uff0c\u8fd9\u4e9b\u90ae\u4ef6\u8425\u9500\u7b56\u7565\u548c\u6280\u5de7\u5c06\u5e2e\u52a9\u60a8\u5236\u5b9a\u4e00\u4e2a\u4e0e\u53d7\u4f17\u5171\u9e23\u5e76\u4ea7\u751f\u7ed3\u679c\u7684\u8ba1\u5212\u3002\u7136\u800c\uff0c\u5728\u6df1\u5165\u7814\u7a76\u8fd9\u4e9b\u6280\u5de7\u548c\u7a8d\u95e8\u4e4b\u524d\uff0c\u8ba9\u6211\u4eec\u9996\u5148\u4e86\u89e3\u4ec0\u4e48\u662f\u90ae\u4ef6\u8425\u9500\u7b56\u7565\u3002\\n \\n+\\n \\n\u786e\u5b9a\uff1f\\n \\n\u7535\u5b50\u90ae\u4ef6\u8425\u9500\u7b56\u7565\\n \\n+\\n \\n\u786e\u5b9a\uff1f\\n \\n\u7535\u5b50\u90ae\u4ef6\u8425\u9500\u7b56\u7565\u662f\u6307\u7528\u4e8e\u521b\u5efa\u6709\u6548\u7535\u5b50\u90ae\u4ef6\u6d3b\u52a8\u7684\u5404\u79cd\u6280\u672f\u548c\u65b9\u6cd5\uff0c\u8fd9\u4e9b\u6d3b\u52a8\u53ef\u4ee5\u5e2e\u52a9\u4f01\u4e1a\u63a5\u89e6\u548c\u5438\u5f15\u76ee\u6807\u53d7\u4f17\uff0c\u5efa\u7acb\u54c1\u724c\u77e5\u540d\u5ea6\uff0c\u5e76\u63a8\u52a8\u8f6c\u5316\u3002\u4e00\u4e9b\u5e38\u89c1\u7684\u7535\u5b50\u90ae\u4ef6\u8425\u9500\u7b56\u7565\u5305\u62ec\uff1a\\n \\n+\\n \\n\u786e\u5b9a\uff1f\\n \u7ec6\u5206\u60a8\u7684\u7535\u5b50\u90ae\u4ef6\u5217\u8868\u3002\u4e0e\u5176\u5411\u6574\u4e2a\u5217\u8868\u53d1\u9001\u76f8\u540c\u7684\u7535\u5b50\u90ae\u4ef6\uff0c\u4e0d\u5982\u6839\u636e\u53d7\u4f17\u7684\u5174\u8da3\u3001\u4eba\u53e3\u7edf\u8ba1\u6216\u884c\u4e3a\u5bf9\u5176\u8fdb\u884c\u7ec6\u5206\uff0c\u5e76\u53d1\u9001\u66f4\u7b26\u5408\u6bcf\u4e2a\u7fa4\u4f53\u9700\u6c42\u7684\u5b9a\u5411\u7535\u5b50\u90ae\u4ef6\u3002\u4e2a\u6027\u5316\u60a8\u7684\u7535\u5b50\u90ae\u4ef6\u3002\u4f7f\u7528\u6536\u4ef6\u4eba\u7684\u59d3\u540d\u3001\u4f4d\u7f6e\u6216\u5176\u4ed6\u4e2a\u6027\u5316\u4fe1\u606f\uff0c\u4f7f\u60a8\u7684\u7535\u5b50\u90ae\u4ef6\u66f4\u52a0\u4e2a\u4eba\u5316\u548c\u5438\u5f15\u4eba\u3002\u521b\u5efa\u5f15\u4eba\u6ce8\u76ee\u7684\u4e3b\u9898\u884c\u3002\u4f7f\u7528\u6e05\u6670\u7b80\u6d01\u7684\u4e3b\u9898\u884c\u6293\u4f4f\u6536\u4ef6\u4eba\u7684\u6ce8\u610f\u529b\uff0c\u5e76\u5438\u5f15\u4ed6\u4eec\u6253\u5f00\u7535\u5b50\u90ae\u4ef6\u3002\u8bbe\u8ba1\u89c6\u89c9\u4e0a\u5438\u5f15\u4eba\u7684\u7535\u5b50\u90ae\u4ef6\u3002\u4f7f\u7528\u56fe\u7247\u3001\u56fe\u5f62\u548c\u683c\u5f0f\uff0c\u4f7f\u60a8\u7684\u7535\u5b50\u90ae\u4ef6\u5728\u89c6\u89c9\u4e0a\u5438\u5f15\u4eba\u4e14\u6613\u4e8e\u9605\u8bfb\u3002\u63d0\u4f9b\u6709\u4ef7\u503c\u7684\u5185\u5bb9\u3002\u521b\u5efa\u4fe1\u606f\u4e30\u5bcc\u3001\u5a31\u4e50\u6027\u5f3a\u6216\u6709\u5e2e\u52a9\u7684\u5185\u5bb9\uff0c\u5e76\u4e3a\u60a8\u7684\u53d7\u4f17\u63d0\u4f9b\u4ef7\u503c\u3002\u5305\u542b\u5f15\u5bfc\u6027\u884c\u4e3a\u3002\u9f13\u52b1\u53d7\u4f17\u91c7\u53d6\u7279\u5b9a\u884c\u52a8\uff0c\u4f8b\u5982\u8d2d\u4e70\u3001\u6ce8\u518c\u8425\u9500\u90ae\u4ef6\u6216\u5728\u793e\u4ea4\u5a92\u4f53\u4e0a\u5173\u6ce8\u60a8\u3002\u6d4b\u8bd5\u548c\u4f18\u5316\u3002\u6d4b\u8bd5\u7535\u5b50\u90ae\u4ef6\u7684\u4e0d\u540c\u5143\u7d20\uff0c\u5982\u4e3b\u9898\u884c\u3001\u5185\u5bb9\u548c\u5f15\u5bfc\u6027\u884c\u4e3a\uff0c\u5e76\u6839\u636e\u7ed3\u679c\u4f18\u5316\u60a8\u7684\u6d3b\u52a8\uff0c\u4ee5\u63d0\u9ad8\u5176\u968f\u65f6\u95f4\u7684\u6709\u6548\u6027\u3002\\n \\n+\\n...","blurb":"\u535a\u5ba2\u6587\u7ae0 \u7f51\u7ad9\u7f16\u8f91\u5c06\u81ea\u52a8\u4fdd\u5b58 \u4fdd\u5b58 \u8349\u7a3f ! \u53d1\u5e03 \u9884\u89c8 \u8bbe\u7f6e \u9000\u51fa \u7acb\u5373\u4e0a\u7ebf\u5b9a\u65f6\u4e0a\u7ebf \u7acb\u5373\u4e0a\u7ebf \u535a\u6587\u8bbe\u7f6e \u6dfb\u52a0\u535a\u5ba2\u5206\u7c7b \u66f4\u65b0\u5143\u63cf\u8ff0 \u4f7f\u7528\u81ea\u5b9a\u4e49\u7f51\u5740 \u8bbe\u7f6e\u5bc6\u7801\u4fdd\u5b58 \u5bc6\u7801 \u5bc6\u7801\u9875\u9762\u63d0\u793a(\u9009\u586b)\u4fdd\u5b58 \u80cc\u666f\u989c\u8272 \u6dfb\u52a0\u535a\u5ba2\u6807\u9898 \u6dfb\u52a0\u526f\u6807\u9898 \u7f16\u8f912024\u5e748\u67087\u65e5\u6dfb\u52a0\u535a\u5ba2\u5206\u7c7b + \u786e\u5b9a\uff1f \u63d0\u5347\u90ae\u4ef6\u8425\u9500\u7b56\u7565\u768410\u4e2a\u6709\u6548\u6280\u5de7 + \u786e\u5b9a\uff1f \u00b7\u63a8\u5e7f\u60a8\u7684\u7f51\u7ad9,\u521b\u4e1a,\u00a0\u5c0f\u8d34\u58eb\u548c\u6280\u5de7 + \u786e\u5b9a\uff1f...","pendingCommentsCount":0,"approvedCommentsCount":0},{"id":34476133,"state":"published","settings":{"hideBlogDate":null,"customSlug":"how-to-use-website-live-chat-effectively-to-convert-leads-into-sales"},"title":"Add a Blog Post Titleneww","icon":{"type":"Image","id":"77c9b83b-4fd4-413a-b4a4-6f9b0d2a31fa","defaultValue":null,"linkUrl":"","thumbUrl":"!","url":"!","caption":"","description":"","storageKey":"11031790\/567910_999692","storage":"s","storagePrefix":null,"format":"jpg","h":1037,"w":673,"s":180531,"newTarget":true,"focus":null},"headerImage":{"type":"Blog.BackgroundImage","id":"f_f6897bee-6476-4617-9f22-6c57a6354c20","url":"\/\/assets.strikingly.com\/static\/backgrounds\/blur\/8.jpg","textColor":"light","sizing":"cover"},"firstContentImage":{"type":"Image","id":"77c9b83b-4fd4-413a-b4a4-6f9b0d2a31fa","defaultValue":null,"linkUrl":"","thumbUrl":"!","url":"!","caption":"","description":"","storageKey":"11031790\/567910_999692","storage":"s","storagePrefix":null,"format":"jpg","h":1037,"w":673,"s":180531,"newTarget":true,"focus":null},"publishedAt":"2023-12-10T18:38:51.607-08:00","updatedAt":"2024-08-05T20:31:53.672-07:00","createdAt":"2023-12-10T18:38:35.884-08:00","publicUrl":"https:\/\/testeve.us.weitie.me\/blog\/how-to-use-website-live-chat-effectively-to-convert-leads-into-sales","relativeUrl":"\/blog\/how-to-use-website-live-chat-effectively-to-convert-leads-into-sales","pinned":false,"allTagsList":["中文中文"],"postedToWechat":false,"longBlurb":"1111\\\\n \\n \u6ca1\u6709\u53d1\u5e03\\n \\n\u00a0\\n \u00a0\\n \\n\u00a0\\n \\n\u00a0\\n \\n\u00a0\\n \\n\u00a0","blurb":"1111\\ \u6ca1\u6709\u53d1\u5e03 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0","pendingCommentsCount":0,"approvedCommentsCount":0},{"id":34143094,"state":"published","settings":{"hideBlogDate":null},"title":"Add a Blog Post Title","icon":{"type":"Blog.BackgroundImage","id":"f_24101e9d-cbf9-4d21-bb4b-b813cc165ea5","url":"\/\/assets.strikingly.com\/static\/backgrounds\/blur\/7.jpg","textColor":"light","sizing":"cover"},"headerImage":{"type":"Blog.BackgroundImage","id":"f_24101e9d-cbf9-4d21-bb4b-b813cc165ea5","url":"\/\/assets.strikingly.com\/static\/backgrounds\/blur\/7.jpg","textColor":"light","sizing":"cover"},"firstContentImage":null,"publishedAt":"2023-12-03T23:27:46.499-08:00","updatedAt":"2023-12-03T23:27:46.506-08:00","createdAt":"2023-12-03T23:27:29.779-08:00","publicUrl":"https:\/\/testeve.us.weitie.me\/blog\/add-a-blog-post-title-27298b53-1740-4773-945e-eb1ee5159813","relativeUrl":"\/blog\/add-a-blog-post-title-27298b53-1740-4773-945e-eb1ee5159813","pinned":false,"allTagsList":[],"postedToWechat":false,"longBlurb":"\\n\u65b0\u7684\u535a\u5ba2","blurb":"\u65b0\u7684\u535a\u5ba2","pendingCommentsCount":0,"approvedCommentsCount":0},{"id":34138748,"state":"published","settings":{"hideBlogDate":null},"title":"Add a Blog Post Title","icon":{"type":"Blog.BackgroundImage","id":null,"url":"\/\/assets.strikingly.com\/static\/backgrounds\/blur\/9.jpg","textColor":"light","sizing":"cover"},"headerImage":{"type":"Blog.BackgroundImage","id":null,"url":"\/\/assets.strikingly.com\/static\/backgrounds\/blur\/9.jpg","textColor":"light","sizing":"cover"},"firstContentImage":null,"publishedAt":"2023-12-03T23:02:46.675-08:00","updatedAt":"2023-12-03T23:02:46.696-08:00","createdAt":"2023-12-03T22:00:11.357-08:00","publicUrl":"https:\/\/testeve.us.weitie.me\/blog\/add-a-blog-post-title","relativeUrl":"\/blog\/add-a-blog-post-title","pinned":false,"allTagsList":["11111","中文中文"],"postedToWechat":false,"longBlurb":"","blurb":"","pendingCommentsCount":0,"approvedCommentsCount":0},{"id":34138764,"state":"published","settings":{"hideBlogDate":null},"title":"subscribe","icon":{"type":"Blog.BackgroundImage","id":"f_011e9844-8171-445e-9e56-074f63f6c793","url":"\/\/assets.strikingly.com\/static\/backgrounds\/blur\/2.jpg","textColor":"light","sizing":"cover"},"headerImage":{"type":"Blog.BackgroundImage","id":"f_011e9844-8171-445e-9e56-074f63f6c793","url":"\/\/assets.strikingly.com\/static\/backgrounds\/blur\/2.jpg","textColor":"light","sizing":"cover"},"firstContentImage":null,"publishedAt":"2023-12-03T22:00:57.923-08:00","updatedAt":"2023-12-03T22:00:57.979-08:00","createdAt":"2023-12-03T22:00:31.794-08:00","publicUrl":"https:\/\/testeve.us.weitie.me\/blog\/subscribe","relativeUrl":"\/blog\/subscribe","pinned":false,"allTagsList":[],"postedToWechat":false,"longBlurb":"\\n11","blurb":"11","pendingCommentsCount":0,"approvedCommentsCount":0}],"wechatMpAccountId":null,"pagination":{"blogPosts":{"currentPage":1,"previousPage":null,"nextPage":null,"perPage":20,"totalPages":1,"totalCount":12}}}}},"ecommerceProductCollection":{"data":{"paginationMeta":{"currentPage":1,"previousPage":null,"nextPage":null,"perPage":20,"totalPages":1,"totalCount":10},"products":[{"id":2832709,"name":"Cotton T-Shirt \u591a\u56fe\u3001\u5408\u96c6\u89c6\u9891\u3002\u53d8\u4f53+\u8be6\u60c5","description":"An example product with 2-level options","picture":[{"url":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_3000,w_2000,f_auto,q_auto\/11031790\/445306_877895.jpg","thumbnailUrl":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/11031790\/445306_877895.jpg","mediaType":"image"},{"url":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_3000,w_2000,f_auto,q_auto\/11031790\/567910_999692.jpg","thumbnailUrl":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/11031790\/567910_999692.jpg","mediaType":"image"},{"url":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_3000,w_2000,f_auto,q_auto\/11031790\/375572_384958.jpg","thumbnailUrl":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/11031790\/375572_384958.jpg","mediaType":"image"},{"url":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_3000,w_2000,f_auto,q_auto\/11031790\/939738_88435.png","thumbnailUrl":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/11031790\/939738_88435.png","mediaType":"image"},{"url":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_3000,w_2000,f_auto,q_auto\/11031790\/760343_108783.png","thumbnailUrl":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/11031790\/760343_108783.png","mediaType":"image"},{"url":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_3000,w_2000,f_auto,q_auto\/11031790\/640679_248670.jpg","thumbnailUrl":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/11031790\/640679_248670.jpg","mediaType":"image"},{"url":"https:\/\/player.bilibili.com\/player.html?bvid=BV1Xj421Q7tU","thumbnailUrl":"","mediaType":"video","videoSrc":"https:\/\/www.bilibili.com\/video\/BV1Xj421Q7tU\/?p=9\u0026spm_id_from=pageDriver\u0026vd_source=e60313d6beaa82a48818f89b1f16ef85"},{"url":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_3000,w_2000,f_auto,q_auto\/11031790\/665738_142183.png","thumbnailUrl":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/11031790\/665738_142183.png","mediaType":"image"}],"detailEnabled":true,"dimensions":{"dimension1":{"name":"Color","options":["Green","Grey"]},"dimension2":{"name":"Size","options":["Small","Large"]}},"status":"visible","productType":"physical","enableCustomSlug":false,"customSlug":null,"enabled":true,"sortWeight":{"all":900,"no":900,"448815":300},"ctaBtn":"","shippingInfo":true,"estimatedDelivery":"","timedShelfDate":null,"posId":null,"isWeightToAll":true,"weightToAll":0,"startDate":null,"endDate":null,"categoryIds":[448815],"categories":["Mens"],"slugPath":"\/store\/products\/cotton-t-shirt","realSales":3,"originalSales":0,"variations":[{"id":4882010,"name":"Green_Small","price":1998,"quantity":10,"originalPrice":2900,"picture":{"url":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/815163_385649.jpeg","thumbnailUrl":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/815163_385649.jpeg","mediaType":"image"},"weight":0.0,"sortNumber":0,"cost":0},{"id":4882011,"name":"Green_Large","price":1998,"quantity":10,"originalPrice":2900,"picture":{"url":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/244080_716593.jpeg","thumbnailUrl":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/244080_716593.jpeg","mediaType":"image"},"weight":0.0,"sortNumber":1,"cost":0},{"id":4882012,"name":"Grey_Small","price":1998,"quantity":7,"originalPrice":2900,"picture":{"url":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/244080_716593.jpeg","thumbnailUrl":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/244080_716593.jpeg","mediaType":"image"},"weight":0.0,"sortNumber":2,"cost":0},{"id":4882013,"name":"Grey_Large","price":1998,"quantity":10,"originalPrice":2900,"picture":{"url":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/244080_716593.jpeg","thumbnailUrl":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/244080_716593.jpeg","mediaType":"image"},"weight":0.0,"sortNumber":3,"cost":0}],"reviewsScore":0,"reviewsCount":0},{"id":2832727,"name":"Cotton T-Shirt \u5408\u96c6\u89c6\u9891","description":"An example product with 2-level options","picture":[{"url":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/815163_385649.jpeg","thumbnailUrl":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/815163_385649.jpeg","mediaType":"image"},{"url":"https:\/\/player.bilibili.com\/player.html?bvid=BV1Xj421Q7tU","thumbnailUrl":"","mediaType":"video","videoSrc":"https:\/\/www.bilibili.com\/video\/BV1Xj421Q7tU\/?t=4.593511\u0026spm_id_from=333.1350.jump_directly"}],"detailEnabled":true,"dimensions":{"dimension1":{"name":"Color","options":["Green","Grey"]},"dimension2":{"name":"Size","options":["Small","Large"]}},"status":"visible","productType":"physical","enableCustomSlug":false,"customSlug":null,"enabled":true,"sortWeight":{"all":900,"no":900,"448815":600},"ctaBtn":"","shippingInfo":true,"estimatedDelivery":"","timedShelfDate":null,"posId":null,"isWeightToAll":true,"weightToAll":0,"startDate":null,"endDate":null,"categoryIds":[448815],"categories":["Mens"],"slugPath":"\/store\/products\/cotton-t-shirt-c3877625-37e1-41ec-8d3a-ef3de6a3ad82","realSales":2,"originalSales":0,"variations":[{"id":4882020,"name":"Green_Small","price":1998,"quantity":10,"originalPrice":2900,"picture":{"url":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/815163_385649.jpeg","thumbnailUrl":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/815163_385649.jpeg","mediaType":"image"},"weight":0.0,"sortNumber":0,"cost":0},{"id":4882021,"name":"Green_Large","price":1998,"quantity":8,"originalPrice":2900,"picture":{"url":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/244080_716593.jpeg","thumbnailUrl":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/244080_716593.jpeg","mediaType":"image"},"weight":0.0,"sortNumber":1,"cost":0},{"id":4882022,"name":"Grey_Small","price":1998,"quantity":10,"originalPrice":2900,"picture":{"url":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/244080_716593.jpeg","thumbnailUrl":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/244080_716593.jpeg","mediaType":"image"},"weight":0.0,"sortNumber":2,"cost":0},{"id":4882023,"name":"Grey_Large","price":1998,"quantity":10,"originalPrice":2900,"picture":{"url":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/244080_716593.jpeg","thumbnailUrl":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/244080_716593.jpeg","mediaType":"image"},"weight":0.0,"sortNumber":3,"cost":0}],"reviewsScore":0,"reviewsCount":0},{"id":2832726,"name":"White T-Shirt","description":"An example product with 1-level options","picture":[{"url":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/815163_385649.jpeg","thumbnailUrl":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/815163_385649.jpeg","mediaType":"image"}],"detailEnabled":true,"dimensions":null,"status":"visible","productType":"physical","enableCustomSlug":null,"customSlug":null,"enabled":true,"sortWeight":{"all":800,"no":800,"448815":500},"ctaBtn":"","shippingInfo":true,"estimatedDelivery":null,"timedShelfDate":null,"posId":null,"isWeightToAll":true,"weightToAll":0.0,"startDate":null,"endDate":null,"categoryIds":[448815],"categories":["Mens"],"slugPath":"\/store\/products\/white-t-shirt-71277818-4df9-49dd-8c3f-3d4d6fdd746c","realSales":0,"originalSales":0,"variations":[{"id":4882018,"name":"Small","price":1998,"quantity":10,"originalPrice":2900,"picture":{"url":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/815163_385649.jpeg","thumbnailUrl":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/815163_385649.jpeg","mediaType":"image"},"weight":0.0,"sortNumber":0,"cost":null},{"id":4882019,"name":"Large","price":1998,"quantity":10,"originalPrice":2900,"picture":{"url":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/815163_385649.jpeg","thumbnailUrl":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/815163_385649.jpeg","mediaType":"image"},"weight":0.0,"sortNumber":1,"cost":null}],"reviewsScore":0,"reviewsCount":0},{"id":2832708,"name":"White T-Shirt \u975e\u5408\u96c6","description":"An example product with 1-level options","picture":[{"url":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/815163_385649.jpeg","thumbnailUrl":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/815163_385649.jpeg","mediaType":"image"},{"url":"https:\/\/player.bilibili.com\/player.html?bvid=BV11k4y1W7Hv","thumbnailUrl":"","mediaType":"video","videoSrc":"https:\/\/www.bilibili.com\/video\/BV11k4y1W7Hv\/?t=1.663745\u0026spm_id_from=333.1350.jump_directly\u0026vd_source=e60313d6beaa82a48818f89b1f16ef85"}],"detailEnabled":true,"dimensions":null,"status":"visible","productType":"physical","enableCustomSlug":false,"customSlug":null,"enabled":true,"sortWeight":{"all":800,"no":800,"448815":200},"ctaBtn":"","shippingInfo":true,"estimatedDelivery":"","timedShelfDate":null,"posId":null,"isWeightToAll":true,"weightToAll":0,"startDate":null,"endDate":null,"categoryIds":[448815],"categories":["Mens"],"slugPath":"\/store\/products\/white-t-shirt","realSales":0,"originalSales":0,"variations":[{"id":4882008,"name":"Small","price":1998,"quantity":10,"originalPrice":2900,"picture":{"url":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/815163_385649.jpeg","thumbnailUrl":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/815163_385649.jpeg","mediaType":"image"},"weight":0.0,"sortNumber":0,"cost":0},{"id":4882009,"name":"Large","price":1998,"quantity":10,"originalPrice":2900,"picture":{"url":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/815163_385649.jpeg","thumbnailUrl":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/815163_385649.jpeg","mediaType":"image"},"weight":0.0,"sortNumber":1,"cost":0}],"reviewsScore":0,"reviewsCount":0},{"id":2832707,"name":"Cotton-Linen Scarf","description":"An example product without options","picture":[{"url":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/239721_52786.jpeg","thumbnailUrl":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/239721_52786.jpeg","mediaType":"image"},{"url":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/239721_52786.jpeg","thumbnailUrl":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/239721_52786.jpeg","mediaType":"image"}],"detailEnabled":true,"dimensions":null,"status":"visible","productType":"physical","enableCustomSlug":null,"customSlug":null,"enabled":true,"sortWeight":{"all":700,"no":700,"448815":100,"448816":100,"448817":100},"ctaBtn":"","shippingInfo":false,"estimatedDelivery":null,"timedShelfDate":null,"posId":null,"isWeightToAll":true,"weightToAll":0.0,"startDate":null,"endDate":null,"categoryIds":[448815,448816,448817],"categories":["Mens","Womens","Accessories"],"slugPath":"\/store\/products\/cotton-linen-scarf","realSales":0,"originalSales":0,"variations":[{"id":4882007,"name":"default","price":1000,"quantity":-1,"originalPrice":3600,"picture":{"url":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/239721_52786.jpeg","thumbnailUrl":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/239721_52786.jpeg","mediaType":"image"},"weight":0.0,"sortNumber":0,"cost":null}],"reviewsScore":0,"reviewsCount":0},{"id":2922678,"name":"\u6570\u5b57\u5546\u54c1","description":"","picture":[{"url":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_3000,w_2000,f_auto,q_auto\/11031790\/640679_248670.jpg","thumbnailUrl":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/11031790\/640679_248670.jpg","mediaType":"image"}],"detailEnabled":false,"dimensions":null,"status":"visible","productType":"digital","enableCustomSlug":false,"customSlug":null,"enabled":true,"sortWeight":{"all":700,"no":700},"ctaBtn":null,"shippingInfo":"","estimatedDelivery":"","timedShelfDate":null,"posId":null,"isWeightToAll":true,"weightToAll":0,"startDate":null,"endDate":null,"categoryIds":[],"categories":[],"slugPath":"\/store\/products\/da39a3ee5e6","realSales":0,"originalSales":0,"variations":[{"id":4938103,"name":"default","price":11100,"quantity":-1,"originalPrice":-1,"picture":null,"weight":0.0,"sortNumber":0,"cost":null,"uploadedFiles":[{"id":4170482,"name":"14.1.jpg","url":"\/\/uploads.strikinglycdn.com\/files\/11031790\/1723694488_14.1.jpg?t=17236944942380002","size":323503,"mimetype":"image\/jpeg","description":null,"downloadedCount":0,"createdAt":"2024-08-14T21:01:34.257-07:00","source":"live_site"}]}],"reviewsScore":0,"reviewsCount":0},{"id":2832725,"name":"Cotton-Linen Scarf","description":"An example product without options","picture":[{"url":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/239721_52786.jpeg","thumbnailUrl":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/239721_52786.jpeg","mediaType":"image"},{"url":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/239721_52786.jpeg","thumbnailUrl":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/239721_52786.jpeg","mediaType":"image"}],"detailEnabled":true,"dimensions":null,"status":"visible","productType":"physical","enableCustomSlug":null,"customSlug":null,"enabled":true,"sortWeight":{"all":700,"no":700,"448815":400,"448816":200,"448817":200},"ctaBtn":"","shippingInfo":false,"estimatedDelivery":null,"timedShelfDate":null,"posId":null,"isWeightToAll":true,"weightToAll":0.0,"startDate":null,"endDate":null,"categoryIds":[448815,448816,448817],"categories":["Mens","Womens","Accessories"],"slugPath":"\/store\/products\/cotton-linen-scarf-59b66443-4951-4036-adad-f33c2c64ec1d","realSales":0,"originalSales":0,"variations":[{"id":4882017,"name":"default","price":1000,"quantity":-1,"originalPrice":3600,"picture":{"url":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/239721_52786.jpeg","thumbnailUrl":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/239721_52786.jpeg","mediaType":"image"},"weight":0.0,"sortNumber":0,"cost":null}],"reviewsScore":0,"reviewsCount":0},{"id":2809887,"name":"\u6570\u5b57\u4ea7\u54c1","description":"","picture":[{"url":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_3000,w_2000,f_auto,q_auto\/11031790\/445306_877895.jpg","thumbnailUrl":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/11031790\/445306_877895.jpg","mediaType":"image"}],"detailEnabled":false,"dimensions":null,"status":"visible","productType":"digital","enableCustomSlug":false,"customSlug":null,"enabled":true,"sortWeight":{"all":600,"no":600},"ctaBtn":null,"shippingInfo":false,"estimatedDelivery":"","timedShelfDate":null,"posId":null,"isWeightToAll":true,"weightToAll":0,"startDate":null,"endDate":null,"categoryIds":[],"categories":[],"slugPath":"\/store\/products\/6fc46759459","realSales":0,"originalSales":0,"variations":[{"id":4867965,"name":"default","price":10000,"quantity":-1,"originalPrice":-1,"picture":null,"weight":0.0,"sortNumber":0,"cost":0,"uploadedFiles":[{"id":4170482,"name":"14.1.jpg","url":"\/\/uploads.strikinglycdn.com\/files\/11031790\/1723694488_14.1.jpg?t=17236944942380002","size":323503,"mimetype":"image\/jpeg","description":null,"downloadedCount":0,"createdAt":"2024-08-14T21:01:34.257-07:00","source":"live_site"}]}],"reviewsScore":0,"reviewsCount":0},{"id":2734635,"name":"11 1","description":"1212","picture":[{"url":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_3000,w_2000,f_auto,q_auto\/11031790\/423862_995613.png","thumbnailUrl":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/11031790\/423862_995613.png","mediaType":"image"}],"detailEnabled":null,"dimensions":null,"status":"visible","productType":"physical","enableCustomSlug":true,"customSlug":"test","enabled":true,"sortWeight":{"all":500,"no":500,"368134":100},"ctaBtn":null,"shippingInfo":true,"estimatedDelivery":"","timedShelfDate":null,"posId":null,"isWeightToAll":true,"weightToAll":0,"startDate":null,"endDate":null,"categoryIds":[368134],"categories":["111111"],"slugPath":"\/store\/products\/test","realSales":2,"originalSales":0,"variations":[{"id":4812893,"name":"default","price":12000,"quantity":-1,"originalPrice":-1,"picture":null,"weight":0.0,"sortNumber":0,"cost":0}],"reviewsScore":0,"reviewsCount":0},{"id":2388597,"name":"2222","description":"1212","picture":[{"url":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_3000,w_2000,f_auto,q_auto\/11031790\/423862_995613.png","thumbnailUrl":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/11031790\/423862_995613.png","mediaType":"image"}],"detailEnabled":null,"dimensions":null,"status":"visible","productType":"physical","enableCustomSlug":false,"customSlug":null,"enabled":true,"sortWeight":{"all":400,"no":400,"443749":100},"ctaBtn":null,"shippingInfo":true,"estimatedDelivery":"","timedShelfDate":null,"posId":null,"isWeightToAll":true,"weightToAll":0,"startDate":null,"endDate":null,"categoryIds":[443749],"categories":["22222"],"slugPath":"\/store\/products\/2222","realSales":6,"originalSales":0,"variations":[{"id":4409067,"name":"default","price":10000,"quantity":-1,"originalPrice":-1,"picture":null,"weight":0.0,"sortNumber":0,"cost":0}],"reviewsScore":0,"reviewsCount":0}]}},"ecommerceCategoriesProductCollection":{"all":{"paginationMeta":{"currentPage":1,"previousPage":null,"nextPage":null,"perPage":21,"totalPages":1,"totalCount":10},"products":[{"id":2832709,"name":"Cotton T-Shirt \u591a\u56fe\u3001\u5408\u96c6\u89c6\u9891\u3002\u53d8\u4f53+\u8be6\u60c5","description":"An example product with 2-level options","picture":[{"url":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_3000,w_2000,f_auto,q_auto\/11031790\/445306_877895.jpg","thumbnailUrl":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/11031790\/445306_877895.jpg","mediaType":"image"},{"url":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_3000,w_2000,f_auto,q_auto\/11031790\/567910_999692.jpg","thumbnailUrl":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/11031790\/567910_999692.jpg","mediaType":"image"},{"url":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_3000,w_2000,f_auto,q_auto\/11031790\/375572_384958.jpg","thumbnailUrl":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/11031790\/375572_384958.jpg","mediaType":"image"},{"url":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_3000,w_2000,f_auto,q_auto\/11031790\/939738_88435.png","thumbnailUrl":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/11031790\/939738_88435.png","mediaType":"image"},{"url":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_3000,w_2000,f_auto,q_auto\/11031790\/760343_108783.png","thumbnailUrl":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/11031790\/760343_108783.png","mediaType":"image"},{"url":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_3000,w_2000,f_auto,q_auto\/11031790\/640679_248670.jpg","thumbnailUrl":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/11031790\/640679_248670.jpg","mediaType":"image"},{"url":"https:\/\/player.bilibili.com\/player.html?bvid=BV1Xj421Q7tU","thumbnailUrl":"","mediaType":"video","videoSrc":"https:\/\/www.bilibili.com\/video\/BV1Xj421Q7tU\/?p=9\u0026spm_id_from=pageDriver\u0026vd_source=e60313d6beaa82a48818f89b1f16ef85"},{"url":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_3000,w_2000,f_auto,q_auto\/11031790\/665738_142183.png","thumbnailUrl":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/11031790\/665738_142183.png","mediaType":"image"}],"detailEnabled":true,"dimensions":{"dimension1":{"name":"Color","options":["Green","Grey"]},"dimension2":{"name":"Size","options":["Small","Large"]}},"status":"visible","productType":"physical","enableCustomSlug":false,"customSlug":null,"enabled":true,"sortWeight":{"all":900,"no":900,"448815":300},"ctaBtn":"","shippingInfo":true,"estimatedDelivery":"","timedShelfDate":null,"posId":null,"isWeightToAll":true,"weightToAll":0,"startDate":null,"endDate":null,"categoryIds":[448815],"categories":["Mens"],"slugPath":"\/store\/products\/cotton-t-shirt","realSales":3,"originalSales":0,"variations":[{"id":4882010,"name":"Green_Small","price":1998,"quantity":10,"originalPrice":2900,"picture":{"url":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/815163_385649.jpeg","thumbnailUrl":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/815163_385649.jpeg","mediaType":"image"},"weight":0.0,"sortNumber":0,"cost":0},{"id":4882011,"name":"Green_Large","price":1998,"quantity":10,"originalPrice":2900,"picture":{"url":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/244080_716593.jpeg","thumbnailUrl":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/244080_716593.jpeg","mediaType":"image"},"weight":0.0,"sortNumber":1,"cost":0},{"id":4882012,"name":"Grey_Small","price":1998,"quantity":7,"originalPrice":2900,"picture":{"url":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/244080_716593.jpeg","thumbnailUrl":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/244080_716593.jpeg","mediaType":"image"},"weight":0.0,"sortNumber":2,"cost":0},{"id":4882013,"name":"Grey_Large","price":1998,"quantity":10,"originalPrice":2900,"picture":{"url":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/244080_716593.jpeg","thumbnailUrl":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/244080_716593.jpeg","mediaType":"image"},"weight":0.0,"sortNumber":3,"cost":0}],"reviewsScore":0,"reviewsCount":0},{"id":2832727,"name":"Cotton T-Shirt \u5408\u96c6\u89c6\u9891","description":"An example product with 2-level options","picture":[{"url":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/815163_385649.jpeg","thumbnailUrl":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/815163_385649.jpeg","mediaType":"image"},{"url":"https:\/\/player.bilibili.com\/player.html?bvid=BV1Xj421Q7tU","thumbnailUrl":"","mediaType":"video","videoSrc":"https:\/\/www.bilibili.com\/video\/BV1Xj421Q7tU\/?t=4.593511\u0026spm_id_from=333.1350.jump_directly"}],"detailEnabled":true,"dimensions":{"dimension1":{"name":"Color","options":["Green","Grey"]},"dimension2":{"name":"Size","options":["Small","Large"]}},"status":"visible","productType":"physical","enableCustomSlug":false,"customSlug":null,"enabled":true,"sortWeight":{"all":900,"no":900,"448815":600},"ctaBtn":"","shippingInfo":true,"estimatedDelivery":"","timedShelfDate":null,"posId":null,"isWeightToAll":true,"weightToAll":0,"startDate":null,"endDate":null,"categoryIds":[448815],"categories":["Mens"],"slugPath":"\/store\/products\/cotton-t-shirt-c3877625-37e1-41ec-8d3a-ef3de6a3ad82","realSales":2,"originalSales":0,"variations":[{"id":4882020,"name":"Green_Small","price":1998,"quantity":10,"originalPrice":2900,"picture":{"url":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/815163_385649.jpeg","thumbnailUrl":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/815163_385649.jpeg","mediaType":"image"},"weight":0.0,"sortNumber":0,"cost":0},{"id":4882021,"name":"Green_Large","price":1998,"quantity":8,"originalPrice":2900,"picture":{"url":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/244080_716593.jpeg","thumbnailUrl":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/244080_716593.jpeg","mediaType":"image"},"weight":0.0,"sortNumber":1,"cost":0},{"id":4882022,"name":"Grey_Small","price":1998,"quantity":10,"originalPrice":2900,"picture":{"url":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/244080_716593.jpeg","thumbnailUrl":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/244080_716593.jpeg","mediaType":"image"},"weight":0.0,"sortNumber":2,"cost":0},{"id":4882023,"name":"Grey_Large","price":1998,"quantity":10,"originalPrice":2900,"picture":{"url":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/244080_716593.jpeg","thumbnailUrl":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/244080_716593.jpeg","mediaType":"image"},"weight":0.0,"sortNumber":3,"cost":0}],"reviewsScore":0,"reviewsCount":0},{"id":2832708,"name":"White T-Shirt \u975e\u5408\u96c6","description":"An example product with 1-level options","picture":[{"url":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/815163_385649.jpeg","thumbnailUrl":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/815163_385649.jpeg","mediaType":"image"},{"url":"https:\/\/player.bilibili.com\/player.html?bvid=BV11k4y1W7Hv","thumbnailUrl":"","mediaType":"video","videoSrc":"https:\/\/www.bilibili.com\/video\/BV11k4y1W7Hv\/?t=1.663745\u0026spm_id_from=333.1350.jump_directly\u0026vd_source=e60313d6beaa82a48818f89b1f16ef85"}],"detailEnabled":true,"dimensions":null,"status":"visible","productType":"physical","enableCustomSlug":false,"customSlug":null,"enabled":true,"sortWeight":{"all":800,"no":800,"448815":200},"ctaBtn":"","shippingInfo":true,"estimatedDelivery":"","timedShelfDate":null,"posId":null,"isWeightToAll":true,"weightToAll":0,"startDate":null,"endDate":null,"categoryIds":[448815],"categories":["Mens"],"slugPath":"\/store\/products\/white-t-shirt","realSales":0,"originalSales":0,"variations":[{"id":4882008,"name":"Small","price":1998,"quantity":10,"originalPrice":2900,"picture":{"url":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/815163_385649.jpeg","thumbnailUrl":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/815163_385649.jpeg","mediaType":"image"},"weight":0.0,"sortNumber":0,"cost":0},{"id":4882009,"name":"Large","price":1998,"quantity":10,"originalPrice":2900,"picture":{"url":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/815163_385649.jpeg","thumbnailUrl":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/815163_385649.jpeg","mediaType":"image"},"weight":0.0,"sortNumber":1,"cost":0}],"reviewsScore":0,"reviewsCount":0},{"id":2832726,"name":"White T-Shirt","description":"An example product with 1-level options","picture":[{"url":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/815163_385649.jpeg","thumbnailUrl":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/815163_385649.jpeg","mediaType":"image"}],"detailEnabled":true,"dimensions":null,"status":"visible","productType":"physical","enableCustomSlug":null,"customSlug":null,"enabled":true,"sortWeight":{"all":800,"no":800,"448815":500},"ctaBtn":"","shippingInfo":true,"estimatedDelivery":null,"timedShelfDate":null,"posId":null,"isWeightToAll":true,"weightToAll":0.0,"startDate":null,"endDate":null,"categoryIds":[448815],"categories":["Mens"],"slugPath":"\/store\/products\/white-t-shirt-71277818-4df9-49dd-8c3f-3d4d6fdd746c","realSales":0,"originalSales":0,"variations":[{"id":4882018,"name":"Small","price":1998,"quantity":10,"originalPrice":2900,"picture":{"url":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/815163_385649.jpeg","thumbnailUrl":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/815163_385649.jpeg","mediaType":"image"},"weight":0.0,"sortNumber":0,"cost":null},{"id":4882019,"name":"Large","price":1998,"quantity":10,"originalPrice":2900,"picture":{"url":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/815163_385649.jpeg","thumbnailUrl":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/815163_385649.jpeg","mediaType":"image"},"weight":0.0,"sortNumber":1,"cost":null}],"reviewsScore":0,"reviewsCount":0},{"id":2922678,"name":"\u6570\u5b57\u5546\u54c1","description":"","picture":[{"url":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_3000,w_2000,f_auto,q_auto\/11031790\/640679_248670.jpg","thumbnailUrl":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/11031790\/640679_248670.jpg","mediaType":"image"}],"detailEnabled":false,"dimensions":null,"status":"visible","productType":"digital","enableCustomSlug":false,"customSlug":null,"enabled":true,"sortWeight":{"all":700,"no":700},"ctaBtn":null,"shippingInfo":"","estimatedDelivery":"","timedShelfDate":null,"posId":null,"isWeightToAll":true,"weightToAll":0,"startDate":null,"endDate":null,"categoryIds":[],"categories":[],"slugPath":"\/store\/products\/da39a3ee5e6","realSales":0,"originalSales":0,"variations":[{"id":4938103,"name":"default","price":11100,"quantity":-1,"originalPrice":-1,"picture":null,"weight":0.0,"sortNumber":0,"cost":null,"uploadedFiles":[{"id":4170482,"name":"14.1.jpg","url":"\/\/uploads.strikinglycdn.com\/files\/11031790\/1723694488_14.1.jpg?t=17236944942380002","size":323503,"mimetype":"image\/jpeg","description":null,"downloadedCount":0,"createdAt":"2024-08-14T21:01:34.257-07:00","source":"live_site"}]}],"reviewsScore":0,"reviewsCount":0},{"id":2832707,"name":"Cotton-Linen Scarf","description":"An example product without options","picture":[{"url":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/239721_52786.jpeg","thumbnailUrl":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/239721_52786.jpeg","mediaType":"image"},{"url":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/239721_52786.jpeg","thumbnailUrl":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/239721_52786.jpeg","mediaType":"image"}],"detailEnabled":true,"dimensions":null,"status":"visible","productType":"physical","enableCustomSlug":null,"customSlug":null,"enabled":true,"sortWeight":{"all":700,"no":700,"448815":100,"448816":100,"448817":100},"ctaBtn":"","shippingInfo":false,"estimatedDelivery":null,"timedShelfDate":null,"posId":null,"isWeightToAll":true,"weightToAll":0.0,"startDate":null,"endDate":null,"categoryIds":[448815,448816,448817],"categories":["Mens","Womens","Accessories"],"slugPath":"\/store\/products\/cotton-linen-scarf","realSales":0,"originalSales":0,"variations":[{"id":4882007,"name":"default","price":1000,"quantity":-1,"originalPrice":3600,"picture":{"url":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/239721_52786.jpeg","thumbnailUrl":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/239721_52786.jpeg","mediaType":"image"},"weight":0.0,"sortNumber":0,"cost":null}],"reviewsScore":0,"reviewsCount":0},{"id":2832725,"name":"Cotton-Linen Scarf","description":"An example product without options","picture":[{"url":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/239721_52786.jpeg","thumbnailUrl":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/239721_52786.jpeg","mediaType":"image"},{"url":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/239721_52786.jpeg","thumbnailUrl":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/239721_52786.jpeg","mediaType":"image"}],"detailEnabled":true,"dimensions":null,"status":"visible","productType":"physical","enableCustomSlug":null,"customSlug":null,"enabled":true,"sortWeight":{"all":700,"no":700,"448815":400,"448816":200,"448817":200},"ctaBtn":"","shippingInfo":false,"estimatedDelivery":null,"timedShelfDate":null,"posId":null,"isWeightToAll":true,"weightToAll":0.0,"startDate":null,"endDate":null,"categoryIds":[448815,448816,448817],"categories":["Mens","Womens","Accessories"],"slugPath":"\/store\/products\/cotton-linen-scarf-59b66443-4951-4036-adad-f33c2c64ec1d","realSales":0,"originalSales":0,"variations":[{"id":4882017,"name":"default","price":1000,"quantity":-1,"originalPrice":3600,"picture":{"url":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/239721_52786.jpeg","thumbnailUrl":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/239721_52786.jpeg","mediaType":"image"},"weight":0.0,"sortNumber":0,"cost":null}],"reviewsScore":0,"reviewsCount":0},{"id":2809887,"name":"\u6570\u5b57\u4ea7\u54c1","description":"","picture":[{"url":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_3000,w_2000,f_auto,q_auto\/11031790\/445306_877895.jpg","thumbnailUrl":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/11031790\/445306_877895.jpg","mediaType":"image"}],"detailEnabled":false,"dimensions":null,"status":"visible","productType":"digital","enableCustomSlug":false,"customSlug":null,"enabled":true,"sortWeight":{"all":600,"no":600},"ctaBtn":null,"shippingInfo":false,"estimatedDelivery":"","timedShelfDate":null,"posId":null,"isWeightToAll":true,"weightToAll":0,"startDate":null,"endDate":null,"categoryIds":[],"categories":[],"slugPath":"\/store\/products\/6fc46759459","realSales":0,"originalSales":0,"variations":[{"id":4867965,"name":"default","price":10000,"quantity":-1,"originalPrice":-1,"picture":null,"weight":0.0,"sortNumber":0,"cost":0,"uploadedFiles":[{"id":4170482,"name":"14.1.jpg","url":"\/\/uploads.strikinglycdn.com\/files\/11031790\/1723694488_14.1.jpg?t=17236944942380002","size":323503,"mimetype":"image\/jpeg","description":null,"downloadedCount":0,"createdAt":"2024-08-14T21:01:34.257-07:00","source":"live_site"}]}],"reviewsScore":0,"reviewsCount":0},{"id":2734635,"name":"11 1","description":"1212","picture":[{"url":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_3000,w_2000,f_auto,q_auto\/11031790\/423862_995613.png","thumbnailUrl":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/11031790\/423862_995613.png","mediaType":"image"}],"detailEnabled":null,"dimensions":null,"status":"visible","productType":"physical","enableCustomSlug":true,"customSlug":"test","enabled":true,"sortWeight":{"all":500,"no":500,"368134":100},"ctaBtn":null,"shippingInfo":true,"estimatedDelivery":"","timedShelfDate":null,"posId":null,"isWeightToAll":true,"weightToAll":0,"startDate":null,"endDate":null,"categoryIds":[368134],"categories":["111111"],"slugPath":"\/store\/products\/test","realSales":2,"originalSales":0,"variations":[{"id":4812893,"name":"default","price":12000,"quantity":-1,"originalPrice":-1,"picture":null,"weight":0.0,"sortNumber":0,"cost":0}],"reviewsScore":0,"reviewsCount":0},{"id":2388597,"name":"2222","description":"1212","picture":[{"url":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_3000,w_2000,f_auto,q_auto\/11031790\/423862_995613.png","thumbnailUrl":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/11031790\/423862_995613.png","mediaType":"image"}],"detailEnabled":null,"dimensions":null,"status":"visible","productType":"physical","enableCustomSlug":false,"customSlug":null,"enabled":true,"sortWeight":{"all":400,"no":400,"443749":100},"ctaBtn":null,"shippingInfo":true,"estimatedDelivery":"","timedShelfDate":null,"posId":null,"isWeightToAll":true,"weightToAll":0,"startDate":null,"endDate":null,"categoryIds":[443749],"categories":["22222"],"slugPath":"\/store\/products\/2222","realSales":6,"originalSales":0,"variations":[{"id":4409067,"name":"default","price":10000,"quantity":-1,"originalPrice":-1,"picture":null,"weight":0.0,"sortNumber":0,"cost":0}],"reviewsScore":0,"reviewsCount":0}]}},"portfolioCategoriesProductCollection":null,"portfolioProductCollection":{"data":{"paginationMeta":{"currentPage":1,"previousPage":null,"nextPage":2,"perPage":20,"totalPages":103,"totalCount":2055},"products":[{"id":31755948,"name":"new","description":"\u9526\u7ee3\u8bcd\u53e5\u672c\u4ece\u5929\u4e0a\u6765\n\u72c2\u5199\u8bd7\u8bcd\u4e09\u767e\n\u5982\u4f55\u8bf7\u8fd9\u5999\u7b14\u5165\u6211\u68a6\u4e2d\u6765\n\u6211\u9189\u501a\u697c\u53f0\uff0c\u7fc1\u5934\u8bf7\u9152\u6b63\u8c6a\u8fc8\n\u6301\u76cf\u884c\u4eba\u95f4\uff0c\u6e05\u6101\u6211\u521d\u5f00\n\n\u6211\u4e0b\u69bb\u5c71\u6d77\uff0c\u98ce\u82b1\u96ea\u6708\u5165\u6211\u6000\n\u9189\u770b\u5c18\u4e16\u51e0\u5ea6\u5174\u8870\n\u5929\u5730\u6d69\u5927\uff0c\u4e14\u5171\u6e05\u98ce\u660e\u6708\u4e70\n\u5343\u91d1\u6563\u5c3d\uff0c\u6362\u5f97\u4e00\u4e16\u81ea\u5728","picture":[],"detailEnabled":true,"dimensions":null,"status":"visible","productType":"physical","enableCustomSlug":false,"customSlug":null,"enabled":true,"sortWeight":{"all":205500,"no":205600},"ctaBtn":null,"shippingInfo":null,"estimatedDelivery":null,"timedShelfDate":null,"posId":null,"isWeightToAll":null,"weightToAll":null,"startDate":null,"endDate":null,"categoryIds":[],"categories":[],"slugPath":"\/portfolio\/items\/df78c9f138a","realSales":0,"originalSales":0,"variations":[],"reviewsScore":0,"reviewsCount":0},{"id":31741226,"name":"1 \u53d8\u4f53+\u8be6\u60c5 1","description":"\u9526\u7ee3\u8bcd\u53e5\u672c\u4ece\u5929\u4e0a\u6765\u72c2\u5199\u8bd7\u8bcd\u4e09\u767e\u5982\u4f55\u8bf7\u8fd9\u5999\u7b14\u5165\u6211\u68a6\u4e2d\u6765\u6211\u9189\u501a\u697c\u53f0\uff0c\u7fc1\u5934\u8bf7\u9152\u6b63\u8c6a\u8fc8\u6301\u76cf\u884c\u4eba\u95f4\uff0c\u6e05\u6101\u6211\u521d\u5f00\u6211\u4e0b\u69bb\u5c71\u6d77\uff0c\u98ce\u82b1\u96ea\u6708\u5165\u6211\u6000\u9189\u770b\u5c18\u4e16\u51e0\u5ea6\u5174\u8870\u5929\u5730\u6d69\u5927\uff0c\u4e14\u5171\u6e05\u98ce\u660e\u6708\u4e70\u5343\u91d1\u6563\u5c3d\uff0c\u6362\u5f97\u4e00\u4e16\u81ea\u5728","picture":[{"url":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_3000,w_2000,f_auto,q_auto\/11031790\/829510_196394.png","thumbnailUrl":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/11031790\/829510_196394.png"}],"detailEnabled":true,"dimensions":null,"status":"visible","productType":"physical","enableCustomSlug":false,"customSlug":null,"enabled":true,"sortWeight":{"all":205400,"no":205500,"3244792":100},"ctaBtn":null,"shippingInfo":null,"estimatedDelivery":null,"timedShelfDate":null,"posId":null,"isWeightToAll":null,"weightToAll":null,"startDate":null,"endDate":null,"categoryIds":[3244792],"categories":["\u53d8\u4f53"],"slugPath":"\/portfolio\/items\/1-1","realSales":0,"originalSales":0,"variations":[{"id":17874493,"name":"123","price":50000,"quantity":-1,"originalPrice":null,"picture":null,"weight":0.0,"sortNumber":0,"cost":null},{"id":17874494,"name":"234","price":50000,"quantity":-1,"originalPrice":null,"picture":null,"weight":0.0,"sortNumber":1,"cost":null},{"id":17874495,"name":"345","price":50000,"quantity":-1,"originalPrice":null,"picture":null,"weight":0.0,"sortNumber":2,"cost":null}],"reviewsScore":0,"reviewsCount":0},{"id":2270629,"name":"1 \u53d8\u4f53+\u8be6\u60c5","description":"\u9526\u7ee3\u8bcd\u53e5\u672c\u4ece\u5929\u4e0a\u6765\u72c2\u5199\u8bd7\u8bcd\u4e09\u767e\u5982\u4f55\u8bf7\u8fd9\u5999\u7b14\u5165\u6211\u68a6\u4e2d\u6765\u6211\u9189\u501a\u697c\u53f0\uff0c\u7fc1\u5934\u8bf7\u9152\u6b63\u8c6a\u8fc8\u6301\u76cf\u884c\u4eba\u95f4\uff0c\u6e05\u6101\u6211\u521d\u5f00\u6211\u4e0b\u69bb\u5c71\u6d77\uff0c\u98ce\u82b1\u96ea\u6708\u5165\u6211\u6000\u9189\u770b\u5c18\u4e16\u51e0\u5ea6\u5174\u8870\u5929\u5730\u6d69\u5927\uff0c\u4e14\u5171\u6e05\u98ce\u660e\u6708\u4e70\u5343\u91d1\u6563\u5c3d\uff0c\u6362\u5f97\u4e00\u4e16\u81ea\u5728","picture":[{"url":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_3000,w_2000,f_auto,q_auto\/11031790\/294866_403853.png","thumbnailUrl":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/11031790\/294866_403853.png"}],"detailEnabled":true,"dimensions":null,"status":"visible","productType":"physical","enableCustomSlug":false,"customSlug":null,"enabled":true,"sortWeight":{"all":205300,"no":205400,"3244792":200},"ctaBtn":null,"shippingInfo":null,"estimatedDelivery":null,"timedShelfDate":null,"posId":null,"isWeightToAll":null,"weightToAll":null,"startDate":null,"endDate":null,"categoryIds":[3244792],"categories":["\u53d8\u4f53"],"slugPath":"\/portfolio\/items\/1-d5f7b180-1afd-4ff8-b96e-9321edbf191c","realSales":0,"originalSales":0,"variations":[{"id":17874490,"name":"123","price":50000,"quantity":-1,"originalPrice":null,"picture":null,"weight":0.0,"sortNumber":0,"cost":null},{"id":17874491,"name":"234","price":50000,"quantity":-1,"originalPrice":null,"picture":null,"weight":0.0,"sortNumber":1,"cost":null},{"id":17874492,"name":"345","price":50000,"quantity":-1,"originalPrice":null,"picture":null,"weight":0.0,"sortNumber":2,"cost":null}],"reviewsScore":0,"reviewsCount":0},{"id":2270628,"name":"12","description":"","picture":[],"detailEnabled":false,"dimensions":null,"status":"visible","productType":"physical","enableCustomSlug":false,"customSlug":null,"enabled":true,"sortWeight":{"all":205200,"no":205300},"ctaBtn":null,"shippingInfo":null,"estimatedDelivery":null,"timedShelfDate":null,"posId":null,"isWeightToAll":null,"weightToAll":null,"startDate":null,"endDate":null,"categoryIds":[],"categories":[],"slugPath":"\/portfolio\/items\/12-4bdd8b2b-048f-44f6-85c7-7600db5d6251","realSales":0,"originalSales":0,"variations":[],"reviewsScore":0,"reviewsCount":0},{"id":2270627,"name":"123456","description":"","picture":[],"detailEnabled":false,"dimensions":null,"status":"visible","productType":"physical","enableCustomSlug":false,"customSlug":null,"enabled":true,"sortWeight":{"all":205100,"no":205200},"ctaBtn":null,"shippingInfo":null,"estimatedDelivery":null,"timedShelfDate":null,"posId":null,"isWeightToAll":null,"weightToAll":null,"startDate":null,"endDate":null,"categoryIds":[],"categories":[],"slugPath":"\/portfolio\/items\/123456-00c513d7-47b1-4529-95f4-5a12789e02ba","realSales":0,"originalSales":0,"variations":[],"reviewsScore":0,"reviewsCount":0},{"id":2270626,"name":"12345","description":"","picture":[],"detailEnabled":false,"dimensions":null,"status":"visible","productType":"physical","enableCustomSlug":false,"customSlug":null,"enabled":true,"sortWeight":{"all":205000,"no":205100},"ctaBtn":null,"shippingInfo":null,"estimatedDelivery":null,"timedShelfDate":null,"posId":null,"isWeightToAll":null,"weightToAll":null,"startDate":null,"endDate":null,"categoryIds":[],"categories":[],"slugPath":"\/portfolio\/items\/12345-52263a9c-8c72-489e-92b2-3d8df520caae","realSales":0,"originalSales":0,"variations":[],"reviewsScore":0,"reviewsCount":0},{"id":2270625,"name":"1","description":"","picture":[],"detailEnabled":false,"dimensions":null,"status":"visible","productType":"physical","enableCustomSlug":false,"customSlug":null,"enabled":true,"sortWeight":{"all":204900,"no":205000},"ctaBtn":null,"shippingInfo":null,"estimatedDelivery":null,"timedShelfDate":null,"posId":null,"isWeightToAll":null,"weightToAll":null,"startDate":null,"endDate":null,"categoryIds":[],"categories":[],"slugPath":"\/portfolio\/items\/1-7fe8e58c-5267-4366-b09c-89f5dc7f5763","realSales":0,"originalSales":0,"variations":[],"reviewsScore":0,"reviewsCount":0},{"id":2270624,"name":"12","description":"","picture":[],"detailEnabled":false,"dimensions":null,"status":"visible","productType":"physical","enableCustomSlug":false,"customSlug":null,"enabled":true,"sortWeight":{"all":204800,"no":204900},"ctaBtn":null,"shippingInfo":null,"estimatedDelivery":null,"timedShelfDate":null,"posId":null,"isWeightToAll":null,"weightToAll":null,"startDate":null,"endDate":null,"categoryIds":[],"categories":[],"slugPath":"\/portfolio\/items\/12-0ed7e292-bcd0-407c-a46d-4a59e1215b1d","realSales":0,"originalSales":0,"variations":[],"reviewsScore":0,"reviewsCount":0},{"id":2270623,"name":"123456","description":"","picture":[],"detailEnabled":false,"dimensions":null,"status":"visible","productType":"physical","enableCustomSlug":false,"customSlug":null,"enabled":true,"sortWeight":{"all":204700,"no":204800},"ctaBtn":null,"shippingInfo":null,"estimatedDelivery":null,"timedShelfDate":null,"posId":null,"isWeightToAll":null,"weightToAll":null,"startDate":null,"endDate":null,"categoryIds":[],"categories":[],"slugPath":"\/portfolio\/items\/123456-dfbe90ba-17d5-4f9f-8f1b-f8ae005c1a0e","realSales":0,"originalSales":0,"variations":[],"reviewsScore":0,"reviewsCount":0},{"id":2270622,"name":"12345","description":"","picture":[],"detailEnabled":false,"dimensions":null,"status":"visible","productType":"physical","enableCustomSlug":false,"customSlug":null,"enabled":true,"sortWeight":{"all":204600,"no":204700},"ctaBtn":null,"shippingInfo":null,"estimatedDelivery":null,"timedShelfDate":null,"posId":null,"isWeightToAll":null,"weightToAll":null,"startDate":null,"endDate":null,"categoryIds":[],"categories":[],"slugPath":"\/portfolio\/items\/12345-d292c368-468e-4089-ab66-840e28edf2c5","realSales":0,"originalSales":0,"variations":[],"reviewsScore":0,"reviewsCount":0},{"id":2270621,"name":"1","description":"","picture":[],"detailEnabled":false,"dimensions":null,"status":"visible","productType":"physical","enableCustomSlug":false,"customSlug":null,"enabled":true,"sortWeight":{"all":204500,"no":204600},"ctaBtn":null,"shippingInfo":null,"estimatedDelivery":null,"timedShelfDate":null,"posId":null,"isWeightToAll":null,"weightToAll":null,"startDate":null,"endDate":null,"categoryIds":[],"categories":[],"slugPath":"\/portfolio\/items\/1-a56f61f6-0b17-447e-9fa5-50edb5474f1e","realSales":0,"originalSales":0,"variations":[],"reviewsScore":0,"reviewsCount":0},{"id":2270620,"name":"12","description":"","picture":[],"detailEnabled":false,"dimensions":null,"status":"visible","productType":"physical","enableCustomSlug":false,"customSlug":null,"enabled":true,"sortWeight":{"all":204400,"no":204500},"ctaBtn":null,"shippingInfo":null,"estimatedDelivery":null,"timedShelfDate":null,"posId":null,"isWeightToAll":null,"weightToAll":null,"startDate":null,"endDate":null,"categoryIds":[],"categories":[],"slugPath":"\/portfolio\/items\/12-e0234dc8-80e3-4dfb-ac71-13e992a50d6f","realSales":0,"originalSales":0,"variations":[],"reviewsScore":0,"reviewsCount":0},{"id":2270619,"name":"123456","description":"","picture":[],"detailEnabled":false,"dimensions":null,"status":"visible","productType":"physical","enableCustomSlug":false,"customSlug":null,"enabled":true,"sortWeight":{"all":204300,"no":204400},"ctaBtn":null,"shippingInfo":null,"estimatedDelivery":null,"timedShelfDate":null,"posId":null,"isWeightToAll":null,"weightToAll":null,"startDate":null,"endDate":null,"categoryIds":[],"categories":[],"slugPath":"\/portfolio\/items\/123456-eb354a84-2b0c-4749-9a3d-83eca9982bc2","realSales":0,"originalSales":0,"variations":[],"reviewsScore":0,"reviewsCount":0},{"id":2270618,"name":"12345","description":"","picture":[],"detailEnabled":false,"dimensions":null,"status":"visible","productType":"physical","enableCustomSlug":false,"customSlug":null,"enabled":true,"sortWeight":{"all":204200,"no":204300},"ctaBtn":null,"shippingInfo":null,"estimatedDelivery":null,"timedShelfDate":null,"posId":null,"isWeightToAll":null,"weightToAll":null,"startDate":null,"endDate":null,"categoryIds":[],"categories":[],"slugPath":"\/portfolio\/items\/12345-986aa60a-5b0e-45c2-b506-ace4a03a1a1f","realSales":0,"originalSales":0,"variations":[],"reviewsScore":0,"reviewsCount":0},{"id":2270617,"name":"1","description":"","picture":[],"detailEnabled":false,"dimensions":null,"status":"visible","productType":"physical","enableCustomSlug":false,"customSlug":null,"enabled":true,"sortWeight":{"all":204100,"no":204200},"ctaBtn":null,"shippingInfo":null,"estimatedDelivery":null,"timedShelfDate":null,"posId":null,"isWeightToAll":null,"weightToAll":null,"startDate":null,"endDate":null,"categoryIds":[],"categories":[],"slugPath":"\/portfolio\/items\/1-2e727752-d8b0-4e90-9c3d-1dde30ff64c0","realSales":0,"originalSales":0,"variations":[],"reviewsScore":0,"reviewsCount":0},{"id":2270616,"name":"12","description":"","picture":[],"detailEnabled":false,"dimensions":null,"status":"visible","productType":"physical","enableCustomSlug":false,"customSlug":null,"enabled":true,"sortWeight":{"all":204000,"no":204100},"ctaBtn":null,"shippingInfo":null,"estimatedDelivery":null,"timedShelfDate":null,"posId":null,"isWeightToAll":null,"weightToAll":null,"startDate":null,"endDate":null,"categoryIds":[],"categories":[],"slugPath":"\/portfolio\/items\/12-296be2c4-1807-4ec7-88bb-0f9252552f8b","realSales":0,"originalSales":0,"variations":[],"reviewsScore":0,"reviewsCount":0},{"id":2270615,"name":"123456","description":"","picture":[],"detailEnabled":false,"dimensions":null,"status":"visible","productType":"physical","enableCustomSlug":false,"customSlug":null,"enabled":true,"sortWeight":{"all":203900,"no":204000},"ctaBtn":null,"shippingInfo":null,"estimatedDelivery":null,"timedShelfDate":null,"posId":null,"isWeightToAll":null,"weightToAll":null,"startDate":null,"endDate":null,"categoryIds":[],"categories":[],"slugPath":"\/portfolio\/items\/123456-e748dd53-2be2-4549-b7d5-6edf02977ebb","realSales":0,"originalSales":0,"variations":[],"reviewsScore":0,"reviewsCount":0},{"id":2270614,"name":"12345","description":"","picture":[],"detailEnabled":false,"dimensions":null,"status":"visible","productType":"physical","enableCustomSlug":false,"customSlug":null,"enabled":true,"sortWeight":{"all":203800,"no":203900},"ctaBtn":null,"shippingInfo":null,"estimatedDelivery":null,"timedShelfDate":null,"posId":null,"isWeightToAll":null,"weightToAll":null,"startDate":null,"endDate":null,"categoryIds":[],"categories":[],"slugPath":"\/portfolio\/items\/12345-862b45c6-aa8f-46f6-8fd4-07670d34e00a","realSales":0,"originalSales":0,"variations":[],"reviewsScore":0,"reviewsCount":0},{"id":2270613,"name":"1","description":"","picture":[],"detailEnabled":false,"dimensions":null,"status":"visible","productType":"physical","enableCustomSlug":false,"customSlug":null,"enabled":true,"sortWeight":{"all":203700,"no":203800},"ctaBtn":null,"shippingInfo":null,"estimatedDelivery":null,"timedShelfDate":null,"posId":null,"isWeightToAll":null,"weightToAll":null,"startDate":null,"endDate":null,"categoryIds":[],"categories":[],"slugPath":"\/portfolio\/items\/1-c44ac0cc-6e76-4fb9-afdd-fbb676ff0ed3","realSales":0,"originalSales":0,"variations":[],"reviewsScore":0,"reviewsCount":0},{"id":2270612,"name":"12","description":"","picture":[],"detailEnabled":false,"dimensions":null,"status":"visible","productType":"physical","enableCustomSlug":false,"customSlug":null,"enabled":true,"sortWeight":{"all":203600,"no":203700},"ctaBtn":null,"shippingInfo":null,"estimatedDelivery":null,"timedShelfDate":null,"posId":null,"isWeightToAll":null,"weightToAll":null,"startDate":null,"endDate":null,"categoryIds":[],"categories":[],"slugPath":"\/portfolio\/items\/12-a35274b9-c587-4a14-b1b3-418b282fe14f","realSales":0,"originalSales":0,"variations":[],"reviewsScore":0,"reviewsCount":0}]}},"blogCategoriesPostCollection":{"450015":{"blog":{"id":23484433,"blogSettings":{"previewLayout":1,"mailchimpCode":"","hasSubscriptionCode":false,"hasSubscriptionCodeBefore":null,"showMorePostsWith":null,"usedDisqusCommentsBefore":null,"showRss":null,"showMip":null,"enableComments":true,"lastReadCommentsAt":null,"showAmp":null,"reviewNumber":null,"commentsRequireApproval":null,"showSubscriptionForm":true,"showSubscriptionsTab":null,"headerCustomCode":"","footerCustomCode":"","shortcuts":[],"shortcutsOrder":{},"banner":[],"previewNumber":null,"wechatMomentEnabled":null,"categoryOrder":{"23222":2,"44167":0,"385514":1},"showNav":true,"hideNewBlogTips":true,"positiveOrder":true},"blogPosts":[{"id":34476133,"state":"published","settings":{"hideBlogDate":null,"customSlug":"how-to-use-website-live-chat-effectively-to-convert-leads-into-sales"},"title":"Add a Blog Post Titleneww","icon":{"type":"Image","id":"77c9b83b-4fd4-413a-b4a4-6f9b0d2a31fa","defaultValue":null,"linkUrl":"","thumbUrl":"!","url":"!","caption":"","description":"","storageKey":"11031790\/567910_999692","storage":"s","storagePrefix":null,"format":"jpg","h":1037,"w":673,"s":180531,"newTarget":true,"focus":null},"headerImage":{"type":"Blog.BackgroundImage","id":"f_f6897bee-6476-4617-9f22-6c57a6354c20","url":"\/\/assets.strikingly.com\/static\/backgrounds\/blur\/8.jpg","textColor":"light","sizing":"cover"},"firstContentImage":{"type":"Image","id":"77c9b83b-4fd4-413a-b4a4-6f9b0d2a31fa","defaultValue":null,"linkUrl":"","thumbUrl":"!","url":"!","caption":"","description":"","storageKey":"11031790\/567910_999692","storage":"s","storagePrefix":null,"format":"jpg","h":1037,"w":673,"s":180531,"newTarget":true,"focus":null},"publishedAt":"2023-12-10T18:38:51.607-08:00","updatedAt":"2024-08-05T20:31:53.672-07:00","createdAt":"2023-12-10T18:38:35.884-08:00","publicUrl":"https:\/\/testeve.us.weitie.me\/blog\/how-to-use-website-live-chat-effectively-to-convert-leads-into-sales","relativeUrl":"\/blog\/how-to-use-website-live-chat-effectively-to-convert-leads-into-sales","pinned":false,"allTagsList":["中文中文"],"postedToWechat":false,"longBlurb":"1111\\\\n \\n \u6ca1\u6709\u53d1\u5e03\\n \\n\u00a0\\n \u00a0\\n \\n\u00a0\\n \\n\u00a0\\n \\n\u00a0\\n \\n\u00a0","blurb":"1111\\ \u6ca1\u6709\u53d1\u5e03 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0","pendingCommentsCount":0,"approvedCommentsCount":0},{"id":34138748,"state":"published","settings":{"hideBlogDate":null},"title":"Add a Blog Post Title","icon":{"type":"Blog.BackgroundImage","id":null,"url":"\/\/assets.strikingly.com\/static\/backgrounds\/blur\/9.jpg","textColor":"light","sizing":"cover"},"headerImage":{"type":"Blog.BackgroundImage","id":null,"url":"\/\/assets.strikingly.com\/static\/backgrounds\/blur\/9.jpg","textColor":"light","sizing":"cover"},"firstContentImage":null,"publishedAt":"2023-12-03T23:02:46.675-08:00","updatedAt":"2023-12-03T23:02:46.696-08:00","createdAt":"2023-12-03T22:00:11.357-08:00","publicUrl":"https:\/\/testeve.us.weitie.me\/blog\/add-a-blog-post-title","relativeUrl":"\/blog\/add-a-blog-post-title","pinned":false,"allTagsList":["11111","中文中文"],"postedToWechat":false,"longBlurb":"","blurb":"","pendingCommentsCount":0,"approvedCommentsCount":0}],"wechatMpAccountId":null,"pagination":{"blogPosts":{"currentPage":1,"previousPage":null,"nextPage":null,"perPage":20,"totalPages":1,"totalCount":2}}}}},"ecommerceProductOrderList":{},"ecommerceCategoryCollection":{"data":{"categories":[{"name":"Accessories","id":448817,"page_title":"Accessories - zapier","description":null,"slug":"accessories","products_count":2,"children_categories_count":0,"children_category_order":null,"cover_image":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/239721_52786.jpeg","level":1,"data":{"orderBy":null,"orderList":null,"cover_image":null},"children":[]},{"name":"Womens","id":448816,"page_title":"Womens - zapier","description":null,"slug":"womens","products_count":2,"children_categories_count":0,"children_category_order":null,"cover_image":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/239721_52786.jpeg","level":1,"data":{"orderBy":null,"orderList":null,"cover_image":null},"children":[]},{"name":"Mens","id":448815,"page_title":"Mens - zapier","description":null,"slug":"mens","products_count":6,"children_categories_count":0,"children_category_order":null,"cover_image":"https:\/\/user-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1339460\/239721_52786.jpeg","level":1,"data":{"orderBy":null,"orderList":null,"cover_image":null},"children":[]},{"name":"22222","id":443749,"page_title":"22222 - zapier","description":null,"slug":"22222","products_count":1,"children_categories_count":0,"children_category_order":null,"cover_image":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/11031790\/423862_995613.png","level":1,"data":{"orderBy":null,"orderList":null,"cover_image":null},"children":[]},{"name":"111111","id":368134,"page_title":null,"description":null,"slug":"111111","products_count":1,"children_categories_count":0,"children_category_order":null,"cover_image":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/11031790\/423862_995613.png","level":1,"data":{"orderBy":null,"orderList":null,"cover_image":null},"children":[]}]}},"portfolioCategoryCollection":{"data":{"categories":[{"name":"\u53d8\u4f53","id":3244792,"page_title":"\u53d8\u4f53 - auto","description":null,"slug":"\u53d8\u4f53","products_count":2,"children_categories_count":0,"children_category_order":null,"cover_image":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/11031790\/294866_403853.png","level":1,"data":{"orderBy":null,"orderList":null,"cover_image":null},"children":[]},{"name":"mugs \u0026 cups","id":2267831,"page_title":"mugs \u0026 cups - auto","description":null,"slug":"mugs-cups","products_count":0,"children_categories_count":0,"children_category_order":null,"cover_image":null,"level":1,"data":{"orderBy":null,"orderList":null,"cover_image":null},"children":[]}]}},"blogCategoryCollection":{"data":{"categories":[{"name":"\u4e2d\u6587","count":1,"id":44167,"url":null,"page_title":"\u4e2d\u6587 - auto","description":null,"slug":"\u4e2d\u6587"},{"name":"\u4e2d\u6587\u4e2d\u6587","count":2,"id":450015,"url":null,"page_title":"\u4e2d\u6587\u4e2d\u6587 - auto","description":null,"slug":"\u4e2d\u6587\u4e2d\u6587"},{"name":"11111","count":1,"id":23222,"url":null,"page_title":"11111 - zapier","description":null,"slug":"11111"}]}},"eventTypeCategoryCollection":{"data":{"categories":[]}}};$S.blink={"page":{"logo_url":"https:\/\/static-assets.strikinglycdn.com\/images\/fb_images\/default.png","weitie_url":"http:\/\/cooperative-camel-dxhgvm.weitie.co","description":"","name":"auto"},"conf":{"WECHAT_APP_ID":"wxd009fb01de1ec8b5"}}; //]]>