Orient China Travel  4 Days Zhangjiajie Classic Group Tour (OCT)

Zhangjiajie

$410.00
Group Size:  Double Occupancy
Hotel Class:  Comfortable Hotel B(ordinary 4star)
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-Zhangjiajie-06

Tour Type: Group Tour

Day 1 Arrival Zhangjiajie

Transfer to the hotel

Meals: No Meal
Accommodation: 4 Star /4+Star Hotel in Zhangjiajie city ★★★★
 

Take train or flight  to Zhangjiajie, a natural labyrinth located in northwestern Hunan Province with the amazing landscape of China, being famous for being a source of creation of the CGI artist in the Avatar movie. Tonight you will stay in the downtown of Zhangjiajie City.

Day 2 Zhangjiajie

Huangshizhai, Golden Whip Stream

Meals: Hotel breakfast, Lunch
Accommodation: 4 Star /4+Star Hotel in Zhangjiajie city ★★★★

After breakfast at the hotel, then drive for about 40 minutes to Zhangjiajie National Forest Park . Strolling in the big oxygen bar square surrounded by mountains, you suddenly feel that you have stepped into the fairyland of the world, a number of strange peaks and strange stones come into view, a string of rushing water sounds into the ears, stay here, you may wish to take a commemorative photo. Follow the tour guide to take the scenic environmental protection car to the Huangshizhai Cableway Station, take the Huangshizhai cable car and go up, enjoy the beautiful scenery of Huangshizhai, the main attractions are: Liuqi Pavilion, Star Picking Platform, Boudoir Welcome, Five Finger Peak, Front Garden, Overpass Pier, Black Fir Ridge, Fog Sea Golden Turtle, etc. On a sunny day, you can see the distant mountains and close up to the distance, and on a rainy day, the clouds and mist are like a fairyland. Roaming along the Huangshi Village trail, while watching the scenery with the guide, while listening to the tour guide tell the story of the Huangshi Village, this journey takes about 2 hours. After the tour, take the cable cardown the mountain to enjoy Chinese food.

In the afternoon, walk along the Golden Whip Stream, which meanders for about 7 kilometers in the deep mountain valley, full of towering rocks, ancient trees, exotic flowers and plants, rare birds and animals, and the clear water. Follow the tour guide to stroll through, visit Zhu Bajie's back daughter-in-law, Golden Whip Rock, Eagle Whip, Huaguo Mountain, Wenxing Rock, Candle Peak, Double Turtle Exploration Creek, Xiucai Collection,etc., came to the water around the four gates, where we will have a short rest and have a chance to take photos. Then take an eco-friendly car out of the park, check in hotel, and have dinner.

Day 3 Zhangjiajie

Tianzi Mountain Nature Reserve, Yuanjiajie Scenic Area, Bailong Elevator

Meals: Hotel breakfast,  Lunch
Accommodation: 4 Star /4+Star Hotel in Zhangjiajie Wulingyuan ★★★★


After breakfast, then we will take a battery car and take cable car up to the Tianzi Mountain Nature Reserve, where you could see mountains, grand valleys, and original forests. If you are lucky, you may see the marvelous sea of clouds. Visit Tianzi Mountain: Xihai, Helong Park, Yubi Peak, Fairy Flowers, etc., and then take the scenic eco-car for about 40 minutes to Yuanjiajie, and enjoy Chinese food at Avatar Restaurant.

Yuanjiajie Scenic Area  is a highlight of your private Zhangjiajie tour, famous in the world for the Hallelujah Mountains that appeared in the movie Avatar, and the magnificent "The First Stone Bridge in the World". Then take Bailong Elevator dotwn and take shuttle bus to Ten-mile Gallery . You can take a small train to enjoy the beautifual landscape ( train fare is not included). There are unique stones forming different shapes, feeling like a natural landscape painting along the gallery. In the end of day, we will drive you back to your hotel to have a rest.

Day 4 Zhangjiajie, Departure

Tianmenshan Mountain, Tujia Folk Customs Park, Transfer to the airport/train station

Meals: Hotel breakfast, Lunch

After breakfast at hotel, you will visit Tianmen Mountain by round trip cable car. Tianmen Mountain is praised as "the Soul of Zhangjiajie". With 1518 meters above sea level, it is standing at the site of 8 km south away from Zhangjiajie Downtown.Today you can explore the six wonders of Tianmen Mountain,including Tianmen Cave, Tongtian Avenue, The Ghost Plank Road, Glass Sky-walk, Tianmen Temple, etc. After lunch visit Tujia Folk Customs Park, also named Tusi Town. Here, you can realize and understand the folk culture and architecture feature of Tujia Ethnic Group of China Thereafter, visit Dayong Ancient City. Thereafter, you are transferred to Zhangjiajie  airport or railway station for departure to your next city.

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.