🔥 Christmas Promotion 49% OFF🔥Pleated Knit Skirt Set🔥Buy 2 Free Shipping🔥
🔥 Christmas Promotion 49% OFF🔥Pleated Knit Skirt Set🔥Buy 2 Free Shipping🔥
🔥 Christmas Promotion 49% OFF🔥Pleated Knit Skirt Set🔥Buy 2 Free Shipping🔥
🔥 Christmas Promotion 49% OFF🔥Pleated Knit Skirt Set🔥Buy 2 Free Shipping🔥
🔥 Christmas Promotion 49% OFF🔥Pleated Knit Skirt Set🔥Buy 2 Free Shipping🔥
🔥 Christmas Promotion 49% OFF🔥Pleated Knit Skirt Set🔥Buy 2 Free Shipping🔥
🔥 Christmas Promotion 49% OFF🔥Pleated Knit Skirt Set🔥Buy 2 Free Shipping🔥
🔥 Christmas Promotion 49% OFF🔥Pleated Knit Skirt Set🔥Buy 2 Free Shipping🔥
🔥 Christmas Promotion 49% OFF🔥Pleated Knit Skirt Set🔥Buy 2 Free Shipping🔥
🔥 Christmas Promotion 49% OFF🔥Pleated Knit Skirt Set🔥Buy 2 Free Shipping🔥
🔥 Christmas Promotion 49% OFF🔥Pleated Knit Skirt Set🔥Buy 2 Free Shipping🔥
🔥 Christmas Promotion 49% OFF🔥Pleated Knit Skirt Set🔥Buy 2 Free Shipping🔥
🔥 Christmas Promotion 49% OFF🔥Pleated Knit Skirt Set🔥Buy 2 Free Shipping🔥
🔥 Christmas Promotion 49% OFF🔥Pleated Knit Skirt Set🔥Buy 2 Free Shipping🔥
🔥 Christmas Promotion 49% OFF🔥Pleated Knit Skirt Set🔥Buy 2 Free Shipping🔥
🔥 Christmas Promotion 49% OFF🔥Pleated Knit Skirt Set🔥Buy 2 Free Shipping🔥
🔥 Christmas Promotion 49% OFF🔥Pleated Knit Skirt Set🔥Buy 2 Free Shipping🔥
🔥 Christmas Promotion 49% OFF🔥Pleated Knit Skirt Set🔥Buy 2 Free Shipping🔥
🔥 Christmas Promotion 49% OFF🔥Pleated Knit Skirt Set🔥Buy 2 Free Shipping🔥
🔥 Christmas Promotion 49% OFF🔥Pleated Knit Skirt Set🔥Buy 2 Free Shipping🔥
🔥 Christmas Promotion 49% OFF🔥Pleated Knit Skirt Set🔥Buy 2 Free Shipping🔥
🔥 Christmas Promotion 49% OFF🔥Pleated Knit Skirt Set🔥Buy 2 Free Shipping🔥
🔥 Christmas Promotion 49% OFF🔥Pleated Knit Skirt Set🔥Buy 2 Free Shipping🔥
🔥 Christmas Promotion 49% OFF🔥Pleated Knit Skirt Set🔥Buy 2 Free Shipping🔥
🔥 Christmas Promotion 49% OFF🔥Pleated Knit Skirt Set🔥Buy 2 Free Shipping🔥
🔥 Christmas Promotion 49% OFF🔥Pleated Knit Skirt Set🔥Buy 2 Free Shipping🔥
🔥 Christmas Promotion 49% OFF🔥Pleated Knit Skirt Set🔥Buy 2 Free Shipping🔥
🔥 Christmas Promotion 49% OFF🔥Pleated Knit Skirt Set🔥Buy 2 Free Shipping🔥
🔥 Christmas Promotion 49% OFF🔥Pleated Knit Skirt Set🔥Buy 2 Free Shipping🔥
🔥 Christmas Promotion 49% OFF🔥Pleated Knit Skirt Set🔥Buy 2 Free Shipping🔥
🔥 Christmas Promotion 49% OFF🔥Pleated Knit Skirt Set🔥Buy 2 Free Shipping🔥
🔥 Christmas Promotion 49% OFF🔥Pleated Knit Skirt Set🔥Buy 2 Free Shipping🔥

🔥 Christmas Promotion 49% OFF🔥Pleated Knit Skirt Set🔥Buy 2 Free Shipping🔥

Price

$85.98 $42.99
Save $42.99
980 sold
20% OFF 2nd item
30% OFF 3rd item
50% OFF 4th item

color

Please select a color

size

Please select a size

Quantity

It's been recommended by 6.19K people
Free shipping over $49
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);

😊If you are not satisfied with the goods received, please contact us within 15 days after receipt, we will give you the best help!Please don't worry!

🍭Fast refund Guarantee>> Partial or full refund depend on the situation
🚢Shipping>>Worldwide Express Shipping Available.
⏰Handling time>> Priority is given to delivery after payment.
🏆93.7% Of Customers Buy 2 Or More
🔥More than 10,000 female customers bought it

❤️Special Christmas Promotion:Randomly selected 30 lucky customers to get double the order product every day. We will send you an email, please remember to check, thanks for your support❤️

Our favorite knit set of the season is here- this matching pleated sweater and skirt are sure to be an instant hit. Wear as separates or together, this knit tennis skirt is soft, comfortable, and so adorable. This set now comes in all of your favorite colors.

Size & Fit: 

Fit: The fit is true to size, modelis wearing a size small.

Length: The length hits right at the mid-thigh. Length of size small is 15.5 inches long.
Waist: The waist is fitted.
Hips: The hips are relaxed.

Fabric: The fabric features pleated detailing and has a good amount of stretch.

Materials: 42% Nylon, 40% Acrylic, 12% Polyester, 6% Wool.

Note: light blue is our lightest shade of blue, dusty blue is our medium shade of blue, and navy is our darkest shade of blue.

Size Guide

 

NOTE

Due to manual measurements, please allow slight measurement deviations.

Due to the different display and lighting effects, the actual color of the item may be slightly different from the color displayed on the picture.


OUR GUARANTEE!

We believe in 100% customer satisfaction and that is why we are offering all customers a 30 day money-back guarantee! If you are not satisfied with our product, you may return the item within 30 days from the order date for a full refund. If you don't like our product, get a full refund within 30 days, no questions asked.

Buying items online can be a daunting task, so we want you to realize that there is absolute ZERO risk in buying something and trying it out. If you don't like it, no hard feelings we'll make it right.

We have 24/7 Email Support. Please contact us through our email or through our contact form, if you need assistance we are always here for you!👉support@mail.spacehy.com

GUARANTEED SAFE CHECKOUT