6 Days Beijing and Chengde Tour

Beijing, Chengde

$857.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-Beijing-04

Tour Type: Private Tour

Tour Highlights:

 6 Days Beijing and extension tour
 Covers the must-seeing spots in city of Beijing: Tian'anmen Square, Forbidden City and Temple of Heaven
 Be impressed by the stunning Jinshanling Great Wall
Take 2 days extension tour from Beijing to Chengd

Best Travel Time: Suitable for the whole year, best from April to November. p.s. Chengde is a nice summer resort, especially in July and August.

 

Day 1 Arrival Beijing

Transfer service to hotel

Meals: No meals
Accommodation:In Beijing

Arrive in Beijing, the Capital city of China, your local guide will meet you at the airport and transfer you to your hotel. Free at leisure for the rest of the day.

Day 2 Beijing

Tian'anmen Square, Forbidden City, Temple of Heaven

Meals: Breakfast, Lunch
Accommodation:In Beijing

Our local tour guide will meet you at hotel lobby at an appointed time. Then you will start an exciting Beijing city highlight discovery. First we will move to Tian'anmen Square, which is the World's largest urban square. It is just a walking distance from Tian'anmen Square to the Forbidden City, the largest and most complete ancient imperial palace in the world.  While visiting the Forbidden City, you will be inspired by this magnificent palace. Lunch is arranged at local restaurant for you. You will have chance to taste local Chinese food. After a short break, we will move to visit the Temple of Heaven in the afternoon. The tour finishes by drop-off at your hotel. Enroute we will have a stop at tea store. If you desire,  Peking Opera is recommended to you as optional activity tonight(excluding price).

Day 3 Beijing - Chengde

Jinshanling Great Wall, Drive to Chengde

Meals: Breakfast, Lunch
Accommodation: In Chengde

Today, we will travel from Beijing to Chengde. After breakfast, meet our guide at hotel lobby and check out from hotel. Then will start our trip forward to Chengde. Enroute, we will have a top a jade carving factory. After 2- hour driving(140km) , we will stop to visit Jinshanling Great Wall, which is one of the best preserved parts of the Great Wall. Then we continue driving (90km) to reach Chengde, one of the premier historic and cultural cities of China.

Day 4 Chengde

Chengde Summer Resort, Putuozongcheng Temple

Meals: Breakfast, Lunch
Accommodation:In Chengde

Chengde is famous for the Imperial Summer Resort. After a leisure hotel breakfast, guide will show you to enjoy a city tour first to the Imperial Summer Resort, which is originally built for the royal families of the Qing Dynasty to spend the summer months in its mild climate. In the early afternoon, we will take a visit to Putuo Zongcheng Temple, which is known as the little Potala Palace.

Day 5 Chengde - Beijing

Puning Temple, Drive back to Beijing

Meals: Breakfast, Lunch
Accommodation:In Beijing

In the morning, you will take a visit to Puning Temple, one of the famous Eight Outer Temples in Chengde City, Hebei Province. Puning Temple was constructed in 1755 of the Qianlong reign. In order to celebrate the suppression of rebellion of Junggar tribe, Emperor Qianlong invited the four troops that participated in the suppression to the Mountain Resort in October in the 20th year of the Qianlong reign. He dubbed leaders of the four troops, and ordered to build Puning Temple.

After lunch, we will drive back to Beijing (256km) for overnight.

Day 6 Departure Beijing

Transfer service to airport

Meals: Breakfast

Be transferred to the airport for the flight to your next stop.

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.