5 Days Chengdu Xiling Snow Mountain Winter Tour

Chengdu, Xiling Snow Mountain

$973.00
Group Size:  2 ~ 5 pax
Hotel Class:  Comfortable Hotel★★★★
Month:  Dec. ~ Feb.
Quantity
Itinerary Notes

Price includes:

♦ Sharing transfers for group tours

♦ Domestic flight or train tickets based on economy class

♦ Accommodation on twin bed room sharing basis

♦ Driver and English-speaking guide service during tour.

♦ Entrance fee to the attractions listed in the itinerary

♦ Meals as specified in the itinerary.

♦ Government taxes and service charge.

♦ Luggage Transfers between airports and hotels.

♦ Tibet Permit if the itinerary includes any destination of Tibet

Price excludes:

* International airfare or train fare for entry or leaving China

* China entry visa fee

* Any meals, tours and activities not specified in the itinerary.

* Tips for guides, escort, drives, bellman, etc.

* Personal expenses

* Single Room Supplement

* Personal travel insurance

Description

Tour Code: OCT-Chengdu-04

Tour Type: Private Tour

Tour Highlights:

· Have a close contact with the adorable giant pandas

· Enjoy a classic experience of Chengdu's authentic leisurely life

· Relax yourself during the various and funny winter activities at Xiling Snow Mountain

Day 1 Arrival Chengdu

Transfer service to hotel

Meals: No meal
Accommodation: In Chengdu

Arrive in Chengdu, the destination of your trip, you will be met at the airport and transferred to the hotel for check-in. Enjoy your own free time for the rest of the day.

Suggested night activity (on your arrangement):

Stroll around the downtown of Chengdu, you will be amazed by the glittering buildings and bustling night market. Explore the market and challenge the various local snacks and food. 

Day 2 Chengdu

Chengdu Research Base of Giant Panda Breeding, People’s Park, Wuhou Temple, Jinli Ancient Street

Meals: Breakfast, Hot Pot Lunch
Accommodation: In Chengdu

In the early morning, pick up from your hotel and have a visit to Chengdu Research Base of Giant Panda Breeding. It is the most important panda scientific research center, and the dwelling home for more than 100 Giant Pandas. This beautifully laid out park is the home of about 80 giant pandas and some other rare animals, such as red panda, black-necked crane, white crane etc. Walking along the excellently designed walkways, you could have a good angle through the open enclosures of giant pandas.
 

The best time to visit Chengdu Research Base of Giant Panda Breeding is the morning when the pandas are most active in the day. Depart from hotel early in the morning, and arrive at the center before 09:00 am, then you could have chance to see the pandas feeding at around 09:30 am.

Following the pandas, Enjoy the authentic Sichuan food for lunch. In the afternoon, have a leisure trip to walk into locals. Visit People’s Park, where locals relax themselves by singing, dancing, playing cards or chess, etc. You could have a cup of tea at local tea house and enjoy the leisure time in the park.

And then continue our visit to Wuhou Temple. It the largest museum of the site left over from the Three Kingdoms Period, and a very quiet oasis in the city. Walk around Jinli Ancient Street neighboring to Wuhou Temple.

Day 3 Chengdu - Xiling Snow Mountain

Xiling Snow Mountain Ski Experience

Meals: Breakfast, Lunch
Accommodation: At Xiling Snow Mountain Resort

Check out from your hotel in Chengdu, and then drive (2.5 hours) to Xiling Snow Mountain Ski Resort. Xiling Snow Mountain is well-known for the Oriental Alps with pleasant natural view. The Xiling Ski Resort (altitude: 2,200 meters) of 7 square kilometers wide is boasted to be the largest alpine ski resort in Southwestern China.

Take the sightseeing cable car (around 40 minutes) up to the Sun and Moon Viewing Deck (Riyueping), which is about 3260 meters above the sea level to have a winter natural appreciation. You will be totally amazed and immerse yourself in the beautiful winter wonderland. In some great sunny days, you will have a fabulous chance to see Mount Emei and Daxuetang Snow Peak far away.

Down to the foot of the mountain, you can enjoy different kinds of snow entertainment, for example, snow motorcycle, sleigh, skiing etc. You will have a wonderful time with the funny winter activities.

 Please note: all sports on ice and snow like skiing, Snow ATV, snowmobile, sledging, snow cubing, etc. are on your own expense.

Day 4 Xiling Snow Mountain - Chengdu

Xiling Snow Mountain Skiing Experience, Hot Spring Bathing at Huashuiwan Hot Spring Town

Meals: Breakfast, Lunch
Accommodation: In Chengdu

After breakfast, you can release your full enthusiasm and love to the life and nature by continuing the exciting skiing and other activities on ice and snow at Xiling Ski Resort. afterwards, get down the mountain and drive to Huashuiwan Hot Spring town, where we will enjoy a hot spring bathing, driving the coldness away and totally relaxing your body.

And then your guide and driver will escort you back to your hotel in Chengdu. 

Day 5 Departure Chengdu

Transfer service to airport

Meals: Breakfast 

Free at leisure before transfer to airport to catch the flight for your home or next destination.

Service Ends

 

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.