Orient China Travel  4 Days Beijing Essence with Stunning Night View of Great Wall (OCT)

Beijing

$489.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-Beijing-09

Tour Type: Private Tour

Tour Highlights:

 Travel to the amazing Forbidden City, the most complete and largest wooden ancient structure complex in the world.

 Enjoy the most picturesque view of Jinshanling Great Wall.

 Be stunned by the glowing shinning night view of Simatai Great Wall.

 To learn to be a traditional Chinese craftman at Gubei Water Town.

Day 1 Arrival Beijing

Hotel pick up and transfer to hotel

Meals: No meals
Accommodation: In Beijing

Arriving in Beijing, the Capital city of China, our professional local guide will meet you at the airport and transfer you to check in at hotel. Enjoy your free at leisure for the rest of the day to overcome the jet leg.

Day 2 Beijing

Temple of Heaven, Hutong walking, Forbidden City

Meals: Breakfast, Lunch
Accommodation: In Beijing

After a leisure breakfast, we will start the Beijing city exploring day. Pick up from hotel lobby and drive forward Temple of Heaven, the existing largest structure for sacrifice to heaven and a place where the emperors prayed for a year of abundance. Except the stunning building structures, you will find many senior citizens congregate to do exercises, such as Taichi, dancing, playing balls, etc. You will find the retired life in China quite different from that in your country. Except doing exercises, seniors in China also spend their retired time on writing on the ground, playing Chinese chess or cards, singing and dancing, having fun with grandchildren, etc.

Then we will walk into an authentic Hutong nearby, without tourists, where you will see a real Hutong life. You find local people, especially senior citizens stand or sit at the doorways talking, or sit in tree shade, playing chess. Walk through the residential community in Hutong, to know more about the housing developments of Beijing. Some vendors will sell local food in Hutong. If you like, you may try the popular pancake--- a local snack breakfast in Beijing. 

Lunch will be arranged at a pleasant local restaurant, trying the authentic Beijing food. 

In the afternoon, avoid the crowds in the morning, visit the best treasure of Forbidden City. the largest and most complete ancient imperial palace in the world. You will explore the glorious palace halls and gardens for more than 2 hours in Forbidden City, learning the legendary story of the emperors and how the royal family lived there. You will be stunned by the numerous old art treasures exhibited in halls. 

Then drive back to hotel, enjoy your leisure time at night. You can also feel free to consult with your local guide about the local restaurant, night activities, etc. She or he will be delighted to offer your useful advice. 

Day 3 Beijing

Jinshanling Great Wall, Gubei Water Town, Night View of Simatai Great Wall

Meals: Breakfast, Lunch
Accommodation: At Gubei Water Town

In the morning, we will check out from hotel and start our trip to visit China Great Wall--- Jinshanling Section, the most magnificent section of the Great Wall. The Jinshanling Great Wall is the quite essential and most beautiful part of the Great Wall, which is also known as the “paradise for photographers”. The barrier walls, text bricks and stone blocking horses are the three must-sees of the Jinshanling Great Wal. Our expert local guide will show you a wonderful trip of Jinshanling. 

After the tour, we will drive from Jinshanling to Gubei Water Town, which is a resort ancient-Chinese-style town at the foot of Simatai section of the Great Wall. At night, we will have chance to enjoy the magnificent shinning view of the town and the night view of Great Wall

Day 4 Departure Beijing

To learn to be a traditional Chinese craftsman, Drive back to Beijing, Transfer to airport

Meals: Breakfast Lunch

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.