Limited Time Offer - 49% Off✨Asymmetric Draped Jumper
Limited Time Offer - 49% Off✨Asymmetric Draped Jumper
Limited Time Offer - 49% Off✨Asymmetric Draped Jumper
Limited Time Offer - 49% Off✨Asymmetric Draped Jumper
Limited Time Offer - 49% Off✨Asymmetric Draped Jumper
Limited Time Offer - 49% Off✨Asymmetric Draped Jumper
Limited Time Offer - 49% Off✨Asymmetric Draped Jumper
Limited Time Offer - 49% Off✨Asymmetric Draped Jumper
Limited Time Offer - 49% Off✨Asymmetric Draped Jumper
Limited Time Offer - 49% Off✨Asymmetric Draped Jumper
Limited Time Offer - 49% Off✨Asymmetric Draped Jumper
Limited Time Offer - 49% Off✨Asymmetric Draped Jumper
Limited Time Offer - 49% Off✨Asymmetric Draped Jumper
Limited Time Offer - 49% Off✨Asymmetric Draped Jumper
Limited Time Offer - 49% Off✨Asymmetric Draped Jumper
Limited Time Offer - 49% Off✨Asymmetric Draped Jumper
Limited Time Offer - 49% Off✨Asymmetric Draped Jumper
Limited Time Offer - 49% Off✨Asymmetric Draped Jumper
Limited Time Offer - 49% Off✨Asymmetric Draped Jumper
Limited Time Offer - 49% Off✨Asymmetric Draped Jumper
Limited Time Offer - 49% Off✨Asymmetric Draped Jumper
Limited Time Offer - 49% Off✨Asymmetric Draped Jumper
Limited Time Offer - 49% Off✨Asymmetric Draped Jumper
Limited Time Offer - 49% Off✨Asymmetric Draped Jumper
Limited Time Offer - 49% Off✨Asymmetric Draped Jumper
Limited Time Offer - 49% Off✨Asymmetric Draped Jumper
Limited Time Offer - 49% Off✨Asymmetric Draped Jumper
Limited Time Offer - 49% Off✨Asymmetric Draped Jumper
Limited Time Offer - 49% Off✨Asymmetric Draped Jumper
Limited Time Offer - 49% Off✨Asymmetric Draped Jumper
Limited Time Offer - 49% Off✨Asymmetric Draped Jumper
Limited Time Offer - 49% Off✨Asymmetric Draped Jumper
Limited Time Offer - 49% Off✨Asymmetric Draped Jumper
Limited Time Offer - 49% Off✨Asymmetric Draped Jumper
Limited Time Offer - 49% Off✨Asymmetric Draped Jumper
Limited Time Offer - 49% Off✨Asymmetric Draped Jumper
1/36
Limited Time Offer - 49% Off✨Asymmetric Draped Jumper
Limited Time Offer - 49% Off✨Asymmetric Draped Jumper
Limited Time Offer - 49% Off✨Asymmetric Draped Jumper
Limited Time Offer - 49% Off✨Asymmetric Draped Jumper
Limited Time Offer - 49% Off✨Asymmetric Draped Jumper
Limited Time Offer - 49% Off✨Asymmetric Draped Jumper
Limited Time Offer - 49% Off✨Asymmetric Draped Jumper
Limited Time Offer - 49% Off✨Asymmetric Draped Jumper
Limited Time Offer - 49% Off✨Asymmetric Draped Jumper
Limited Time Offer - 49% Off✨Asymmetric Draped Jumper
Limited Time Offer - 49% Off✨Asymmetric Draped Jumper
Limited Time Offer - 49% Off✨Asymmetric Draped Jumper
Limited Time Offer - 49% Off✨Asymmetric Draped Jumper
Limited Time Offer - 49% Off✨Asymmetric Draped Jumper
Limited Time Offer - 49% Off✨Asymmetric Draped Jumper
Limited Time Offer - 49% Off✨Asymmetric Draped Jumper
Limited Time Offer - 49% Off✨Asymmetric Draped Jumper
Limited Time Offer - 49% Off✨Asymmetric Draped Jumper
Limited Time Offer - 49% Off✨Asymmetric Draped Jumper
Limited Time Offer - 49% Off✨Asymmetric Draped Jumper
Limited Time Offer - 49% Off✨Asymmetric Draped Jumper
Limited Time Offer - 49% Off✨Asymmetric Draped Jumper
Limited Time Offer - 49% Off✨Asymmetric Draped Jumper
Limited Time Offer - 49% Off✨Asymmetric Draped Jumper
Limited Time Offer - 49% Off✨Asymmetric Draped Jumper
Limited Time Offer - 49% Off✨Asymmetric Draped Jumper
Limited Time Offer - 49% Off✨Asymmetric Draped Jumper
Limited Time Offer - 49% Off✨Asymmetric Draped Jumper
Limited Time Offer - 49% Off✨Asymmetric Draped Jumper
Limited Time Offer - 49% Off✨Asymmetric Draped Jumper
Limited Time Offer - 49% Off✨Asymmetric Draped Jumper
Limited Time Offer - 49% Off✨Asymmetric Draped Jumper
Limited Time Offer - 49% Off✨Asymmetric Draped Jumper
Limited Time Offer - 49% Off✨Asymmetric Draped Jumper
Limited Time Offer - 49% Off✨Asymmetric Draped Jumper
Limited Time Offer - 49% Off✨Asymmetric Draped Jumper
1/36

Limited Time Offer - 49% Off✨Asymmetric Draped Jumper

$35.98
$70.55
Save $34.57
Color🌈:
Please select a color🌈:
Size:
Please select a size:
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);

A Jumper As Ultra Soft As the Clouds!

The solid colour and plain style for this oversized jumper is simple but not boring.You can wear this signature style on the shoulder as an elegant cowl neck or off-the-shoulder, meet your different dressing needs.

undefined

Swing collar design, elegant to show your neck. It can be worn off the shoulders to frame your face, elongate the neck, showing elegant and charming temperament.

The long hemline design hide the belly and hips well. With the drape of the fabric, it effortlessly creates a lazy, lived-in look.

It is breathable and stretchy, extremely soft to the touch. (Knit features open weave stitching at stretch points for flexibility.)

Relaxed fit for freedom of movement and fits most sizes! Extra slouchy and oversized fit make you feel cozy and free. At the same time, cinched cuffs for easy movement.

This oversized jumper top is perfect for all the seasons! Very comfy and looks good either way up (with wide neck/off shoulder or with smaller neck). Can be matched with jeans, shorts, skirts, tights, sneakers, high heels, boots. Dress it up with accessories for a night out or keep it cozy for a relaxed weekend style!

Details that Enhance Sophistication

  • Soft-touch 
  • Swing collar neckline
  • The drape of the fabric
  • Knit features open weave stitching at stretch points

Size:

  • Length: 29.5in / 75cm
  • Bust: 63in / 160cm
  • Sleeve Length: 31.5in / 80cm

Material:

Acrylic and Polyester

Care Tips:

Hand wash/Wash inside out on delicate machine wash cycle 86°F/30°C.
Wash with similar colours only. Dry flat. Store folded.


💐WHY US
We work directly with manufacturers from all over the world to ensure the highest quality of our products. Our dedicated Quality Control department helps us keep this promise!
  • 🔥Our prices are always competitive.
  • 😊We provide awesome customer service.
  • 🏆We offer amazing products along with high quality.
  • 🍭Read reviews from our lovely customers and see why they love us!

🌎 Worldwide Shipping ✈

You may receive your items earlier. Tracking numbers will ALWAYS be sent so you can track your package every step of the way. Remember, good things are worth waiting for!😉

🔒 100% Risk-Free Purchase 🔥

If you buy our product and feel that it is not right for you, don't worry. Just send us a message and we will make it right by offering you a replacement or refund. Our process is 100% simple and risk-free.