Orient China Travel  4 Days Chengdu Best Sichuan China Treavel (OCT)

Chengdu,

$616.00
Group Size:  2 ~ 5 pax
Hotel Class:  Economy 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-01

Tour Type: Private Tour

Tour Highlights:

 Close contact with Giant Panda in its hometown
 Walk into local's life & feel the slow life style by visiting People's Park
 Experience Chengdu tea culture
 Taste Sichuan Food and hot pot
Understand ancient Shu culture in Sichuan after visit Jinsha Ruins Museu

Best Travel Time: Suitable for the whole year, best from April to November.

Day 1 Arrival Chengdu

Transfer service to hotel

Meals: No meal
Accommodation: In Chengdu

Arriving in Chengdu, you will be greeted by the local guide at the airport or railway station. You take the private vehicle to the reserved hotel which is handy-picked by Topchinatravel. With the assistance of the guide, check in the hotel and free at leisure for the rest of the day.

Tips for today:
1.    Have a good rest at hotel to overcome the jet leg if Chengdu is the 1st city you arrive in China.
2.   Chang some money at airport, hotel or local bank with assistance from the guide or you can also withdraw CNY cash from ATM machine directly.

Day 2 Chengdu

Chengdu Research Base of Giant Panda Breeding, Hotpot lunch, Jinsha Ruins Museum

Meals: Breakfast, Lunch
Accommodation: In Chengdu

In the early morning, pick up from your hotel and transfer to visit Chengdu Research Base of Giant Panda Breeding which is about 10 km from Chengdu downtown. 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 ect. 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. After the feeding time, you could choose to visit Panda Museum and watch a 20-minute video at Panda Theatre to learn about the research and breeding of the giant pandas. Then walk along the walkways to watch pandas or other rare animals. Besides, you could also choose to deliver a postcard or other panda souvenir from the Panda Post to yourself or your family and friends. The Panda Post is the only post office who has its own post code 610088 and post date mark.

Have a Chinese lunch with traditional Hotpot at local restaurant. Then visit Jinsha Ruins Museum, which is the museum established in the Jinsha ruins site, and is also a museum to show categories of ancient Shu culture in Sichuan area during Shang and Zhou dynasty.

At night you can enjoy a traditional opera show as an optional activity at night (show time: 20:00-21:30) . Sichuan Opera is characterized by unique solos, refined performance, percussion instrument and talented comedians. In this performance, you can see various unique skills such as the Facing Changing Show which enjoys an international fame for decades, the Hands Shadow Show which only performed by hands rather than actors. Drop off at your hotel in the downtown of Chengdu.

Day 3 Chengdu

Sichuan Cuisine Museum, Chengdu People's Park, Kuan Zhai Alley

Meals: Breakfast, Lunch
Accommodation: In Chengdu

Leisure breakfast in your hotel, we will start today's trip with a hotel pick-up. A trip to visit Sichuan Cuisine Museum is arranged this morning.  At the Museum, you will not only realize the history of Sichuan Cuisine, but also have chance to watch the whole procedure of cooking and practice cooking Sichuan food.

You will have a leisure afternoon in Chengdu downtown. We will bring to Chengdu People’s Park, where you will find many locals dancing, doing exercise, playing card, playing Mahjong, ear-picking, marriage seeking ect in the park. They enjoy the leisure time in the park. If you are interested in, you could try to join in them.
We will take a seat in a tea house, having a cup of tea to feel the local’s leisure life.

After that we will show your way to walk around the famous Kuan Zhai Alley which consists of several ancient streets of Ming and Qing Dynasty. We will have a stop at a Chinese style Starbucks where you could have a cup of coffee to enjoy the leisure afternoon

Day 4 Departure Chengdu

Transfer service to airport

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

Meals: Breakfast

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.