6 Days KunmingDongchuan Red Land Tour

Kunming, Dongchuan

$760.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-Yunnan-04

Tour Type: Private Tour

Tour Highlights:

 Visit the fantastic Dongchuan Red Land

 The fantastic soil which colored by red is an amazing scene for people who love to take photos.

 Dongchuan is more like a palette held by the hand of nature.
 

Best Travel Time: The best time to have a photography tour is between the middle May and the early June, the middle October and November.

Day 1 Arrival Kunming

Transfer service to hotel

Meals: No meals
Accommodation: In Kunming

Arrive in Kunming, the start of this tour. Be met at the airport and transferred to your hotel for a good rest.

Details in the itinerary:
Kunming airport - Kunming downtown: 30 km, 1 hour driving

Day 2 Kunming - Dongchuan

Drive to Dongchuan (3 hours), Dongchuan Red Soil

Meals: Breakfast, Lunch
Accommodation: In Dongchuan

After breakfast in hotel, be transferred to Dongchuan by about 2.5 - 3 hours driving. Upon arrival, visit Dongchuan Red Soil and enjoy photographing there for sunset if the weather is good enough on that day.

Details in the itinerary:
Kunming downtown - Dongchuan Red Soil Area: 170 km, 2.5 - 3 hours driving
Accommodation condition in Dongchuan is not as good as that in Kunming city. Generally we will arrange local guesthouse for staying overnight.

Note: Dongchuan in snow weather will show a different style, but roads may be blocked due to the frozen days

Day 3 Dongchuan - Kunming

Dongchuan Red Soil, Drive to Kunming

Meals: Breakfast, Lunch
Accommodation:In Kunming

In the morning, enjoy your free time at Dongchuan and also the sunrise on the Red field. In the afternoon, drive back to Kunming for around 2.5-3 hours. And have a rest of this day.

Details in the itinerary:
Dongchuan Red Soil Area - Kunming downtown: 170 km, 2.5 - 3 hours driving

Day 4 Kunming

Stone Forest

Meals: Breakfast, Lunch
Accommodation: In Kunming

Depart from your hotel in the morning, you will take a visit to the Stone Forest (2 hours) - famous as the typical karst landform and known as the First Wonder of the World. After lunch in the scenic area (about 1 hour), drive back to the your hotel in Kunming and free of the rest day.

Details in the itinerary:
Kunming downtown - Stone Forest: 87 km, 1.5 - 2 hour driving
The travelling route in Stone Forest is not fixed and you can discuss with your guide to choose the you own travel route.
And if you are interested in Karst landform, another recommended site on the road between Stone Forest and Kunming city is Jiuxiang Scenic Area which is famous for the various karst caves in China.

Day 5 Kunming

Western Hill and Dragon Gate, Village of Ethnic Culture, Qiongzhu Temple

Meals: Breakfast, Lunch
Accommodation:In Kunming
Optional Night Activities: Bridge-crossing Noodle (generally 1 hour)

Today, enjoy your full day city tour starting from a visit to the Western Hill and Dragon Gate (1 hour) - set in mountains well covered by evergreen woods and filled with sweet songs by lovely birds. Continue your trip to Village of Ethnic Culture (1 hour) - managed to represent and exhibit the history, the cultures, the customs and the natural village houses of the 26 nationalities in this province. And then, a visit to Qiongzhu Temple (1 hour) - the first temple dedicated to Zen Buddism in Yunnan. After the tour, drive back to your hotel and have a rest of this day.

Details in the itinerary:
Western Hill and Dragon Gate can let you have a view of Dianchi Lake

Day 6 Departure Kunming

Transfer service to airport

Meals: Breakfast

Say goodbye to Kunming and continue your tour to next city.

Details in the itinerary:
Kunming airport - Kunming downtown: 30 km, 1 hour driving

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.