Winter Pullover Men Sweater

$59.99
Color:  Apricot
Size:  Chinese Size M
Quantity

Description

RUIHUO Harajuku Knitted Sweater Men Clothing Winter Pullover Men Sweater Fashion Harajuku Clothes Hip Hop 2XL 2022 New Arrivals

Note: We sell Chinese Size. It is about 2-3 size SMALLER than US,UK,AU,EU size.Please choose the size according to our size chart.

Size Information

Asian Size

Chest

Shoulder

Clothes Length

Sleeve Length

CM

INCH

CM

INCH

CM

INCH

CM

INCH

M

92.0

36.2

44.0

17.3

65.0

25.6

62.0

24.4

L

96.0

37.8

45.0

17.7

67.0

26.4

63.0

24.8

XL

102.0

40.2

46.0

18.1

69.0

27.2

64.0

25.2

XXL

106.0

41.7

47.0

18.5

71.0

28.0

65.0

25.6

Hand measurement will have discrepancy of about 1-3cm         1 inch =2.54 cm

 

SIZE CHART

Weight  (kg)

 

50 kg

55 kg

60 kg

65 kg

70 kg

75 kg

 

Height
(cm)

160cm

M

M

L

XL

/

/

5'3''

Height
(inches)

165cm

M

M

L

XL

XXL

XXL

5'4''

170cm

M

M

L

XL

XXL

XXL

5'6'

175cm

M

L

L

XL

XXL

XXL

5'7''

180cm

/

L

XL

XL

XXL

XXL

5'9''

185cm

/

/

XL

XXL

XXL

/

6'1''

190cm

/

/

XL

XXL

XXL

/

6'2''

 

110 lbs

120 lbs

130lbs

143 lbs

155 lbs

165 lbs

 

Weight (lbs)


Shipping:
Your order payment is after successful, we will send your order within 1-3 business days.
We can provide (AliExpress Standard Shipping) (China Post Registered Air Mail) (ePacket) (FedEx UPSDHL) transportation services.
AliExpress Standard Shipping:15-40 days transit time, because of the time needed for different countries is not the same.
China Post Registered Air Mail: 20-50 days transit time.
ePacket: 10-30 days transit time.
FedEx UPSDHL: 3-7 days transit time.
Tariffs, we will announce the gift and declare low price to minimize or avoid customs duties. But we do not assume duties.
 
Sizes & Colors:
1. The sizes are illustrated with specific measurements in the detailed specifications. Please check the specifications before you place an order. Normally the allowable differences in the size are approximately 1- 3cm in measurement. If you find the size of the products do not fit you, you can directly contact us.
2. Differences in color may be caused by some other reasons such as color reflection in the monitor, lighting, background etc. However, if you believe that the item received is wrong color, please contact us to see if a return or refund is possible.
 
Return & Exchange Policy:
After receipt of the goods the buyer can apply for 15 days to return or replacement, please ensure that the goods are not damaged and the original packaging, the buyer need to bear from the freight.
If it is our responsibility, freight borne by us. For example: sending the wrong size, or it is damaged.
If it is the responsibility of the buyer, freight by the buyer. For example: choosing the wrong size and color.
 
Feedback:
Your feedback is very important to us and all buyers. Please take a few seconds to leave a great feedback if you are satisfied with our product and service.
Please contact us before leaving neutral(3 stars) or negative(1- 2 stars) feedback. We will try our best to solve the problem and leave you a happy shopping here. Thank you!
 

 

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.