🎉2024 Fall New Autumn Knitted Long Dress (✨Buy 2 Free Shipping✨)
🎉2024 Fall New Autumn Knitted Long Dress (✨Buy 2 Free Shipping✨)
🎉2024 Fall New Autumn Knitted Long Dress (✨Buy 2 Free Shipping✨)
🎉2024 Fall New Autumn Knitted Long Dress (✨Buy 2 Free Shipping✨)
🎉2024 Fall New Autumn Knitted Long Dress (✨Buy 2 Free Shipping✨)
🎉2024 Fall New Autumn Knitted Long Dress (✨Buy 2 Free Shipping✨)
🎉2024 Fall New Autumn Knitted Long Dress (✨Buy 2 Free Shipping✨)
🎉2024 Fall New Autumn Knitted Long Dress (✨Buy 2 Free Shipping✨)
🎉2024 Fall New Autumn Knitted Long Dress (✨Buy 2 Free Shipping✨)
🎉2024 Fall New Autumn Knitted Long Dress (✨Buy 2 Free Shipping✨)
🎉2024 Fall New Autumn Knitted Long Dress (✨Buy 2 Free Shipping✨)
🎉2024 Fall New Autumn Knitted Long Dress (✨Buy 2 Free Shipping✨)
🎉2024 Fall New Autumn Knitted Long Dress (✨Buy 2 Free Shipping✨)
🎉2024 Fall New Autumn Knitted Long Dress (✨Buy 2 Free Shipping✨)
🎉2024 Fall New Autumn Knitted Long Dress (✨Buy 2 Free Shipping✨)
🎉2024 Fall New Autumn Knitted Long Dress (✨Buy 2 Free Shipping✨)
🎉2024 Fall New Autumn Knitted Long Dress (✨Buy 2 Free Shipping✨)
🎉2024 Fall New Autumn Knitted Long Dress (✨Buy 2 Free Shipping✨)
🎉2024 Fall New Autumn Knitted Long Dress (✨Buy 2 Free Shipping✨)
🎉2024 Fall New Autumn Knitted Long Dress (✨Buy 2 Free Shipping✨)
🎉2024 Fall New Autumn Knitted Long Dress (✨Buy 2 Free Shipping✨)
🎉2024 Fall New Autumn Knitted Long Dress (✨Buy 2 Free Shipping✨)
🎉2024 Fall New Autumn Knitted Long Dress (✨Buy 2 Free Shipping✨)
🎉2024 Fall New Autumn Knitted Long Dress (✨Buy 2 Free Shipping✨)
🎉2024 Fall New Autumn Knitted Long Dress (✨Buy 2 Free Shipping✨)
🎉2024 Fall New Autumn Knitted Long Dress (✨Buy 2 Free Shipping✨)
🎉2024 Fall New Autumn Knitted Long Dress (✨Buy 2 Free Shipping✨)
🎉2024 Fall New Autumn Knitted Long Dress (✨Buy 2 Free Shipping✨)
🎉2024 Fall New Autumn Knitted Long Dress (✨Buy 2 Free Shipping✨)
🎉2024 Fall New Autumn Knitted Long Dress (✨Buy 2 Free Shipping✨)
🎉2024 Fall New Autumn Knitted Long Dress (✨Buy 2 Free Shipping✨)
🎉2024 Fall New Autumn Knitted Long Dress (✨Buy 2 Free Shipping✨)
🎉2024 Fall New Autumn Knitted Long Dress (✨Buy 2 Free Shipping✨)
🎉2024 Fall New Autumn Knitted Long Dress (✨Buy 2 Free Shipping✨)

🎉2024 Fall New Autumn Knitted Long Dress (✨Buy 2 Free Shipping✨)

3599 sold
$37.99
$65.98
-$27.99
Style-V-Neck
Please select a style
Color-White
Please select a color
Size-S
Please select a size
Quantity
Free worldwide shipping
Free returns
Sustainably made
Secure payments
/** @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);

Shipping Policy

• Free shipping on orders $49+
• Please allow up to 1-3 business days for processing before your order ships.

Estimated Delivery Times

Normally, our customers would not be charged with tariffs. However, because of the increasingly strict customs inspection, it happens sometimes.

 

In some cases, VAT or custom duties are levied by your Country, these fees are different from the shipping fee. Please note that this may also apply to retail and wholesale customers. We have no control over these charges and we won’t be able to give you an estimate on what the cost may be, as customs policies and import duties vary widely from country to country.

These fees are under your responsibility as a responsible tax paying citizen of your country.

 

Please contact our customer service for more discounts for your further orders if you have been charged for the custom taxes, thank you.

· Free shipping (10-15Days)   

· Standard shipping (10-15Days)  $6.98

· Priority Shipping (8-12Days)  $9.99

Return Policy

• Spacehy will accept exchanges & returns within 30 days of receiving.
• Clearance products, free gifts, bras & underwear are not eligible for return policy.
• Items must be unworn and unwashed items in their original condition and packaging. We simply ask that you try it on OVER panties or undergarments.
• In most cases, we can only process one return or exchange for each order. For your benefit, please carefully consider all the products you need to return.

Buy 2 items: %5 off

Buy 3 items: %10 off

To take advantage of these amazing offers, just follow these steps:

ADD TO CART: Choose your favorite items from our collection and add at least 2 items to your cart for %5 off, add 3 items for %10 off, or add 3 items for % off %15.

Automatic discount: Discount will be automatically applied at checkout. No promo code required!

MIX AND MATCH: Feel free to mix and match styles, colors and sizes to suit your preferences. All styles from our collection included!

Due to high demand, stock is very limited, so act fast to get your favorite pieces at great prices. happy shopping!

Shipping Worldwide.  

💯Secure payments Via PayPal® and Credit Card.

⭐Fast refund Guarantee.

Limited Stock At This Price.🔥 


The perfect knit dress doesn’t exist... 😍

Introducing the Crew Neck Sleeved Knit Midi Dress by Spacehy 

Created with the finest materials and meticulous craftsmanship, ensuring an unmatched standard of quality.

The fabric, tender to the touch and exceptionally breathable, gently drapes around the body, bestowing an unparalleled sensation of comfort.

  • Knitted Fabric 
  • Long Sleeve Midi Dress
  • Adjustable tie at back of waist
  • Wide rib knit fabrication with stretch
  • Cross stitching in fabrication
  • Heavyweight knit, generous stretch

A timeless design perfect for any occasion

With its adaptability and comfort, this Crew Neck Sleeved Knit Midi Dress can truly be your go-to choice for any occasion, allowing you to effortlessly transition from one event to another while looking and feeling your best.

Whether you are at work, in a club or at an elegant dinner, this dress will make sure to turn heads and grab everyone's attention.

Own Any Room You Walk Into

Our dresses are designed to highlight your curves in all the right places. Our unique fabric keeps the dress stretchy and comfy but maintains that luxurious look.

It will make you feel more confident and empowered than you have felt before, making everyone envious of your beautiful curves.

Details

  • Long sleeve midi dress
  • Knit fabrication
  • Scoop v neckline/High round neckline
  • Lettuce hem detail
  • Wide rib knit fabrication with stretch

Fabric

Cotton

Size Chart

💗Why Us?💗

  • We work directly with manufacturers all over the world to ensure the best quality of our products. We have a Quality Control department which helps us to keep our promise!
  • Price is always competitive.
  • Awesome Customer Service
  • Amazing products along with High Quality
  • Read reviews from our lovely customers

🎁Don't forget to buy some for your family or friends as it's an unique gift idea.❤️❤️❤️

Click on "ADD TO CART" to get yours now! 

⚡️Stock sells fast - get yours today!

 


HOW TO PAY

✅Payments Via PayPal®Debit and CreditCard.

   Add to cart first, and Check out, then select Shipping method and Payment method.

If you checkout with a Debit / Credit Card, just enter your * Card Number* Expiration Date, and * Secure Code.

🌎 Worldwide Shipping ✈  

Delivery typically takes different times based on the different destination. You may receive your items earlier. Tracking Numbers will always be sent so you can track it every step of the way!