5 Days Lijiang Tour to Lugu Lake

Lijiang, Lugu Lake

$893.00
Group Size:  2 ~ 5 pax
Hotel Class:  Economy Hotel★★★
Mouth:  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-Lijiang-02

Tour Type: Private Tour

Tour Highlights:

This 6 Days Lijiang Tour will be a fantastic itinerary incorporating the best of Lijiang and around Lugu Lake at a leisurely pace. Starting from Jade Dragon Snow Mountain then taking the Lijiang Ancient town as a stop for relaxing. For Lugu Lake, you have two days to explore the secret of Moshuo people and its unique matriarchal society. There is also a cruise with a natural and ancient canoe on Lugu Lake so that you could enjoy the beautiful scenery along the lake while listening to pleasant fishing songs by the pretty Moshuo girls.

Best Travel Time: Suitable for the whole year, but April and May, October and November would be the best months for a visit to Jade Dragon Sown Mountain

 

Day 1 Arrival Lijiang

Transfer service to hotel

Meals: No meal
Accommodation: In Lijian

Arrive in Lijiang, a small and quiet city newly constructed outside the ancient town, you will be greeted by your tour guide and transferred to hotel.

Day 2 Lijiang

Yulong Snow Mountain, Glacier Park, Baishui River, Impression Lijiang show, Baisha Village and Murals

Meals: Breakfast, Lunch
Accommodation:In Lijian

After breakfast, drive about 30KM to Ganhaizi Meadow(3100M), you will take the sightseeing bus for a short visiting through the Baishuihe River, take the chairlift up to Glacier Park.

After lunch, you will enjoy the Impression Lijang Ethnic Show directed in Ganhaizi Meadow(3100M). A cultural show demonstrating the traditions and lifestyles of the Naxi, Yi and Bai peoples of the area. The show takes place inside Jade Dragon Sown MountainPark at 3500m in an outdoor theater specifically designed to showcase the mountain which is used as a backdrop. The production itself was designed by Zhang Yimou, Fan Yue and Wang Chaoge, a cast of over 500 people, and a number of horses. In the afternoon, you'll stroll through Baisha Village, which is an enchanting traditional Yunnan village.  


Visit the Baisha Mural about 600 years old, which is one part of the World Cultural Heritage by the UNESCO 1997.

Day 3 LIjiang - Lugu Lake

Drive from Lijiang to Lugu Lake, Lugu Lake, Mosuo Bonfire Party

Meals: Breakfast, Lunch, Dinner
Accommodation: In Lugu Lake
 

Today, you’ll be driven about 200 kilometers (4~5 hours) on the spectacular mountain road to visit the mysterious Lugu Lake, situated on the border of Yunnan Province and Sichuan Province. Lugu Lake is called the mother lake by Mosuo people and this land is considered as “the Kingdom of Women” and “Home of the Matriarchal Tribe”.


Upon arrival, check in your hotel first. After a short rest, you will take a canoe to sail leisurely on the tranquil lake, appreciate the mirror-like lake view and enjoy the whisper of the soft breeze and visit one of the three magical islands of Lugu Lake - Liwubi Island. Go shore excursion to Liwubi Island and explore a lama monastery of yellow sect.

After that, you will enjoy some quiet time to walk along the Luguhu Lake by yourself. Enjoy the sunset wonder of Lugu Lake in Luoshui Village. 

In this evening, enjoy Mosuo Bonfire Party with ethnic singing and dancing performance. You will take part in singing and dancing with Mosuo boys and girls around a big bonfire in the outdoor square.

Day 4 Lugu Lake - Lijiang

Lugu Lake, Mosuo family visit

Meals: Breakfast, Lunch
Accommodation: In Lijiang
 

In the morning, get up early to enjoy beautiful sunrise over Lugu Lake.

Then, continue your memorable trip by visiting around Lugu Lake - appreciating the famous Sweetheart Trees in Nisai Village, exploring the last tribe of Mosuo with only 24 households in Little Luoshui Village. Transfer to visit a Mosuo family to know better about Mosuo people’s matriarchal system, visiting marriage customs, festivals, religion, costumes and daily life.After the tour, be driven back to Lijiang. 

Day 5Departure Lijiang

Transfer service to airport or train station

Meals: Breakfast
Accommodation: In Lijiang
 

Free at leisure before transfer to airport/railway station to catch your departure flight or train. 

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.