5 Days Beijing Family Tour

beijing

$635.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-03

Tour Type: Private Tour

Tour Highlights:

 Stunning world wonders in Beijing, like Forbidden City and Great Wall

 Take a visit to Temple of Heaven, finding its difference from the picture

 Walk into a local family in Hutong, get close to Chinese people's life

 Be inpired by the rich and colourful Chinese culture by learning traditional handicraft making
 

Best Travel Time: Suitable for the whole year, best months will be April, May, September and October.

Day 1 Arrival Beijing

Transfer service to hotel

Meals: No meals
Accommodation: In Beijing

Arriving in Beijing, the Capital city of China, you and your family will be warmly greeted by our local tour guide at Beijing Capital Airport and be transferred to check in a family-friendly hotel. Free at leisure for the rest of the day.

Day 2 Beijing

Tian'anmen Square, Forbidden City, Temple of Heaven

Meals: Hotel Breakfast, Lunch
Accommodation: In Beijing

It is a China history and culture discovery tour today. It starts by a short visit to Tian'anmen Square, the World's largest urban square. Then move to the Forbidden City, the largest and most complete ancient imperial palace in the world. You will have a good understand how the royal families live in the palace and how the emperors worked here in the past times. An authentic Chinese lunch is arranged at a comfortable restaurant. Then we move to do the afternoon trip to Temple of Heaven, where you might find many local senior playing cards, Chinese chess, exercising, dancing, singing, ect. The tour finishes by dropping off at your hotel lobby and we will have stop at tea store enroute.

Day 3 Beijing

Mutianyu Great Wall, Bird Nest, Water Cube

Meals: Hotel Breakfast, Lunch
Accommodation: In Beijing

Today is an exciting to visit Great Wall with your family and kids. In the morning, pick up from the hotel lobby. Driving for about 1.5-2 hours, we arrive at the today's highlight-Mutianyu Great Wall, one of the famous sections of China Great Wall. It is a TA award-winning scenic area as it is popular in foreign visitors. You will need to walk through a shopping street for about 10 minutes from the park to the shuttle bus station. Taking the shuttle bus for about 5 minutes, we arrive at the entrance and cable car/way station after a short walking. Then you will have an unforgettable time on the Great Wall. In China, it says that one who fails to reach the Great Wall is not a hero. Today all of you are heroes! You can choose to take round way cable car to visit the great wall or take one way cableway up and toboggan down for the visit(cable car is included). Toboggan seems like a long slide, interesting and exciting. Your kids may like it.

After the visit, a lunch and break is arranged at a comfortable countryside restaurant at the foot of Great Wall for your family. Then drive back to the downtown and have a stop at jade carving factory on the way. We will have a short visit to see the exterior Bird Nest and Water Cube. If you are interested, you can choose Peking Roasted Duck is available for your optional dinner tonight.

Day 4 Beijing

Beijing Zoo, Hutong tour by richshaw, Family visit with making facial make-up

Meals: Hotel Breakfast, Lunch
Accommodation: In Beijing

In the morning, we will bring your family and kids to visit Beijing Zoo including Panda House. The breakfast time is the most active time for giant pandas. I am sure you and your kids will fall in love with this adorable creature. Then it goes to the family time in Hutong, where your family will enjoy a very local Beijing cultural experience. At first, we will take a Hutong tour by richshaw to explore Hutong, the local people's residential area. We will visit a local family and there have a typical Chinese family lunch.  If you are interested in, you and your kids can learn and experience how to make Chinese dumpling. After an unforgettable family lunch in Hutong, learning to make facial make-up is arranged for you and your kids. It is a good chance to learn traditional Chinese opera culture, and it would be an interesting thing in your China trip. If you are interested in, Kungfu Show is recommended to you as an optional activity tonight.

Day 5 Departure Beijing

Summer Palace, Transfer service to airport

Meals: Hotel Breakfast, Lunch

It will be leisure arranged for your family. In the morning, our guide pick you up from hotel and drive to the north west part of Beijing to continue to a visit  Summer Palace - the most beautiful royal garden in China, where you will have a boating trip with your kids. After lunch, you will be transferred to airport to catch flight to your next destination.

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.