Orient China Travel  3 Days Beijing Hike the Great Wall around Beijing (OCT)

Beijing-Gubeikou-Jinshanling-Wohushan-Jiankou-Mutianyu

$375.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-Hiking-03

Tour Type: Private Tour

Tour Highlights:

 Fine-designed great wall hiking tour route

 Hiking starting from Gubeikou Great Wall, to Jinshanling & Wohushan and from Jiankou to Mutianyu Great Wall.

 The most beautiful sightseeing of Great Wall will amaze you when you take this tour.

Best Travel Time: Good Time to Travel: Apr, May, Sept. Oct

Day 1 Beijing - Gubeikou - Jinshanling

Drive to Gubeikou, Trekking from Gubeikou Great Wall to Jinshanling Great Wall

Meals: Lunch, Dinner
Recommended Hotel:Courtyard Hotel at the Bottom of the Wall
Today’s Hiking Time & Length: 5 hours/10 km in total
Detailed Reading: Hiking Route: Gubeikou-Jinshanling Great Wall

This 3 days Great Wall hiking tour will begin from your hotel in Beijing. Be picked up from your hotel in the early morning and transferred directly to Gubeikou Great Wall. Today’s hiking time will be around 5 hours/10km in total. From Gubeikou to Jinshanling, there is a military area which is forbidden to pass through. So you will bypass this part by going through a lovely village and then backing to the Wall which is belonged to Jinshanling Section. Tonight, you will stay in a courtyard hotel at the bottom of the Wall.

Day 2 Jinshanling - Wohushan - Jiankou

Hiking at Jinshanling Great Wall, Hiking from Wuhushan to Jiankou

Detailed Reading: Hiking Route: Wohushan Great Wall
When finish this hiking, you will be transferred to the bottom of Jiankou Great Wall section. Stay in a local guesthouse to prepare tomorrow’s hiking.
Meals: Breakfast, Lunch, Dinner
Recommended Hotel: Guesthouse at the Bottom of the Wall
Today’s Hiking Time & Length: 4 hours/8 km in total

After the simple breakfast, continue your Jinshanling Great Wall hiking today. You will hike eastward from Jinshanling towards the Simatai Section, the scenery along is extremely fantastic! You will stop at Wuyan Tower on Jinshanling section. This tower ensures you a great view of Simatai Section. Then down to the parking lot at the Jinshanling and enjoy the lunch of today.

The afternoon Great Wall hiking section is Wohushan Great Wall which is needed a short transferring from Jinshanling. Wohushan (Crouching Tiger Mountain) Great Wall hiking may need 2 hours. Wohushan — so named because two distinct peaks resemble a pair of tigers, one looks up and the other bends down. Wohushan Great Wall is famous for its precipitous geography. Hundreds years passed, the old Wall without renovation becomes one of the most representatives for people to appreciate the original Great Wall architectural art.

Day 3 Jiankou - Mutianyu - Beijing

Hiking from Jiankou to Mutianyu, Drive back to Beijing downtown

Meals: Breakfast, Lunch
Today’s Hiking Time & Length: 4-5 hours/10 km in total
Detailed Reading: Hiking Route: Jiankou-Mutianyu Great Wall
Note: Quotation excluded today’s accommodation in Beijing. Tell us in advance if you want to book the hotel from us.

After the breakfast in the guesthouse, you will begin the Jiankou-Mutianyu Great Wall hiking. Be well-known in photographers, Jiankou Great Wall is famous for its “wild taste”. Covered by forest, and without renovation, the rough and broken wall will let you see more clear about the history of the Great Wall, more impressive experience than typical tourists to get.

When finish this hiking on Mutianyu Great Wall, you will enjoy a late lunch at a restaurant near Mutianyu, known for its delicious fish.Then driving back to your hotel in Beijing and finishing this 3-day hiking tour.

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.