Orient China Travel  4 Days Guilin and Yangshuo Life Experience Tour (OCT)

Guilin, Yangshuo

$771.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-Guilin-07

Tour Type: Private Tour

Tour Highlights:

 4 days private Guilin tour package, can be customized

 Take the must-do activity --- Li River Cruise along Li River, feeling walking in the painting

 Step into the countryside of Yangshuo, enjoying and amazing landscape and experiencing local food and tea
 

Best Travel Time: It is suitable to visit Guilin all the year round, but April, May, September and October are the best time.

Day 1 Arrival Guilin

Airport pick-up, Reed Flute Cave, Prince Palace of Ming Dynasty,

Meals: Lunch
Recommended hotel: Guilin Jolie Vue Boutique Hotel ★★★★★

Upon arrival in the morning, our local tour guide will welcome you at the airport. Then you will be moved to the downtown and take a city tour to explore the city. At first, we will go to visit the most popular sightseeing venues: The Reed Flute Cave, named for the special reeds, used for making flute instruments, that grow near the entrance of the cave. The cave is a feast for the eyes. The natural beauty of a profusion of stalactites and stalagmites, stele, stone pillars, stone curtains and stone flowers creating an infinite variety of extraordinary scenes, creatively illuminated, is bound to evoke gasps of admiration.

And then visit The Palace of Ming Dynasty. The prince's palace is laid under the Solitary Beauty Peak which rises in the center of Guilin. It was granted by the founder of Ming Dynasty – Emperor Zhu Yuanzhang. It has been around for more than 600 hundred years and it is the best preserved prince palace of Ming dynasty. It has been named "National Key Cultural Relics Protection Unit". Experience the Origin of Colored Stone Rubbing.

Overnight at Guilin Jolie Vue Boutique Hotel.

Day 2 Guilin - Yangshuo

Li River Cruise, Countryside tour by pedicab ride, Farmer's house visit

Meals: Breakfast, Lunch
Recommended hotel: Green Lotus Hotel Yangshuo ★★★★★

In the morning you will be driven to the Pier for a fantastic Li River Cruise (about 4 hours, lunch served on board). Savor the fairy-tale scenery while cruising down the meandering river to Yangshuo. After disembarkation, be transferred to Fuli ancient town.

In the afternoon, enjoy a relaxing pedicab ride (tuk tuk) to explore the Fuli countryside to see how the authentic rural life is like in Southern China without any embellish. It will Includes a visit to a farmers house, where you are welcomed by a traditional firecracker ceremony.  Ending your tour at Fuli ancient town, to learn about how to make the local specialty-Fuli Paper Fan.

Overnight at Green lotus hotel Yangshuo.

Day 3 Yangshuo

Cooking class, Yulong River Bamboo Rafting, Sound & Light Show --- Impression of Liusanjie

Meals: Breakfast, Lunch
Recommended hotel: Green Lotus Hotel Yangshuo ★★★★★

After a leisure hotel breakfast, we will enjoy a leisurly cooking class at the beginning of today.   the assistant will show you around the local market to learn about the ingredients that we use  for today's lunch.

After lunch, we will drive to the pier at Yulong River, experiencing the Rafting along the river, which will be exciting and interesting for all adults who are the traveling lovers. And the Yulong River always welcomes adventurers with her embrace. At night, we will end the exciting day by enjoying the Sound & Light Show --- Imprssion of Liusanjie.


Day 4 Departure Guilin

Guilin Tea plantation, Transfer to airport/train station

Meals: Breakfast

Before driving to airport for your flight to next stop, we will pay a visit to the Guilin Tea plantation, having a nice tea tasting session. It includes tea peaking and learning about the traditional Chinese tea ceremony.

Free at leisure and you will be transferred to the airport.

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.