Linen Solid Casual Pants

$23.99
$35.98
Save 33%
Color : Blue
Size : S
Quantity
Discount Tips

Description

SPU:10158677

Pants Length:Long

Edition type:Loosen

Elasticity:Non-Stretch

Thickness:Lightweight

Material:Cotton

Occasion:Date,Daily

Style:Casual,Vacation

Theme:Summer,Spring,Fall

Age:18~24,25~34,35~44,45~54,55~64,65+

Tag:Basic Plain

Color:White,Green,Gray,Blue

Size:S,M,L,XL,XXL,3XL

Fabric:Cotton100%

Size Chart

Size Length Waist Thigh Hip
cm inch cm inch cm inch cm inch
S 105 41.3 68 26.8 65.4 25.7 101 39.8
M 106 41.7 72 28.3 68 26.8 106 41.7
L 107 42.1 76 29.9 70.6 27.8 111 43.7
XL 108 42.5 80 31.5 73.2 28.8 116 45.7
XXL 109 42.9 84 33.1 75.8 29.8 121 47.6
3XL 110 43.3 88 34.6 78.4 30.9 126 49.6
Size Chart
FAQ

Clothes Material?

50% cotton, 50% polyester fiber

Shipping fee:

Worldwide:
Super Saving(12-20Days) US$9.99

Canada: US$11.99

UK: US$8.99

Free Shipping over US$59

When Will My Order Ship?

Orders are usually processed and shipped within 3-5 working days of purchase.

How Long Does Shipping Take?

Shipping times vary as we do ship worldwide from different fulfillment centers based on your location. The average shipping time is between 7 and 20 working days. Your tracking number will be updated 3-7 days after your order has been shipped.

*The delivery time can take longer than the expected date due to the pandemic. The certain delivery time depends on the local shipping company. 

Color difference description

Due to the differences in the display of various equipment screen materials, there will be a certain color difference, 

and we will try to reduce the errors as much as possible, but this problem does not belong to the product quality problem

Size deviation

Because the products are manually measured, there will be an error of about 1-3 cm. Different styles will cause different sizes. Please refer to the physical tank measurement to measure the size table so that you can choose more suitable clothes.

How Do I Cancel An Order?

We are only able to cancel orders within the first 12 hours after the order is placed. After that, the order has most likely been processed and is preparing for shipment or has been shipped. Once this takes effect, it's out of our hands. We apologize for any inconvenience this may cause, but we pride ourselves on prompt service and this includes getting your orders out as fast as possible.

What Is Your Return Policy?

If there’s something wrong with your order (defective product, incorrect order, damaged order, etc.), please contact us within 7 days from receiving your order and we’ll be happy to assist you in reviewing the case and if it is approved we will be sending a replacement. Please do not return anything before we review the case, our customer service team will review the request and will send further instructions. Our store reserves the right to deny any return request.

You will be responsible for paying for your own shipping costs for returning your item. Original shipping charges are not refundable.

* Cosmetics, Lingerie and underwear/shapewear are final sale for hygienic reasons.

What Methods of Payment Do You Accept?

We accept Paypal, Credit Card (Visa, MasterCard, Discover, and American Express), Debit Card, or E-Check (i.e. using your regular Bank Account)      

AFTER-SALES Refunds:

1. AWAITING SHIPPMENT(CANCELLATION):
FULL REFUND IS JUST ACCEPTED WITHIN 24hours AFTER PAYMENT
10-15%SERVICE CHARGED FEE AFTER24-72hours OF PAYMENT
2.IN TRANSIT:NOT ACCEPTED
3. DELIVERED: will be processed within 10– 20 business days after CS contact and the items arrived the warehouse and tested originally. (Note: Refunds will not include the shipping costs once it was shipped.)

If it has been longer than two weeks, please Contact Us.

The refund will be made via the same payment method used to make the purchase.

4.Precautions for return and exchange (Very important)

Any orders that have already been packed or shipped cannot be cancelled.

Any items in the Clearance Sale cannot be changed or returned.

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.