Merge branch 'master' of github.com:hainatravel/information-system

master
赵鹏 1 year ago
commit eb946c99f8

7
.gitignore vendored

@ -1,6 +1,7 @@
.idea
.phpintel
.*.json.bak
.phpintel
/info.php
.*.json.bak
.ftp-deploy-sync-state.json
.svn/*
*/logs/log*
@ -17,4 +18,4 @@
/application/config/database.php

@ -931,9 +931,11 @@ class Information extends CI_Controller
$city_name_string = $feedback_array[1][$index];
$city_name_list = explode(',', $city_name_string);
$feedback_list = $this->Feedback_model->get_feedback_by_city_list($city_name_list);
// 防止触发 Google 网络垃圾政策只返回前三条
$top3_feedback_list = array_slice($feedback_list, 0, 3);
$feedback_content = $this->load->view(
$template_path . '-feedback-list',
array('feedback_list' => $feedback_list),
'mobile_first/ch-feedback-list',
array('feedback_list' => $top3_feedback_list),
true
);
$information->ic_content = str_replace(
@ -993,18 +995,6 @@ class Information extends CI_Controller
}
}
$feedback_newest = $this->Feedback_model->get_feedback_newest();
$feedback_newest_content = $this->load->view(
$template_path . '-feedback-newest',
array('feedback_list' => $feedback_newest),
true
);
$information->ic_content = str_replace(
'<!--@NEWEST_FEEDBACK@-->',
$feedback_newest_content,
$information->ic_content
);
// 天气预报模板
$weather_forecast_content = $this->load->view(
$template_path . '-weather-forecast',
@ -1017,7 +1007,6 @@ class Information extends CI_Controller
$information->ic_content
);
// 火车票首页搜索框 --zp
$template_TrainSearch = "";
if ($information->ic_url == "/china-trains/hometest.htm" || $information->ic_url == "/china-trains/") {
@ -1050,43 +1039,41 @@ class Information extends CI_Controller
$meta_product_code = get_meta($information->ic_id, 'meta_product_code');
$meta_google_ad_article = get_meta($information->ic_id, 'meta_google_ad_article');
//非产品页面
if (empty ($meta_product_code)) {
$ads_by_google = !empty ($meta_google_ad_article);
//H1模板替换
$data_H1 = array();
$data_H1['infocategory'] = $this->Information_model->get_detail_by_path($information->is_path, 1); //信息所属分类,获取信息顶级节点内容
$data_H1['author'] = ''; //获取作者信息
$author = $this->Operator_model->get_author_nikename($information->ic_author);
if (!empty ($author)) {
$data_H1['author'] = $author->OPI_FirstName;
} else {
$author_web = $this->Infoauthors_model->detail_by_id($information->ic_author); //原始作者,可能是在线作者等
if (!empty ($author_web)) {
$data_H1['author'] = $author_web->a_name;
}
}
// 检查图片地址格式
$parsed_photo = $information->ic_photo;
$parsed_photo_url = parse_url($information->ic_photo);
if (
(!isset ($parsed_photo_url['host']) || !isset ($parsed_photo_url['scheme'])) && isset ($parsed_photo_url['path'])
) {
$parsed_photo = 'https://images.chinahighlights.com' . $parsed_photo_url['path'];
$ads_by_google = !empty($meta_google_ad_article);
//H1模板替换
$data_H1 = array();
$data_H1['infocategory'] = $this->Information_model->get_detail_by_path($information->is_path, 1); //信息所属分类,获取信息顶级节点内容
$data_H1['author'] = ''; //获取作者信息
$author = $this->Operator_model->get_author_nikename($information->ic_author);
if (!empty ($author)) {
$data_H1['author'] = $author->OPI_FirstName;
} else {
$author_web = $this->Infoauthors_model->detail_by_id($information->ic_author); //原始作者,可能是在线作者等
if (!empty ($author_web)) {
$data_H1['author'] = $author_web->a_name;
}
}
$data_H1['ic_title'] = $information->ic_title;
$data_H1['ic_photo'] = $parsed_photo;
$data_H1['breadcrumb_data'] = $breadcrumb_data;
$data_H1['ads_by_google'] = $ads_by_google;
$data_H1['ic_datetime'] = $information->ic_datetime;
$template_H1 = $this->load->view($template_path . '-h1', $data_H1, true);
$template = str_replace('<!--@HEAD_1@-->', $template_H1, $template);
// 检查图片地址格式
$parsed_photo = $information->ic_photo;
$parsed_photo_url = parse_url($information->ic_photo);
if (
(!isset ($parsed_photo_url['host']) || !isset ($parsed_photo_url['scheme'])) && isset ($parsed_photo_url['path'])
) {
$parsed_photo = 'https://images.chinahighlights.com' . $parsed_photo_url['path'];
}
$addthis_widget = $this->load->view($template_path . '-add-this', false, true);
$template = str_replace('<!--@ADDTHIS-WIDGET@-->', $addthis_widget, $template);
$data_H1['ic_title'] = $information->ic_title;
$data_H1['ic_photo'] = $parsed_photo;
$data_H1['breadcrumb_data'] = $breadcrumb_data;
$data_H1['ads_by_google'] = $ads_by_google;
$data_H1['ic_datetime'] = $information->ic_datetime;
$template_H1 = $this->load->view($template_path . '-h1', $data_H1, true);
$template = str_replace('<!--@HEAD_1@-->', $template_H1, $template);
//非产品页面
if (empty ($meta_product_code)) {
$template = str_replace('?product_code=', '', $template);
$article_structured_data_content = $this->load->view(
@ -1105,38 +1092,6 @@ class Information extends CI_Controller
$inquiry_form_template = $this->load->view($template_path . '-inquiry-form', array('meta_product_code' => $meta_product_code), true);
$template = str_replace('?product_code=', '?product_code=' . $meta_product_code, $template);
$information->ic_content = str_replace('<!--@INQUIRY-FORM@-->', $inquiry_form_template, $information->ic_content);
$ads_by_google = !empty ($meta_google_ad_article);
//H1模板替换
$data_H1 = array();
$data_H1['infocategory'] = $this->Information_model->get_detail_by_path($information->is_path, 1); //信息所属分类,获取信息顶级节点内容
$data_H1['author'] = ''; //获取作者信息
$author = $this->Operator_model->get_author_nikename($information->ic_author);
if (!empty ($author)) {
$data_H1['author'] = $author->OPI_FirstName;
} else {
$author_web = $this->Infoauthors_model->detail_by_id($information->ic_author); //原始作者,可能是在线作者等
if (!empty ($author_web)) {
$data_H1['author'] = $author_web->a_name;
}
}
// 检查图片地址格式
$parsed_photo = $information->ic_photo;
$parsed_photo_url = parse_url($information->ic_photo);
if (
(!isset ($parsed_photo_url['host']) || !isset ($parsed_photo_url['scheme'])) && isset ($parsed_photo_url['path'])
) {
$parsed_photo = 'https://images.chinahighlights.com' . $parsed_photo_url['path'];
}
$data_H1['ic_title'] = $information->ic_title;
$data_H1['ic_photo'] = $parsed_photo;
$data_H1['breadcrumb_data'] = $breadcrumb_data;
$data_H1['ads_by_google'] = $ads_by_google;
$data_H1['ic_datetime'] = $information->ic_datetime;
$template_H1 = $this->load->view($template_path . '-h1', $data_H1, true);
$template = str_replace('<!--@HEAD_1@-->', $template_H1, $template);
}
// CH: 1; AH: 28; GH : 33
@ -1341,7 +1296,6 @@ class Information extends CI_Controller
$meta_addon_picture = get_meta($information->ic_id, 'meta_addon_picture');
}
//顶部视频
$meta_news_video = get_meta($information->ic_id, 'meta_news_video');
$meta_video_picture = get_meta($information->ic_id, 'meta_video_picture');
@ -1380,6 +1334,11 @@ class Information extends CI_Controller
if (!empty ($meta_addon_js)) {
$template = str_replace('<!--@ADDON-JS@-->', '<script src="' . $meta_addon_js . '"></script>', $template);
}
$meta_index_set = get_meta($information->ic_id, 'meta_index_set');
if (!empty ($meta_index_set)) {
$template = str_replace('<!--@Meta_Robots@-->', '<meta name="robots" content="' . $meta_index_set . '" />', $template);
}
//设置内容图片缓加载
$lazy_content = $this->html_optimize_lib->set_lazy_loader($information->ic_content, 'https://data.chinahighlights.com/grey.gif');
$template = str_replace('<!--@CUSTOM-CONENT@-->', $lazy_content, $template);
@ -1971,17 +1930,30 @@ class Information extends CI_Controller
}
}
$feedback_newest = $this->Feedback_model->get_feedback_newest();
$feedback_newest_content = $this->load->view(
$template_path . '-feedback-newest',
array('feedback_list' => $feedback_newest),
true
);
$information->ic_content = str_replace(
'<!--@NEWEST_FEEDBACK@-->',
$feedback_newest_content,
$information->ic_content
);
// 动态加载反馈标签,第一个城市不足八条,使用第二城市数据。
// HTLM: <div><!--@FEEDBACK_Siem Reap,Bangkok@--></div>
// 解析结果:<!--@FEEDBACK_Siem Reap,Bangkok@-->; Siem Reap,Bangkok
$feedback_array = [];
preg_match_all('^<!--@FEEDBACK_(.*)@-->^', $information->ic_content, $feedback_array);
if (!empty ($feedback_array)) {
foreach ($feedback_array[0] as $index => $tag_name) {
$city_name_string = $feedback_array[1][$index];
$city_name_list = explode(',', $city_name_string);
$feedback_list = $this->Feedback_model->get_feedback_by_city_list($city_name_list);
// 防止触发 Google 网络垃圾政策只返回前三条
$top3_feedback_list = array_slice($feedback_list, 0, 3);
$feedback_content = $this->load->view(
'mobile_first/gh-feedback-list',
array('feedback_list' => $top3_feedback_list),
true
);
$information->ic_content = str_replace(
$tag_name,
$feedback_content,
$information->ic_content
);
}
}
if (is_file('D:/wwwroot/origin-www.globalhighlights.com/css/gh-global.css')) { //主样式表,内联模式,优先读取本地,没有在从网络读取,为了加速
$main_css_string = compress_css(file_get_contents('D:/wwwroot/origin-www.globalhighlights.com/css/gh-global.css'));
@ -2004,6 +1976,11 @@ class Information extends CI_Controller
if (!empty ($meta_addon_js)) {
$template = str_replace('<!--@ADDON-JS@-->', '<script src="' . $meta_addon_js . '"></script>', $template);
}
$meta_index_set = get_meta($information->ic_id, 'meta_index_set');
if (!empty ($meta_index_set)) {
$template = str_replace('<!--@Meta_Robots@-->', '<meta name="robots" content="' . $meta_index_set . '" />', $template);
}
//设置内容图片缓加载
$lazy_content = $this->html_optimize_lib->set_lazy_loader($information->ic_content, 'https://data.chinahighlights.com/grey.gif');
$template = str_replace('<!--@CUSTOM-CONENT@-->', $lazy_content, $template);
@ -2176,19 +2153,6 @@ class Information extends CI_Controller
$template = str_replace('<!--@TIPS-RIGHT-LIST@-->', $tips_right_list_content, $template);
//
$feedback_newest_10 = $this->Feedback_model->get_feedback_newest(10);
$feedback_newest_10_content = $this->load->view(
'mobile_first/ah-feedback-newest-10',
array('feedback_list' => $feedback_newest_10),
true
);
$template = str_replace(
'<!--@NEWEST_FEEDBACK_10@-->',
$feedback_newest_10_content,
$template
);
//文中的信息推荐
if (strpos($information->ic_content, '<!--@Content-Recommends-Article@-->') !== false) {
$information->ic_content = str_replace('<!--@Content-Recommends-Article@-->', $this->load->view($template_path . '-recommends-article', array('recommands' => $template_recommand), true), $information->ic_content);
@ -2297,9 +2261,11 @@ class Information extends CI_Controller
$city_name_string = $feedback_array[1][$index];
$city_name_list = explode(',', $city_name_string);
$feedback_list = $this->Feedback_model->get_feedback_by_city_list($city_name_list);
// 防止触发 Google 网络垃圾政策只返回前三条
$top3_feedback_list = array_slice($feedback_list, 0, 3);
$feedback_content = $this->load->view(
$template_path . '-feedback-list',
array('feedback_list' => $feedback_list),
'mobile_first/ah-feedback-list',
array('feedback_list' => $top3_feedback_list),
true
);
$information->ic_content = str_replace(
@ -2359,19 +2325,6 @@ class Information extends CI_Controller
}
}
//
$feedback_newest = $this->Feedback_model->get_feedback_newest();
$feedback_newest_content = $this->load->view(
'mobile_first/ah-feedback-newest',
array('feedback_list' => $feedback_newest),
true
);
$information->ic_content = str_replace(
'<!--@NEWEST_FEEDBACK@-->',
$feedback_newest_content,
$information->ic_content
);
//主样式表,内联模式
if (is_file('D:/wwwroot/origin-www.asiahighlights.com/css/mobile-first.css')) { //主样式表,内联模式,优先读取本地,没有在从网络读取,为了加速
$main_css_string = compress_css(file_get_contents('D:/wwwroot/origin-www.asiahighlights.com/css/mobile-first.css'));
@ -2391,6 +2344,11 @@ class Information extends CI_Controller
if (!empty ($meta_addon_js)) {
$template = str_replace('<!--@ADDON-JS@-->', '<script src="' . $meta_addon_js . '"></script>', $template);
}
$meta_index_set = get_meta($information->ic_id, 'meta_index_set');
if (!empty ($meta_index_set)) {
$template = str_replace('<!--@Meta_Robots@-->', '<meta name="robots" content="' . $meta_index_set . '" />', $template);
}
//设置内容图片缓加载
$lazy_content = $this->html_optimize_lib->set_lazy_loader($information->ic_content, 'https://data.asiahighlights.com/grey.gif');
$template = str_replace('<!--@CUSTOM-CONENT@-->', $lazy_content, $template);

@ -49,65 +49,7 @@
</div>
<?php } ?>
<?php if(!empty($recommands['Tour E'])){ ?>
<div class="nextarticle">
<a href="<?php echo $recommands['Tour E']->ic_url; ?>" id="bottom_tour_e_image_mobile"> <img src="https://data.asiahighlights.com/grey.gif" loader="lazy"
originalsrc="<?php echo $recommands['Tour E']->mobile_photo; ?>"
class="img-responsive" alt="<?php echo $recommands['Tour E']->ic_title; ?>"></a>
<div class="tournextname"><a href="<?php echo $recommands['Tour E']->ic_url; ?>" id="bottom_tour_e_title_mobile"><?php echo $recommands['Tour E']->ic_title; ?></a></div>
</div>
<?php } ?>
<?php if(!empty($recommands['Tour F'])){ ?>
<div class="nextarticle">
<a href="<?php echo $recommands['Tour F']->ic_url; ?>" id="bottom_tour_f_image_mobile"> <img src="https://data.asiahighlights.com/grey.gif" loader="lazy"
originalsrc="<?php echo $recommands['Tour F']->mobile_photo; ?>"
class="img-responsive" alt="<?php echo $recommands['Tour F']->ic_title; ?>"></a>
<div class="tournextname"><a href="<?php echo $recommands['Tour F']->ic_url; ?>" id="bottom_tour_f_title_mobile"><?php echo $recommands['Tour F']->ic_title; ?></a></div>
</div>
<?php } ?>
<?php if(!empty($recommands['Tour G'])){ ?>
<div class="nextarticle">
<a href="<?php echo $recommands['Tour G']->ic_url; ?>" id="bottom_tour_g_image_mobile"> <img src="https://data.asiahighlights.com/grey.gif" loader="lazy"
originalsrc="<?php echo $recommands['Tour G']->mobile_photo; ?>"
class="img-responsive" alt="<?php echo $recommands['Tour G']->ic_title; ?>"></a>
<div class="tournextname"><a href="<?php echo $recommands['Tour G']->ic_url; ?>" id="bottom_tour_g_title_mobile"><?php echo $recommands['Tour G']->ic_title; ?></a></div>
</div>
<?php } ?>
<?php if(!empty($recommands['Tour H'])){ ?>
<div class="nextarticle">
<a href="<?php echo $recommands['Tour H']->ic_url; ?>" id="bottom_tour_h_image_mobile"><img src="https://data.asiahighlights.com/grey.gif" loader="lazy"
originalsrc="<?php echo $recommands['Tour H']->mobile_photo; ?>"
class="img-responsive" alt="<?php echo $recommands['Tour H']->ic_title; ?>"></a>
<div class="tournextname"><a href="<?php echo $recommands['Tour H']->ic_url; ?>" id="bottom_tour_h_title_mobile"><?php echo $recommands['Tour H']->ic_title; ?></a></div>
</div>
<?php } ?>
<?php } ?>
@ -174,73 +116,6 @@
<a href="<?php echo $recommands['Article D']->ic_url; ?>" id="bottom_info_d_title_mobile"> <?php echo $recommands['Article D']->ic_title; ?> </a>
</div>
</div>
<?php } ?>
<?php if(!empty($recommands['Article E'])){ ?>
<div class="nextarticle">
<a href="<?php echo $recommands['Article E']->ic_url; ?>" id="bottom_info_e_image_mobile"> <img
src="https://data.asiahighlights.com/grey.gif" loader="lazy"
originalsrc="<?php echo $recommands['Article E']->mobile_photo; ?>"
class="img-responsive" alt="<?php echo $recommands['Article E']->ic_title; ?>"></a>
<div class="tournextname">
<a href="<?php echo $recommands['Article E']->ic_url; ?>" id="bottom_info_e_title_mobile"> <?php echo $recommands['Article E']->ic_title; ?> </a>
</div>
</div>
<?php } ?>
<?php if(!empty($recommands['Article F'])){ ?>
<div class="nextarticle">
<a href="<?php echo $recommands['Article F']->ic_url; ?>" id="bottom_info_f_image_mobile"> <img
src="https://data.asiahighlights.com/grey.gif" loader="lazy"
originalsrc="<?php echo $recommands['Article F']->mobile_photo; ?>"
class="img-responsive" alt="<?php echo $recommands['Article F']->ic_title; ?>"></a>
<div class="tournextname">
<a href="<?php echo $recommands['Article F']->ic_url; ?>" id="bottom_info_f_title_mobile"> <?php echo $recommands['Article F']->ic_title; ?> </a>
</div>
</div>
<?php } ?>
<?php if(!empty($recommands['Article G'])){ ?>
<div class="nextarticle">
<a href="<?php echo $recommands['Article G']->ic_url; ?>" id="bottom_info_g_image_mobile"> <img
src="https://data.asiahighlights.com/grey.gif" loader="lazy"
originalsrc="<?php echo $recommands['Article G']->mobile_photo; ?>"
class="img-responsive" alt="<?php echo $recommands['Article G']->ic_title; ?>"></a>
<div class="tournextname">
<a href="<?php echo $recommands['Article G']->ic_url; ?>" id="bottom_info_g_title_mobile"> <?php echo $recommands['Article G']->ic_title; ?> </a>
</div>
</div>
<?php } ?>
<?php if(!empty($recommands['Article H'])){ ?>
<div class="nextarticle">
<a href="<?php echo $recommands['Article H']->ic_url; ?>" id="bottom_info_h_image_mobile"> <img
src="https://data.asiahighlights.com/grey.gif" loader="lazy"
originalsrc="<?php echo $recommands['Article H']->mobile_photo; ?>"
class="img-responsive" alt="<?php echo $recommands['Article H']->ic_title; ?>"></a>
<div class="tournextname">
<a href="<?php echo $recommands['Article H']->ic_url; ?>" id="bottom_info_h_title_mobile"> <?php echo $recommands['Article H']->ic_title; ?> </a>
</div>
</div>
<?php } ?>

@ -54,64 +54,6 @@
</div></td>
<?php } ?>
<?php if(!empty($recommands['Tour E'])){ ?>
<td> <div class="nextarticle">
<a href="<?php echo $recommands['Tour E']->ic_url; ?>" id="bottom_tour_e_image"> <img src="https://data.asiahighlights.com/grey.gif" loader="lazy"
originalsrc="<?php echo $recommands['Tour E']->mobile_photo; ?>"
class="img-responsive" alt="<?php echo $recommands['Tour E']->ic_title; ?>"></a>
<div class="tournextname"><a href="<?php echo $recommands['Tour E']->ic_url; ?>" id="bottom_tour_e_title"><?php echo $recommands['Tour E']->ic_title; ?></a></div>
</div></td>
<?php } ?>
<?php if(!empty($recommands['Tour F'])){ ?>
<td> <div class="nextarticle">
<a href="<?php echo $recommands['Tour F']->ic_url; ?>" id="bottom_tour_f_image"> <img src="https://data.asiahighlights.com/grey.gif" loader="lazy"
originalsrc="<?php echo $recommands['Tour F']->mobile_photo; ?>"
class="img-responsive" alt="<?php echo $recommands['Tour F']->ic_title; ?>"></a>
<div class="tournextname"><a href="<?php echo $recommands['Tour F']->ic_url; ?>" id="bottom_tour_f_title"><?php echo $recommands['Tour F']->ic_title; ?></a></div>
</div></td>
<?php } ?>
<?php if(!empty($recommands['Tour G'])){ ?>
<td> <div class="nextarticle">
<a href="<?php echo $recommands['Tour G']->ic_url; ?>" id="bottom_tour_g_image"> <img src="https://data.asiahighlights.com/grey.gif" loader="lazy"
originalsrc="<?php echo $recommands['Tour G']->mobile_photo; ?>"
class="img-responsive" alt="<?php echo $recommands['Tour G']->ic_title; ?>"></a>
<div class="tournextname"><a href="<?php echo $recommands['Tour G']->ic_url; ?>" id="bottom_tour_g_title"><?php echo $recommands['Tour G']->ic_title; ?></a></div>
</div></td>
<?php } ?>
<?php if(!empty($recommands['Tour H'])){ ?>
<td> <div class="nextarticle">
<a href="<?php echo $recommands['Tour H']->ic_url; ?>" id="bottom_tour_h_image"><img src="https://data.asiahighlights.com/grey.gif" loader="lazy"
originalsrc="<?php echo $recommands['Tour H']->mobile_photo; ?>"
class="img-responsive" alt="<?php echo $recommands['Tour H']->ic_title; ?>"></a>
<div class="tournextname"><a href="<?php echo $recommands['Tour H']->ic_url; ?>" id="bottom_tour_h_title"><?php echo $recommands['Tour H']->ic_title; ?></a></div>
</div> </td>
<?php } ?>
</tr>
</tbody>
</table>
@ -185,76 +127,10 @@
<a href="<?php echo $recommands['Article D']->ic_url; ?>" id="bottom_info_d_title"> <?php echo $recommands['Article D']->ic_title; ?> </a>
</div>
</div>
</td>
<?php } ?>
<?php if(!empty($recommands['Article E'])){ ?>
<td>
<div class="nextarticle">
<a href="<?php echo $recommands['Article E']->ic_url; ?>" id="bottom_info_e_image"> <img
src="https://data.asiahighlights.com/grey.gif" loader="lazy"
originalsrc="<?php echo $recommands['Article E']->mobile_photo; ?>"
class="img-responsive" alt="<?php echo $recommands['Article E']->ic_title; ?>"></a>
<div class="tournextname">
<a href="<?php echo $recommands['Article E']->ic_url; ?>" id="bottom_info_e_title"> <?php echo $recommands['Article E']->ic_title; ?> </a>
</div>
</div>
</td>
<?php } ?>
<?php if(!empty($recommands['Article F'])){ ?>
<td>
<div class="nextarticle">
<a href="<?php echo $recommands['Article F']->ic_url; ?>" id="bottom_info_f_image"> <img
src="https://data.asiahighlights.com/grey.gif" loader="lazy"
originalsrc="<?php echo $recommands['Article F']->mobile_photo; ?>"
class="img-responsive" alt="<?php echo $recommands['Article F']->ic_title; ?>"></a>
<div class="tournextname">
<a href="<?php echo $recommands['Article F']->ic_url; ?>" id="bottom_info_f_title"> <?php echo $recommands['Article F']->ic_title; ?> </a>
</div>
</div>
</td>
<?php } ?>
<?php if(!empty($recommands['Article G'])){ ?>
<td>
<div class="nextarticle">
<a href="<?php echo $recommands['Article G']->ic_url; ?>" id="bottom_info_g_image"> <img
src="https://data.asiahighlights.com/grey.gif" loader="lazy"
originalsrc="<?php echo $recommands['Article G']->mobile_photo; ?>"
class="img-responsive" alt="<?php echo $recommands['Article G']->ic_title; ?>"></a>
<div class="tournextname">
<a href="<?php echo $recommands['Article G']->ic_url; ?>" id="bottom_info_g_title"> <?php echo $recommands['Article G']->ic_title; ?> </a>
</div>
</div>
</td>
<?php } ?>
<?php if(!empty($recommands['Article H'])){ ?>
<td>
<div class="nextarticle">
<a href="<?php echo $recommands['Article H']->ic_url; ?>" id="bottom_info_h_image"> <img
src="https://data.asiahighlights.com/grey.gif" loader="lazy"
originalsrc="<?php echo $recommands['Article H']->mobile_photo; ?>"
class="img-responsive" alt="<?php echo $recommands['Article H']->ic_title; ?>"></a>
<div class="tournextname">
<a href="<?php echo $recommands['Article H']->ic_url; ?>" id="bottom_info_h_title"> <?php echo $recommands['Article H']->ic_title; ?> </a>
</div>
</div>
</td>
<?php } ?>
</tr>
</tbody>
</table>

@ -12,6 +12,7 @@
<meta name="apple-mobile-web-app-title" content="Asia Highlights - Since 2016!">
<meta name="keywords" content="<!--@KEYWORDS@-->">
<meta name="description" content="<!--@DESCRIPTION@-->">
<!--@Meta_Robots@-->
<!--@OG:IMAGE@-->
<link rel="canonical" href="<!--@CANONICAL@-->">
<link rel="shortcut icon" href="https://data.asiahighlights.com/favicon.ico" />
@ -150,7 +151,7 @@
<ul class="inspiration">
<li><a href="/japan">Japan</a></li>
<li><a href="/south-korea">South Korea</a></li>
<li><a href="https://www.chinahighlights.com/tour/" target="_blank">China (HK,
<li><a href="https://www.chinahighlights.com/tour/" target="_blank" rel="nofollow">China (HK,
Taiwan)</a></li>
<li><a href="/asia/tours/mongolia-china-and-thailand">Mongolia</a></li>
</ul>
@ -256,7 +257,6 @@
</div>
<!--@TIPS-RIGHT@-->
<!--@TIPS-RIGHT-LIST@-->
<!--@NEWEST_FEEDBACK_10@-->
<div class="info_tm_button"><a href="/forms/tailormade?product_code=" id="create_my_trip_button_pc">Create
my trip</a>
</div>
@ -370,11 +370,11 @@
<div class="destination_links">
<ul>
<li><a href="https://www.chinahighlights.com/" target="_blank">China</a></li>
<li><a href="https://www.globalhighlights.com/europe" target="_blank">Europe</a></li>
<li><a href="https://www.globalhighlights.com/middle-east/tours" target="_blank">Middle East </a>
<li><a href="https://www.chinahighlights.com/" target="_blank" rel="nofollow">China</a></li>
<li><a href="https://www.globalhighlights.com/europe" target="_blank" rel="nofollow">Europe</a></li>
<li><a href="https://www.globalhighlights.com/middle-east/tours" target="_blank" rel="nofollow">Middle East </a>
</li>
<li><a href="https://www.globalhighlights.com/african-safari-tours/tours" target="_blank">African
<li><a href="https://www.globalhighlights.com/african-safari-tours/tours" target="_blank" rel="nofollow">African
Safari</a></li>
</ul>
</div>
@ -393,7 +393,7 @@
<div class="aboutusinfo">
<img src="https://data.asiahighlights.com/pic/trustpilot-new-icon.png"
style="display: block; margin-bottom: 10px;" width="104" height="20">
Rated 5 out of 5 | 98.8% Excellence<br>
Rated 4.9 out of 5 | 98.8% Excellence<br>
China Highlights International<br> Travel Service Co., LTD
</div>
</div>
@ -402,13 +402,13 @@
<div class="aboutusright company">
<div class="bottompctitle">Company</div>
<ul>
<li><a href="/about-us" rel="nofollow">About us</a></li>
<li><a href="/about-us" >About us</a></li>
<li><a href="/travel-agents">Travel Agents</a></li>
<li><a href="/reviews">Reviews</a></li>
<li><a href="/contact-us" rel="nofollow">Contact us</a></li>
<li><a href="/contact-us" >Contact us</a></li>
<li><a href="/about-us/history">History</a></li>
<li><a href="/about-us/our-differences" rel="nofollow">Our Differences</a></li>
<li><a href="/privacy" rel="nofollow">Privacy Policy</a></li>
<li><a href="/about-us/our-differences" >Our Differences</a></li>
<li><a href="/privacy" >Privacy Policy</a></li>
<li><a href="/terms-of-use">Terms</a></li>
</ul>
</div>
@ -416,13 +416,13 @@
<div class="bottompctitle">Language</div>
<ul>
<li><a href="https://www.globalhighlights.com/" target="_blank">Global</a></li>
<li><a href="https://www.chinarundreisen.com/" target="_blank">Deutsch</a></li>
<li><a href="https://www.voyageschine.com/" target="_blank">Français</a></li>
<li><a href="https://www.viaje-a-china.com/" target="_blank">Español</a></li>
<li><a href="https://www.viaggio-in-cina.it/" target="_blank">Italiano</a></li>
<li><a href="https://www.chinahighlights.ru/" target="_blank">Русский</a></li>
<li><a href="https://www.arachina.com/" target="_blank">日本語</a></li>
<li><a href="https://www.globalhighlights.com/" target="_blank" rel="nofollow">Global</a></li>
<li><a href="https://www.chinarundreisen.com/" target="_blank" rel="nofollow">Deutsch</a></li>
<li><a href="https://www.voyageschine.com/" target="_blank" rel="nofollow">Français</a></li>
<li><a href="https://www.viaje-a-china.com/" target="_blank" rel="nofollow">Español</a></li>
<li><a href="https://www.viaggio-in-cina.it/" target="_blank" rel="nofollow">Italiano</a></li>
<li><a href="https://www.chinahighlights.ru/" target="_blank" rel="nofollow">Русский</a></li>
<li><a href="https://www.arachina.com/" target="_blank" rel="nofollow">日本語</a></li>
</ul>
</div>
<div class="aboutusright followus">

@ -9,6 +9,7 @@
<meta name="keywords" content="<!--@KEYWORDS@-->">
<meta name="description" content="<!--@DESCRIPTION@-->">
<link rel="canonical" href="<!--@CANONICAL@-->">
<!--@Meta_Robots@-->
<meta content="width=device-width,minimum-scale=1,initial-scale=1" name="viewport">
<!--@OG:IMAGE@-->
<link rel="shortcut icon" href="https://data.asiahighlights.com/favicon.ico" />
@ -96,7 +97,7 @@
<li class="menu__item" role="menuitem"><a class="menu__link" href="/myanmar">Myanmar</a></li>
<li class="menu__item" role="menuitem"><a class="menu__link" href="/japan">Japan</a></li>
<li class="menu__item" role="menuitem"><a class="menu__link" href="/asia/plan-a-two-week-itinerary-in-japan-and-south-korea">South Korea</a></li>
<li class="menu__item" role="menuitem"><a class="menu__link" href="https://www.chinahighlights.com/tour/" target="_blank">China (HK, Taiwan)</a></li>
<li class="menu__item" role="menuitem"><a class="menu__link" href="https://www.chinahighlights.com/tour/" target="_blank" rel="nofollow">China (HK, Taiwan)</a></li>
<li class="menu__item" role="menuitem"><a class="menu__link" href="/asia/tours/mongolia-china-and-thailand">Mongolia</a></li>
<li class="menu__item" role="menuitem"><a class="menu__link" href="/india">India</a></li>
<li class="menu__item" role="menuitem"><a class="menu__link" href="/nepal">Nepal</a></li>
@ -254,15 +255,15 @@
<div class="listtour">
<div class="destination_links">
<ul>
<li><a href="https://www.chinahighlights.com/" target="_blank">China</a></li>
<li><a href="https://www.globalhighlights.com/europe" target="_blank">Europe</a></li>
<li><a href="https://www.chinahighlights.com/" target="_blank" rel="nofollow">China</a></li>
<li><a href="https://www.globalhighlights.com/europe" target="_blank" rel="nofollow">Europe</a></li>
</ul>
</div>
<div class="destination_links">
<ul>
<li><a href="https://www.globalhighlights.com/middle-east/tours" target="_blank">Middle East </a></li>
<li><a href="https://www.globalhighlights.com/african-safari-tours/tours" target="_blank">African Safari</a></li>
<li><a href="https://www.globalhighlights.com/middle-east/tours" target="_blank" rel="nofollow">Middle East </a></li>
<li><a href="https://www.globalhighlights.com/african-safari-tours/tours" target="_blank" rel="nofollow">African Safari</a></li>
</ul>
</div>
</div>
@ -276,7 +277,7 @@
<img src="https://data.asiahighlights.com/grey.gif"
originalsrc="https://data.asiahighlights.com/pic/trustpilot-new-icon.png" loader="lazy"
class="bottomlogocenter img-responsive" style="width: 160px; margin-top: 15px;">
Rated 5 out of 5 | 98.8% Excellence<br>
Rated 4.9 out of 5 | 98.8% Excellence<br>
China Highlights International<br> Travel Service Co., LTD
</div>
@ -312,15 +313,15 @@
<div class="bottomlinks">
<span class="followtitle"><a href="/about-us" rel="nofollow">About Us</a></span>
<span class="followtitle"><a href="/about-us">About Us</a></span>
<ul>
<li><a href="/about-us" rel="nofollow">About us</a></li>
<li><a href="/about-us">About us</a></li>
<li><a href="/travel-agents">Travel Agents</a></li>
<li><a href="/reviews">Reviews</a></li>
<li><a href="/contact-us" rel="nofollow">Contact us</a></li>
<li><a href="/contact-us" >Contact us</a></li>
<li><a href="/about-us/history">History</a></li>
<li><a href="/about-us/our-differences" rel="nofollow">Our Differences</a></li>
<li><a href="/privacy" rel="nofollow">Privacy Policy</a></li>
<li><a href="/about-us/our-differences" >Our Differences</a></li>
<li><a href="/privacy" >Privacy Policy</a></li>
<li><a href="/terms-of-use">Terms</a></li>
</ul>
</div>
@ -329,17 +330,17 @@
<div class="listtour" style="display: flex;">
<div><ul style="width:185px;">
<li><a href="https://www.chinarundreisen.com/" target="_blank">Deutsch</a></li>
<li><a href="https://www.voyageschine.com/" target="_blank">Français</a></li>
<li><a href="https://www.viaje-a-china.com/" target="_blank">Español</a></li>
<li><a href="https://www.chinarundreisen.com/" target="_blank" rel="nofollow">Deutsch</a></li>
<li><a href="https://www.voyageschine.com/" target="_blank" rel="nofollow">Français</a></li>
<li><a href="https://www.viaje-a-china.com/" target="_blank" rel="nofollow">Español</a></li>
</ul></div>
<div>
<ul>
<li><a href="https://www.viaggio-in-cina.it/" target="_blank">Italiano</a></li>
<li><a href="https://www.chinahighlights.ru/" target="_blank">Русский</a></li>
<li><a href="https://www.arachina.com/" target="_blank">日本語</a></li>
<li><a href="https://www.viaggio-in-cina.it/" target="_blank" rel="nofollow">Italiano</a></li>
<li><a href="https://www.chinahighlights.ru/" target="_blank" rel="nofollow">Русский</a></li>
<li><a href="https://www.arachina.com/" target="_blank" rel="nofollow">日本語</a></li>
</ul>
</div>
</div>

@ -66,68 +66,7 @@
</td>
<td>
<?php if (!empty($recommands['Tour E'])) { ?>
<div class="articlenext">
<a href="<?php echo $recommands['Tour E']->ic_url; ?>" rel="nofollow">
<img src="https://data.chinahighlights.com/grey.gif" loader="lazy"
originalsrc="<?php echo $recommands['Tour E']->mobile_photo; ?>"
class="img-responsive" alt="<?php echo $recommands['Tour E']->ic_title; ?>">
</a>
<span class="articlenexttitle"><a
href="<?php echo $recommands['Tour E']->ic_url; ?>"><?php echo $recommands['Tour E']->ic_title; ?></a>
</span>
</div>
<?php } ?>
</td>
<td>
<?php if (!empty($recommands['Tour F'])) { ?>
<div class="articlenext">
<a href="<?php echo $recommands['Tour F']->ic_url; ?>" rel="nofollow">
<img src="https://data.chinahighlights.com/grey.gif" loader="lazy"
originalsrc="<?php echo $recommands['Tour F']->mobile_photo; ?>"
class="img-responsive" alt="<?php echo $recommands['Tour F']->ic_title; ?>">
</a>
<span class="articlenexttitle"><a
href="<?php echo $recommands['Tour F']->ic_url; ?>"><?php echo $recommands['Tour F']->ic_title; ?></a>
</span>
</div>
<?php } ?>
</td>
<td>
<?php if (!empty($recommands['Tour G'])) { ?>
<div class="articlenext">
<a href="<?php echo $recommands['Tour G']->ic_url; ?>" rel="nofollow">
<img src="https://data.chinahighlights.com/grey.gif" loader="lazy"
originalsrc="<?php echo $recommands['Tour G']->mobile_photo; ?>"
class="img-responsive" alt="<?php echo $recommands['Tour G']->ic_title; ?>">
</a>
<span class="articlenexttitle"><a
href="<?php echo $recommands['Tour G']->ic_url; ?>"><?php echo $recommands['Tour G']->ic_title; ?></a>
</span>
</div>
<?php } ?>
</td>
<td>
<?php if (!empty($recommands['Tour H'])) { ?>
<div class="articlenext">
<a href="<?php echo $recommands['Tour H']->ic_url; ?>" rel="nofollow">
<img src="https://data.chinahighlights.com/grey.gif" loader="lazy"
originalsrc="<?php echo $recommands['Tour H']->mobile_photo; ?>"
class="img-responsive" alt="<?php echo $recommands['Tour H']->ic_title; ?>"></a>
<span class="articlenexttitle"><a
href="<?php echo $recommands['Tour H']->ic_url; ?>"><?php echo $recommands['Tour H']->ic_title; ?></a>
</span>
</div>
<?php } ?>
</td>
</tr>
</tbody>
</table>
@ -212,73 +151,7 @@
<div style='display: none'><?php var_dump($recommands['Article D']); ?></div>
<?php } ?>
<?php if (!empty($recommands['Article E']) && isset($recommands['Article E']->ic_url)) { ?>
<td>
<div class="articlenext">
<a href="<?php echo $recommands['Article E']->ic_url; ?>" rel="nofollow"> <img
src="https://data.chinahighlights.com/grey.gif" loader="lazy"
originalsrc="<?php echo empty($recommands['Article E']->mobile_photo) ? $recommands['Article E']->ic_photo_img : $recommands['Article E']->mobile_photo; ?>"
class="img-responsive"
alt="<?php echo $recommands['Article E']->ic_title; ?>"></a>
<span class="articlenexttitle">
<a href="<?php echo $recommands['Article E']->ic_url; ?>"> <?php echo $recommands['Article E']->ic_title; ?> </a> </span>
</div>
</td>
<?php } else { ?>
<div style='display: none'><?php var_dump($recommands['Article E']); ?></div>
<?php } ?>
<?php if (!empty($recommands['Article F']) && isset($recommands['Article F']->ic_url)) { ?>
<td>
<div class="articlenext">
<a href="<?php echo $recommands['Article F']->ic_url; ?>" rel="nofollow"> <img
src="https://data.chinahighlights.com/grey.gif" loader="lazy"
originalsrc="<?php echo empty($recommands['Article F']->mobile_photo) ? $recommands['Article F']->ic_photo_img : $recommands['Article F']->mobile_photo; ?>"
class="img-responsive"
alt="<?php echo $recommands['Article F']->ic_title; ?>"></a>
<span class="articlenexttitle">
<a href="<?php echo $recommands['Article F']->ic_url; ?>"> <?php echo $recommands['Article F']->ic_title; ?> </a>
</span>
</div>
</td>
<?php } else { ?>
<div style='display: none'><?php var_dump($recommands['Article F']); ?></div>
<?php } ?>
<?php if (!empty($recommands['Article G']) && isset($recommands['Article G']->ic_url)) { ?>
<td>
<div class="articlenext">
<a href="<?php echo $recommands['Article G']->ic_url; ?>" rel="nofollow"> <img
src="https://data.chinahighlights.com/grey.gif" loader="lazy"
originalsrc="<?php echo $recommands['Article G']->mobile_photo; ?>"
class="img-responsive"
alt="<?php echo $recommands['Article G']->ic_title; ?>"></a>
<span class="articlenexttitle">
<a href="<?php echo $recommands['Article G']->ic_url; ?>"> <?php echo $recommands['Article G']->ic_title; ?> </a>
</span>
</div>
</td>
<?php } else { ?>
<div style='display: none'><?php var_dump($recommands['Article G']); ?></div>
<?php } ?>
<?php if (!empty($recommands['Article H']) && isset($recommands['Article H']->ic_url)) { ?>
<td>
<div class="articlenext">
<a href="<?php echo $recommands['Article H']->ic_url; ?>" rel="nofollow"> <img
src="https://data.chinahighlights.com/grey.gif" loader="lazy"
originalsrc="<?php echo $recommands['Article H']->mobile_photo; ?>"
class="img-responsive"
alt="<?php echo $recommands['Article H']->ic_title; ?>"></a>
<span class="articlenexttitle">
<a href="<?php echo $recommands['Article H']->ic_url; ?>"> <?php echo $recommands['Article H']->ic_title; ?> </a>
</span>
</div>
</td>
<?php } else { ?>
<div style='display: none'><?php var_dump($recommands['Article H']); ?></div>
<?php } ?>
</tr>
</tbody>
</table>

@ -12,6 +12,7 @@
<meta name="apple-mobile-web-app-title" content="China Highlights - Since 1998!">
<meta name="keywords" content="<!--@KEYWORDS@-->">
<meta name="description" content="<!--@DESCRIPTION@-->">
<!--@Meta_Robots@-->
<!--@Meta-Ezoic-NoAds@-->
<!--@OG:IMAGE@-->
<link rel="canonical" href="<!--@CANONICAL@-->">
@ -131,7 +132,7 @@
<li class="start-nav-item"><a href="/hong-kong/tours.htm"
id="hk_tours_2021">Hong Kong</a></li>
<li class="start-nav-item start-nav-item-last"><a href="https://www.asiahighlights.com/tours"
id="asia_tours_2021" target="blank">Asia Tours</a></li>
id="asia_tours_2021" target="blank" rel="nofollow">Asia Tours</a></li>
</ul>
</div>
</li>
@ -176,7 +177,7 @@
<ul class="guide_links">
<li class="start-nav-item"><a href="/shanghai/shanghai-hangzhou-suzhou-trip-planner.htm" id="plan_shanghai_hangzhou_suzhou">Shanghai, Hangzhou, Suzhou</a></li>
<li class="start-nav-item"><a href="/shanghai/shanghai-to-greatwall.htm" id="plan_shanghai_great_wall">Shanghai to the Great Wall</a></li>
<li class="start-nav-item"><a href="https://www.asiahighlights.com/asia/plan-a-trip-to-china-and-japan" target="_blank" id="plan_china_japan">China and Japan</a></li>
<li class="start-nav-item"><a href="https://www.asiahighlights.com/asia/plan-a-trip-to-china-and-japan" target="_blank" id="plan_china_japan" rel="nofollow">China and Japan</a></li>
</ul>
</div> </div>
<div class="guide_block">
@ -316,16 +317,17 @@
<!--@TIPS-RIGHT-TOP@-->
<!--@TIPS-RIGHT@-->
<!--@TIPS-RIGHT-LIST@-->
<div id="main_content_next">
<section>
<!--@Match-Content-GOOGLE###ycc###@-->
<!--@ARTICLENEXT@-->
</section>
</div>
</div>
</div>
<!--PC底部-->
<div class="infobottom">
<div id="main_content_next">
<section>
<!--@Match-Content-GOOGLE###ycc###@-->
<!--@ARTICLENEXT@-->
</section>
</div>
<div class="infotailor">
<span class="infotailorword">Start planning your tailor-made tour with 1-1
@ -417,13 +419,13 @@
<div class="destination_links">
<ul>
<li><a href="https://www.asiahighlights.com/southeast-asia/tours" target="_blank">Southeast Asia</a></li>
<li><a href="https://www.asiahighlights.com/japan/tours" target="_blank">Japan, South Korea </a></li>
<li><a href="https://www.asiahighlights.com/indian-continent/tours/india-nepal-sri-lanka-bhutan" target="_blank"> India, Nepal, Bhutan, and Sri lanka</a></li>
<li><a href="https://www.asiahighlights.com/caucasus-central-asia/tours" target="_blank">Central Asia</a></li>
<li><a href="https://www.globalhighlights.com/europe" target="_blank">Europe</a></li>
<li><a href="https://www.globalhighlights.com/middle-east/tours" target="_blank">Middle East</a></li>
<li><a href="https://www.globalhighlights.com/african-safari-tours/tours" target="_blank">African Safari</a></li>
<li><a href="https://www.asiahighlights.com/southeast-asia/tours" target="_blank" rel="nofollow">Southeast Asia</a></li>
<li><a href="https://www.asiahighlights.com/japan/tours" target="_blank" rel="nofollow">Japan, South Korea </a></li>
<li><a href="https://www.asiahighlights.com/indian-continent/tours/india-nepal-sri-lanka-bhutan" target="_blank" rel="nofollow"> India, Nepal, Bhutan, and Sri lanka</a></li>
<li><a href="https://www.asiahighlights.com/caucasus-central-asia/tours" target="_blank" rel="nofollow">Central Asia</a></li>
<li><a href="https://www.globalhighlights.com/europe" target="_blank" rel="nofollow">Europe</a></li>
<li><a href="https://www.globalhighlights.com/middle-east/tours" target="_blank" rel="nofollow">Middle East</a></li>
<li><a href="https://www.globalhighlights.com/african-safari-tours/tours" target="_blank" rel="nofollow">African Safari</a></li>
</ul>
</div>
@ -447,14 +449,14 @@
<div class="aboutusright company">
<div class="bottompctitle">Company</div>
<ul>
<li><a href="/aboutus/" rel="nofollow">About us</a></li>
<li><a href="/aboutus/">About us</a></li>
<li><a href="/travel-agents.htm">Travel Agents</a></li>
<li><a href="/reviews.htm">Reviews</a></li>
<li><a href="/contactus/" rel="nofollow">Contact us</a></li>
<li><a href="/aboutus/loyalty-program.htm" rel="nofollow">Loyalty &amp; Referral Program</a>
<li><a href="/contactus/" >Contact us</a></li>
<li><a href="/aboutus/loyalty-program.htm" >Loyalty &amp; Referral Program</a>
</li>
<li><a href="/partner/" rel="nofollow">Partner</a></li>
<li><a href="/privacy.htm" rel="nofollow">Privacy Policy</a></li>
<li><a href="/partner/" >Partner</a></li>
<li><a href="/privacy.htm" >Privacy Policy</a></li>
<li><a href="/aboutus/terms.htm">Terms</a></li>
</ul>
</div>
@ -462,12 +464,12 @@
<div class="bottompctitle">Language</div>
<ul>
<li><a href="https://www.chinarundreisen.com/" target="_blank">Deutsch</a></li>
<li><a href="https://www.voyageschine.com/" target="_blank">Français</a></li>
<li><a href="https://www.viaje-a-china.com/" target="_blank">Español</a></li>
<li><a href="https://www.viaggio-in-cina.it/" target="_blank">Italiano</a></li>
<li><a href="https://www.chinahighlights.ru/" target="_blank">Русский</a></li>
<li><a href="https://www.arachina.com/" target="_blank">日本語</a></li>
<li><a href="https://www.chinarundreisen.com/" target="_blank" rel="nofollow">Deutsch</a></li>
<li><a href="https://www.voyageschine.com/" target="_blank" rel="nofollow">Français</a></li>
<li><a href="https://www.viaje-a-china.com/" target="_blank" rel="nofollow">Español</a></li>
<li><a href="https://www.viaggio-in-cina.it/" target="_blank" rel="nofollow">Italiano</a></li>
<li><a href="https://www.chinahighlights.ru/" target="_blank" rel="nofollow">Русский</a></li>
<li><a href="https://www.arachina.com/" target="_blank" rel="nofollow">日本語</a></li>
</ul>
</div>
<div class="aboutusright followus">

@ -8,6 +8,7 @@
</title>
<meta name="keywords" content="<!--@KEYWORDS@-->">
<meta name="description" content="<!--@DESCRIPTION@-->">
<!--@Meta_Robots@-->
<meta content="width=device-width,minimum-scale=1,initial-scale=1" name="viewport">
<!--@Meta-Ezoic-NoAds@-->
<!--@OG:IMAGE@-->
@ -314,18 +315,18 @@
<ul data-menu="submenu-7" id="submenu-7" class="menu__level" tabindex="-1" role="menu" aria-label="Asia">
<li class="menu__item" role="menuitem"><a href="/tour/asia-tours/" class="menu__link">Asia Tours</a></li>
<li class="menu__item" role="menuitem"><a
href="https://www.asiahighlights.com/asia/tours/japan-china-discovery" target="_blank"
href="https://www.asiahighlights.com/asia/tours/japan-china-discovery" target="_blank" rel="nofollow"
class="menu__link">China-Japan</a></li>
<li class="menu__item" role="menuitem"><a href="https://www.asiahighlights.com/asia/tours/china-and-vietnam"
<li class="menu__item" role="menuitem"><a href="https://www.asiahighlights.com/asia/tours/china-and-vietnam" rel="nofollow"
target="_blank" class="menu__link">China-Vietnam</a></li>
<li class="menu__item" role="menuitem"><a
href="https://www.asiahighlights.com/asia/tours/mongolia-china-and-thailand" target="_blank"
href="https://www.asiahighlights.com/asia/tours/mongolia-china-and-thailand" target="_blank" rel="nofollow"
class="menu__link">China-Mongolia-Thailand</a></li>
<li class="menu__item" role="menuitem"><a href="https://www.asiahighlights.com/asia/tours/china-nepal-and-india"
<li class="menu__item" role="menuitem"><a href="https://www.asiahighlights.com/asia/tours/china-nepal-and-india" rel="nofollow"
target="_blank" class="menu__link">China-Nepal-India</a></li>
<li class="menu__item" role="menuitem"><a href="/tour/cht-th-04/" class="menu__link">China-Thailand</a></li>
<li class="menu__item" role="menuitem"><a
href="https://www.asiahighlights.com/caucasus-central-asia/tours/kyrgyzstan-uzbekistan-turkmenistan"
href="https://www.asiahighlights.com/caucasus-central-asia/tours/kyrgyzstan-uzbekistan-turkmenistan" rel="nofollow"
class="menu__link" target="_blank">China-Kyrgyzstan-Uzbekistan-Turkmenistan</a></li>
</ul>
@ -440,18 +441,18 @@
<div class="listtour">
<div class="destination_links">
<ul>
<li><a href="https://www.asiahighlights.com/southeast-asia/tours" target="_blank">Southeast Asia</a></li>
<li><a href="https://www.asiahighlights.com/japan/tours" target="_blank">Japan, South Korea </a></li>
<li><a href="https://www.asiahighlights.com/indian-continent/tours/india-nepal-sri-lanka-bhutan" target="_blank"> India, Nepal, Bhutan, and Sri lanka</a></li>
<li><a href="https://www.asiahighlights.com/caucasus-central-asia/tours" target="_blank">Central Asia</a></li>
<li><a href="https://www.asiahighlights.com/southeast-asia/tours" target="_blank" rel="nofollow">Southeast Asia</a></li>
<li><a href="https://www.asiahighlights.com/japan/tours" target="_blank" rel="nofollow">Japan, South Korea </a></li>
<li><a href="https://www.asiahighlights.com/indian-continent/tours/india-nepal-sri-lanka-bhutan" target="_blank" rel="nofollow"> India, Nepal, Bhutan, and Sri lanka</a></li>
<li><a href="https://www.asiahighlights.com/caucasus-central-asia/tours" target="_blank" rel="nofollow">Central Asia</a></li>
</ul>
</div>
<div class="destination_links">
<ul>
<li><a href="https://www.globalhighlights.com/europe" target="_blank">Europe</a></li>
<li><a href="https://www.globalhighlights.com/middle-east/tours" target="_blank">Middle East</a></li>
<li><a href="https://www.globalhighlights.com/african-safari-tours/tours" target="_blank">African Safari</a></li>
<li><a href="https://www.globalhighlights.com/europe" target="_blank" rel="nofollow">Europe</a></li>
<li><a href="https://www.globalhighlights.com/middle-east/tours" target="_blank" rel="nofollow">Middle East</a></li>
<li><a href="https://www.globalhighlights.com/african-safari-tours/tours" target="_blank" rel="nofollow">African Safari</a></li>
</ul>
</div>
</div>
@ -471,7 +472,7 @@ Travel Service Co., LTD
<span class="followtitle">Follow Us</span>
<ul>
<li><a href="https://www.facebook.com/Chinahighlights" title="Follow us on Facebook" class="fb"
target="_blank">
target="_blank" rel="nofollow">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="30px" height="30px"
viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
@ -482,14 +483,14 @@ Travel Service Co., LTD
</a></li>
<li><a href="https://twitter.com/Chinahighlights" title="Share us on Twitter" class="tw"
target="_blank"> <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"
target="_blank" rel="nofollow"> <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"
viewBox="0 0 24 24" style=" fill: #fff; ">
<path
d="M24 4.557c-.883.392-1.832.656-2.828.775 1.017-.609 1.798-1.574 2.165-2.724-.951.564-2.005.974-3.127 1.195-.897-.957-2.178-1.555-3.594-1.555-3.179 0-5.515 2.966-4.797 6.045-4.091-.205-7.719-2.165-10.148-5.144-1.29 2.213-.669 5.108 1.523 6.574-.806-.026-1.566-.247-2.229-.616-.054 2.281 1.581 4.415 3.949 4.89-.693.188-1.452.232-2.224.084.626 1.956 2.444 3.379 4.6 3.419-2.07 1.623-4.678 2.348-7.29 2.04 2.179 1.397 4.768 2.212 7.548 2.212 9.142 0 14.307-7.721 13.995-14.646.962-.695 1.797-1.562 2.457-2.549z">
</path>
</svg>Twitter </a></li>
<li><a href="https://www.instagram.com/chinahighlights/" title="Follow us on Instagram"
class="linkin" target="_blank">
class="linkin" target="_blank" rel="nofollow">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="30px" height="30px"
viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
@ -518,17 +519,17 @@ Travel Service Co., LTD
<div class="listtour" style="display: flex;">
<div><ul style="width:185px;">
<li><a href="https://www.chinarundreisen.com/" target="_blank">Deutsch</a></li>
<li><a href="https://www.voyageschine.com/" target="_blank">Français</a></li>
<li><a href="https://www.viaje-a-china.com/" target="_blank">Español</a></li>
<li><a href="https://www.chinarundreisen.com/" target="_blank" rel="nofollow">Deutsch</a></li>
<li><a href="https://www.voyageschine.com/" target="_blank" rel="nofollow">Français</a></li>
<li><a href="https://www.viaje-a-china.com/" target="_blank" rel="nofollow">Español</a></li>
</ul></div>
<div>
<ul>
<li><a href="https://www.viaggio-in-cina.it/" target="_blank">Italiano</a></li>
<li><a href="https://www.chinahighlights.ru/" target="_blank">Русский</a></li>
<li><a href="https://www.arachina.com/" target="_blank">日本語</a></li>
<li><a href="https://www.viaggio-in-cina.it/" target="_blank" rel="nofollow">Italiano</a></li>
<li><a href="https://www.chinahighlights.ru/" target="_blank" rel="nofollow">Русский</a></li>
<li><a href="https://www.arachina.com/" target="_blank" rel="nofollow">日本語</a></li>
</ul>
</div>
</div>

@ -0,0 +1,40 @@
<p style="text-align: center;margin-top: 80px;margin-bottom: 0;clear:both;">Discover real reviews of <a href="/about-us/highlights-travel-family">Highlights Travel Family</a>'s best-rated service across trusted platforms. </p>
<div class="visible-xs" style="margin: 20px 20px 90px 20px; ">
<img class="img-responsive" height="69" src="https://data.asiahighlights.com/image/forms/ah-ta-2023-certificate.png" style="float: left; width: 150px; margin: 0 auto;
display: block;" width="175">
<img height="40" src="https://data.asiahighlights.com/image/forms/ah-ch-gh-tp-rating.png" style="width: 120px; height: auto; display: block;
float: right;" width="211">
</div>
<div class="table-responsive" style="margin-bottom: 20px; margin-top: 30px;">
<table>
<tbody>
<tr>
<td class="hidden-xs">
<div class="feedback_logo">
<img class="img-responsive" height="69" src="https://data.asiahighlights.com/image/forms/ah-ta-2023-certificate.png" style="margin: 0px auto; " width="175"> <img alt="Tour Review" class="img-responsive" height="278" src="https://data.asiahighlights.com/image/forms/ah-ch-gh-tp-rating.png" style="width: 170px; display: block; margin: 10px auto 0px; " width="1133"></div>
</td>
<?php foreach ($feedback_list as $index => $feedback) {?>
<td>
<div class="tour_feedback">
<div class="feedback_content">
<strong>
<?php echo $feedback['title'] ?>
</strong>
<p class="feedback_rating"><img src="<?php if (strpos($feedback['url'], 'trustpilot.com') == true) { echo 'https://data.asiahighlights.com/pic/trustpilot-new-icon.png'; } else if (strpos($feedback['url'], 'tripadvisor.com') == true) { echo 'https://data.chinahighlights.com/image/aboutus/feedback/five-star.png'; } ?>"></p>
<p>
<?php echo $feedback['content'] ?>
</p>
<a href="<?php echo $feedback['url'] ?>" target="_blank" rel="nofollow">More</a>
<div class="customer_name">
<?php echo $feedback['customer'] ?>, <?php echo $feedback['createdOn'] ?>
</div>
</div>
</div>
</td>
<?php }?>
</tr>
</tbody>
</table>
</div>

@ -73,69 +73,7 @@
<?php } ?>
<?php if (!empty($recommands['Tour E'])) { ?>
<td class="nextarticle">
<a href="<?php echo $recommands['Tour E']->ic_url; ?>" rel="nofollow">
<img src="https://data.chinahighlights.com/grey.gif" loader="lazy"
originalsrc="<?php echo $recommands['Tour E']->mobile_photo; ?>"
class="img-responsive"
alt="<?php echo $recommands['Tour E']->ic_title; ?>">
</a>
<div class="nextarticlename">
<a href="<?php echo $recommands['Tour E']->ic_url; ?>"><?php echo $recommands['Tour E']->ic_title; ?></a>
</div>
</td>
<?php } ?>
<?php if (!empty($recommands['Tour F'])) { ?>
<td class="nextarticle">
<a href="<?php echo $recommands['Tour F']->ic_url; ?>" rel="nofollow">
<img src="https://data.chinahighlights.com/grey.gif" loader="lazy"
originalsrc="<?php echo $recommands['Tour F']->mobile_photo; ?>"
class="img-responsive"
alt="<?php echo $recommands['Tour F']->ic_title; ?>">
</a>
<div class="nextarticlename">
<a href="<?php echo $recommands['Tour F']->ic_url; ?>"><?php echo $recommands['Tour F']->ic_title; ?></a>
</div>
</td>
<?php } ?>
<?php if (!empty($recommands['Tour G'])) { ?>
<td class="nextarticle">
<a href="<?php echo $recommands['Tour G']->ic_url; ?>" rel="nofollow">
<img src="https://data.chinahighlights.com/grey.gif" loader="lazy"
originalsrc="<?php echo $recommands['Tour G']->mobile_photo; ?>"
class="img-responsive"
alt="<?php echo $recommands['Tour G']->ic_title; ?>">
</a>
<div class="nextarticlename">
<a href="<?php echo $recommands['Tour G']->ic_url; ?>"><?php echo $recommands['Tour G']->ic_title; ?></a>
</div>
</td>
<?php } ?>
<?php if (!empty($recommands['Tour H'])) { ?>
<td class="nextarticle">
<a href="<?php echo $recommands['Tour H']->ic_url; ?>" rel="nofollow">
<img src="https://data.chinahighlights.com/grey.gif" loader="lazy"
originalsrc="<?php echo $recommands['Tour H']->mobile_photo; ?>"
class="img-responsive"
alt="<?php echo $recommands['Tour H']->ic_title; ?>">
</a>
<div class="nextarticlename">
<a href="<?php echo $recommands['Tour H']->ic_url; ?>"><?php echo $recommands['Tour H']->ic_title; ?></a>
</div>
</td>
<?php } ?>
</tr>
</tbody>
</table>
@ -215,65 +153,7 @@
<?php } ?>
<?php if (!empty($recommands['Article E'])) { ?>
<td class="nextarticle">
<a href="<?php echo $recommands['Article E']->ic_url; ?>" rel="nofollow">
<img src="https://data.chinahighlights.com/grey.gif" loader="lazy"
originalsrc="<?php echo empty($recommands['Article E']->mobile_photo) ? $recommands['Article E']->ic_photo_img : $recommands['Article E']->mobile_photo; ?>"
class="img-responsive" alt="<?php echo $recommands['Article E']->ic_title; ?>">
</a>
<div class="nextarticlename">
<a href="<?php echo $recommands['Article E']->ic_url; ?>"> <?php echo $recommands['Article E']->ic_title; ?> </a>
</div>
</td>
<?php } ?>
<?php if (!empty($recommands['Article F'])) { ?>
<td class="nextarticle">
<a href="<?php echo $recommands['Article F']->ic_url; ?>" rel="nofollow">
<img src="https://data.chinahighlights.com/grey.gif" loader="lazy"
originalsrc="<?php echo empty($recommands['Article F']->mobile_photo) ? $recommands['Article F']->ic_photo_img : $recommands['Article F']->mobile_photo; ?>"
class="img-responsive" alt="<?php echo $recommands['Article F']->ic_title; ?>">
</a>
<div class="nextarticlename">
<a href="<?php echo $recommands['Article F']->ic_url; ?>"> <?php echo $recommands['Article F']->ic_title; ?> </a>
</div>
</td>
<?php } ?>
<?php if (!empty($recommands['Article G'])) { ?>
<td class="nextarticle">
<a href="<?php echo $recommands['Article G']->ic_url; ?>" rel="nofollow">
<img src="https://data.chinahighlights.com/grey.gif" loader="lazy"
originalsrc="<?php echo empty($recommands['Article G']->mobile_photo) ? $recommands['Article G']->ic_photo_img : $recommands['Article G']->mobile_photo; ?>"
class="img-responsive" alt="<?php echo $recommands['Article G']->ic_title; ?>">
</a>
<div class="nextarticlename">
<a href="<?php echo $recommands['Article G']->ic_url; ?>"> <?php echo $recommands['Article G']->ic_title; ?> </a>
</div>
</td>
<?php } ?>
<?php if (!empty($recommands['Article H'])) { ?>
<td class="nextarticle">
<a href="<?php echo $recommands['Article H']->ic_url; ?>" rel="nofollow">
<img src="https://data.chinahighlights.com/grey.gif" loader="lazy"
originalsrc="<?php echo empty($recommands['Article H']->mobile_photo) ? $recommands['Article H']->ic_photo_img : $recommands['Article H']->mobile_photo; ?>"
class="img-responsive" alt="<?php echo $recommands['Article H']->ic_title; ?>">
</a>
<div class="nextarticlename">
<a href="<?php echo $recommands['Article H']->ic_url; ?>"> <?php echo $recommands['Article H']->ic_title; ?> </a>
</div>
</td>
<?php } ?>
</tr>
</tbody>
</table>

@ -12,6 +12,7 @@
<meta name="apple-mobile-web-app-title" content="Global Highlights - Since 2018!">
<meta name="keywords" content="<!--@KEYWORDS@-->">
<meta name="description" content="<!--@DESCRIPTION@-->">
<!--@Meta_Robots@-->
<!--@Meta-Ezoic-NoAds@-->
<!--@OG:IMAGE@-->
<link rel="canonical" href="<!--@CANONICAL@-->">
@ -90,44 +91,44 @@
<div>
<ul class="inspiration">
<li><a href="https://www.asiahighlights.com/bhutan"
target="_blank">Bhutan</a></li>
target="_blank" rel="nofollow">Bhutan</a></li>
<li><a href="https://www.chinahighlights.com/tour/"
target="_blank">China</a></li>
target="_blank" rel="nofollow">China</a></li>
<li><a href="https://www.asiahighlights.com/cambodia/tours"
target="_blank">Cambodia</a></li>
<li><a href="https://www.asiahighlights.com/india" target="_blank">India</a>
target="_blank" rel="nofollow">Cambodia</a></li>
<li><a href="https://www.asiahighlights.com/india" target="_blank" rel="nofollow">India</a>
</li>
<li><a href="https://www.asiahighlights.com/japan/tours"
target="_blank">Japan</a></li>
target="_blank" rel="nofollow">Japan</a></li>
<li> <a href="https://www.asiahighlights.com/laos/trip-plan"
target="_blank">Laos</a></li>
target="_blank" rel="nofollow">Laos</a></li>
<li><a href="https://www.asiahighlights.com/myanmar/tours"
target="_blank">Myanmar</a></li>
target="_blank" rel="nofollow">Myanmar</a></li>
<li><a href="https://www.asiahighlights.com/asia/tours/mongolia-china-and-thailand"
target="_blank">Mongolia</a></li>
target="_blank" rel="nofollow">Mongolia</a></li>
</ul>
</div>
<div>
<ul class="inspiration">
<li><a href="https://www.asiahighlights.com/nepal" target="_blank">Nepal</a>
<li><a href="https://www.asiahighlights.com/nepal" target="_blank" rel="nofollow">Nepal</a>
</li>
<li><a href="https://www.asiahighlights.com/asia/plan-a-two-week-itinerary-in-japan-and-south-korea"
target="_blank">South Korea</a></li>
<li><a href="https://www.asiahighlights.com/srilanka" target="_blank">Sri
target="_blank" rel="nofollow">South Korea</a></li>
<li><a href="https://www.asiahighlights.com/srilanka" target="_blank" rel="nofollow">Sri
Lanka</a></li>
<li><a href="https://www.asiahighlights.com/thailand/tours"
target="_blank">Thailand</a></li>
target="_blank" rel="nofollow">Thailand</a></li>
<li> <a href="https://www.asiahighlights.com/vietnam/tours"
target="_blank">Vietnam</a></li>
target="_blank" rel="nofollow">Vietnam</a></li>
<li><a href="https://www.asiahighlights.com/singapore/plan-your-trip"
target="_blank">Singapore</a>
target="_blank" rel="nofollow">Singapore</a>
</li>
<li><a href="https://www.asiahighlights.com/indonesia/bali/tours"
target="_blank">Indonesia (Bali)</a></li>
target="_blank" rel="nofollow">Indonesia (Bali)</a></li>
<li><a href="https://www.asiahighlights.com/caucasus-central-asia/tours"
target="_blank">Central Asia</a></li>
target="_blank" rel="nofollow">Central Asia</a></li>
</ul>
</div>
</div>
@ -221,14 +222,13 @@
<!--@TIPS-RIGHT-LIST@-->
<div class="info_tm_button"><a href="/forms/tailormade?product_code=" id="create_my_trip_button_pc">Create
my trip</a>
</div>
</div>
</div>
<!--PC正文 结束-->
<!--PC正文 结束--><!--@ARTICLENEXT@-->
</div>
<!--@ARTICLENEXT@-->
<!--PC底部-->
<div class="infotailor">
We are here to help you...<br> start planning your tailor-made trip with 1-1 help from our travel advisors.
<div class="tourbutton"><a href="/forms/tailormade?product_code=">Create Your Trip </a></div>
@ -325,13 +325,13 @@
<div class="destination_links">
<ul>
<li><a href="https://www.chinahighlights.com/" target="_blank">China</a></li>
<li><a href="https://www.asiahighlights.com/southeast-asia/tours" target="_blank">Southeast Asia</a>
<li><a href="https://www.chinahighlights.com/" target="_blank" rel="nofollow">China</a></li>
<li><a href="https://www.asiahighlights.com/southeast-asia/tours" target="_blank" rel="nofollow">Southeast Asia</a>
</li>
<li><a href="https://www.asiahighlights.com/japan/tours" target="_blank">Japan, South Korea</a></li>
<li><a href="https://www.asiahighlights.com/japan/tours" target="_blank" rel="nofollow">Japan, South Korea</a></li>
<li><a href="https://www.asiahighlights.com/indian-continent/tours/india-nepal-sri-lanka-bhutan"
target="_blank">India, Nepal, Bhutan, and Sri lanka</a></li>
<li><a href="https://www.asiahighlights.com/caucasus-central-asia/tours" target="_blank">Central
target="_blank" rel="nofollow">India, Nepal, Bhutan, and Sri lanka</a></li>
<li><a href="https://www.asiahighlights.com/caucasus-central-asia/tours" target="_blank" rel="nofollow">Central
Asia</a></li>
</ul>
</div>
@ -357,26 +357,26 @@
<div class="aboutusright company">
<div class="bottompctitle">Company</div>
<ul>
<li><a href="/about" rel="nofollow">About us</a></li>
<li><a href="/about">About us</a></li>
<li><a href="/travel-agents">Travel Agents</a></li>
<li><a href="/reviews">Reviews</a></li>
<li><a href="/company-history.htm">History</li>
<li><a href="/contactus" rel="nofollow">Contact us</a></li>
<li><a href="/privacy.htm" rel="nofollow">Privacy Policy</a></li>
<li><a href="/contactus">Contact us</a></li>
<li><a href="/privacy.htm">Privacy Policy</a></li>
<li><a href="/terms-of-use.htm">Terms</a></li>
</ul>
</div>
<div class="aboutusright language">
<div class="bottompctitle">Language</div>
<ul>
<li><a href="https://www.asiahighlights.com/" target="_blank">Asia</a></li>
<li><a href="https://www.chinarundreisen.com/" target="_blank">Deutsch</a></li>
<li><a href="https://www.voyageschine.com/" target="_blank">Français</a></li>
<li><a href="https://www.viaje-a-china.com/" target="_blank">Español</a></li>
<li><a href="https://www.viaggio-in-cina.it/" target="_blank">Italiano</a></li>
<li><a href="https://www.chinahighlights.ru/" target="_blank">Русский</a></li>
<li><a href="https://www.arachina.com/" target="_blank">日本語</a></li>
<li><a href="https://www.asiahighlights.com/" target="_blank" rel="nofollow">Asia</a></li>
<li><a href="https://www.chinarundreisen.com/" target="_blank" rel="nofollow">Deutsch</a></li>
<li><a href="https://www.voyageschine.com/" target="_blank" rel="nofollow">Français</a></li>
<li><a href="https://www.viaje-a-china.com/" target="_blank" rel="nofollow">Español</a></li>
<li><a href="https://www.viaggio-in-cina.it/" target="_blank" rel="nofollow">Italiano</a></li>
<li><a href="https://www.chinahighlights.ru/" target="_blank" rel="nofollow">Русский</a></li>
<li><a href="https://www.arachina.com/" target="_blank" rel="nofollow">日本語</a></li>
</ul>
</div>
<div class="aboutusright followus">
@ -395,7 +395,7 @@
<li style="margin-bottom: 30px;"><a href="https://twitter.com/GlobalHighligh1" rel="nofollow"
title="Share us on Pinterest" target="_blank"><svg xmlns="http://www.w3.org/2000/svg"
width="24" height="24" viewBox="0 0 24 24"
style=" fill: #fff; ">
style="fill: #fff;">
<path
d="M24 4.557c-.883.392-1.832.656-2.828.775 1.017-.609 1.798-1.574 2.165-2.724-.951.564-2.005.974-3.127 1.195-.897-.957-2.178-1.555-3.594-1.555-3.179 0-5.515 2.966-4.797 6.045-4.091-.205-7.719-2.165-10.148-5.144-1.29 2.213-.669 5.108 1.523 6.574-.806-.026-1.566-.247-2.229-.616-.054 2.281 1.581 4.415 3.949 4.89-.693.188-1.452.232-2.224.084.626 1.956 2.444 3.379 4.6 3.419-2.07 1.623-4.678 2.348-7.29 2.04 2.179 1.397 4.768 2.212 7.548 2.212 9.142 0 14.307-7.721 13.995-14.646.962-.695 1.797-1.562 2.457-2.549z">
</path>

@ -8,6 +8,7 @@
</title>
<meta name="keywords" content="<!--@KEYWORDS@-->">
<meta name="description" content="<!--@DESCRIPTION@-->">
<!--@Meta_Robots@-->
<link rel="canonical" href="<!--@CANONICAL@-->">
<meta content="width=device-width,minimum-scale=1,initial-scale=1" name="viewport">
<!--@OG:IMAGE@-->
@ -124,39 +125,39 @@
</ul>
<ul data-menu="submenu-6" id="submenu-6" class="menu__level" tabindex="-1" role="menu" aria-label="destinations">
<li class="menu__item" role="menuitem"><a href="https://www.asiahighlights.com/bhutan"
target="_blank" class="menu__link">Bhutan</a></li>
target="_blank" class="menu__link" rel="nofollow">Bhutan</a></li>
<li class="menu__item" role="menuitem"><a href="https://www.chinahighlights.com/tour/"
target="_blank" class="menu__link">China</a></li>
<li class="menu__item" role="menuitem"><a href="https://www.asiahighlights.com/cambodia/tours"
target="_blank" class="menu__link" rel="nofollow">China</a></li>
<li class="menu__item" role="menuitem"><a href="https://www.asiahighlights.com/cambodia/tours" rel="nofollow"
target="_blank" class="menu__link">Cambodia</a></li>
<li class="menu__item" role="menuitem"><a href="https://www.asiahighlights.com/india"
<li class="menu__item" role="menuitem"><a href="https://www.asiahighlights.com/india" rel="nofollow"
target="_blank" class="menu__link">India</a></li>
<li class="menu__item" role="menuitem"><a href="https://www.asiahighlights.com/japan/tours"
<li class="menu__item" role="menuitem"><a href="https://www.asiahighlights.com/japan/tours" rel="nofollow"
target="_blank" class="menu__link">Japan</a></li>
<li class="menu__item" role="menuitem"> <a href="https://www.asiahighlights.com/laos/trip-plan"
<li class="menu__item" role="menuitem"> <a href="https://www.asiahighlights.com/laos/trip-plan" rel="nofollow"
target="_blank" class="menu__link">Laos</a></li>
<li class="menu__item" role="menuitem"><a href="https://www.asiahighlights.com/myanmar/tours"
<li class="menu__item" role="menuitem"><a href="https://www.asiahighlights.com/myanmar/tours" rel="nofollow"
target="_blank" class="menu__link">Myanmar</a></li>
<li class="menu__item" role="menuitem"><a href="https://www.asiahighlights.com/asia/tours/mongolia-china-and-thailand"
<li class="menu__item" role="menuitem"><a href="https://www.asiahighlights.com/asia/tours/mongolia-china-and-thailand" rel="nofollow"
target="_blank" class="menu__link">Mongolia</a></li>
<li class="menu__item" role="menuitem"><a href="https://www.asiahighlights.com/nepal"
<li class="menu__item" role="menuitem"><a href="https://www.asiahighlights.com/nepal" rel="nofollow"
target="_blank" class="menu__link">Nepal</a></li>
<li class="menu__item" role="menuitem"><a href="https://www.asiahighlights.com/asia/plan-a-two-week-itinerary-in-japan-and-south-korea"
<li class="menu__item" role="menuitem"><a href="https://www.asiahighlights.com/asia/plan-a-two-week-itinerary-in-japan-and-south-korea" rel="nofollow"
target="_blank" class="menu__link">South Korea</a></li>
<li class="menu__item" role="menuitem"><a href="https://www.asiahighlights.com/srilanka"
<li class="menu__item" role="menuitem"><a href="https://www.asiahighlights.com/srilanka" rel="nofollow"
target="_blank" class="menu__link">Sri Lanka</a></li>
<li class="menu__item" role="menuitem"><a href="https://www.asiahighlights.com/thailand/tours"
<li class="menu__item" role="menuitem"><a href="https://www.asiahighlights.com/thailand/tours" rel="nofollow"
target="_blank" class="menu__link">Thailand</a></li>
<li class="menu__item" role="menuitem"> <a href="https://www.asiahighlights.com/vietnam/tours"
<li class="menu__item" role="menuitem"> <a href="https://www.asiahighlights.com/vietnam/tours" rel="nofollow"
target="_blank" class="menu__link">Vietnam</a></li>
<li class="menu__item" role="menuitem"><a href="https://www.asiahighlights.com/singapore/plan-your-trip"
<li class="menu__item" role="menuitem"><a href="https://www.asiahighlights.com/singapore/plan-your-trip" rel="nofollow"
target="_blank" class="menu__link">Singapore</a>
</li>
<li class="menu__item" role="menuitem"><a href="https://www.asiahighlights.com/indonesia/bali/tours"
<li class="menu__item" role="menuitem"><a href="https://www.asiahighlights.com/indonesia/bali/tours" rel="nofollow"
target="_blank" class="menu__link">Indonesia (Bali)</a></li>
<li class="menu__item" role="menuitem"><a href="https://www.asiahighlights.com/caucasus-central-asia/tours"
<li class="menu__item" role="menuitem"><a href="https://www.asiahighlights.com/caucasus-central-asia/tours" rel="nofollow"
target="_blank" class="menu__link">Central Asia</a></li>
</ul>
@ -284,11 +285,11 @@
<div class="destination_links">
<ul>
<li><a href="https://www.chinahighlights.com/" target="_blank">China</a></li>
<li><a href="https://www.asiahighlights.com/southeast-asia/tours" target="_blank">Southeast Asia</a></li>
<li><a href="https://www.asiahighlights.com/japan/tours" target="_blank">Japan, South Korea</a></li>
<li><a href="https://www.asiahighlights.com/indian-continent/tours/india-nepal-sri-lanka-bhutan" target="_blank">India, Nepal, Bhutan, and Sri lanka</a></li>
<li><a href="https://www.asiahighlights.com/caucasus-central-asia/tours" target="_blank">Central Asia</a></li>
<li><a href="https://www.chinahighlights.com/" target="_blank" rel="nofollow">China</a></li>
<li><a href="https://www.asiahighlights.com/southeast-asia/tours" target="_blank" rel="nofollow">Southeast Asia</a></li>
<li><a href="https://www.asiahighlights.com/japan/tours" target="_blank" rel="nofollow">Japan, South Korea</a></li>
<li><a href="https://www.asiahighlights.com/indian-continent/tours/india-nepal-sri-lanka-bhutan" target="_blank" rel="nofollow">India, Nepal, Bhutan, and Sri lanka</a></li>
<li><a href="https://www.asiahighlights.com/caucasus-central-asia/tours" target="_blank" rel="nofollow">Central Asia</a></li>
</ul>
</div>
</div>
@ -305,18 +306,18 @@
<div class="bottommedia">
<span class="followtitle">Follow Us</span>
<ul>
<li style="margin-bottom: 30px;"><a href="https://www.facebook.com/GlobalHighlightsTravel" title="Follow us on Facebook" class="fb" target="_blank">
<li style="margin-bottom: 30px;"><a href="https://www.facebook.com/GlobalHighlightsTravel" title="Follow us on Facebook" class="fb" target="_blank" rel="nofollow">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
<path id="facebook" fill="#ffffff" d="M17.252,11.106V8.65c0-0.922,0.611-1.138,1.041-1.138h2.643V3.459l-3.639-0.015 c-4.041,0-4.961,3.023-4.961,4.961v2.701H10v4.178h2.336v11.823h4.916V15.284h3.316l0.428-4.178H17.252z">
</path>
</svg>Facebook
</a></li>
<li style="margin-bottom: 30px;"><a href="https://twitter.com/GlobalHighligh1" title="Share us on Twitter" class="tw" target="_blank"> <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" style=" fill: #fff; ">
<li style="margin-bottom: 30px;"><a href="https://twitter.com/GlobalHighligh1" title="Share us on Twitter" class="tw" target="_blank" rel="nofollow"> <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" style=" fill: #fff; ">
<path d="M24 4.557c-.883.392-1.832.656-2.828.775 1.017-.609 1.798-1.574 2.165-2.724-.951.564-2.005.974-3.127 1.195-.897-.957-2.178-1.555-3.594-1.555-3.179 0-5.515 2.966-4.797 6.045-4.091-.205-7.719-2.165-10.148-5.144-1.29 2.213-.669 5.108 1.523 6.574-.806-.026-1.566-.247-2.229-.616-.054 2.281 1.581 4.415 3.949 4.89-.693.188-1.452.232-2.224.084.626 1.956 2.444 3.379 4.6 3.419-2.07 1.623-4.678 2.348-7.29 2.04 2.179 1.397 4.768 2.212 7.548 2.212 9.142 0 14.307-7.721 13.995-14.646.962-.695 1.797-1.562 2.457-2.549z">
</path>
</svg>Twitter </a></li>
<li><a href="https://www.instagram.com/globalhighlightstour/" title="Follow us on Instagram" class="linkin" target="_blank">
<li><a href="https://www.instagram.com/globalhighlightstour/" title="Follow us on Instagram" class="linkin" target="_blank" rel="nofollow">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
<path id="instagram" fill="#ffffff" d="M22.107,3.415H7.893c-2.469,0-4.479,2.007-4.479,4.477v4.73v9.486c0,2.469,2.01,4.479,4.479,4.479h14.215 c2.469,0,4.479-2.01,4.479-4.479v-9.486v-4.73C26.586,5.421,24.576,3.415,22.107,3.415 M23.393,6.086l0.512-0.004v0.511v3.416 l-3.916,0.014l-0.012-3.928L23.393,6.086z M11.693,12.622c0.742-1.028,1.945-1.7,3.307-1.7s2.564,0.672,3.307,1.7 c0.484,0.67,0.771,1.49,0.771,2.379c0,2.248-1.828,4.078-4.078,4.078c-2.248,0-4.078-1.83-4.078-4.078 C10.922,14.112,11.211,13.292,11.693,12.622 M24.328,22.107c0,1.225-0.994,2.219-2.221,2.219H7.893 c-1.225,0-2.219-0.994-2.219-2.219v-9.486h3.459C8.832,13.356,8.664,14.159,8.664,15c0,3.494,2.842,6.335,6.336,6.335 s6.336-2.842,6.336-6.335c0-0.842-0.17-1.645-0.467-2.379h3.459V22.107z">
</path>
@ -329,12 +330,12 @@
<div class="bottomlinks">
<span class="followtitle">About Us</span>
<ul>
<li><a href="/about" rel="nofollow">About us</a></li>
<li><a href="/about">About us</a></li>
<li><a href="/travel-agents">Travel Agents</a></li>
<li><a href="/reviews">Reviews</a></li>
<li><a href="/company-history.htm">History</li>
<li><a href="/contactus" rel="nofollow">Contact us</a></li>
<li><a href="/privacy.htm" rel="nofollow">Privacy Policy</a></li>
<li><a href="/contactus">Contact us</a></li>
<li><a href="/privacy.htm">Privacy Policy</a></li>
<li><a href="/terms-of-use.htm">Terms</a></li>
</ul>
</div>
@ -343,17 +344,17 @@
<div class="listtour" style="display: flex;">
<div><ul style="width:185px;">
<li><a href="https://www.chinarundreisen.com/" target="_blank">Deutsch</a></li>
<li><a href="https://www.voyageschine.com/" target="_blank">Français</a></li>
<li><a href="https://www.viaje-a-china.com/" target="_blank">Español</a></li>
<li><a href="https://www.chinarundreisen.com/" target="_blank" rel="nofollow">Deutsch</a></li>
<li><a href="https://www.voyageschine.com/" target="_blank" rel="nofollow">Français</a></li>
<li><a href="https://www.viaje-a-china.com/" target="_blank" rel="nofollow">Español</a></li>
</ul></div>
<div>
<ul>
<li><a href="https://www.viaggio-in-cina.it/" target="_blank">Italiano</a></li>
<li><a href="https://www.chinahighlights.ru/" target="_blank">Русский</a></li>
<li><a href="https://www.arachina.com/" target="_blank">日本語</a></li>
<li><a href="https://www.viaggio-in-cina.it/" target="_blank" rel="nofollow">Italiano</a></li>
<li><a href="https://www.chinahighlights.ru/" target="_blank" rel="nofollow">Русский</a></li>
<li><a href="https://www.arachina.com/" target="_blank" rel="nofollow">日本語</a></li>
</ul>
</div>
</div>

Loading…
Cancel
Save