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

master
赵鹏 1 year ago
commit f99671d1e2

@ -39,9 +39,12 @@ switch ($_SERVER['SERVER_NAME']) {
case 'gh-int.mycht.cn':
$base_url = 'https://int.mycht.cn';
break;
case 'int.mycht.cn':
case 'int.mycht.cn': // lmr
$base_url = 'https://int.mycht.cn';
break;
case 'gm.mycht.cn': // lmr
$base_url = 'https://gm.mycht.cn';
break;
case 'origin-gh.mycht.cn':
$base_url = 'https://gh.mycht.cn';
break;
@ -426,14 +429,14 @@ $config['site'] = array(
//静态文件生成路径
$config['cache']['jp']['cache_path'] = 'D:\wwwcache-intl\arachina.com';
$config['cache']['gm']['cache_path'] = 'C:\Dropbox\wwwcache\chinarundreisen.com';
$config['cache']['gm']['cache_path'] = 'D:\wwwcache-gm\chinarundreisen.com';
$config['cache']['vc']['cache_path'] = 'D:\wwwcache-intl\voyageschine.com';
$config['cache']['vac']['cache_path'] = 'D:\wwwcache-intl\viaje-a-china.com';
$config['cache']['ru']['cache_path'] = 'D:\wwwcache-intl\chinahighlights.ru';
$config['cache']['it']['cache_path'] = 'D:\wwwcache-intl\viaggio-in-cina.it';
$config['cache']['gh_jp']['cache_path'] = 'D:\wwwcache-intl\globalhighlights.jp';
$config['cache']['gh_gm']['cache_path'] = 'C:\Dropbox\wwwcache\globalhighlights.de';
$config['cache']['gh_gm']['cache_path'] = 'D:\wwwcache-gm\globalhighlights.de';
$config['cache']['gh_vc']['cache_path'] = 'D:\wwwcache-intl\globalhighlights.fr';
$config['cache']['gh_vac']['cache_path'] = 'D:\wwwcache-intl\globalhighlights.es';
$config['cache']['gh_ru']['cache_path'] = 'D:\wwwcache-intl\globalhighlights.ru';
@ -762,7 +765,7 @@ $config['css_source_ts'] = 'https://www.trainspread.com/css/bootstrap.min.css';
//静态文件生成路径
$config['cache']['jp']['cache_path'] = 'D:\wwwcache-intl\arachina.com';
$config['cache']['gm']['cache_path'] = 'C:\Dropbox\wwwcache\chinarundreisen.com';
$config['cache']['gm']['cache_path'] = 'D:\wwwcache-gm\chinarundreisen.com';
$config['cache']['vc']['cache_path'] = 'D:\wwwcache-intl\voyageschine.com';
$config['cache']['vac']['cache_path'] = 'D:\wwwcache-intl\viaje-a-china.com';
$config['cache']['ru']['cache_path'] = 'D:\wwwcache-intl\chinahighlights.ru';
@ -1137,11 +1140,13 @@ $config['templates_ah'] = array(
// 出境游网站模板
$config['templates_pgr'] = array(
'空白模板' => 'guide_info_detail', '导航模板' => 'culture_info_detail_with_category',
'空白模板' => 'guide_info_detail',
'导航模板' => 'culture_info_detail_with_category',
);
// 国际火车网站模板
$config['templates_ts'] = array(
'空白模板' => 'guide_info_detail', '信息导航模板' => 'train_series_with_category',
'空白模板' => 'guide_info_detail',
'信息导航模板' => 'train_series_with_category',
);
//翰特产品类型,Information控制器的get_products函数有直接调用在这里增加了信息需要去控制器写相关操作代码

@ -900,8 +900,17 @@ class Information extends CI_Controller
}
}
// 检查图片地址格式
$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'] = $information->ic_photo;
$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;
@ -1689,6 +1698,22 @@ class Information extends CI_Controller
}
}
// 未勾选In Article 广告时,加入标签 <meta name="ezoic" content="noads"/>,让 ezoic 识别出该页面不展示广告。
$meta_google_ad_article = get_meta($information->ic_id, 'meta_google_ad_article');
if (empty($meta_google_ad_article) || !$meta_google_ad_article) {
$template = str_replace(
'<!--@Meta-Ezoic-NoAds@-->',
'<meta name="ezoic" content="noads"/>',
$template
);
} else {
$template = str_replace(
'<!--@Meta-Ezoic-NoAds@-->',
'',
$template
);
}
$why_us_covid_list_pc = $this->load->view(
$template_path . '-why-us-covid-list-pc',
array(),
@ -1713,7 +1738,7 @@ class Information extends CI_Controller
);
$information->ic_content = str_replace('<!--@TOUR-FORM-TAG@-->', $tour_form_content, $information->ic_content);
}
// CH: 1; AH: 28; GH : 33
$price_tag_list = $this->parse_price_tag($information->ic_content, 33);
@ -1989,7 +2014,8 @@ class Information extends CI_Controller
$template = str_replace(
'<!--@NEWEST_FEEDBACK_10@-->',
$feedback_newest_10_content,
$template);
$template
);
//文中的信息推荐
if (strpos($information->ic_content, '<!--@Content-Recommends-Article@-->') !== false) {
@ -3180,11 +3206,11 @@ class Information extends CI_Controller
case 'gm':
//GET_HTTP("http://148.251.35.42:3300/create-cache/?url=" . urlencode($url)); //请求nodejs静态化更新页面删除缓存因为部分页面没有进入信息平台
//if ($delete_only) {
// $url = "http://144.76.185.44:8029/gm.php/information/delete_cache_23Xd913mddkgssODII?static_html_url=" . urlencode($url);
// $url = "https://www.chinarundreisen.com/gm.php/information/delete_cache_23Xd913mddkgssODII?static_html_url=" . urlencode($url);
//} else {
//先删除再生成,部分页面没有在信息平台中
GET_HTTP("http://144.76.185.44:8029/gm.php/information/delete_cache_23Xd913mddkgssODII?static_html_url=" . urlencode($url));
$url = "http://144.76.185.44:8029/gm.php/information/detail/?static_html_url=" . $url;
GET_HTTP("https://www.chinarundreisen.com/gm.php/information/delete_cache_23Xd913mddkgssODII?static_html_url=" . urlencode($url));
$url = "https://www.chinarundreisen.com/gm.php/information/detail/?static_html_url=" . $url;
//}
break;

@ -6,41 +6,45 @@ if (!defined('BASEPATH'))
* AMP的相关方法
*/
class Amplib {
class Amplib
{
var $CI;
public function __construct() {
$this->CI = & get_instance();
public function __construct()
{
$this->CI = &get_instance();
$this->CI->load->model('Information_model');
$this->CI->load->model('InfoMetas_model');
$this->CI->load->model('Logs_model');
}
public function edit($ic_id) {
public function edit($ic_id)
{
$data = array();
$data['information'] = $this->CI->Information_model->detail_by_ic_id($ic_id);
if ($data['information'] == FALSE) {
show_404();
}
//查询上一次保存记录
$amp_log = $this->CI->Logs_model->get_last_edit_amp($ic_id);
if(!empty($amp_log)){
$data['last_edit_amp_id'] = $amp_log->log_id;
}else{
$data['last_edit_amp_id'] = '';
}
//查询上一次保存记录
$amp_log = $this->CI->Logs_model->get_last_edit_amp($ic_id);
if (!empty($amp_log)) {
$data['last_edit_amp_id'] = $amp_log->log_id;
} else {
$data['last_edit_amp_id'] = '';
}
$this->CI->load->view('bootstrap3/header', $data);
$this->CI->load->view('amp_editor');
$this->CI->load->view('bootstrap3/footer');
}
public function auto_create($ic_id) {
public function auto_create($ic_id)
{
$data = array();
if(strtolower($this->CI->config->item('site_code')) == 'cht'){
$this->CI->Information_model->ic_type = "AND ic.ic_type != 'none'";
}
if (strtolower($this->CI->config->item('site_code')) == 'cht') {
$this->CI->Information_model->ic_type = "AND ic.ic_type != 'none'";
}
$data['information'] = $this->CI->Information_model->detail_by_ic_id($ic_id);
if ($data['information'] == FALSE) {
return json_encode(array('result' => 'no', 'data' => '找不到这个页面'));
@ -61,7 +65,7 @@ class Amplib {
break;
case 'gm':
$websitehost = 'https://data.chinarundreisen.com';
$html_source_url = 'http://144.76.185.44:8029' . $data['information']->ic_url;
$html_source_url = 'https://www.chinarundreisen.com/' . $data['information']->ic_url;
break;
case 'ct':
$websitehost = 'https://data.chinatravel.com';
@ -75,23 +79,24 @@ class Amplib {
$html_source = GET_HTTP($html_source_url);
if (!empty($html_source)) {
$post_data = array('websitehost' => $websitehost, 'template_name' => $site_code, 'create_amp' => 'true', 'htmlsource' => $html_source);
//德语站点走另外一个控制器,其他站点还是走原来的流程
if($site_code == 'gm'){
if($data['information']->ic_url == '/massgeschneiderte-china-reisen/'){
return json_encode(array());
}else{
return GET_HTTP(site_url('/apps/htmlcompressor/index_gm/choose_way'), $post_data, 'POST');
}
}elseif($site_code == 'ah'){
return GET_HTTP(site_url('/apps/htmlcompressor/index_ah/choose_way'), $post_data, 'POST');
}else{
return GET_HTTP(site_url('/apps/htmlcompressor/index/optimize'), $post_data, 'POST');
}
//德语站点走另外一个控制器,其他站点还是走原来的流程
if ($site_code == 'gm') {
if ($data['information']->ic_url == '/massgeschneiderte-china-reisen/') {
return json_encode(array());
} else {
return GET_HTTP(site_url('/apps/htmlcompressor/index_gm/choose_way'), $post_data, 'POST');
}
} elseif ($site_code == 'ah') {
return GET_HTTP(site_url('/apps/htmlcompressor/index_ah/choose_way'), $post_data, 'POST');
} else {
return GET_HTTP(site_url('/apps/htmlcompressor/index/optimize'), $post_data, 'POST');
}
}
return json_encode(array('result' => 'no', 'data' => '不知道哪里错了,看代码'));
}
public function edit_save($ic_id = false, $textarea_htmlcode = false, $amp_status = false) {
public function edit_save($ic_id = false, $textarea_htmlcode = false, $amp_status = false)
{
$data = array();
if ($ic_id === false) {
$ic_id = $this->CI->input->post('ic_id');
@ -111,8 +116,8 @@ class Amplib {
//CH的页面没有canonical内容在这里帮补上
$textarea_htmlcode = str_replace('<!--@CANONICAL@-->', $this->CI->config->item('site_url') . $data['information']->ic_url, $textarea_htmlcode);
//备份修改的代码
$this->CI->Logs_model->write('backup_amp', $ic_id, $textarea_htmlcode);
//备份修改的代码
$this->CI->Logs_model->write('backup_amp', $ic_id, $textarea_htmlcode);
//AMP格式验证
if ($amp_status !== '0') {//只有发布的时候才需要验证

@ -52,7 +52,7 @@ class Information_model extends CI_Model
function search($keyword)
{
$this->init();
$this->topNum = 24;
$this->topNum = 48;
if (is_numeric($keyword)) {
$this->search_title = "AND ic_id=" . $this->HT->escape($keyword);
} else {

@ -0,0 +1,292 @@
<?php
if (!defined('BASEPATH'))
exit('No direct script access allowed');
class searchnew extends CI_Controller{
public function __construct(){
parent::__construct();
$this->load->model("BIZ_train_model");//加载模型
}
//查询聚合余票接口,对返回的数据进行处理
public function index($train_date=null,$fromStation=null,$toStation=null){
//定义一些变量
$cache = 'no';
$flag = true;
$juheTrainInfo = '';
set_time_limit(0);
//判断数据是否合法
if(!$train_date || !$fromStation || !$toStation){
exit('传参不能为空!');
}else{
if(strlen($fromStation) != 3){
exit('fromStation:参数错误!');
}
if(strlen($toStation) != 3){
exit('toStation:参数错误!');
}
$this->train_date = $train_date;
$now_time = time();
$differ_time = (strtotime($train_date) - $now_time) / 86400;
if($differ_time <= 29){
//调用聚合搜索模块
$juheTrainInfo = $this->juheSearch($train_date,$fromStation,$toStation);
if(empty($juheTrainInfo)){
$flag = 'error';
}
}else{
$flag = 'cache';
}
//调用数据处理模块。
$returnJson = $this->dataOperate($juheTrainInfo,$flag,$fromStation,$toStation);
//调用拼接处理模块
$trainjson = $this->createTrainJson($returnJson);
print_r($trainjson);
die();
}
}
//搜索模块
function juheSearch($train_date,$fromStation,$toStation){
$url = 'http://139.129.246.118:12309/trainTickets/ticketsAvailable?key='.JUHE_TRAIN_API_KEY.'&train_date='.$train_date.'&from_station='.$fromStation.'&to_station='.$toStation;
$this->url = $url;
$juheTrainInfo = $this->get_http($url);
if($this->validateJuhe($juheTrainInfo)){
return $juheTrainInfo;
}else{
return null;
}
}
//缓存处理模块(包含缓存处理)
function dataOperate($trainInfo,$flag,$fromStation,$toStation){
if($flag == 'error'){
$research = $this->juheSearch($this->train_date,$fromStation,$toStation);
if($this->validateJuhe($research)){
$trainInfo = $research;
}else{
$flag = 'cache';
}
}
if($flag == 'cache'){
$cacheTrainInfo = $this->BIZ_train_model->get_train_info($fromStation,$toStation);
if(empty($cacheTrainInfo)){
return null;
}else{
$cache_time = $cacheTrainInfo->tpc_datetime;
$now_time = time();
$differ_time = ($now_time - strtotime($cache_time)) / 86400;
if($differ_time >= 7){
$this->delete_traincache($fromStation,$toStation);
$research = $this->juheSearch(strtotime('+7day'),$fromStation,$toStation);
if($this->validateJuhe($research)){
$trainInfo = $research;
}else{
return null;
}
}
}
}
$this->BIZ_train_model->addOrUpdate($fromStation,$toStation,$trainInfo);
return $trainInfo;
}
//字符串拼接模块
function createTrainJson($returnJson){
if(empty($returnJson)){
}else{
$return_data = new stdClass();
$return_data->data = new stdClass();
$return_data->httpstatus = 200;
//$return_data->reason = $reason;
//$return_data->cache = $cache;
$return_data->data->result = array();
$return_data->data->map = new stdClass();
$obj = array();
$i = 0;
$pricestr = '';
//print_r(json_decode($returnJson));
//die();
if(!empty(json_decode($returnJson)->result->list)){
foreach (json_decode($returnJson)->result->list as $value){
$obj[$value->from_station_code] = $value->from_station_name;
$obj[$value->to_station_code] = $value->to_station_name;
$seat_type = '';
if(isset($value->gjrw_price)){
if($value->gjrw_price > 0){
$gjrwPrice = $value->gjrw_price * 10;
$seat_type .= '"6":"'.$gjrwPrice.'","A6":"¥'.$value->gjrw_price.'",';
}
}
if(isset($value->qtxb_price)){
if($value->qtxb_price > 0){
$seat_type .= '"H":"¥'.$value->qtxb_price.'",';
}
}
if(isset($value->rw_price)){
if($value->rw_price > 0){
$rwPrice = $value->rw_price * 10;
$seat_type .= '"4":"'.$rwPrice.'","A4":"¥'.$value->rw_price.'",';
}
}
if(isset($value->rz_price)){
if($value->rz_price > 0){
$rzPrice = $value->rz_price * 10;
$seat_type .= '"2":"'.$rzPrice.'","A2":"¥'.$value->rz_price.'",';
}
}
if(isset($value->tdz_price)){
if($value->tdz_price > 0){
$seat_type .= '"P":"¥'.$value->tdz_price.'",';
}
}
if(isset($value->wz_price)){
if($value->wz_price > 0){
$wzPrice = $value->wz_price * 10;
$seat_type .= '"WZ":"¥'.$value->wz_price.'",';
}
}
if(isset($value->yw_price)){
if($value->yw_price > 0){
$ywPrice = $value->yw_price * 10;
$seat_type .= '"3":"'.$ywPrice.'","A3":"¥'.$value->yw_price.'",';
}
}
if(isset($value->yz_price)){
if($value->yz_price > 0){
$yzPrice = $value->yz_price * 10;
$seat_type .= '"1":"'.$yzPrice.'","A1":"¥'.$value->yz_price.'",';
}
}
if(isset($value->edz_price)){
if($value->edz_price > 0){
$seat_type .= '"O":"¥'.$value->edz_price.'",';
}
}
if(isset($value->ydz_price)){
if($value->ydz_price > 0){
$seat_type .= '"M":"¥'.$value->ydz_price.'",';
}
}
if(isset($value->swz_price)){
if($value->swz_price > 0){
$swzPrice = $value->swz_price * 10;
$seat_type .= '"9":"'.$swzPrice.'","A9":"¥'.$value->swz_price.'",';
}
}
if(isset($value->dw_price)){
if($value->dw_price > 0){
$seat_type .= '"F":"¥'.$value->dw_price.'",';
}
}
$pricestr = $seat_type.'"train_no":'.'"'.$value->train_no.'"';
//余票字符串
$return_data->data->result[$i] = '|预定|'.$value->train_no.'|'.$value->train_code.'|'.$value->from_station_name.'|'.$value->to_station_name.'|'.$value->from_station_code.'|'.$value->to_station_code.'|'.$value->start_time.'|'.$value->arrive_time.'|'.$value->run_time.'|'.$value->can_buy_now.'||'.$value->train_start_date.'||||||||'.$this->ticket_exchange($value->gjrw_num).'|'.$this->ticket_exchange($value->qtxb_num).'|'.$this->ticket_exchange($value->rw_num).'|'.$this->ticket_exchange($value->rz_num).'|'.$this->ticket_exchange($value->tdz_num).'|'.$this->ticket_exchange($value->wz_num).'||'.$this->ticket_exchange($value->yw_num).'|'.$this->ticket_exchange($value->yz_num).'|'.$this->ticket_exchange($value->edz_num).'|'.$this->ticket_exchange($value->ydz_num).'|'.$this->ticket_exchange($value->swz_num).'|'.$this->ticket_exchange($value->dw_num).'||';
$data = '{"validateMessagesShowId":"_validatorMessage","status":true,"httpstatus":200,"data":{'.$pricestr.'},"messages":[],"validateMessages":{}}';
$return_data->data->price[$i] = $data;
$i++;
}
}
$return_data->data->map = (object)$obj;
print_r($return_data);
}
}
//获取价格(废弃)
/*
fromStationCode出发站三字码
toStationCode:终点站三字码
trainCode:车次号
*/
public function get_price($fromStationCode=null,$toStationCode=null,$trainCode=null){
if(!$fromStationCode || !$toStationCode || !$trainCode){
exit('传参错误!');
}else{
$return_data = $this->BIZ_train_model->get_price($fromStationCode,$toStationCode,$trainCode);
if(!empty($return_data)){
print_r(json_decode($return_data->TPL_Price));
}else{
print_r('没有数据返回');
}
}
}
//验证聚合返回的信息是否正确
function validateJuhe($trainInfo){
if(!empty($trainInfo) && !empty(json_decode($trainInfo)->result)){
return true;
}else{
return false;
}
}
//余票转换
function ticket_exchange($num){
if(isset($this->cache)){
$time = strtotime($this->train_date) - time();
$day = $time / 86400;
if($day > 15){
return '有';
}else{
return $num;
}
}else{
if(is_numeric($num)){
if($num == 0){
return '无';
}elseif($num >= 99){
return '有';
}else{
return $num;
}
}else{
if($num == '--'){
return '';
}
}
}
}
//发送请求
function get_http($url, $data = '', $method = 'GET') {
$curl = curl_init(); // 启动一个CURL会话
curl_setopt($curl, CURLOPT_URL, $url); // 要访问的地址
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, 0); // 对认证证书来源的检查
curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, 0); // 从证书中检查SSL加密算法是否存在
curl_setopt($curl, CURLOPT_USERAGENT, $_SERVER['HTTP_USER_AGENT']); // 模拟用户使用的浏览器
curl_setopt($curl, CURLOPT_FOLLOWLOCATION, 1); // 使用自动跳转
curl_setopt($curl, CURLOPT_AUTOREFERER, 1); // 自动设置Referer
if ($method == 'POST' && !empty($data)) {
curl_setopt($curl, CURLOPT_POST, 1); // 发送一个常规的Post请求
curl_setopt($curl, CURLOPT_POSTFIELDS, $data); // Post提交的数据包
}
curl_setopt($curl, CURLOPT_TIMEOUT, 45); // 设置超时限制防止死循环
curl_setopt($curl, CURLOPT_HEADER, 0); // 显示返回的Header区域内容
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); // 获取的信息以文件流的形式返回
$tmpInfo = curl_exec($curl); // 执行操作
$errno = curl_errno($curl);
if ($errno !== 0) {
return false;
$error_message = $errno . ' ' . curl_error($curl); //记录错误日志
log_message('error', "third_party/train_app/index/get_http curl {$error_message}");
}
curl_close($curl); //关闭CURL会话
return $tmpInfo; //返回数据
}
}
?>

File diff suppressed because it is too large Load Diff

@ -43,7 +43,7 @@
<div id="adultBlock" style="display: none">
<p style="margin-top: 0;margin-bottom: 0;"><strong>Adults number (age ≥ 18 years old)</strong></p>
<div class="kids_age">
<select class="kids_number" id="adult_18_plus" name="adult" >
<select class="kids_number" id="adult_18_plus" name="adult_18_plus" >
<option value="0">0</option>
<option value="1">1</option>
<option value="2">2</option>

@ -39,7 +39,7 @@
<div id="adultBlock" style="display: none">
<p style="margin-top: 0;margin-bottom: 0;"><strong>Adults number (age ≥ 18 years old)</strong></p>
<div class="kids_age">
<select class="kids_number" id="adult_18_plus" name="adult" >
<select class="kids_number" id="adult_18_plus" name="adult_18_plus" >
<option value="0">0</option>
<option value="1">1</option>
<option value="2">2</option>

@ -219,15 +219,15 @@
<!--@CUSTOM-CONENT@-->
</div>
<div class="right_brand_info">
<h2>Why Travel with Asia Highlights (98.8% positive customer reviews among 10,000+)</h2>
<h2>Why Asia Highlights (10,000+ reviews & 98.8% 5-star rating)</h2>
<ul>
<li class="tailormade"><strong>Unique experiences tailored to your interests:</strong> Enjoy a
premium trip that goes beyond the typical tourist attractions.</li>
<li class="worryfree"><strong>Hassle-free travel and peace of mind: </strong>Every aspect of your
trip will be carefully planned and organized by your 1:1 travel consultant.
<li><strong>Save Your Time:</strong> Less research, more enjoyment!<br>
Real-time 1V1 expert planning</li>
<li><strong>Maximize Your Flexibility: </strong>Personal local guide and ride<br>
Explore at your own pace
</li>
<li class="norisk"><strong>Experienced and knowledgeable guides:</strong> Your guides will be local
and love to work for travelers' smiles.</li>
<li><strong>Celebrate Your Journeys:</strong> Specially-crafted family adventures<br>
Celebrate milestones with style!</li>
</ul>
</div>
<!--@TIPS-RIGHT@-->
@ -277,54 +277,69 @@
</div>
</div>
<div class="bottom_why_us">
<h2>The Asia Highlights Experience</h2>
<div class="bottom_why_us">
<h2>Why Asia Highlights</h2>
<div class="table-responsive">
<table class="why_us_table">
<tbody>
<tr>
<td>
<div class="bottom_why_us_content">
<img src="https://data.globalhighlights.com/image/aboutus/ah-bottom-why-us-tag-1.png"
alt="1-to-1 Expert Planning" class="img-responsive">
<h3>1-to-1 Expert Planning</h3>
<p>Your tour will be tailor-made to suit you by a destination expert. Your personal
travel advisor will always reply within 24 hours.</p>
<div class="whyus_image"> <img src="https://images.asiahighlights.com/allpicture/2024/02/2fa10d72338f4942af532a909a486215_cut_100x100_241.png"
alt="Save Your Time" class="img-responsive" /></div>
<h3>Save Your Time</h3>
<ul class="infolist">
<li>Less research, more enjoyment!</li>
<li> Real-time 1V1 expert planning.</li>
<li> Seamless coordination</li>
</ul>
</div>
</td>
<td>
<div class="bottom_why_us_content">
<img src="https://data.globalhighlights.com/image/aboutus/ah-bottom-why-us-tag-2.png"
alt="Personal Journeys" class="img-responsive">
<h3>Personal Journeys</h3>
<p>Enjoy having your own personal local guide and ride. Explore destinations at your own
pace. Have as much flexibility as possible.</p>
<div class="whyus_image"> <img src="https://images.asiahighlights.com/allpicture/2024/02/128f3292b9054cd295eeaf0a6223ee93_cut_100x100_241.png"
alt="Maximize Your Flexibility" class="img-responsive" /></div>
<h3>Maximize Your Flexibility</h3>
<ul class="infolist">
<li>Your own personal guide and ride. </li>
<li> Explore at your own pace. </li>
<li> Unparalleled flexibility, impossible on a group tour.</li>
</ul>
</div>
</td>
<td>
<div class="bottom_why_us_content">
<img src="https://data.globalhighlights.com/image/aboutus/ah-bottom-why-us-tag-3.png"
alt="Authentic Experiences" class="img-responsive">
<h3>Authentic Experiences</h3>
<p>Go beyond the sightseeing. Understand the destinations by practicing the local
culture and interacting with local people.</p>
<div class="whyus_image"><img src="https://images.asiahighlights.com/allpicture/2024/02/93cce481fbbb427882ce36285d73119d_cut_100x100_241.png"
alt="Ensure Your Satisfactory" class="img-responsive" /></div>
<h3>Ensure Your Satisfactory</h3>
<ul class="infolist">
<li>Well-trained elite 20% of guides.</li>
<li> 20% vacancy on vehicles.</li>
<li> 24/7 emergency support.</li>
</ul>
</div>
</td>
<td>
<div class="bottom_why_us_content">
<img src="https://data.globalhighlights.com/image/aboutus/ah-bottom-why-us-tag-4.png"
alt="One-Stop Service" class="img-responsive">
<h3>One-Stop Service</h3>
<p>Leave all the booking work to us, including international and internal
transportation, visas, hotels, meals, and activities.</p>
<div class="whyus_image"> <img src="https://images.asiahighlights.com/allpicture/2024/02/03f93f0c74d548bf9ebd55796545c25b_cut_100x100_241.png"
alt="Celebrate Your Journey" class="img-responsive" width="100"
height="100" /></div>
<h3>Celebrate Your Journey</h3>
<ul class="infolist">
<li>Family adventures</li>
<li> Celebrate milestones with style!</li>
<li> Photographer service for special moments</li>
</ul>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="bottom_destinations">
@ -333,213 +348,86 @@
margin-top: 0;
text-align: center;
">Where Can We Take You Today?</h2>
<div class="listtour">
<div class="destination_links">
<ul>
<li><a href="/thailand/tours">Thailand</a></li>
<li><a href="/vietnam/tours">Vietnam</a></li>
<li><a href="/cambodia/tours">Cambodia</a></li>
<li><a href="/south-korea">South Korea</a></li>
<li><a href="https://www.globalhighlights.com/middle-east" target="_blank">Middle East</a></li>
</ul>
</div>
<div class="destination_links">
<ul>
<li><a href="/laos">Laos</a></li>
<li><a href="/japan/tours">Japan</a></li>
<li><a href="/singapore">Singapore</a></li>
<li><a href="https://www.globalhighlights.com/african-safari" target="_blank">African safari</a></li>
<li><a href="https://www.globalhighlights.com/peru" target="_blank">Peru</a></li>
</ul>
</div>
<div class="destination_links">
<ul>
<li><a href="/singapore/singapore-to-kuala-lumpur" >Malaysia</a></li>
<li><a href="/indonesia/bali/tours" >Indonesia (Bali)</a></li>
<li><a href="/india/tours">India</a></li>
<li><a href="https://www.globalhighlights.com/israel" target="_blank">Israel</a></li>
<li><a href="https://www.globalhighlights.com/portugal" target="_blank">Portugal</a></li>
<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>
<li><a href="https://www.globalhighlights.com/african-safari-tours/tours" target="_blank">African Safari</a></li>
</ul>
</div>
<div class="destination_links">
<ul>
<li><a href="/nepal" >Nepal</a></li>
<li><a href="/bhutan" >Bhutan</a></li>
<li><a href="/srilanka" >Sri Lanka</a></li>
<li><a href="https://www.globalhighlights.com/greece" target="_blank">Greece</a></li>
<li><a href="https://www.globalhighlights.com/south-africa" target="_blank">South Africa</a></li>
</ul>
</div>
<div class="destination_links">
<ul>
<li><a href="/myanmar/tours">Myanmar</a></li>
<li><a href="/caucasus-central-asia/tours">Central Asia</a></li>
<li><a href="https://www.globalhighlights.com/egypt/tours" target="_blank">Egypt</a></li>
<li><a href="https://www.globalhighlights.com/italy" target="_blank">Italy</a></li>
<li><a href="https://www.globalhighlights.com/tanzania" target="_blank">Tanzania</a></li>
</ul>
</div>
<div class="destination_links">
<ul>
<li><a href="https://www.globalhighlights.com/morocco/tours" target="_blank">Morocco</a></li>
<li><a href="https://www.globalhighlights.com/turkey/tours" target="_blank">Turkey</a></li>
<li><a href="https://www.globalhighlights.com/jordan" target="_blank">Jordan</a></li>
<li><a href="https://www.globalhighlights.com/kenya" target="_blank">Kenya</a></li>
</ul>
</div>
</div>
<h3 style="color: #fff; text-align: center;">China Tours</h3>
<div class="listtour">
<div class="destination_links">
<ul>
<li><a href="https://www.chinahighlights.com/beijing/tours.htm" target="_blank">Beijing</a></li>
<li><a href="https://www.chinahighlights.com/chengdu/tours.htm" target="_blank">Chengdu</a></li>
<li><a href="https://www.chinahighlights.com/chongqing/tours.htm" target="_blank">Chongqing</a></li>
<li><a href="https://www.chinahighlights.com/greatwall/tours/" target="_blank">Great Wall</a></li>
</ul>
</div>
<div class="destination_links">
<ul>
<li><a href="https://www.chinahighlights.com/guilin/tours.htm" target="_blank">Guilin</a></li>
<li><a href="https://www.chinahighlights.com/guizhou/tours.htm" target="_blank">Guizhou</a></li>
<li><a href="https://www.chinahighlights.com/harbin/tours.htm" target="_blank">Harbin</a></li>
<li><a href="https://www.chinahighlights.com/hangzhou/tours.htm" target="_blank">Hangzhou</a></li>
</ul>
</div>
<div class="destination_links">
<ul>
<li><a href="https://www.chinahighlights.com/huangshan/tours.htm" target="_blank">Huangshan</a></li>
<li><a href="https://www.chinahighlights.com/hong-kong/tours.htm" target="_blank">Hong Kong</a></li>
<li><a href="https://www.chinahighlights.com/inner-mongolia/tours/" target="_blank">Inner Mongolia</a></li>
<li><a href="https://www.chinahighlights.com/jiuzhaigou/tours.htm" target="_blank">Jiuzhaigou</a></li>
</ul>
</div>
<div class="destination_links">
<ul>
<li><a href="https://www.chinahighlights.com/pingyao/tours.htm" target="_blank">Pingyao</a></li>
<li><a href="https://www.chinahighlights.com/shanghai/tours.htm" target="_blank">Shanghai</a></li>
<li><a href="https://www.chinahighlights.com/suzhou/tours.htm" target="_blank">Suzhou</a></li>
<li><a href="https://www.chinahighlights.com/tour/silk-road-tours/" target="_blank">Silk Road</a></li>
</ul>
</div>
<div class="destination_links">
<ul>
<li><a href="https://www.chinahighlights.com/xinjiang/tours/" target="_blank">Xinjiang</a></li>
<li><a href="https://www.chinahighlights.com/xiamen/tours.htm" target="_blank">Xiamen</a></li>
<li><a href="https://www.chinahighlights.com/yunnan/tours.htm" target="_blank">Yunnan</a></li>
<li><a href="https://www.chinahighlights.com/tour/yangtze-river-tours/" target="_blank">Yangtze River</a></li>
</ul>
</div>
<div class="destination_links">
<ul>
<li><a href="https://www.chinahighlights.com/zhangjiajie/tours.htm" target="_blank">Zhangjiajie</a></li>
<li><a href="https://www.chinahighlights.com/tibet/tours.htm" target="_blank">Tibet</a></li>
<li><a href="https://www.chinahighlights.com/taiwan/tours.htm" target="_blank">Taiwan</a></li>
<li><a href="https://www.chinahighlights.com/tour/top-china-tours-from-hongkong.htm" target="_blank">Tours from Hong Kong</a></li>
<li><a href="https://www.chinahighlights.com/tour/top-china-tours-from-shanghai.htm" target="_blank">Tours from Shanghai</a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="infobottom">
<div class="footerbox">
<div class="aboutusleft">
<div class="bottomaboutus">
<div class="bottompctitle">About Us</div>
<div class="aboutusinfo">At Asia Highlights, we are committed to providing you a premium,
quality private tour, whether it's a milestone trip, family trip, or bucketlist trip — your
planning will be made easy with just one specialist throughout. <a href="/about-us">Know more
...</a>
<div class="trustPilotIconBig">
<img class="img-responsive" src="https://data.asiahighlights.com/grey.gif"
originalsrc="https://data.asiahighlights.com/pic/trustpilot-new-icon.png" loader="lazy"
style="margin: 10px 0; width:160px;">
Rated
4.9 out of 5 | Excellent<br>
China Highlights International Travel Service Co., LTD<br>
Corporate Number: 914503003486045699
</div>
</div>
</div>
</div>
<div class="aboutusright">
<div class="bottompctitle">Featured on</div>
<img src="https://data.asiahighlights.com/grey.gif" loader="lazy" width="436" height="250"
style="width: 70%;"
originalsrc="https://data.chinahighlights.com/pic/guide/info-template-feature-on.png" alt="Medias"
class="img-responsive bottomfeature" style="opacity: 1; transition: opacity 0.5s ease-in-out 0s;">
</div>
<div class="clear"></div>
<div class="bottomaboutuslinks">
<div class="bottomlinksleft">
<ul class="withBorder">
<li><a href="/travel-agents">Travel Agents</a></li>
<li><a href="/about-us" rel="nofollow">About us</a></li>
<li><a href="/reviews" rel="nofollow">Reviews</a></li>
<li><a href="/about-us/history" rel="nofollow">History</a></li>
<li><a href="/about-us/our-differences" rel="nofollow">Our Differences</a></li>
<li><a href="/contact-us" rel="nofollow">Contact Us</a></li>
</ul>
</div>
<ul class="socialmedias">
<li><a href="https://www.facebook.com/AsiaHighlights/" rel="nofollow" title="Follow us on Facebook"
class="fb" target="_blank">
<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><a href="https://www.instagram.com/asiahighlights/" rel="nofollow"
title="Follow us on Instagram" target="_blank">
<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>
</svg>
Instagram </a></li>
<li><a href="https://www.pinterest.com/AsiaHighlights/_saved/" rel="nofollow"
title="Share us on Pinterest" target="_blank"><svg id="svg--pinterest"
viewBox="-180 -180 850 850" style="
fill: #fff;
width: 30px;
">
<path d="M430.149,135.248C416.865,39.125,321.076-9.818,218.873,1.642
C138.071,10.701,57.512,76.03,54.168,169.447c-2.037,57.029,14.136,99.801,68.399,111.84
c23.499-41.586-7.569-50.676-12.433-80.802C90.222,77.367,252.16-6.718,336.975,79.313c58.732,59.583,20.033,242.77-74.57,223.71
c-90.621-18.179,44.383-164.005-27.937-192.611c-58.793-23.286-90.013,71.135-62.137,118.072
c-16.355,80.711-51.557,156.709-37.3,257.909c46.207-33.561,61.802-97.734,74.57-164.704
c23.225,14.136,35.659,28.758,65.268,31.038C384.064,361.207,445.136,243.713,430.149,135.248z"></path>
</svg>Pinterest</a>
</li>
</ul>
</div>
</div>
<div class="list_content">
<div class="aboutusleft">
<div class="bottomaboutus">
<img src="https://images.asiahighlights.com/allpicture/2024/03/1437fad7aabf4cf297ae5cefce15b241_cut_1191x842_241.png" width="170" height="121" style="float: left; margin-right: 10px; margin-bottom: 10px; width: 170px; height: 121px;">
<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>
China Highlights International<br> Travel Service Co., LTD
</div>
</div>
</div>
<div class="aboutusright company">
<div class="bottompctitle">Company</div>
<ul>
<li><a href="/about-us" rel="nofollow">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="/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="/terms-of-use">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.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>
</ul>
</div>
<div class="aboutusright followus">
<div class="bottompctitle">Follow Us</div>
<ul>
<li style="margin-bottom: 30px;"><a href="https://www.facebook.com/AsiaHighlights/" rel="nofollow" title="Follow us on Facebook" class="fb" target="_blank">
<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://www.pinterest.com/AsiaHighlights/_saved/" rel="nofollow" title="Share us on Pinterest" target="_blank"><svg id="svg--pinterest" viewBox="-180 -180 850 850">
<path id="pinterest" fill="#ffffff" d="M430.149,135.248C416.865,39.125,321.076-9.818,218.873,1.642 C138.071,10.701,57.512,76.03,54.168,169.447c-2.037,57.029,14.136,99.801,68.399,111.84 c23.499-41.586-7.569-50.676-12.433-80.802C90.222,77.367,252.16-6.718,336.975,79.313c58.732,59.583,20.033,242.77-74.57,223.71 c-90.621-18.179,44.383-164.005-27.937-192.611c-58.793-23.286-90.013,71.135-62.137,118.072 c-16.355,80.711-51.557,156.709-37.3,257.909c46.207-33.561,61.802-97.734,74.57-164.704 c23.225,14.136,35.659,28.758,65.268,31.038C384.064,361.207,445.136,243.713,430.149,135.248z"></path>
</svg>Pinterest</a>
</li>
<li style="margin-bottom: 30px;"><a href="https://www.instagram.com/asiahighlights/" rel="nofollow" title="Follow us on Instagram" class="linkin" target="_blank">
<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>
</svg> Instagram </a></li>
</ul>
</div>
<div class="feature">
<div class="bottompctitle">Featured on</div>
<img src="https://images.chinahighlights.com/allpicture/2024/02/c858c422f4aa4702ba62eeeccc29156f_cut_1135x66_241.jpg" alt="China Highlights was featured on these medias." width="1135" height="66">
</div>
<p style="margin-top: 20px; padding-bottom: 0;"><strong>Address:</strong> Building 6, Chuangyi Business Park, 70 Qilidian Road, Guilin, Guangxi, 541004, China</p>
</div>
</div>
</div>
<div class="clear"></div>
<div class="bottomlogo">
@ -549,7 +437,7 @@
originalsrc="https://data.chinahighlights.com/image/asia/asia-highlights-bottom-logo.png" width="114"
height="71" loader="lazy" class="img-responsive bottomlogopc">
<span class="bottomcopyright">© 2016-2024 Asia Highlights — Discovery Your Way! </span>
<span class="bottomprivacy"><a href="/privacy">Privacy Policy</a> | <a href="/terms-of-use">Terms</a></span>
</div>
</div>

@ -46,7 +46,7 @@
<div id="adultBlock" style="display: none">
<p style="margin-top: 0;margin-bottom: 0;"><strong>Adults number (age ≥ 18 years old)</strong></p>
<div class="kids_age">
<select class="kids_number" id="adult_18_plus" name="adult" >
<select class="kids_number" id="adult_18_plus" name="adult_18_plus" >
<option value="0">0</option>
<option value="1">1</option>
<option value="2">2</option>

@ -197,54 +197,69 @@
</div>
</div>
<div class="bottom_why_us">
<h2>The Asia Highlights Experience</h2>
<h2>Why Asia Highlights</h2>
<div class="table-responsive">
<table class="why_us_table">
<tbody>
<tr>
<td>
<div class="bottom_why_us_content">
<img src="https://data.globalhighlights.com/image/aboutus/ah-bottom-why-us-tag-1.png"
alt="1-to-1 Expert Planning" class="img-responsive">
<h3>1-to-1 Expert Planning</h3>
<p>Your tour will be tailor-made to suit you by a destination expert. Your personal travel advisor
will always reply within 24 hours.</p>
</div>
</td>
<td>
<div class="bottom_why_us_content">
<img src="https://data.globalhighlights.com/image/aboutus/ah-bottom-why-us-tag-2.png"
alt="Personal Journeys" class="img-responsive">
<h3>Personal Journeys</h3>
<p>Enjoy having your own personal local guide and ride. Explore destinations at your own pace. Have as
much flexibility as possible.</p>
</div>
</td>
<td>
<div class="bottom_why_us_content">
<img src="https://data.globalhighlights.com/image/aboutus/ah-bottom-why-us-tag-3.png"
alt="Authentic Experiences" class="img-responsive">
<h3>Authentic Experiences</h3>
<p>Go beyond the sightseeing. Understand the destinations by practicing the local culture and
interacting with local people.</p>
</div>
</td>
<td>
<div class="bottom_why_us_content">
<img src="https://data.globalhighlights.com/image/aboutus/ah-bottom-why-us-tag-4.png"
alt="One-Stop Service" class="img-responsive">
<h3>One-Stop Service</h3>
<p>Leave all the booking work to us, including international and internal transportation, visas,
hotels, meals, and activities.</p>
</div>
</td>
</tr>
</tbody>
</table>
<table class="why_us_table">
<tbody>
<tr>
<td>
<div class="bottom_why_us_content">
<div class="whyus_image"> <img src="https://images.asiahighlights.com/allpicture/2024/02/2fa10d72338f4942af532a909a486215_cut_100x100_241.png"
alt="Save Your Time" class="img-responsive" /></div>
<h3>Save Your Time</h3>
<ul class="infolist">
<li>Less research, more enjoyment!</li>
<li> Real-time 1V1 expert planning.</li>
<li> Seamless coordination</li>
</ul>
</div>
</td>
<td>
<div class="bottom_why_us_content">
<div class="whyus_image"> <img src="https://images.asiahighlights.com/allpicture/2024/02/128f3292b9054cd295eeaf0a6223ee93_cut_100x100_241.png"
alt="Maximize Your Flexibility" class="img-responsive" /></div>
<h3>Maximize Your Flexibility</h3>
<ul class="infolist">
<li>Your own personal guide and ride. </li>
<li> Explore at your own pace. </li>
<li> Unparalleled flexibility, impossible on a group tour.</li>
</ul>
</div>
</td>
<td>
<div class="bottom_why_us_content">
<div class="whyus_image"><img src="https://images.asiahighlights.com/allpicture/2024/02/93cce481fbbb427882ce36285d73119d_cut_100x100_241.png"
alt="Ensure Your Satisfactory" class="img-responsive" /></div>
<h3>Ensure Your Satisfactory</h3>
<ul class="infolist">
<li>Well-trained elite 20% of guides.</li>
<li> 20% vacancy on vehicles.</li>
<li> 24/7 emergency support.</li>
</ul>
</div>
</td>
<td>
<div class="bottom_why_us_content">
<div class="whyus_image"> <img src="https://images.asiahighlights.com/allpicture/2024/02/03f93f0c74d548bf9ebd55796545c25b_cut_100x100_241.png"
alt="Celebrate Your Journey" class="img-responsive" width="100"
height="100" /></div>
<h3>Celebrate Your Journey</h3>
<ul class="infolist">
<li>Family adventures</li>
<li> Celebrate milestones with style!</li>
<li> Photographer service for special moments</li>
</ul>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div class="bottom_destinations">
<div class="footerbox">
@ -252,144 +267,39 @@
margin-top: 0;
text-align: center;
">Where Can We Take You Today?</h2>
<div class="listtour">
<div class="destination_links">
<ul>
<li><a href="/thailand/tours" >Thailand</a></li>
<li><a href="/vietnam/tours" >Vietnam</a></li>
<li><a href="/cambodia/tours" >Cambodia</a></li>
<li><a href="/laos" >Laos</a></li>
<li><a href="/japan/tours" >Japan</a></li>
<li><a href="/singapore" >Singapore</a></li>
<li><a href="/singapore/singapore-to-kuala-lumpur" >Malaysia</a></li>
<li><a href="/caucasus-central-asia/tours" >Central Asia</a></li>
<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>
</ul>
</div>
<div class="destination_links">
<ul>
<li><a href="/indonesia/bali/tours" >Indonesia (Bali)</a></li>
<li><a href="/india/tours" >India</a></li>
<li><a href="/nepal" >Nepal</a></li>
<li><a href="/bhutan" >Bhutan</a></li>
<li><a href="/srilanka" >Sri Lanka</a></li>
<li><a href="/myanmar/tours" >Myanmar</a></li>
<li><a href="/south-korea" >South Korea</a></li>
<li><a href="https://www.globalhighlights.com/middle-east" target="_blank">Middle East</a></li>
</li>
</ul>
</div>
<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>
</ul>
</div>
<div class="listtour">
<div class="destination_links">
<ul>
<li><a href="https://www.globalhighlights.com/egypt/tours" target="_blank">Egypt</a></li>
<li><a href="https://www.globalhighlights.com/turkey/tours" target="_blank">Turkey</a></li>
<li><a href="https://www.globalhighlights.com/morocco/tours" target="_blank">Morocco</a></li>
<li><a href="https://www.globalhighlights.com/jordan/plan-a-trip" target="_blank">Jordan</a>
<li><a href="https://www.globalhighlights.com/greece" target="_blank">Greece</a></li>
<li><a href="https://www.globalhighlights.com/south-africa" target="_blank">South Africa</a></li>
<li><a href="https://www.globalhighlights.com/jordan" target="_blank">Jordan</a></li>
</ul>
</div>
<div class="destination_links">
<ul>
<li><a href="https://www.globalhighlights.com/african-safari" target="_blank">African safari</a></li>
<li><a href="https://www.globalhighlights.com/peru" target="_blank">Peru</a></li>
<li><a href="https://www.globalhighlights.com/israel" target="_blank">Israel</a></li>
<li><a href="https://www.globalhighlights.com/portugal" target="_blank">Portugal</a></li>
<li><a href="https://www.globalhighlights.com/italy" target="_blank">Italy</a></li>
<li><a href="https://www.globalhighlights.com/tanzania" target="_blank">Tanzania</a></li>
<li><a href="https://www.globalhighlights.com/kenya" target="_blank">Kenya</a></li>
</li>
</ul>
</div>
</div>
<h3 style="text-align: center;">China Tours</h3>
<div class="listtour">
<div class="destination_links">
<ul>
<li><a href="https://www.chinahighlights.com/tour/top-china-tours/" target="_blank">Top 10 Tours</a></li>
<li><a href="https://www.chinahighlights.com/tour/china-panda-tours/" target="_blank">Panda Tours</a></li>
<li><a href="https://www.chinahighlights.com/tour/family-tours/" target="_blank">Family Tours</a></li>
<li><a href="https://www.chinahighlights.com/tour/chinese-food-tours/" target="_blank">Food Tours</a></li>
<li><a href="https://www.chinahighlights.com/tour/china-nature-tours/" target="_blank">Nature Tours</a></li>
<li><a href="https://www.chinahighlights.com/tour/photo-tours/" target="_blank">Photography Tours</a></li>
</ul>
</div>
<div class="destination_links">
<ul>
<li><a href="https://www.chinahighlights.com/tour/hassle-free-china-visas.htm" target="_blank">Visa-free Tours</a></li>
<li><a href="https://www.chinahighlights.com/tour/china-hiking-tours/" target="_blank">Hiking Tours</a></li>
<li><a href="https://www.chinahighlights.com/tour/china-biking-tours/" target="_blank">Biking Tours</a></li>
<li><a href="https://www.chinahighlights.com/tour/china-festival-tours/" target="_blank">Festival Tours</a></li>
<li><a href="https://www.chinahighlights.com/tour/asia-tours/" target="_blank">Top Asia Tours</a></li>
</ul>
</div>
</div>
<div class="listtour">
<div class="destination_links">
<ul>
<li><a href="https://www.chinahighlights.com/beijing/tours.htm" target="_blank">Beijing</a></li>
<li><a href="https://www.chinahighlights.com/chengdu/tours.htm" target="_blank">Chengdu</a></li>
<li><a href="https://www.chinahighlights.com/chongqing/tours.htm" target="_blank">Chongqing</a></li>
<li><a href="https://www.chinahighlights.com/greatwall/tours/" target="_blank">Great Wall</a></li>
<li><a href="https://www.chinahighlights.com/guilin/tours.htm" target="_blank">Guilin</a></li>
<li><a href="https://www.chinahighlights.com/guizhou/tours.htm" target="_blank">Guizhou</a></li>
<li><a href="https://www.chinahighlights.com/harbin/tours.htm" target="_blank">Harbin</a></li>
<li><a href="https://www.chinahighlights.com/hangzhou/tours.htm" target="_blank">Hangzhou</a></li>
<li><a href="https://www.chinahighlights.com/huangshan/tours.htm" target="_blank">Huangshan</a></li>
<li><a href="https://www.chinahighlights.com/hong-kong/tours.htm" target="_blank">Hong Kong</a></li>
<li><a href="https://www.chinahighlights.com/inner-mongolia/tours/" target="_blank">Inner Mongolia</a></li>
<li><a href="https://www.chinahighlights.com/jiuzhaigou/tours.htm" target="_blank">Jiuzhaigou</a></li>
</ul>
</div>
<div class="destination_links">
<ul>
<li><a href="https://www.chinahighlights.com/pingyao/tours.htm" target="_blank">Pingyao</a></li>
<li><a href="https://www.chinahighlights.com/shanghai/tours.htm" target="_blank">Shanghai</a></li>
<li><a href="https://www.chinahighlights.com/suzhou/tours.htm" target="_blank">Suzhou</a></li>
<li><a href="https://www.chinahighlights.com/tour/silk-road-tours/" target="_blank">Silk Road</a></li>
<li><a href="https://www.chinahighlights.com/tibet/tours.htm" target="_blank">Tibet</a></li>
<li><a href="https://www.chinahighlights.com/taiwan/tours.htm" target="_blank">Taiwan</a></li>
<li><a href="https://www.chinahighlights.com/tour/top-china-tours-from-hongkong.htm" target="_blank">Tours from Hong Kong</a></li>
<li><a href="https://www.chinahighlights.com/tour/top-china-tours-from-shanghai.htm" target="_blank">Tours from Shanghai</a></li>
<li><a href="https://www.chinahighlights.com/xinjiang/tours/" target="_blank">Xinjiang</a></li>
<li><a href="https://www.chinahighlights.com/xiamen/tours.htm" target="_blank">Xiamen</a></li>
<li><a href="https://www.chinahighlights.com/yunnan/tours.htm" target="_blank">Yunnan</a></li>
<li><a href="https://www.chinahighlights.com/tour/yangtze-river-tours/" target="_blank">Yangtze River</a></li>
<li><a href="https://www.chinahighlights.com/zhangjiajie/tours.htm" target="_blank">Zhangjiajie</a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="infobottom">
<div class="bottomlogoinfo">At Asia Highlights, we are committed to providing you a premium, quality private
tour, whether it's a milestone trip, family trip, or bucketlist trip — your planning will be made easy with
just one specialist throughout. <a href="/about-us">Know more...</a>
<div class="bottomlogoinfo">
<img src="https://images.asiahighlights.com/allpicture/2024/03/1437fad7aabf4cf297ae5cefce15b241_cut_1191x842_241.png" class="img-responsive" style="width: 150px; margin: 0 auto;">
<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 4.9 out of 5 | Excellent
Rated 5 out of 5 | 98.8% Excellence<br>
China Highlights International<br> Travel Service Co., LTD
</div>
<div class="bottommedia">
<span class="followtitle">Follow Us</span>
<ul>
<li><a href="https://www.facebook.com/AsiaHighlights/" rel="nofollow" title="Follow us on Facebook"
<li style="margin-bottom: 30px;"><a href="https://www.facebook.com/AsiaHighlights/" rel="nofollow" title="Follow us on Facebook"
target="_blank">
<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"
@ -399,7 +309,10 @@
</path>
</svg>Facebook
</a></li>
<li style="margin-bottom: 30px;"><a href="https://www.pinterest.com/AsiaHighlights/_saved/" rel="nofollow" title="Share us on Pinterest" target="_blank"><svg id="svg--pinterest" viewBox="-180 -180 850 850">
<path id="pinterest" fill="#ffffff" d="M430.149,135.248C416.865,39.125,321.076-9.818,218.873,1.642 C138.071,10.701,57.512,76.03,54.168,169.447c-2.037,57.029,14.136,99.801,68.399,111.84 c23.499-41.586-7.569-50.676-12.433-80.802C90.222,77.367,252.16-6.718,336.975,79.313c58.732,59.583,20.033,242.77-74.57,223.71 c-90.621-18.179,44.383-164.005-27.937-192.611c-58.793-23.286-90.013,71.135-62.137,118.072 c-16.355,80.711-51.557,156.709-37.3,257.909c46.207-33.561,61.802-97.734,74.57-164.704 c23.225,14.136,35.659,28.758,65.268,31.038C384.064,361.207,445.136,243.713,430.149,135.248z"></path>
</svg>Pinterest</a>
</li>
<li><a href="https://www.instagram.com/asiahighlights/" rel="nofollow" title="Follow us on Instagram"
target="_blank">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
@ -417,16 +330,36 @@
<div class="bottomlinks">
<span class="followtitle"><a href="/about-us" rel="nofollow">About Us</a></span>
<ul>
<li><a href="/travel-agents">Travel Agents</a></li>
<li><a href="/reviews">Reviews</a></li>
<li><a href="/about-us/history" rel="nofollow">History</a></li>
<li><a href="/about-us/our-differences" rel="nofollow">Our Differences</a></li>
<li><a href="/reviews" rel="nofollow">Reviews</a></li>
<li><a href="/contact-us" rel="nofollow">Contact Us</a></li>
<li><a href="/privacy">Privacy Policy</a></li>
<li><a href="/terms-of-use">Terms</a></li>
<li><a href="/about-us" rel="nofollow">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="/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="/terms-of-use">Terms</a></li>
</ul>
</div>
<div class="language_links">
<span class="followtitle">Language</span>
<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>
</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>
</ul>
</div>
</div>
</div>
<div class="clear"></div>
<div class="featureon" style="margin-bottom: 50px;">
<span class="followtitle">Featured on</span>
@ -436,46 +369,14 @@
</div>
<div class="featureon">
<span class="followtitle">Company Info</span>
China Highlights International Travel Service Co., LTD<br>
Corporate Number: 914503003486045699
<span class="followtitle">Address</span>
Building 6, Chuangyi Business Park, 70 Qilidian Road, Guilin, Guangxi, 541004, China
</div>
</div>
<div class="bottomlogo">
© 2016-2024 Asia Highlights <br>— Discovery Your Way!
</div>
<!--
<div class="web_cookie" id='gotIdArea' style='display: none;'>
<p>Asia Highlights uses cookies to give you the best possible service. If you continue browsing, you agree to the
use of cookies. More details can be found in our <a href="/privacy">privacy policy</a>.</p>
<div class="cookie_close" id="gotItBtn" style="float: right;
padding: 5px 10px;
cursor: pointer;
background: #fff;
font-weight: 600;
font-size: 16px;">X</div>
</div>
<script>
var GOT_IT_KEY = '__asia_highlights_you_agree_to_use_of_cookies__';
if (window.localStorage && localStorage.getItem(GOT_IT_KEY)) {
console.info('If you continue browsing, you agree to the use of cookies.');
} else {
document.getElementById('gotIdArea').style.display = '';
if (window.localStorage) {
localStorage.setItem(GOT_IT_KEY, '1');
}
var gotItBtn = document.getElementById('gotItBtn');
gotItBtn.addEventListener('click', function (evt) {
document.getElementById('gotIdArea').style.display = 'none';
});
setTimeout(function () {
document.getElementById('gotIdArea').style.display = 'none';
}, 10000);
}
</script>
-->
<!--newsletter表单 JS-->
<script src="https://www.recaptcha.net/recaptcha/enterprise.js?render=6Lf828MhAAAAANNetijCXKwW5ARyhcJ-b1Hhslja"></script>
<script>

@ -3,7 +3,7 @@
<section>
<?php if (!empty($ic_photo)) { ?>
<div class="infotopimage">
<img src="<?php echo 'https://images.chinahighlights.com'.$ic_photo; ?>"
<img src="<?php echo $ic_photo; ?>"
alt="<?php echo !empty($ic_title)?$ic_title:'H1 title Chinahighlights mobile first template'; ?>" class="img-responsive">
<div class="ta_tag">
<img src="https://data.chinahighlights.com/image/forms/ch-2023-trip-advisor-excellent-certificate.png" style="width: 120px !important;height: auto;">

@ -46,7 +46,7 @@
<div id="adultBlock" style="display: none">
<p style="margin-top: 0;margin-bottom: 10px;"><strong>Adults number (age ≥ 18 years old)</strong></p>
<div class="kids_age">
<select class="kids_number" id="adult_18_plus" name="adult" >
<select class="kids_number" id="adult_18_plus" name="adult_18_plus" >
<option value="0">0</option>
<option value="1">1</option>
<option value="2">2</option>
@ -529,13 +529,7 @@ margin-top: 5px;font-size: 18px;
Inquiry</button>
</div>
</form>
<div class="contactwechat">
<img alt="china highlights' wechat code" height="100px" src="https://data.chinahighlights.com/image/forms/ch-contact-form-wechat-qr-code.png" width="100px"/>
<div class="wechatinfo">Quickly inquire about this tour via our WeChat: <span class="wechatred">chinahighlightstour</span>
</div>
</div>
</div>
</div>
<script src="https://www.recaptcha.net/recaptcha/enterprise.js?render=6Lf828MhAAAAANNetijCXKwW5ARyhcJ-b1Hhslja"></script>

@ -41,7 +41,7 @@
<p style=" margin-bottom: 10px;"><strong>Adults number (age ≥ 18 years old)</strong></p>
<div class="kids_age">
<select class="kids_number" id="adult_18_plus" name="adult" >
<select class="kids_number" id="adult_18_plus" name="adult_18_plus" >
<option value="0">0</option>
<option value="1">1</option>
<option value="2">2</option>
@ -444,12 +444,6 @@
Inquiry</button>
</div>
</form>
<div class="contactwechat">
<img alt="china highlights' wechat code" height="100px" src="https://data.chinahighlights.com/image/forms/ch-contact-form-wechat-qr-code.png" width="100px"/>
<div class="wechatinfo">Quickly inquire about this tour via our WeChat: <span class="wechatred">chinahighlightstour</span>
</div>
</div>
</div>
<script src="https://www.recaptcha.net/recaptcha/enterprise.js?render=6Lf828MhAAAAANNetijCXKwW5ARyhcJ-b1Hhslja"></script>

@ -42,7 +42,7 @@
})(window, document, 'script', 'dataLayer', 'GTM-T75N4LL');</script>
<!-- End Google Tag Manager -->
<!-- Hotjar Tracking Code for https://www.chinahighlights.com/ -->
<!-- Hotjar Tracking Code for https://www.chinahighlights.com/
<script>
(function(h,o,t,j,a,r){
h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)};
@ -53,7 +53,7 @@
a.appendChild(r);
})(window,document,'https://static.hotjar.com/c/hotjar-','.js?sv=');
</script>
-->
</head>
<body>
@ -377,48 +377,63 @@
</form>
</div>
</div>
<div class="bottom_why_us">
<h2>The China Highlights Experience</h2>
<div class="bottom_why_us">
<h2>Why China Highlights</h2>
<div class="table-responsive">
<table class="why_us_table">
<tbody>
<tr>
<td>
<div class="bottom_why_us_content">
<img src="https://data.globalhighlights.com/image/aboutus/ah-bottom-why-us-tag-1.png"
alt="1-to-1 Expert Planning" class="img-responsive">
<h3>1-to-1 Expert Planning</h3>
<p>Your tour will be tailor-made by your personal travel advisor — a destination
expert. Every reply will be within 24 hours.</p>
<div class="whyus_image"> <img src="https://images.asiahighlights.com/allpicture/2024/02/2fa10d72338f4942af532a909a486215_cut_100x100_241.png"
alt="Save Your Time" class="img-responsive" /></div>
<h3>Save Your Time</h3>
<ul class="infolist">
<li>Less research, more enjoyment!</li>
<li>Real-time 1V1 expert planning.</li>
<li>Seamless coordination</li>
</ul>
</div>
</td>
<td>
<div class="bottom_why_us_content">
<img src="https://data.globalhighlights.com/image/aboutus/ah-bottom-why-us-tag-2.png"
alt="Personal Journeys" class="img-responsive">
<h3>Personal Journeys</h3>
<p>Enjoy your personal local guide and ride. Explore destinations at your own pace.
Have unparalleled flexibility, which is impossible on a group tour.</p>
<div class="whyus_image"> <img src="https://images.asiahighlights.com/allpicture/2024/02/128f3292b9054cd295eeaf0a6223ee93_cut_100x100_241.png"
alt="Maximize Your Flexibility" class="img-responsive" /></div>
<h3>Maximize Your Flexibility</h3>
<ul class="infolist">
<li>Your own personal guide and ride. </li>
<li>Explore at your own pace. </li>
<li>Unparalleled flexibility, impossible on a group tour.</li>
</ul>
</div>
</td>
<td>
<div class="bottom_why_us_content">
<img src="https://data.globalhighlights.com/image/aboutus/ah-bottom-why-us-tag-3.png"
alt="Authentic Experiences" class="img-responsive">
<h3>Authentic Experiences</h3>
<p>Discover the hidden gems. Experience local culture by practicing it. Try new and
exciting activities, and unveil the stories behind the sights and people. </p>
<div class="whyus_image"><img src="https://images.asiahighlights.com/allpicture/2024/02/93cce481fbbb427882ce36285d73119d_cut_100x100_241.png"
alt="Ensure Your Satisfaction" class="img-responsive" /></div>
<h3>Ensure Your Satisfaction</h3>
<ul class="infolist">
<li> Well-trained elite 20% of guides.</li>
<li>20% vacancy on vehicles.</li>
<li>24/7 emergency support.</li>
</ul>
</div>
</td>
<td>
<div class="bottom_why_us_content">
<img src="https://data.chinahighlights.com/image/aboutus/feedback/ch-bottom-why-us-local-guide-tag.png"
alt="Well-Selected Local Guides" class="img-responsive">
<h3>Well-Selected Local Guides</h3>
<p>Knowledgeable, enthusiastic, and attentive — your personal local guides will
share interesting stories, insider information, and even create unexpected
highlights!</p>
<div class="whyus_image"> <img src="https://images.asiahighlights.com/allpicture/2024/02/03f93f0c74d548bf9ebd55796545c25b_cut_100x100_241.png"
alt="Live Your China Story" class="img-responsive" width="100"
height="100" /></div>
<h3>Live Your China Story</h3>
<ul class="infolist">
<li>Authentic local culture and lifestyles.</li>
<li>Understand the culture by living it.</li>
<li>Uncover fascinating histories and witness New China.</li>
</ul>
</div>
</td>
</tr>
@ -432,167 +447,23 @@
margin-top: 0;
text-align: center;
">Where Can We Take You Today?</h2>
<div class="listtour">
<div class="destination_links">
<ul>
<li><a href="/tour/top-china-tours/">Top 10 Tours</a></li>
<li><a href="/tour/china-panda-tours/">Panda Tours</a></li>
</ul>
</div>
<div class="destination_links">
<ul>
<li><a href="/tour/family-tours/">Family Tours</a></li>
<li><a href="/tour/chinese-food-tours/">Food Tours</a></li>
</ul>
</div>
<div class="destination_links">
<ul>
<li><a href="/tour/china-nature-tours/">Nature Tours</a></li>
<li><a href="/tour/photo-tours/">Photography Tours</a></li>
</ul>
</div>
<div class="destination_links">
<ul>
<li><a href="/tour/hassle-free-china-visas.htm">Visa-free Tours</a></li>
<li><a href="/tour/china-hiking-tours/">Hiking Tours</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>
</ul>
</div>
<div class="destination_links">
<ul>
<li><a href="/tour/china-biking-tours/">Biking Tours</a></li>
<li><a href="/tour/china-festival-tours/">Festival Tours</a></li>
</ul>
</div>
<div class="destination_links">
<ul>
<li><a href="/tour/asia-tours/">Top Asia Tours</a></li>
</ul>
</div>
</div>
<div class="listtour">
<div class="destination_links">
<ul>
<li><a href="/beijing/tours.htm">Beijing</a></li>
<li><a href="/chengdu/tours.htm">Chengdu</a></li>
<li><a href="/chongqing/tours.htm">Chongqing</a></li>
<li><a href="/greatwall/tours/">Great Wall</a></li>
</ul>
</div>
<div class="destination_links">
<ul>
<li><a href="/guilin/tours.htm">Guilin</a></li>
<li><a href="/guizhou/tours.htm">Guizhou</a></li>
<li><a href="/harbin/tours.htm">Harbin</a></li>
<li><a href="/hangzhou/tours.htm">Hangzhou</a></li>
</ul>
</div>
<div class="destination_links">
<ul>
<li><a href="/huangshan/tours.htm">Huangshan</a></li>
<li><a href="/hong-kong/tours.htm">Hong Kong</a></li>
<li><a href="/inner-mongolia/tours/">Inner Mongolia</a></li>
<li><a href="/jiuzhaigou/tours.htm">Jiuzhaigou</a></li>
</ul>
</div>
<div class="destination_links">
<ul>
<li><a href="/pingyao/tours.htm">Pingyao</a></li>
<li><a href="/shanghai/tours.htm">Shanghai</a></li>
<li><a href="/suzhou/tours.htm">Suzhou</a></li>
<li><a href="/tour/silk-road-tours/">Silk Road</a></li>
</ul>
</div>
<div class="destination_links">
<ul>
<li><a href="/xinjiang/tours/">Xinjiang</a></li>
<li><a href="/xiamen/tours.htm">Xiamen</a></li>
<li><a href="/yunnan/tours.htm">Yunnan</a></li>
<li><a href="/tour/yangtze-river-tours/">Yangtze River</a></li>
</ul>
</div>
<div class="destination_links">
<ul>
<li><a href="/zhangjiajie/tours.htm">Zhangjiajie</a></li>
<li><a href="/tibet/tours.htm">Tibet</a></li>
<li><a href="/taiwan/tours.htm">Taiwan</a></li>
<li><a href="/tour/top-china-tours-from-hongkong.htm">Tours from Hong Kong</a></li>
<li><a href="/tour/top-china-tours-from-shanghai.htm">Tours from Shanghai</a></li>
</ul>
</div>
</div>
<div class="listtour">
<div class="destination_links">
<ul>
<li><a href="https://www.asiahighlights.com/thailand/tours" target="_blank">Thailand</a></li>
<li><a href="https://www.asiahighlights.com/vietnam/tours" target="_blank">Vietnam</a></li>
<li><a href="https://www.asiahighlights.com/cambodia/tours" target="_blank">Cambodia</a></li>
<li><a href="https://www.asiahighlights.com/south-korea" target="_blank">South Korea</a></li>
<li><a href="https://www.globalhighlights.com/middle-east" target="_blank">Middle East</a></li>
</ul>
</div>
<div class="destination_links">
<ul>
<li><a href="https://www.asiahighlights.com/laos" target="_blank">Laos</a></li>
<li><a href="https://www.asiahighlights.com/japan/tours" target="_blank">Japan</a></li>
<li><a href="https://www.asiahighlights.com/singapore" target="_blank">Singapore</a></li>
<li><a href="https://www.globalhighlights.com/african-safari" target="_blank">African safari</a></li>
<li><a href="https://www.globalhighlights.com/peru" target="_blank">Peru</a></li>
</ul>
</div>
<div class="destination_links">
<ul>
<li><a href="https://www.asiahighlights.com/singapore/singapore-to-kuala-lumpur" target="_blank">Malaysia</a></li>
<li><a href="https://www.asiahighlights.com/indonesia/bali/tours" target="_blank">Indonesia (Bali)</a></li>
<li><a href="https://www.asiahighlights.com/india/tours" target="_blank">India</a></li>
<li><a href="https://www.globalhighlights.com/israel" target="_blank">Israel</a></li>
<li><a href="https://www.globalhighlights.com/portugal" target="_blank">Portugal</a></li>
</ul>
</div>
<div class="destination_links">
<ul>
<li><a href="https://www.asiahighlights.com/nepal" target="_blank">Nepal</a></li>
<li><a href="https://www.asiahighlights.com/bhutan" target="_blank">Bhutan</a></li>
<li><a href="https://www.asiahighlights.com/srilanka" target="_blank">Sri Lanka</a></li>
<li><a href="https://www.globalhighlights.com/greece" target="_blank">Greece</a></li>
<li><a href="https://www.globalhighlights.com/south-africa" target="_blank">South Africa</a></li>
</ul>
</div>
<div class="destination_links">
<ul>
<li><a href="https://www.asiahighlights.com/myanmar/tours" target="_blank">Myanmar</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/egypt/tours" target="_blank">Egypt</a></li>
<li><a href="https://www.globalhighlights.com/italy" target="_blank">Italy</a></li>
<li><a href="https://www.globalhighlights.com/tanzania" target="_blank">Tanzania</a></li>
</ul>
</div>
<div class="destination_links">
<ul>
<li><a href="https://www.globalhighlights.com/morocco/tours" target="_blank">Morocco</a></li>
<li><a href="https://www.globalhighlights.com/turkey/tours" target="_blank">Turkey</a></li>
<li><a href="https://www.globalhighlights.com/jordan" target="_blank">Jordan</a></li>
<li><a href="https://www.globalhighlights.com/kenya" target="_blank">Kenya</a></li>
</ul>
</div>
<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>
</ul>
</div>
</div>
</div>
@ -600,97 +471,83 @@
<div class="list_content">
<div class="aboutusleft">
<div class="bottomaboutus">
<img src="https://data.chinahighlights.com/pic/logo/bottom-logo-b.png" width="170" height="121"
style="float: left;
margin-right: 10px;
margin-bottom: 35px;
width: 170px;
height: 121px;">
<div class="aboutusinfo">China Highlights tailor-makes China tours to help travelers discover
China
their way. We're a passionate team of one hundred avid travelers who love to share our
knowledge
of China with those looking for a more authentic travel experience, <a href="/aboutus/">more
...</a><br>
China Highlights International Travel Service Co., LTD <br>
Corporate Number: 914503003486045699
<img src="https://data.chinahighlights.com/pic/logo/bottom-logo-b.png" width="170"
height="121"
style="float: left; margin-right: 10px; margin-bottom: 10px; width: 170px; height: 121px;" />
<div class="aboutusinfo">
<img src="https://data.chinahighlights.com/image/aboutus/feedback/five-star.png" style="display: block; margin-bottom: 10px;">
Rated 5 out of 5 | 98.8% Excellence<br>
China Highlights International<br> Travel Service Co., LTD
</div>
</div>
<div class="bottomfollowus">
<div class="bottompctitle">Follow Us</div>
<ul>
<li><a href="https://www.facebook.com/Chinahighlights" rel="nofollow"
</div>
<div class="aboutusright company">
<div class="bottompctitle">Company</div>
<ul>
<li><a href="/aboutus/" rel="nofollow">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>
<li><a href="/partner/" rel="nofollow">Partner</a></li>
<li><a href="/privacy.htm" rel="nofollow">Privacy Policy</a></li>
<li><a href="/aboutus/terms.htm">Terms</a></li>
</ul>
</div>
<div class="aboutusright language">
<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>
</ul>
</div>
<div class="aboutusright followus">
<div class="bottompctitle">Follow Us</div>
<ul>
<li style="margin-bottom: 30px;"><a href="https://www.facebook.com/Chinahighlights" rel="nofollow"
title="Follow us on Facebook" class="fb" target="_blank">
<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>
<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><a href="https://twitter.com/Chinahighlights" rel="nofollow" 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/Chinahighlights" rel="nofollow"
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;">
<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/" rel="nofollow"
<li style="margin-bottom: 30px;"><a href="https://www.instagram.com/chinahighlights/" rel="nofollow"
title="Follow us on Instagram" class="linkin" target="_blank">
<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>
<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>
</svg> Instagram </a></li>
</ul>
</div>
</div>
<div class="aboutusright">
<div class="bottompctitle">Featured on</div>
<img width="436" height="250"
src="https://data.chinahighlights.com/pic/guide/info-template-feature-on.png"
class="img-responsive bottomfeature">
</div>
<div class="clear"></div>
<ul class="withBorder" style="margin-top: 35px;">
<li><a href="/travel-agents.htm">Travel Agents</a></li>
<li><a href="/aboutus/" rel="nofollow">About us</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>
<li><a href="/partner/" rel="nofollow">Partner</a></li>
<li><a href="/privacy.htm" rel="nofollow">Privacy Policy</a></li>
<li><a href="/aboutus/terms.htm">Terms</a></li>
</ul>
<div class="bottomaboutuslinks">
<div class="bottomlinksleft">
<ul class="withBorder">
<li><a href="https://www.asiahighlights.com/" target="_blank">Asia</a></li>
<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>
</ul>
</div>
<div class="bottommembers">
<div class="memberIcons">
<img width="68" height="67"
src="https://data.chinahighlights.com/image/aboutus/member/member-icons-2022-pata.png">
</div>
</div>
</ul>
</div>
<div class="feature">
<div class="bottompctitle">Featured on</div>
<img src="https://images.chinahighlights.com/allpicture/2024/02/c858c422f4aa4702ba62eeeccc29156f_cut_1135x66_241.jpg" alt="China Highlights was featured on these medias.">
</div>
<p style="margin-top: 20px; padding-bottom: 0;"><strong>Address:</strong> Building 6, Chuangyi Business Park, 70 Qilidian Road, Guilin, Guangxi, 541004, China</p>
</div>
</div>
</div>
@ -700,38 +557,7 @@
class="img-responsive bottomlogopc"><span class="bottomcopyright">© 1998-2024 China Highlights — Discovery Your Way! </span>
</div>
</div>
<!--
<div class="web_cookie" style='display: none;' id='gotIdArea'>
<p>China Highlights uses cookies to give you the best possible service. If you continue browsing, you agree to
the use of cookies. More details can be found in our <a href="/privacy.htm">privacy policy</a>.</p>
<div class="cookie_close" id="gotItBtn" style="float: right;
padding: 5px 10px;
cursor: pointer;
background: #fff;
font-weight: 600;
font-size: 16px;">X</div>
</div>
<script>
var GOT_IT_KEY = '__china_highlights_you_agree_to_use_of_cookies__';
if (window.localStorage && localStorage.getItem(GOT_IT_KEY)) {
console.info('If you continue browsing, you agree to the use of cookies.');
} else {
document.getElementById('gotIdArea').style.display = '';
if (window.localStorage) {
localStorage.setItem(GOT_IT_KEY, '1');
}
var gotItBtn = document.getElementById('gotItBtn');
gotItBtn.addEventListener('click', function (evt) {
document.getElementById('gotIdArea').style.display = 'none';
});
setTimeout(function () {
document.getElementById('gotIdArea').style.display = 'none';
}, 10000);
}
</script>
-->
<script>
(function (w, d, i) {
var navbar = d.getElementById(i);

@ -34,7 +34,7 @@
})(window, document, 'script', 'dataLayer', 'GTM-T75N4LL');</script>
<!-- End Google Tag Manager -->
<!-- Hotjar Tracking Code for https://www.chinahighlights.com/ -->
<!-- Hotjar Tracking Code for https://www.chinahighlights.com/
<script>
(function(h,o,t,j,a,r){
h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)};
@ -45,6 +45,7 @@
a.appendChild(r);
})(window,document,'https://static.hotjar.com/c/hotjar-','.js?sv=');
</script>
-->
</head>
<body>
@ -380,55 +381,70 @@
</div>
</div>
<div class="bottom_why_us">
<h2>The China Highlights Experience</h2>
<h2>Why China Highlights</h2>
<div class="table-responsive">
<table class="why_us_table">
<tbody>
<tr>
<td>
<div class="bottom_why_us_content">
<img src="https://data.globalhighlights.com/image/aboutus/ah-bottom-why-us-tag-1.png"
alt="1-to-1 Expert Planning" class="img-responsive">
<h3>1-to-1 Expert Planning</h3>
<p>Your tour will be tailor-made by your personal travel advisor — a destination expert. Every reply
will be within 24 hours.</p>
</div>
</td>
<td>
<div class="bottom_why_us_content">
<img src="https://data.globalhighlights.com/image/aboutus/ah-bottom-why-us-tag-2.png"
alt="Personal Journeys" class="img-responsive">
<h3>Personal Journeys</h3>
<p>Enjoy your personal local guide and ride. Explore destinations at your own pace. Have unparalleled
flexibility, which is impossible on a group tour.</p>
</div>
</td>
<td>
<div class="bottom_why_us_content">
<img src="https://data.globalhighlights.com/image/aboutus/ah-bottom-why-us-tag-3.png"
alt="Authentic Experiences" class="img-responsive">
<h3>Authentic Experiences</h3>
<p>Discover the hidden gems. Experience local culture by practicing it. Try new and exciting
activities, and unveil the stories behind the sights and people. </p>
</div>
</td>
<td>
<div class="bottom_why_us_content">
<img
src="https://data.chinahighlights.com/image/aboutus/feedback/ch-bottom-why-us-local-guide-tag.png"
alt="Well-Selected Local Guides" class="img-responsive">
<h3>Well-Selected Local Guides</h3>
<p>Knowledgeable, enthusiastic, and attentive — your personal local guides will share interesting
stories, insider information, and even create unexpected highlights!</p>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<table class="why_us_table">
<tbody>
<tr>
<td>
<div class="bottom_why_us_content">
<div class="whyus_image"> <img src="https://images.asiahighlights.com/allpicture/2024/02/2fa10d72338f4942af532a909a486215_cut_100x100_241.png"
alt="Save Your Time" class="img-responsive" /></div>
<h3>Save Your Time</h3>
<ul class="infolist" style="margin-top: -70px !important;">
<li>Less research, more enjoyment!</li>
<li>Real-time 1V1 expert planning.</li>
<li>Seamless coordination</li>
</ul>
</div>
</td>
<td>
<div class="bottom_why_us_content">
<div class="whyus_image"> <img src="https://images.asiahighlights.com/allpicture/2024/02/128f3292b9054cd295eeaf0a6223ee93_cut_100x100_241.png"
alt="Maximize Your Flexibility" class="img-responsive" /></div>
<h3>Maximize Your Flexibility</h3>
<ul class="infolist" style="margin-top: -70px !important;">
<li>Your own personal guide and ride. </li>
<li>Explore at your own pace. </li>
<li>Unparalleled flexibility, impossible on a group tour.</li>
</ul>
</div>
</td>
<td>
<div class="bottom_why_us_content">
<div class="whyus_image"><img src="https://images.asiahighlights.com/allpicture/2024/02/93cce481fbbb427882ce36285d73119d_cut_100x100_241.png"
alt="Ensure Your Satisfaction" class="img-responsive" /></div>
<h3>Ensure Your Satisfaction</h3>
<ul class="infolist" style="margin-top: -70px !important;">
<li> Well-trained elite 20% of guides.</li>
<li>20% vacancy on vehicles.</li>
<li>24/7 emergency support.</li>
</ul>
</div>
</td>
<td>
<div class="bottom_why_us_content">
<div class="whyus_image"> <img src="https://images.asiahighlights.com/allpicture/2024/02/03f93f0c74d548bf9ebd55796545c25b_cut_100x100_241.png"
alt="Live Your China Story" class="img-responsive" width="100"
height="100" /></div>
<h3>Live Your China Story</h3>
<ul class="infolist">
<li>Authentic local culture and lifestyles.</li>
<li>Understand the culture by living it.</li>
<li>Uncover fascinating histories and witness New China.</li>
</ul>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div class="bottom_destinations" style="margin-bottom: -5px;">
<h2 style="
margin-top: 0;
@ -437,234 +453,113 @@
<div class="listtour">
<div class="destination_links">
<ul>
<li><a href="/tour/top-china-tours/">Top 10 Tours</a></li>
<li><a href="/tour/china-panda-tours/">Panda Tours</a></li>
<li><a href="/tour/family-tours/">Family Tours</a></li>
<li><a href="/tour/chinese-food-tours/">Food Tours</a></li>
<li><a href="/tour/china-nature-tours/">Nature Tours</a></li>
<li><a href="/tour/photo-tours/">Photography Tours</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>
</ul>
</div>
<div class="destination_links">
<ul>
<li><a href="/tour/hassle-free-china-visas.htm">Visa-free Tours</a></li>
<li><a href="/tour/china-hiking-tours/">Hiking Tours</a></li>
<li><a href="/tour/china-biking-tours/">Biking Tours</a></li>
<li><a href="/tour/china-festival-tours/">Festival Tours</a></li>
<li><a href="/tour/asia-tours/">Top Asia Tours</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>
</ul>
</div>
</div>
</div>
<div class="listtour">
<div class="destination_links">
<ul>
<li><a href="/beijing/tours.htm">Beijing</a></li>
<li><a href="/chengdu/tours.htm">Chengdu</a></li>
<li><a href="/chongqing/tours.htm">Chongqing</a></li>
<li><a href="/greatwall/tours/">Great Wall</a></li>
<li><a href="/guilin/tours.htm">Guilin</a></li>
<li><a href="/guizhou/tours.htm">Guizhou</a></li>
<li><a href="/harbin/tours.htm">Harbin</a></li>
<li><a href="/hangzhou/tours.htm">Hangzhou</a></li>
<li><a href="/huangshan/tours.htm">Huangshan</a></li>
<li><a href="/hong-kong/tours.htm">Hong Kong</a></li>
<li><a href="/inner-mongolia/tours/">Inner Mongolia</a></li>
<li><a href="/jiuzhaigou/tours.htm">Jiuzhaigou</a></li>
</ul>
</div>
<div class="destination_links">
<ul>
<li><a href="/pingyao/tours.htm">Pingyao</a></li>
<li><a href="/shanghai/tours.htm">Shanghai</a></li>
<li><a href="/suzhou/tours.htm">Suzhou</a></li>
<li><a href="/tour/silk-road-tours/">Silk Road</a></li>
<li><a href="/tibet/tours.htm">Tibet</a></li>
<li><a href="/taiwan/tours.htm">Taiwan</a></li>
<li><a href="/tour/top-china-tours-from-hongkong.htm">Tours from Hong Kong</a></li>
<li><a href="/tour/top-china-tours-from-shanghai.htm">Tours from Shanghai</a></li>
<li><a href="/xinjiang/tours/">Xinjiang</a></li>
<li><a href="/xiamen/tours.htm">Xiamen</a></li>
<li><a href="/yunnan/tours.htm">Yunnan</a></li>
<li><a href="/tour/yangtze-river-tours/">Yangtze River</a></li>
<li><a href="/zhangjiajie/tours.htm">Zhangjiajie</a></li>
</ul>
</div>
<div class="infobottom">
<img src="https://data.chinahighlights.com/pic/logo/bottom-logo-b.png" alt="China Highlights Logo"
width="152px" height="108" class="bottomlogocenter">
<img src="https://data.chinahighlights.com/image/aboutus/feedback/five-star.png" style="display: block; margin: 10px auto;">
<div class="bottomlogoinfo">Rated 5 out of 5 | 98.8% Excellence<br>
China Highlights International<br>
Travel Service Co., LTD
</div>
<div class="listtour">
<div class="destination_links">
<div class="bottommedia">
<span class="followtitle">Follow Us</span>
<ul>
<li><a href="https://www.asiahighlights.com/thailand/tours" target="_blank">Thailand</a></li>
<li><a href="https://www.asiahighlights.com/vietnam/tours" target="_blank">Vietnam</a></li>
<li><a href="https://www.asiahighlights.com/cambodia/tours" target="_blank">Cambodia</a></li>
<li><a href="https://www.asiahighlights.com/laos" target="_blank">Laos</a></li>
<li><a href="https://www.asiahighlights.com/japan/tours" target="_blank">Japan</a></li>
<li><a href="https://www.asiahighlights.com/singapore" target="_blank">Singapore</a></li>
<li><a href="https://www.asiahighlights.com/singapore/singapore-to-kuala-lumpur" target="_blank">Malaysia</a></li>
<li><a href="https://www.asiahighlights.com/caucasus-central-asia/tours" target="_blank">Central Asia</a></li>
</ul>
</div>
<li><a href="https://www.facebook.com/Chinahighlights" title="Follow us on Facebook" class="fb"
target="_blank">
<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><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"
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">
<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>
</svg>
Instagram </a></li>
<div class="destination_links">
<ul>
<li><a href="https://www.asiahighlights.com/indonesia/bali/tours" target="_blank">Indonesia (Bali)</a></li>
<li><a href="https://www.asiahighlights.com/india/tours" target="_blank">India</a></li>
<li><a href="https://www.asiahighlights.com/nepal" target="_blank">Nepal</a></li>
<li><a href="https://www.asiahighlights.com/bhutan" target="_blank">Bhutan</a></li>
<li><a href="https://www.asiahighlights.com/srilanka" target="_blank">Sri Lanka</a></li>
<li><a href="https://www.asiahighlights.com/myanmar/tours" target="_blank">Myanmar</a></li>
<li><a href="https://www.asiahighlights.com/south-korea" target="_blank">South Korea</a></li>
<li><a href="https://www.globalhighlights.com/middle-east" target="_blank">Middle East</a></li>
</li>
</ul>
</div>
</div>
<div class="listtour">
<div class="destination_links">
<div class="bottomlinks">
<span class="followtitle"><a href="/aboutus/">About Us</a></span>
<ul>
<li><a href="https://www.globalhighlights.com/egypt/tours" target="_blank">Egypt</a></li>
<li><a href="https://www.globalhighlights.com/turkey/tours" target="_blank">Turkey</a></li>
<li><a href="https://www.globalhighlights.com/morocco/tours" target="_blank">Morocco</a></li>
<li><a href="https://www.globalhighlights.com/jordan/plan-a-trip" target="_blank">Jordan</a>
<li><a href="https://www.globalhighlights.com/greece" target="_blank">Greece</a></li>
<li><a href="https://www.globalhighlights.com/south-africa" target="_blank">South Africa</a></li>
<li><a href="https://www.globalhighlights.com/jordan" target="_blank">Jordan</a></li>
<li><a href="/travel-agents.htm">Travel Agents</a></li>
<li><a href="/reviews.htm">Reviews</a></li>
<li><a href="/contactus/">Contact Us</a></li>
<li><a href="/privacy.htm">Privacy</a></li>
<li><a href="/aboutus/terms.htm">Terms</a></li>
<li><a href="/partner/">Partner</a></li>
</ul>
</div>
<div class="language_links">
<span class="followtitle">Language</span>
<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>
</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>
</ul>
</div>
</div>
<div class="destination_links">
<ul>
<li><a href="https://www.globalhighlights.com/african-safari" target="_blank">African safari</a></li>
<li><a href="https://www.globalhighlights.com/peru" target="_blank">Peru</a></li>
<li><a href="https://www.globalhighlights.com/israel" target="_blank">Israel</a></li>
<li><a href="https://www.globalhighlights.com/portugal" target="_blank">Portugal</a></li>
<li><a href="https://www.globalhighlights.com/italy" target="_blank">Italy</a></li>
<li><a href="https://www.globalhighlights.com/tanzania" target="_blank">Tanzania</a></li>
<li><a href="https://www.globalhighlights.com/kenya" target="_blank">Kenya</a></li>
</li>
</ul>
</div>
</div>
</div>
<div class="infobottom">
<img src="https://data.chinahighlights.com/pic/logo/bottom-logo-b.png" alt="China Highlights Logo" width="152px"
height="108" class="bottomlogocenter">
<div class="bottomlogoinfo">China Highlights tailor-makes China tours to help travelers discover China
their way. <a href="/aboutus/">more
...</a>
</div>
<div class="bottomwechat">
<p><img src="https://data.chinahighlights.com/pic/guide/info-template-qr-code.jpg" alt="qr code" width="100px"
height="100px"></p>
<span class="wechattitle">Contact us via WeChat: chinahighlightstour</span>
</div>
<div class="bottommedia">
<span class="followtitle">Follow Us</span>
<ul>
<li><a href="https://www.facebook.com/Chinahighlights" title="Follow us on Facebook" class="fb"
target="_blank">
<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><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" 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">
<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>
</svg>
Instagram </a></li>
</ul>
</div>
<div class="bottomlinks">
<span class="followtitle"><a href="/aboutus/">About Us</a></span>
<ul>
<li><a href="/travel-agents.htm">Travel Agents</a></li>
<li><a href="/reviews.htm">Reviews</a></li>
<li><a href="/contactus/">Contact Us</a></li>
<li><a href="/privacy.htm">Privacy</a></li>
<li><a href="/aboutus/terms.htm">Terms</a></li>
<li><a href="/partner/">Partner</a></li>
</ul>
</div>
<div class="featureon">
<span class="followtitle">Featured on</span>
<img src="https://data.chinahighlights.com/pic/guide/info-template-feature-on.png" alt="feature on"
class="img-responsive" width="436px" height="250px">
<span class="followtitle">Featured on</span>
<img src="https://data.chinahighlights.com/pic/guide/info-template-feature-on.png" alt="feature on"
class="img-responsive" width="436px" height="250px">
</div>
<div class="featureon">
<span class="followtitle">Company Info</span>
China Highlights International Travel Service Co., LTD<br>
Corporate Number: 914503003486045699
<span class="followtitle">Address</span>Building 6, Chuangyi Business Park, 70 Qilidian Road, Guilin, Guangxi, 541004, China
</div>
</div>
</div>
<div class="bottomlogo">© 1998-2024 China Highlights <br>— Discovery Your Way!</div>
</footer>
<!--
<div class="web_cookie" style='display: none;' id='gotIdArea'>
<p>China Highlights uses cookies to give you the best possible service. If you continue browsing, you agree to the
use of cookies. More details can be found in our <a href="/privacy.htm">privacy policy</a>.</p>
<div class="cookie_close" id="gotItBtn" style="float: right;
padding: 5px 10px;
cursor: pointer;
background: #fff;
font-weight: 600;
font-size: 16px;">X</div>
</div>
<script>
var GOT_IT_KEY = '__china_highlights_you_agree_to_use_of_cookies__';
if (window.localStorage && localStorage.getItem(GOT_IT_KEY)) {
console.info('If you continue browsing, you agree to the use of cookies.');
} else {
document.getElementById('gotIdArea').style.display = '';
if (window.localStorage) {
localStorage.setItem(GOT_IT_KEY, '1');
}
var gotItBtn = document.getElementById('gotItBtn');
gotItBtn.addEventListener('click', function (evt) {
document.getElementById('gotIdArea').style.display = 'none';
});
setTimeout(function () {
document.getElementById('gotIdArea').style.display = 'none';
}, 10000);
}
</script>
-->
<!--newsletter表单 JS-->
<script src="https://www.recaptcha.net/recaptcha/enterprise.js?render=6Lf828MhAAAAANNetijCXKwW5ARyhcJ-b1Hhslja"></script>
<script>

@ -47,7 +47,7 @@
<div class="kids_age" >
<select class="kids_number" id="adult_18_plus" name="adult" >
<select class="kids_number" id="adult_18_plus" name="adult_18_plus" >
<option value="0">0</option>
<option value="1">1</option>
<option value="2">2</option>

@ -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-Ezoic-NoAds@-->
<!--@OG:IMAGE@-->
<link rel="canonical" href="<!--@CANONICAL@-->">
<link rel="shortcut icon" href="/favicon.ico">
@ -203,15 +204,15 @@
</section>
</div>
<div class="right_brand_info">
<h2>Why Travel with Global Highlights (98.8% positive customer reviews among 10,000+)</h2>
<h2>Why Global Highlights (10,000+ reviews & 98.8% 5-star rating)</h2>
<ul>
<li class="tailormade"><strong>Unique experiences tailored to your interests:</strong> Enjoy a
premium trip that goes beyond the typical tourist attractions.</li>
<li class="worryfree"><strong>Hassle-free travel and peace of mind: </strong>Every aspect of your
trip will be carefully planned and organized by your 1:1 travel consultant.
<li><strong>Save Your Time:</strong> Less research, more enjoyment!<br>
Real-time 1V1 expert planning</li>
<li><strong>Maximize Your Flexibility: </strong>Personal local guide and ride<br>
Explore at your own pace
</li>
<li class="norisk"><strong>Experienced and knowledgeable guides:</strong> Your guides will be local
and love to work for travelers' smiles.</li>
<li><strong>Celebrate Your Journeys:</strong> Specially-crafted family adventures<br>
Celebrate milestones with style!</li>
</ul>
</div>
<!--@TIPS-RIGHT@-->
@ -258,49 +259,66 @@
</div>
<div id="footer">
<div class="footerContent">
<h2>The Global Highlights Experience</h2>
<h2>Why Global Highlights</h2>
<div class="table-responsive">
<table class="why_us_table">
<tbody>
<tr>
<td>
<div class="bottom_why_us_content">
<div class="whyus_image"> <img src="https://images.asiahighlights.com/allpicture/2024/02/2fa10d72338f4942af532a909a486215_cut_100x100_241.png" alt="Save Your Time" class="img-responsive" width="100" height="100"></div>
<h3>Save Your Time</h3>
<ul class="infolist">
<li>Less research, more enjoyment!</li>
<li> Real-time 1V1 expert planning.</li>
<li> Seamless coordination</li>
</ul>
</div>
</td>
<td>
<div class="bottom_why_us_content">
<div class="whyus_image"> <img src="https://images.asiahighlights.com/allpicture/2024/02/128f3292b9054cd295eeaf0a6223ee93_cut_100x100_241.png" alt="Maximize Your Flexibility" class="img-responsive" width="100" height="100"></div>
<h3>Maximize Your Flexibility</h3>
<ul class="infolist">
<li>Your own personal guide and ride. </li>
<li> Explore at your own pace. </li>
<li> Unparalleled flexibility, impossible on a group tour.</li>
</ul>
</div>
</td>
<td>
<div class="bottom_why_us_content">
<div class="whyus_image"><img src="https://images.asiahighlights.com/allpicture/2024/02/93cce481fbbb427882ce36285d73119d_cut_100x100_241.png" alt="Ensure Your Satisfactory" class="img-responsive" width="100" height="100"></div>
<h3>Ensure Your Satisfactory</h3>
<ul class="infolist">
<li>Well-trained elite 20% of guides.</li>
<li> 20% vacancy on vehicles.</li>
<li> 24/7 emergency support.</li>
</ul>
</div>
</td>
<td>
<div class="bottom_why_us_content">
<div class="whyus_image"> <img src="https://images.asiahighlights.com/allpicture/2024/02/03f93f0c74d548bf9ebd55796545c25b_cut_100x100_241.png" alt="Celebrate Your Journey" class="img-responsive" width="100" height="100"></div>
<h3>Celebrate Your Journey</h3>
<ul class="infolist">
<li>Family adventures</li>
<li> Celebrate milestones with style!</li>
<li> Photographer service for special moments</li>
</ul>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<div class="footerFeatures">
<div class=" whyuscontent">
<img src="https://data.globalhighlights.com/image/aboutus/ah-bottom-why-us-tag-1.png"
alt="1-to-1 Expert Planning" class="img-responsive">
<div class="featureTitle">1-to-1 Expert Planning</div>
<ul>
<li>Your tour will be tailor-made to suit you by a destination expert. Your personal travel
advisor will always reply within 24 hours.</li>
</ul>
</div>
<div class=" whyuscontent">
<img src="https://data.globalhighlights.com/image/aboutus/ah-bottom-why-us-tag-2.png"
alt="Personal Journeys" class="img-responsive">
<div class="featureTitle">Personal Journeys</div>
<ul>
<li>Enjoy having your own personal local guide and ride. Explore destinations at your own pace.
Have as much flexibility as possible.</li>
</ul>
</div>
<div class=" whyuscontent">
<img src="https://data.globalhighlights.com/image/aboutus/ah-bottom-why-us-tag-3.png"
alt="Authentic Experiences" class="img-responsive">
<div class="featureTitle">Authentic Experiences</div>
<ul>
<li>Go beyond the sightseeing. Understand the destinations by practicing the local culture and
interacting with local people.</li>
</ul>
</div>
<div class=" whyuscontent">
<img src="https://data.globalhighlights.com/image/aboutus/ah-bottom-why-us-tag-4.png"
alt="One-Stop Service" class="img-responsive">
<div class="featureTitle">One-Stop Service</div>
<ul>
<li>Leave all the booking work to us, including international and internal transportation,
visas, hotels, meals, and activities. </li>
</ul>
</div>
<div class=" partner">
<div class="corporate_number_pc">China Highlights International Travel Service Co., LTD |
Corporate Number: 914503003486045699</div>
<div class="corporate_number_pc"><strong>Address:</strong> Building 6, Chuangyi Business Park, 70 Qilidian Road, Guilin, Guangxi, 541004, China</div>
<ul class="withBorder">
<li><a href="/travel-agents">Travel Agents</a></li>
<li><a href="/about" rel="nofollow">About us</a></li>
@ -336,7 +354,7 @@
</svg></a>
</li>
</ul>
<div class="ustoa"><img src="https://images.globalhighlights.com/allpicture/2024/01/325e9f472e164bd1b78f06ba6228592a_cut_647x128_241.jpg" style="width: 164px;"></div>
<div class="ustoa"><img src="https://images.globalhighlights.com/allpicture/2024/01/325e9f472e164bd1b78f06ba6228592a_cut_647x128_241.jpg" style="width: 164px; height:38px;"></div>
</div>
</div>
</div>
@ -349,122 +367,17 @@
margin-top: 0;
text-align: center;
">Where Can We Take You Today?</h2>
<div class="listtour">
<div class="destination_links">
<ul>
<li><a href="https://www.asiahighlights.com/thailand/tours" target="_blank">Thailand</a></li>
<li><a href="https://www.asiahighlights.com/vietnam/tours" target="_blank">Vietnam</a></li>
<li><a href="https://www.asiahighlights.com/cambodia/tours" target="_blank">Cambodia</a></li>
<li><a href="https://www.asiahighlights.com/south-korea" target="_blank">South Korea</a></li>
<li><a href="/middle-east" >Middle East</a></li>
</ul>
</div>
<div class="destination_links">
<ul>
<li><a href="https://www.asiahighlights.com/laos" target="_blank">Laos</a></li>
<li><a href="https://www.asiahighlights.com/japan/tours" target="_blank">Japan</a></li>
<li><a href="https://www.asiahighlights.com/singapore" target="_blank">Singapore</a></li>
<li><a href="/african-safari" >African safari</a></li>
<li><a href="/peru" >Peru</a></li>
</ul>
</div>
<div class="destination_links">
<ul>
<li><a href="https://www.asiahighlights.com/singapore/singapore-to-kuala-lumpur" target="_blank">Malaysia</a></li>
<li><a href="https://www.asiahighlights.com/indonesia/bali/tours" target="_blank">Indonesia (Bali)</a></li>
<li><a href="https://www.asiahighlights.com/india/tours" target="_blank">India</a></li>
<li><a href="/israel" >Israel</a></li>
<li><a href="/portugal" >Portugal</a></li>
</ul>
</div>
<div class="destination_links">
<ul>
<li><a href="https://www.asiahighlights.com/nepal" target="_blank">Nepal</a></li>
<li><a href="https://www.asiahighlights.com/bhutan" target="_blank">Bhutan</a></li>
<li><a href="https://www.asiahighlights.com/srilanka" target="_blank">Sri Lanka</a></li>
<li><a href="/greece" >Greece</a></li>
<li><a href="/south-africa" >South Africa</a></li>
</ul>
</div>
<div class="destination_links">
<ul>
<li><a href="https://www.asiahighlights.com/myanmar/tours" target="_blank">Myanmar</a></li>
<li><a href="https://www.asiahighlights.com/caucasus-central-asia/tours" target="_blank">Central Asia</a></li>
<li><a href="/egypt/tours" >Egypt</a></li>
<li><a href="/italy" >Italy</a></li>
<li><a href="/tanzania" >Tanzania</a></li>
</ul>
</div>
<div class="destination_links">
<ul>
<li><a href="/morocco/tours" >Morocco</a></li>
<li><a href="/turkey/tours" >Turkey</a></li>
<li><a href="/jordan" >Jordan</a></li>
<li><a href="/kenya" >Kenya</a></li>
</ul>
</div>
</div>
<h3 style="color: #fff; text-align: center;">China Tours</h3>
<div class="listtour">
<div class="destination_links">
<ul>
<li><a href="https://www.chinahighlights.com/beijing/tours.htm" target="_blank">Beijing</a></li>
<li><a href="https://www.chinahighlights.com/chengdu/tours.htm" target="_blank">Chengdu</a></li>
<li><a href="https://www.chinahighlights.com/chongqing/tours.htm" target="_blank">Chongqing</a></li>
<li><a href="https://www.chinahighlights.com/greatwall/tours/" target="_blank">Great Wall</a></li>
</ul>
</div>
<div class="destination_links">
<ul>
<li><a href="https://www.chinahighlights.com/guilin/tours.htm" target="_blank">Guilin</a></li>
<li><a href="https://www.chinahighlights.com/guizhou/tours.htm" target="_blank">Guizhou</a></li>
<li><a href="https://www.chinahighlights.com/harbin/tours.htm" target="_blank">Harbin</a></li>
<li><a href="https://www.chinahighlights.com/hangzhou/tours.htm" target="_blank">Hangzhou</a></li>
</ul>
</div>
<div class="destination_links">
<ul>
<li><a href="https://www.chinahighlights.com/huangshan/tours.htm" target="_blank">Huangshan</a></li>
<li><a href="https://www.chinahighlights.com/hong-kong/tours.htm" target="_blank">Hong Kong</a></li>
<li><a href="https://www.chinahighlights.com/inner-mongolia/tours/" target="_blank">Inner Mongolia</a></li>
<li><a href="https://www.chinahighlights.com/jiuzhaigou/tours.htm" target="_blank">Jiuzhaigou</a></li>
</ul>
</div>
<div class="destination_links">
<ul>
<li><a href="https://www.chinahighlights.com/pingyao/tours.htm" target="_blank">Pingyao</a></li>
<li><a href="https://www.chinahighlights.com/shanghai/tours.htm" target="_blank">Shanghai</a></li>
<li><a href="https://www.chinahighlights.com/suzhou/tours.htm" target="_blank">Suzhou</a></li>
<li><a href="https://www.chinahighlights.com/tour/silk-road-tours/" target="_blank">Silk Road</a></li>
</ul>
</div>
<div class="destination_links">
<ul>
<li><a href="https://www.chinahighlights.com/xinjiang/tours/" target="_blank">Xinjiang</a></li>
<li><a href="https://www.chinahighlights.com/xiamen/tours.htm" target="_blank">Xiamen</a></li>
<li><a href="https://www.chinahighlights.com/yunnan/tours.htm" target="_blank">Yunnan</a></li>
<li><a href="https://www.chinahighlights.com/tour/yangtze-river-tours/" target="_blank">Yangtze River</a></li>
</ul>
</div>
<div class="destination_links">
<ul>
<li><a href="https://www.chinahighlights.com/zhangjiajie/tours.htm" target="_blank">Zhangjiajie</a></li>
<li><a href="https://www.chinahighlights.com/tibet/tours.htm" target="_blank">Tibet</a></li>
<li><a href="https://www.chinahighlights.com/taiwan/tours.htm" target="_blank">Taiwan</a></li>
<li><a href="https://www.chinahighlights.com/tour/top-china-tours-from-hongkong.htm" target="_blank">Tours from Hong Kong</a></li>
<li><a href="https://www.chinahighlights.com/tour/top-china-tours-from-shanghai.htm" target="_blank">Tours from Shanghai</a></li>
<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>
</ul>
</div>
</div>
</div>
</div>
<div class="bottomlogo">

@ -41,7 +41,7 @@
<div class="kids_age" >
<select class="kids_number" id="adult_18_plus" name="adult" >
<select class="kids_number" id="adult_18_plus" name="adult_18_plus" >
<option value="0">0</option>
<option value="1">1</option>
<option value="2">2</option>

@ -231,44 +231,64 @@
<div id="footer">
<div class="footerContent">
<h2>The Global Highlights Experience</h2>
<h2>Why Global Highlights</h2>
<div class="table-responsive">
<table class="why_us_table">
<tbody>
<tr>
<td>
<div class="bottom_why_us_content">
<div class="whyus_image"> <img src="https://images.asiahighlights.com/allpicture/2024/02/2fa10d72338f4942af532a909a486215_cut_100x100_241.png" alt="Save Your Time" class="img-responsive" width="100" height="100"></div>
<h3>Save Your Time</h3>
<ul class="infolist">
<li>Less research, more enjoyment!</li>
<li> Real-time 1V1 expert planning.</li>
<li> Seamless coordination</li>
</ul>
</div>
</td>
<td>
<div class="bottom_why_us_content">
<div class="whyus_image"> <img src="https://images.asiahighlights.com/allpicture/2024/02/128f3292b9054cd295eeaf0a6223ee93_cut_100x100_241.png" alt="Maximize Your Flexibility" class="img-responsive" width="100" height="100"></div>
<h3>Maximize Your Flexibility</h3>
<ul class="infolist">
<li>Your own personal guide and ride. </li>
<li> Explore at your own pace. </li>
<li> Unparalleled flexibility, impossible on a group tour.</li>
</ul>
</div>
</td>
<td>
<div class="bottom_why_us_content">
<div class="whyus_image"><img src="https://images.asiahighlights.com/allpicture/2024/02/93cce481fbbb427882ce36285d73119d_cut_100x100_241.png" alt="Ensure Your Satisfactory" class="img-responsive" width="100" height="100"></div>
<h3>Ensure Your Satisfactory</h3>
<ul class="infolist">
<li>Well-trained elite 20% of guides.</li>
<li> 20% vacancy on vehicles.</li>
<li> 24/7 emergency support.</li>
</ul>
</div>
</td>
<td>
<div class="bottom_why_us_content">
<div class="whyus_image"> <img src="https://images.asiahighlights.com/allpicture/2024/02/03f93f0c74d548bf9ebd55796545c25b_cut_100x100_241.png" alt="Celebrate Your Journey" class="img-responsive" width="100" height="100"></div>
<h3>Celebrate Your Journey</h3>
<ul class="infolist">
<li>Family adventures</li>
<li> Celebrate milestones with style!</li>
<li> Photographer service for special moments</li>
</ul>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<div class="footerFeatures">
<div class="whyuscontent">
<img src="https://data.globalhighlights.com/image/aboutus/ah-bottom-why-us-tag-1.png"
alt="1-to-1 Expert Planning" class="img-responsive">
<span class="featureTitle">1-to-1 Expert Planning</span>
<ul>
<li>Your tour will be tailor-made to suit you by a destination expert. Your personal travel advisor will
always reply within 24 hours.</li>
</ul>
</div>
<div class=" whyuscontent">
<img src="https://data.globalhighlights.com/image/aboutus/ah-bottom-why-us-tag-2.png"
alt="Personal Journeys" class="img-responsive">
<span class="featureTitle">Personal Journeys</span>
<ul>
<li>Enjoy having your own personal local guide and ride. Explore destinations at your own pace. Have as
much flexibility as possible.</li>
</ul>
</div>
<div class=" whyuscontent">
<img src="https://data.globalhighlights.com/image/aboutus/ah-bottom-why-us-tag-3.png"
alt="Authentic Experiences" class="img-responsive">
<span class="featureTitle">Authentic Experiences</span>
<ul>
<li>Go beyond the sightseeing. Understand the destinations by practicing the local culture and interacting
with local people.</li>
</ul>
</div>
<div class=" whyuscontent">
<img src="https://data.globalhighlights.com/image/aboutus/ah-bottom-why-us-tag-4.png" alt="One-Stop Service"
class="img-responsive">
<span class="featureTitle">One-Stop Service</span>
<ul>
<li>Leave all the booking work to us, including international and internal transportation, visas, hotels,
meals, and activities.</li>
</ul>
</div>
<ul class="withBorder" style="margin-top: 0; border-bottom: 1px solid #d1d1d1; border-top: none;">
<li><a href="/travel-agents">Travel Agents</a></li>
<li><a href="/about" rel="nofollow">About us</a></li>
@ -299,9 +319,8 @@
</svg></a>
</li>
</ul>
<div class="corporate_number_mobile">China Highlights International Travel Service Co., LTD<br>
Corporate Number: 914503003486045699
<img src="https://images.globalhighlights.com/allpicture/2024/01/325e9f472e164bd1b78f06ba6228592a_cut_647x128_241.jpg" style="width: 180px;margin-top: 15px;">
<div class="corporate_number_mobile"><strong>Address:</strong> Building 6, Chuangyi Business Park, 70 Qilidian Road, Guilin, Guangxi, 541004, China
<img src="https://images.globalhighlights.com/allpicture/2024/01/325e9f472e164bd1b78f06ba6228592a_cut_647x128_241.jpg" style="width: 180px;margin-top: 15px; height: 43px;">
</div>
</div>
</div>
@ -313,124 +332,16 @@
margin-top: 0;
text-align: center;
">Where Can We Take You Today?</h2>
<div class="listtour">
<div class="destination_links">
<ul>
<li><a href="/egypt/tours" >Egypt</a></li>
<li><a href="/turkey/tours" >Turkey</a></li>
<li><a href="/morocco/tours" >Morocco</a></li>
<li><a href="/jordan/plan-a-trip" >Jordan</a>
<li><a href="/greece" >Greece</a></li>
<li><a href="/south-africa" >South Africa</a></li>
<li><a href="/jordan" >Jordan</a></li>
</ul>
</div>
<div class="destination_links">
<ul>
<li><a href="/african-safari">African safari</a></li>
<li><a href="/peru">Peru</a></li>
<li><a href="/israel">Israel</a></li>
<li><a href="/portugal" >Portugal</a></li>
<li><a href="/italy" >Italy</a></li>
<li><a href="/tanzania" >Tanzania</a></li>
<li><a href="/kenya" >Kenya</a></li>
<li><a href="/middle-east" >Middle East</a></li>
</li>
</ul>
</div>
</div>
<div class="listtour">
<div class="destination_links">
<ul>
<li><a href="https://www.asiahighlights.com/thailand/tours" target="_blank">Thailand</a></li>
<li><a href="https://www.asiahighlights.com/vietnam/tours" target="_blank">Vietnam</a></li>
<li><a href="https://www.asiahighlights.com/cambodia/tours" target="_blank">Cambodia</a></li>
<li><a href="https://www.asiahighlights.com/laos" target="_blank">Laos</a></li>
<li><a href="https://www.asiahighlights.com/japan/tours" target="_blank">Japan</a></li>
<li><a href="https://www.asiahighlights.com/singapore" target="_blank">Singapore</a></li>
<li><a href="https://www.asiahighlights.com/singapore/singapore-to-kuala-lumpur" target="_blank">Malaysia</a></li>
<li><a href="https://www.asiahighlights.com/caucasus-central-asia/tours" target="_blank">Central Asia</a></li>
</ul>
</div>
<div class="destination_links">
<ul>
<li><a href="https://www.asiahighlights.com/indonesia/bali/tours" target="_blank">Indonesia (Bali)</a></li>
<li><a href="https://www.asiahighlights.com/india/tours" target="_blank">India</a></li>
<li><a href="https://www.asiahighlights.com/nepal" target="_blank">Nepal</a></li>
<li><a href="https://www.asiahighlights.com/bhutan" target="_blank">Bhutan</a></li>
<li><a href="https://www.asiahighlights.com/srilanka" target="_blank">Sri Lanka</a></li>
<li><a href="https://www.asiahighlights.com/myanmar/tours" target="_blank">Myanmar</a></li>
<li><a href="https://www.asiahighlights.com/south-korea" target="_blank">South Korea</a></li>
</li>
</ul>
</div>
</div>
<h3 style="text-align: center;">China Tours</h3>
<div class="listtour">
<div class="destination_links">
<ul>
<li><a href="https://www.chinahighlights.com/tour/top-china-tours/" target="_blank">Top 10 Tours</a></li>
<li><a href="https://www.chinahighlights.com/tour/china-panda-tours/" target="_blank">Panda Tours</a></li>
<li><a href="https://www.chinahighlights.com/tour/family-tours/" target="_blank">Family Tours</a></li>
<li><a href="https://www.chinahighlights.com/tour/chinese-food-tours/" target="_blank">Food Tours</a></li>
<li><a href="https://www.chinahighlights.com/tour/china-nature-tours/" target="_blank">Nature Tours</a></li>
<li><a href="https://www.chinahighlights.com/tour/photo-tours/" target="_blank">Photography Tours</a></li>
</ul>
</div>
<div class="destination_links">
<ul>
<li><a href="https://www.chinahighlights.com/tour/hassle-free-china-visas.htm" target="_blank">Visa-free Tours</a></li>
<li><a href="https://www.chinahighlights.com/tour/china-hiking-tours/" target="_blank">Hiking Tours</a></li>
<li><a href="https://www.chinahighlights.com/tour/china-biking-tours/" target="_blank">Biking Tours</a></li>
<li><a href="https://www.chinahighlights.com/tour/china-festival-tours/" target="_blank">Festival Tours</a></li>
<li><a href="https://www.chinahighlights.com/tour/asia-tours/" target="_blank">Top Asia Tours</a></li>
</ul>
</div>
</div>
<div class="listtour">
<div class="destination_links">
<ul>
<li><a href="https://www.chinahighlights.com/beijing/tours.htm" target="_blank">Beijing</a></li>
<li><a href="https://www.chinahighlights.com/chengdu/tours.htm" target="_blank">Chengdu</a></li>
<li><a href="https://www.chinahighlights.com/chongqing/tours.htm" target="_blank">Chongqing</a></li>
<li><a href="https://www.chinahighlights.com/greatwall/tours/" target="_blank">Great Wall</a></li>
<li><a href="https://www.chinahighlights.com/guilin/tours.htm" target="_blank">Guilin</a></li>
<li><a href="https://www.chinahighlights.com/guizhou/tours.htm" target="_blank">Guizhou</a></li>
<li><a href="https://www.chinahighlights.com/harbin/tours.htm" target="_blank">Harbin</a></li>
<li><a href="https://www.chinahighlights.com/hangzhou/tours.htm" target="_blank">Hangzhou</a></li>
<li><a href="https://www.chinahighlights.com/huangshan/tours.htm" target="_blank">Huangshan</a></li>
<li><a href="https://www.chinahighlights.com/hong-kong/tours.htm" target="_blank">Hong Kong</a></li>
<li><a href="https://www.chinahighlights.com/inner-mongolia/tours/" target="_blank">Inner Mongolia</a></li>
<li><a href="https://www.chinahighlights.com/jiuzhaigou/tours.htm" target="_blank">Jiuzhaigou</a></li>
</ul>
</div>
<div class="destination_links">
<ul>
<li><a href="https://www.chinahighlights.com/pingyao/tours.htm" target="_blank">Pingyao</a></li>
<li><a href="https://www.chinahighlights.com/shanghai/tours.htm" target="_blank">Shanghai</a></li>
<li><a href="https://www.chinahighlights.com/suzhou/tours.htm" target="_blank">Suzhou</a></li>
<li><a href="https://www.chinahighlights.com/tour/silk-road-tours/" target="_blank">Silk Road</a></li>
<li><a href="https://www.chinahighlights.com/tibet/tours.htm" target="_blank">Tibet</a></li>
<li><a href="https://www.chinahighlights.com/taiwan/tours.htm" target="_blank">Taiwan</a></li>
<li><a href="https://www.chinahighlights.com/tour/top-china-tours-from-hongkong.htm" target="_blank">Tours from Hong Kong</a></li>
<li><a href="https://www.chinahighlights.com/tour/top-china-tours-from-shanghai.htm" target="_blank">Tours from Shanghai</a></li>
<li><a href="https://www.chinahighlights.com/xinjiang/tours/" target="_blank">Xinjiang</a></li>
<li><a href="https://www.chinahighlights.com/xiamen/tours.htm" target="_blank">Xiamen</a></li>
<li><a href="https://www.chinahighlights.com/yunnan/tours.htm" target="_blank">Yunnan</a></li>
<li><a href="https://www.chinahighlights.com/tour/yangtze-river-tours/" target="_blank">Yangtze River</a></li>
<li><a href="https://www.chinahighlights.com/zhangjiajie/tours.htm" target="_blank">Zhangjiajie</a></li>
<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>
</ul>
</div>
</div>
</div>
</div>

Loading…
Cancel
Save