5 Days Guilin the Vigor of Guangxi

Guilin, Yangshuo

$708.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-Guilin-08

Tour Type: Private Tour

Tour Highlights:

 Climb to the top of Xianggong Mountain, enjoy the wonderful view of Li River from a different angel. 

 Experience an exciting drive with an all-terrain Vehicle. 

 Take a leisure bamboo rafting on the beautiful Yulong River.

 Challenge rock climbing on the natural cliff of hills in the tranquil countryside of Yangshuo.

Best Travel Time: April to October

 

Day 1 Arrival Guilin

Transfer to hotel

Meals: No meal
Accommodation: In Guilin

Upon arriving in Guilin, a beautiful destination in Southern China for its well-known scenery of waters and hills, you will be greeted and picked up by our local tour guide. Check in hotel and free at leisure for the rest of the day.

You may do a city discovery by yourself, taking scenery and local delicacies safari in the city center by yourself. Dongxixiang and Zhengyang Pedestrian are suitable for a food and culture walk. Then walk along Li River to the entrance of Elephant Trunk Hill Park, then to Shanhu Lake. It is suitable for scenery view. 

Day 2 Guilin - Yangshuo

Li River Cruise, Spelunking

Meals: Breakfast, Lunch on board
Accommodation: In Yangshuo
 

In the morning, check out from your hotel and meet our local guide. Transfer to the pier to check in the luxury Li River cruise from Guilin to Yangshuo. Meandering through valleys, bamboo groves and mysterious Karst rock formations, the cruise will affords you a glimpse of a life far removed from the concrete jungle. 


Upon arriving at Yangshuo, we will check in hotel and deposit of luggage first. Then we will have an exciting time in the countryside. You may hear about Reed Flute Cave or Silver Cave of Guilin, but we will explore the more original and less-traveled cave this afternoon, which is quite different from those well-known caves with colourful lights.

After the teriffic spelunking, we will back to the downtown of Yangshuo. You will enjoy a leisurely time. You may stroll around the West Street which is the oldest street in Yangshuo with a history of more than 1,400 years. It now becomes a place that mixes the eastern and western culture harmoniously. 

Day 3 Yangshuo

Elephant Trunk Hill, Tea Plantation, All-terrain Vehicle Driving Experience

Meals: Breakfast, Lunch
Accommodation: In Yangshuo

In the morning, pick up from the hotel and start our amazing Yangshuo tour. Our first stop is Elephant Trunk Hill. Climbing up to the top of Elephant Trunk Hill, enjoying the beautiful view of the 1st bend of Li River. Looking around, you will see the most magnificent scenery, that peaks arranged in an orderly manner, crystal Li River winding and flowing the hills. The light and shadow, the sea of clouds, the sunrise attract countless photographers and shutterbugs. 

Then we move to Qixianfeng Tea Plantation, where you will have your lunch while sitting in nature with tea trees and rolling green hills.

In the afternoon, we will challenge all-terrain vehicles, driving through the hills, rivers, and countryside. You will be amazed by the exciting experience and the unparalleled landscape. We will overnight in Yangshuo tonight. You have enough free time to stroll around West Street or have a drink in a bar there.

Day 4 Yangshuo

Yulong River Rafting, Rock climbing

Meals: Breakfast, Lunch
Accommodation: In Yangshuo

Wake up naturally, continue the dynamic trip of Yangshuo after a leisure breakfast. Drive directly to Yulong River, the most beautiful and important tributary of Li River, where we will step on a bamboo raft and take a 1-hour leisure rafting in the picturesque scenery. In the afternoon, we will go to experience the popular natural rock climbing at a climbing base in the countryside of Yangshuo, escorted by a professional climbing coach. There are several rock-climbing routes at different levels, catering to different tourists.

Day 5 Yangshuo – Guilin, Departure

Transfer to airport or railway station

Meals: Breakfast

Free at leisure before transfer to airport or railway station directly to your home or 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.