Ladies Summer Comfortable Loose Cotton Linen Long Dress Women's 2025 New Solid Color Short Sleeve Vintage Dress With Pockets college outfits

Sold 324 only 999999+ item(s) left
$40.04
Color:  Black
Size:  S
Quantity
Free worldwideFree shipping on orders over $34
Free returns
Sustainably made
Secure payments
Description
Release Date : Summer 2022
Closure Type : Pullover
Type : regular
Age : Ages 18-35 Years Old
Place Of Origin : China (mainland)
Model Number : women dress
Season : Summer
Neckline : O-Neck
Waistline : Natural
Sleeve Style : regular
Dresses Length : Ankle-Length
Decoration : none
Sleeve Length(cm) : short
Pattern Type : Solid
Silhouette : LOOSE
Style : Casual
Material : COTTON
Gender : WOMEN





Ladies Summer Comfortable Loose Solid Color Short Sleeve Cotton Linen Long Dress


Features:



  • 55% Linen, 45% Cotton


  • Pull On closure


  • Machine Wash


  • Cotton linen long short sleeve dress for women,match leggings for a casual look,Two Styles Short and Long Sleeve,suit for spring,summer,fall seasons.


  • Plus Size Midi Dresses for Women Casual loose hi low hem shirt dress,oversized t shirt dress,fit for most occasions,such as party,work,travel and daily wear


  • Lightweight cotton linen material,make this dress comfortable and breathable,a nice suit for spring,fall,and early winter


  • Size information PLS read the size details on Product Description, not the Size Chart the size option


  • NOTE The gray color is different for long sleeve style and short sleeve style



Product Description:


Season:Summer


Gender:Women


Occasion: Daily


Material:Polyester


Pattern Type:Print


Style:Sexy


Length:Regular


Fit:Fits ture to size


How to wash:Hand wash Cold,Hang or Line Dry


Package Include:1×Women Dress












































Size Bust Sleeve Length
S 93cm/36.61'' 16cm/6.30'' 117cm/46.06''
M 98cm/38.58'' 17cm/6.69'' 119cm/46.85''
L 103cm/40.55'' 18cm/7.09'' 121cm/47.64''
XL 108cm/42.52'' 19cm/7.48'' 123cm/48.43''
XXL 113cm/44.49'' 20cm/7.87'' 125cm/49.21''




































Size:S Bust:93cm/36.61'' Sleeve:16cm/6.30'' Length:117cm/46.06''
Size:M Bust:98cm/38.58'' Sleeve:17cm/6.69'' Length:119cm/46.85''
Size:L Bust:103cm/40.55'' Sleeve:18cm/7.09'' Length:121cm/47.64''
Size:XL Bust:108cm/42.52'' Sleeve:19cm/7.48'' Length:123cm/48.43''
Size:XXL Bust:113cm/44.49'' Sleeve:20cm/7.87'' Length:125cm/49.21''
















































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.