Strappy Criss Cross Thigh High Split Maxi Dress Backless
Strappy Criss Cross Thigh High Split Maxi Dress Backless
Strappy Criss Cross Thigh High Split Maxi Dress Backless
Strappy Criss Cross Thigh High Split Maxi Dress Backless
Strappy Criss Cross Thigh High Split Maxi Dress Backless
Strappy Criss Cross Thigh High Split Maxi Dress Backless
Strappy Criss Cross Thigh High Split Maxi Dress Backless
Strappy Criss Cross Thigh High Split Maxi Dress Backless
Strappy Criss Cross Thigh High Split Maxi Dress Backless
Strappy Criss Cross Thigh High Split Maxi Dress Backless
Strappy Criss Cross Thigh High Split Maxi Dress Backless
Strappy Criss Cross Thigh High Split Maxi Dress Backless
Strappy Criss Cross Thigh High Split Maxi Dress Backless
Strappy Criss Cross Thigh High Split Maxi Dress Backless
Strappy Criss Cross Thigh High Split Maxi Dress Backless
Strappy Criss Cross Thigh High Split Maxi Dress Backless
Strappy Criss Cross Thigh High Split Maxi Dress Backless
Strappy Criss Cross Thigh High Split Maxi Dress Backless
Strappy Criss Cross Thigh High Split Maxi Dress Backless
Strappy Criss Cross Thigh High Split Maxi Dress Backless
Strappy Criss Cross Thigh High Split Maxi Dress Backless
Strappy Criss Cross Thigh High Split Maxi Dress Backless
Strappy Criss Cross Thigh High Split Maxi Dress Backless
Strappy Criss Cross Thigh High Split Maxi Dress Backless
Strappy Criss Cross Thigh High Split Maxi Dress Backless
Strappy Criss Cross Thigh High Split Maxi Dress Backless
Strappy Criss Cross Thigh High Split Maxi Dress Backless
Strappy Criss Cross Thigh High Split Maxi Dress Backless
Strappy Criss Cross Thigh High Split Maxi Dress Backless
Strappy Criss Cross Thigh High Split Maxi Dress Backless
Strappy Criss Cross Thigh High Split Maxi Dress Backless
Strappy Criss Cross Thigh High Split Maxi Dress Backless
Strappy Criss Cross Thigh High Split Maxi Dress Backless
Strappy Criss Cross Thigh High Split Maxi Dress Backless
Strappy Criss Cross Thigh High Split Maxi Dress Backless
Strappy Criss Cross Thigh High Split Maxi Dress Backless
Strappy Criss Cross Thigh High Split Maxi Dress Backless
Strappy Criss Cross Thigh High Split Maxi Dress Backless
Strappy Criss Cross Thigh High Split Maxi Dress Backless
Strappy Criss Cross Thigh High Split Maxi Dress Backless
Strappy Criss Cross Thigh High Split Maxi Dress Backless
Strappy Criss Cross Thigh High Split Maxi Dress Backless
Strappy Criss Cross Thigh High Split Maxi Dress Backless
Strappy Criss Cross Thigh High Split Maxi Dress Backless
Strappy Criss Cross Thigh High Split Maxi Dress Backless
Strappy Criss Cross Thigh High Split Maxi Dress Backless
Strappy Criss Cross Thigh High Split Maxi Dress Backless
Strappy Criss Cross Thigh High Split Maxi Dress Backless

Strappy Criss Cross Thigh High Split Maxi Dress Backless

10% Off 1st Order: NEW10

Price

$27.39 $24.99
Save $2.40

size

Please select a size

color - Khaki

Please select a color

Quantity

/** @private {string} */ class SpzCustomAnchorScroll extends SPZ.BaseElement { static deferredMount() { return false; } constructor(element) { super(element); /** @private {Element} */ this.scrollableContainer_ = null; } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } buildCallback() { this.viewport_ = this.getViewport(); this.initActions_(); } setTarget(containerId, targetId) { this.containerId = '#' + containerId; this.targetId = '#' + targetId; } scrollToTarget() { const container = document.querySelector(this.containerId); const target = container.querySelector(this.targetId); const {scrollTop} = container; const eleOffsetTop = this.getOffsetTop_(target, container); this.viewport_ .interpolateScrollIntoView_( container, scrollTop, scrollTop + eleOffsetTop ); } initActions_() { this.registerAction( 'scrollToTarget', (invocation) => this.scrollToTarget(invocation?.caller) ); this.registerAction( 'setTarget', (invocation) => this.setTarget(invocation?.args?.containerId, invocation?.args?.targetId) ); } /** * @param {Element} element * @param {Element} container * @return {number} * @private */ getOffsetTop_(element, container) { if (!element./*OK*/ getClientRects().length) { return 0; } const rect = element./*OK*/ getBoundingClientRect(); if (rect.width || rect.height) { return rect.top - container./*OK*/ getBoundingClientRect().top; } return rect.top; } } SPZ.defineElement('spz-custom-anchor-scroll', SpzCustomAnchorScroll); const STRENGTHEN_TRUST_URL = "/api/strengthen_trust/settings"; class SpzCustomStrengthenTrust extends SPZ.BaseElement { constructor(element) { super(element); this.renderElement_ = null; } isLayoutSupported(layout) { return layout == SPZCore.Layout.CONTAINER; } buildCallback() { this.xhr_ = SPZServices.xhrFor(this.win); const renderId = this.element.getAttribute('render-id'); SPZCore.Dom.waitForChild( document.body, () => !!document.getElementById(renderId), () => { this.renderElement_ = SPZCore.Dom.scopedQuerySelector( document.body, `#${renderId}` ); if (this.renderElement_) { this.render_(); } this.registerAction('track', (invocation) => { this.track_(invocation.args); }); } ); } render_() { this.fetchData_().then((data) => { if (!data) { return; } SPZ.whenApiDefined(this.renderElement_).then((apis) => { apis?.render(data); document.querySelector('#strengthen-trust-render-1539149753700').addEventListener('click',(event)=>{ if(event.target.nodeName == 'A'){ this.track_({type: 'trust_content_click'}); } }) }); }); } track_(data = {}) { const track = window.sa && window.sa.track; if (!track) { return; } track('trust_enhancement_event', data); } parseJSON_(string) { let result = {}; try { result = JSON.parse(string); } catch (e) {} return result; } fetchData_() { return this.xhr_ .fetchJson(STRENGTHEN_TRUST_URL) .then((responseData) => { if (!responseData || !responseData.data) { return null; } const data = responseData.data; const moduleSettings = (data.module_settings || []).reduce((result, moduleSetting) => { return result.concat(Object.assign(moduleSetting, { logos: (moduleSetting.logos || []).map((item) => { return moduleSetting.logos_type == 'custom' ? this.parseJSON_(item) : item; }) })); }, []); return Object.assign(data, { module_settings: moduleSettings, isEditor: window.self !== window.top, }); }); } } SPZ.defineElement('spz-custom-strengthen-trust', SpzCustomStrengthenTrust);

Details:

——Buy 1 Get 1  extra 15% OFF ALL Dresses, Code: SUNIDRESS. Free Shipping $70, Free Exchange & Easy Returns.

——The strappy long dress with split features satin look, criss cross tie back and front, backless, high waisted, high thigh split leg and maxi length. The maxi split dress is quite sexy and charming, fits every body type, for beach wedding guest, parties, proms, cocktails, beaches, homecomings and travel.

Material: Polyester
Color: Khaki / Black / Burgundy / Pink / Silver /Navy
Size Details:
Size S:   Bust 80-85 cm , Waist 63-83 cm, Hip 93 cm, Length 130 cm;
Size M:  Bust 85-90 cm , Waist 68-88 cm, Hip 98 cm, Length 132 cm;
Size L:  Bust 90-95 cm , Waist 73-93 cm, Hip 103 cm, Length 134 cm;
Size XL: Bust 95-100 cm , Waist 78-98 cm, Hip 108 cm, Length 136 cm;
Size 2XL: Bust 100-105 cm , Waist 83-103 cm, Hip 113 cm, Length 138 cm;
Design: Criss cross Back, Strappy, Split Leg, Maxi Long, Slimming and Casual Style.
Weight: approx 0.33 kg
Machine Wash Cold.

1. Don't forget to use the Coupon Code in the below to save your money:

❤️ 10% Off for your first shop | Code: NEW10

❤️ 10% Off on order over $49   | Code: EO10

❤️ 15% Off on order over $79   | Code: EO15

❤️ 25% Off on order over $129 | Code: EO25

❤️ 30% Off on order over $500 | Code: EO30

NOTE: Eomenie provides FREE SHIPPING for all orders over $49. Enjoy your shopping.

2. How to use the codes?

Ⅰ. Enter the code at checkout.

Ⅱ. Click the "Apply" button.

About Shipping:

We ship to United States, Canada, Australia, South America, Europe.

Shipping is FREE on orders of $49 or more. 

Receiving Time = Order Processing Time + Shipping Time

Ⅰ. Order Processing Time

The order processing time depends on the time frame of the quality check, the packaging and also on the stock status of the individual product. It usually takes 1-3 business days to process your order (while some items may need 3-7 business days or longer). You will receive an email notification once your order has been shipped.

Ⅱ. Shipping Rates & Shipping Time

Free Standard Shipping for orders over $49  (8-14 business days)

Standard Shipping: flat rate charge of $5.99 (8-14 business days)

Expedited Shipping: flat rate charge of $12.99 (3-8 business days)

About Return:

Customers have the right to apply for a return within 30 days after the receipt of the product. 

Once we receive your return, please allow 1 to 3 business days to process your returns.

Do I Have To Pay For Shipping When I Return Something?

  • If the product is returned due to the consumer's personal reasons, the return freight shall be borne by the consumer. The specific cost is subject to the courier company you choose.

  • If the goods received are damaged or incorrect due to our reasons, please feel free to reach out at eomenie-us@hotmail.com, our customer service team will provide the solutions for you(refund/return/exchange the goods for free).

SIZE/IN US CUP BUST WAIST HIP TORSO
XS 0-2 30B/C,32A 32.5-33.5 25.5-26.5 35.5-36.5 57-59
S 4-6 32B/C,34B 34.5-35.5 27.5-28.5 37.5-38.5 59-61
M 8-10 34C/D,36B/C 36.5-37.5 29.5-30.5 39.5-40.5 61-63
L 12-14 36D,38B/C/D 39-40.5 32-33.5 42-43.5 63-65
XL 16-18 38DD,40CD 42-44 35-37 45-47 65-67

Note: This guide provides general sizing information only, and fit can vary depending on style and brand. for more specific sizing information on the product, please feel free to contact us for help. More country size measurements, please click here.