Orient China Travel  4 Days Chengdu Tour with Giant Panda Volunteer Program (OCT)

Chengdu

$675.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-03

Tour Type: Private Tour

Tour Highlights:

 Visit the highlight sightseeings in Chengdu
 Be a volunteer at giant panda center, have a closer contact with giant pandas
Enjoy the slow and leisure life in Chengdu, just like a local, drinking tea in a local tea hous

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 then transferred to the hotel for check-in. Enjoy your own free time for the rest of the day.

Day 2  Chengdu

Wuhou Temple, Jinli Ancient Street, Jinsha Site Museum, People's Park

Meals: Breakfast, Lunch
Accommodation: In Chengdu

In the morning, we 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. Then walk around Jinli Ancient Street neighboring to Wuhou Temple. Have a hot pot lunch at local restaurant. Hotpot is very popular in Chengdu and is known for its spicy and hot flavor. Although this kind of hotpot is taken as the Chongqing specialty by the locals, it has become famous and popular all over the country for a long time.
Then visit Jinsha Site 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. Continue to People’s Park, where locals relax themselves by singing, dancing, playing cards or chess, ect. You could have a cup of tea at local tea house and enjoy the leisure time in the park. Drop off at your hotel in the downtown of Chengdu.

Day 3  Chengdu

Take the panda volunteer program at Dujiangyan Giant Panda Protection and Research Center

Meals: Breakfast, Lunch
Accommodation: In Chengdu

Pick up from your hotel in the early morning and drive to the Dujiangyan Giant Panda Protection and Research Center for about 1 hour (80km).

[08:30-09:00]

Giant panda volunteer register Sign a security contract with the giant panda volunteer service center. After that, all the volunteers are offered overalls and gloves. Before work, all the volunteers will be given job safety training and introduction of the job content.

[09:00-10:00]

To be a giant panda breeder. Clean the residual bamboo and their feces. Observe giant pandas’ living environment and state. Wash panda’s house.

[10:00-11:00]

Visit giant panda villa area under the guidance of the instructor.

[11:00-11:30]

Watch the staff feeding the giant pandas with the delicious specially prepared “steamed bun” and fruits

[12:00-13:00]

Have lunch and a short break. All the volunteers will have a lunch with the staffs in the panda protection and research center.

[13:00-14:00]

Watch some science video about giant pandas to know how the human protect giant pandas and live in harmony with pandas.

[14:00-14:50]

Feeding time again. Clean the panda enclosure and watch the staff feeding giant panda with the delicious specially prepared “steamed bun” and fruits

[14:50-15:30]

To be a panda nutritionist. The instructor explains the steamed bun’s formula. Make steamed buns for giant pandas under the instructor’s leading.

[15:30-16:30]

Return the working overalls and see goodbye to the giant pandas and your instructor

Drive back and drop off at your hotel in Chengdu.

Day 4 Departure Chengdu

Transfer service to airport

Meals: Breakfast

Free at leisure before transfer to airport to catch your flight to 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.