New Summer Dress Women Sexy Off the Shoulder Leopard Printed Mini Dress Fashion Slim Pleated A-line Knee Length Dress Vestidos college outfits

Sold 324 only 999999+ item(s) left
$37.54
Color:  Black
Size:  S
Quantity
Free worldwideFree shipping on orders over $34
Free returns
Sustainably made
Secure payments
Description
Material Composition : synthetic fiber
Release Date : Spring 2022
Closure Type : Pullover
Profile Type : H
Fabric Type : Chemical Fiber
Type : regular
Age : Under 18 years old
Place Of Origin : China (mainland)
Model Number : dress
Season : Summer
Neckline : O-Neck
Waistline : Natural
Sleeve Style : Off The Shoulder
Dresses Length : Above Knee, Mini
Decoration : none
Sleeve Length(cm) : short
Pattern Type : Floral
Silhouette : A-LINE
Style : Casual
Material : POLYESTER
Gender : WOMEN

Elasticity : Slight Strech
Fit Type : Regulai Fit


Women Cute Off Shoulder Print Mini Dress Summer Casual Short Sleeve Swing Dress

Please check the size chart before order.If you are not sure the size.Please send message to us.

  • 100% Polyester

  • Elastic closure

  • Hand Wash Only

  • Material: 100% Polyester; New trendy floral print fabric, skin-friendly and breathable

  • Features: Floral print mini dress, off the shoulder design, comfy elastic waist and top, aline swing dress style, above knee length, fashion print pattern and loose style for this pretty dress can hide you inperfection and show you bodyline!

  • Occassions: This off shoulder mini cute dress perfer for every ladies, teen grils and womens. You will always be the attractive one in the date, school, church, street wear, beach, office, stylish evening event, fashion party or casual life.

  • Garment care: Hand wash in cold water recommend, hang dry, low temperature ironing if necessary

  • Size Note: S-2XL please refer to our sizing information in the picture description to choose your size. Thanks for your understanding!


Features

【Material】: It is made high quality material,durable enougth for you daily wearing.

【Features】 :Short Sleeve

【Size】: S-2XL

【Match】: A dress of perfect length just sets off your perfect figure,loose, comfortable.

【Occasions】: This dress is suitable for all kinds of leisure occasions, such as party, date, pregnancy, vacation, street dress, cocktail party, daily life, leisure, travel and even home. It is comfortable, soft, leisure, simple and fashionable.

Size

US

UK

EU

Bust

Shoulder

Waist

Hip

Sleeve

Length

S

6

8

36

90-94cm/35.43-37.01''

37cm/14.57''

70-73cm/27.56-28.74''

94-98cm/37.01-38.58''

8cm/3.15''

94cm/37.01''

M

8

10

38

94-98cm/37.01-38.58''

38cm/14.96''

74-77cm/29.13-30.31''

98-102cm/38.58-40.16''

9cm/3.54''

96cm/37.80''

L

10

12

40

98-102cm/38.58-40.16''

39cm/15.35''

78-81cm/30.71-31.89''

102-106cm/40.16-41.73''

10cm/3.94''

98cm/38.58''

XL

12

14

42

102-106cm/40.16-41.73''

40cm/15.75''

82-85cm/32.28-33.46''

106-110cm/41.73-43.31''

11cm/4.33''

100cm/39.37''

XXL

14

16

44

106-110cm/41.73-43.31''

41cm/16.14''

86-89cm/33.86-35.04''

110-114cm/43.31-44.88''

12cm/4.72''

102cm/40.16''














Customer Reviews

Here are what our customers say.

Write a Review
Customer Reviews
Wow you reached the bottom
Newest
Most liked
Highest ratings
Lowest ratings
×
class SpzCustomFileUpload extends SPZ.BaseElement { constructor(element) { super(element); this.uploadCount_ = 0; this.fileList_ = []; } buildCallback() { this.action = SPZServices.actionServiceForDoc(this.element); this.registerAction('upload', (data) => { this.handleFileUpload_(data.event?.detail?.data || []); }); this.registerAction('delete', (data) => { this.handleFileDelete_(data?.args?.data); }); this.registerAction('preview', (data) => { this.handleFilePreview_(data?.args?.data); }); this.registerAction('limit', (data) => { this.handleFileLimit_(); }); this.registerAction('sizeLimit', (data) => { this.handleFileSizeLimit_(); }); } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } setData_(count, file) { this.uploadCount_ = count; this.fileList_ = file; } handleFileUpload_(data) { data.forEach(i => { if(this.fileList_.some(j => j.url === i.url)) return; this.fileList_.push(i); }) this.uploadCount_++; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileUpload", { count: this.uploadCount_, files: this.fileList_}); if(this.fileList_.length >= 5){ document.querySelector('#review_upload').style.display = 'none'; } if(this.fileList_.length > 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '8px'; } } handleFileDelete_(index) { this.fileList_.splice(index, 1); this.uploadCount_--; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileDelete", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; if(this.fileList_?.length === 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '132px'; } } handleFilePreview_(index) { const finalPreviewData = this.fileList_[index]; const filePreviewModal = document.getElementById('filePreviewModal'); const fullScreenVideo = document.getElementById('fullScreenVideo'); const fullScreenImage = document.getElementById('fullScreenImage'); const previewModalClose = document.getElementById('previewModalClose'); const previewLoading = document.getElementById('previewLoading'); filePreviewModal.style.display = 'block'; previewLoading.style.display = 'flex'; if(finalPreviewData?.type === 'video'){ const media = this.mediaParse_(this.fileList_[index]?.url); fullScreenVideo.addEventListener('canplaythrough', function() { previewLoading.style.display = 'none'; }); fullScreenImage.src = ''; fullScreenImage.style.display = 'none'; fullScreenVideo.style.display = 'block'; fullScreenVideo.src = media.mp4 || ''; } else { fullScreenImage.onload = function() { previewLoading.style.display = 'none'; }; fullScreenVideo.src = ''; fullScreenVideo.style.display = 'none'; fullScreenImage.style.display = 'block'; fullScreenImage.src = finalPreviewData.url; } previewModalClose.addEventListener('click', function() { filePreviewModal.style.display = 'none'; }); } handleFileLimit_() { alert(window.AppReviewsLocale.comment_file_limit || 'please do not upload files more than 5'); this.triggerEvent_("handleFileLimit"); } handleFileSizeLimit_() { alert(window.AppReviewsLocale.comment_file_size_limit || 'File size does not exceed 10M'); } clear(){ this.fileList_ = []; this.uploadCount_ = 0; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleClear", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; } mediaParse_(url) { var result = {}; try { url.replace(/[?&]+([^=&]+)=([^&]*)/gi, function (str, key, value) { try { result[key] = decodeURIComponent(value); } catch (e) { result[key] = value; } }); result.preview_image = url.split('?')[0]; } catch (e) {}; return result; } triggerEvent_(name, data) { const event = SPZUtils.Event.create(this.win, name, data); this.action.trigger(this.element, name, event); } } SPZ.defineElement('spz-custom-file-upload', SpzCustomFileUpload);
The review would not show in product details on storefront since it does not support to.