万邦携程获取酒店详情原数据 API 返回值说明

item_get_app-获取酒店详情原数据 [查看演示] API测试工具 注册开通

xiecheng.item_get_app

公共参数

请求地址: https://api-gw.onebound.cn/xiecheng/item_get_app

名称 类型 必须 描述
keyString调用key(必须以GET方式拼接在URL中)
secretString调用密钥
api_nameStringAPI接口名称(包括在请求地址中)[item_search,item_get,item_search_shop等]
cacheString[yes,no]默认yes,将调用缓存的数据,速度比较快
result_typeString[json,jsonu,xml,serialize,var_export]返回数据格式,默认为json,jsonu输出的内容中文可以直接阅读
langString[cn,en,ru]翻译语言,默认cn简体中文
versionStringAPI版本
请求参数

请求参数:num_iid=9568550

参数说明:num_iid:酒店ID

响应参数

Version: Date:

名称 类型 必须 示例值 描述
item
item[] 0 获取酒店详情原数据
请求示例
	
-- 请求示例 url 默认请求参数已经URL编码处理
curl -i "https://api-gw.onebound.cn/xiecheng/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=9568550"
<?php

// 请求示例 url 默认请求参数已经URL编码处理
// 本示例代码未加密secret参数明文传输,若要加密请参考:https://open.onebound.cn/help/demo/sdk/demo-sign.php
$method = "GET";
$url = "https://api-gw.onebound.cn/xiecheng/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=9568550";
$curl = curl_init();
curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $method);
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_SSL_VERIFYHOST,FALSE);
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER,FALSE);
curl_setopt($curl, CURLOPT_FAILONERROR, false);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_HEADER, true);
curl_setopt($curl, CURLOPT_ENCODING, "gzip");
var_dump(curl_exec($curl));
?>
<?php
//定义缓存目录和引入文件
define("DIR_RUNTIME","runtime/");
define("DIR_ERROR","runtime/");
define("SECACHE_SIZE","0");
//SDK下载地址 https://open.onebound.cn/help/demo/sdk/onebound-api-sdk.zip
include ("ObApiClient.php");

$obapi = new otao\ObApiClient();
$obapi->api_url = "http://api-gw.onebound.cn/";
$obapi->api_urls = array("http://api-gw.onebound.cn/","http://api-1.onebound.cn/");//备用API服务器
$obapi->api_urls_on = true;//当网络错误时,是否启用备用API服务器
$obapi->api_key = "<您自己的apiKey>";
$obapi->api_secret = "<您自己的apiSecret>";
$obapi->api_version ="";
$obapi->secache_path ="runtime/";
$obapi->secache_time ="86400";
$obapi->cache = true;

$api_data = $obapi->exec(
                array(
	                "api_type" =>"xiecheng",
	                "api_name" =>"item_get_app",
	                "api_params"=>array (
  'num_iid' => '9568550',
)
                )
            );
 var_dump($api_data);
?>
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.Reader;
import java.net.URL;
import java.nio.charset.Charset;
import org.json.JSONException;
import org.json.JSONObject;
import java.io.PrintWriter;
import java.net.URLConnection;

public class Example {
	private static String readAll(Reader rd) throws IOException {
		StringBuilder sb = new StringBuilder();
		int cp;
		while ((cp = rd.read()) != -1) {
			sb.append((char) cp);
		}
		return  sb.toString();
	}
	public static JSONObject postRequestFromUrl(String url, String body) throws IOException, JSONException {
		URL realUrl = new URL(url);
		URLConnection conn = realUrl.openConnection();
		conn.setDoOutput(true);
		conn.setDoInput(true);
		PrintWriter out = new PrintWriter(conn.getOutputStream());
		out.print(body);
		out.flush();
		InputStream instream = conn.getInputStream();
		try {
			BufferedReader rd = new BufferedReader(new InputStreamReader(instream, Charset.forName("UTF-8")));
			String jsonText = readAll(rd);
			JSONObject json = new JSONObject(jsonText);
			return json;
		} finally {
			instream.close();
		}
	}
	public static JSONObject getRequestFromUrl(String url) throws IOException, JSONException {
		URL realUrl = new URL(url);
		URLConnection conn = realUrl.openConnection();
		InputStream instream = conn.getInputStream();
		try {
			BufferedReader rd = new BufferedReader(new InputStreamReader(instream, Charset.forName("UTF-8")));
			String jsonText = readAll(rd);
			JSONObject json = new JSONObject(jsonText);
			return json;
		} finally {
			instream.close();
		}
	}
	public static void main(String[] args) throws IOException, JSONException {
		// 请求示例 url 默认请求参数已经URL编码处理
		String url = "https://api-gw.onebound.cn/xiecheng/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=9568550";
		JSONObject json = getRequestFromUrl(url);
		System.out.println(json.toString());
	}

}
//using System.Net.Security;
//using System.Security.Cryptography.X509Certificates;
private const String method = "GET";
static void Main(string[] args)
{
	String bodys = "";
	// 请求示例 url 默认请求参数已经做URL编码
	String url = "https://api-gw.onebound.cn/xiecheng/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=9568550";
	HttpWebRequest httpRequest = null;
	HttpWebResponse httpResponse = null; 
	if (url.Contains("https://"))
	{
		ServicePointManager.ServerCertificateValidationCallback = new RemoteCertificateValidationCallback(CheckValidationResult);
		httpRequest = (HttpWebRequest)WebRequest.CreateDefault(new Uri(url));
	}
	else
	{
		httpRequest = (HttpWebRequest)WebRequest.Create(url);
	}
	httpRequest.Method = method;
	if (0 < bodys.Length)
	{
		byte[] data = Encoding.UTF8.GetBytes(bodys);
		using (Stream stream = httpRequest.GetRequestStream())
		{
		stream.Write(data, 0, data.Length);
		}
	}
	try
	{
		httpResponse = (HttpWebResponse)httpRequest.GetResponse();
	}
	catch (WebException ex)
	{
		httpResponse = (HttpWebResponse)ex.Response;
	}
	Console.WriteLine(httpResponse.StatusCode);
	Console.WriteLine(httpResponse.Method);
	Console.WriteLine(httpResponse.Headers);
	Stream st = httpResponse.GetResponseStream();
	StreamReader reader = new StreamReader(st, Encoding.GetEncoding("utf-8"));
	Console.WriteLine(reader.ReadToEnd());
	Console.WriteLine("\n");
}
public static bool CheckValidationResult(object sender, X509Certificate certificate, X509Chain chain, SslPolicyErrors errors)
{
	return true;
}
# coding:utf-8
"""
Compatible for python2.x and python3.x
requirement: pip install requests
"""
from __future__ import print_function
import requests
# 请求示例 url 默认请求参数已经做URL编码
url = "https://api-gw.onebound.cn/xiecheng/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=9568550"
headers = {
    "Accept-Encoding": "gzip",
    "Connection": "close"
}
if __name__ == "__main__":
    r = requests.get(url, headers=headers)
    json_obj = r.json()
    print(json_obj)
url := fmt.Sprintf("https://api-gw.onebound.cn/xiecheng/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=9568550", params)
req, err := http.NewRequest("GET", url, nil)
if err != nil {
    panic(err)
}
req.Header.Set("Authorization", apiKey)

client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
    panic(err)
}
defer resp.Body.Close()

body, err := ioutil.ReadAll(resp.Body)
if err != nil {
    panic(err)
}

fmt.Println(string(body))
fetch('https://api-gw.onebound.cn/xiecheng/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({"num_iid":"9568550"})// request parameters here
})
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error(error));
<script src="js/obapi.js"></script>
<script type="text/javascript">
obAPI.config({
    debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
    api_url: "https://api-gw.onebound.cn", // 
    api_key: "<您自己的apiKey>", // 必填,
    api_secret: "<您自己的apiSecret>", //
    lang: "cn", // 
    timestamp: "", // 必填,生成签名的时间戳
    nonceStr: "", // 必填,生成签名的随机串
    signature: "",// 必填,签名
    jsApiList: [] // 必填,需要使用的JS接口列表
});
</script>
<div id="api_data_box"></div>
<script type="text/javascript">
obAPI.exec(
     {
     "api_type":"xiecheng",
     "api_name" : "item_get_app",
     "api_params": {"num_iid":"9568550"}//num_iid=9568550,#具体参数请参考文档说明
     },
     function(e){
        document.querySelector("#api_data_box").innerHTML=JSON.stringify(e)
     }
);
</script>
require "net/http"
require "uri"
url = URI("https://api-gw.onebound.cn/xiecheng/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=9568550")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body 
import Foundation
 
let url = URL(string: "https://api-gw.onebound.cn/xiecheng/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=9568550")!
let task = URLSession.shared.dataTask(with: url) { data, response, error in
    guard let data = data else {
        print("Error: No data was returned")
        return
    }
     
    if let data = String(data: data, encoding: .utf8) {
        print(data)
    }
}
task.resume()
NSURL *myUrl = [NSURL URLWithString:@"https://api-gw.onebound.cn/xiecheng/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=9568550"];

NSMutableURLRequest *request=[NSMutableURLRequest requestWithURL:myUrl cachePolicy:NSURLRequestReloadIgnoringCacheData timeoutInterval:60.0];

[request setHTTPMethod:@"GET"];
NSError *error;
NSURLResponse *response;

NSData *data = [NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&error];

NSString *result = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
NSLog(@"%@",result);
#include<stdio.h>
#include <stdlib.h>
#include<string.h>
#include<curl/curl.h>

int main(){
  CURL *curl;  
  CURLcode res;   
  struct curl_slist *headers=NULL; 

  char url[] = "https://api-gw.onebound.cn/xiecheng/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=9568550";
  curl_global_init(CURL_GLOBAL_ALL); 
  curl = curl_easy_init(); 

  if(curl) {
    curl_easy_setopt(curl, CURLOPT_URL,url);
    headers = curl_slist_append(headers, "Content-Type: application/json"); 

    curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers); 
    res = curl_easy_perform(curl);

    if(res != CURLE_OK){
      printf("curl_easy_perform(): %s\n",curl_easy_strerror(res));                     
    }
    curl_easy_cleanup(curl);          
  }
  curl_global_cleanup();
  return 0;
}
#include<iostream>
#include<string>
#include<curl/curl.h>

using namespace std;

static size_t Data(void *ptr, size_t size, size_t nmemb, string *stream)
{
    std::size_t realSize = size *nmemb;
    auto *realPtr = reinterpret_cast<char *>(ptr);

    for (std::size_t i=0;i<realSize;++i) {
        *(stream) += *(realPtr + i);
    }

    return realSize;
}

int main(){

     CURL *curl;
     CURLcode result;
     string readBuffer;
     curl = curl_easy_init();

     if(curl) {

         curl_easy_setopt(curl, CURLOPT_URL, "https://api-gw.onebound.cn/xiecheng/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=9568550");
         curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L);
         curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, Data);
         curl_easy_setopt(curl, CURLOPT_WRITEDATA, &readBuffer);

         result = curl_easy_perform(curl);

         if(result == CURLE_OK) {
             cout<<readBuffer<<endl;
         }else{
             cerr<<"curl_easy error:"<<curl_easy_strerror(result)<<endl;
         }

         curl_easy_cleanup(curl);
     }
     return 0;
}
const https = require("https");

https.get("https://api-gw.onebound.cn/xiecheng/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=9568550", (resp) => {
  let data = "";

  resp.on("data", (chunk) => {
    data += chunk;
  });

  resp.on("end", () => {
    console.log(data);
  });
}).on("error", (err) => {
  console.log("Error: " + err.message);
});
import java.net.HttpURLConnection
import java.net.URL

fun main() {
    val url = URL("https://api-gw.onebound.cn/xiecheng/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=9568550")
    val con = url.openConnection() as HttpURLConnection
    con.requestMethod = "GET"

    val responseCode = con.responseCode
    if (responseCode == HttpURLConnection.HTTP_OK) { // success
        val inputLine = con.inputStream.bufferedReader().use { it.readText() }
        println(inputLine)
    } else {
        println("GET request failed")
    }
}
use std::io::{self, Read};
use reqwest;

fn main() -> io::Result<()> {

    let mut resp = reqwest::get("https://api-gw.onebound.cn/xiecheng/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=9568550")?;
    let mut content = String::new();
    resp.read_to_string(&mut content)?;

    println!("{}", content);

    Ok(())
}

library(httr)
r <- GET("https://api-gw.onebound.cn/xiecheng/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=9568550")
content(r)
url = "https://api-gw.onebound.cn/xiecheng/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=9568550";
response = webread(url);
disp(response);
响应示例
{
    "item": {
        "detail_info": {
            "initData": {
                "crumbs": [
                    {
                        "text": "携程",
                        "url": "https://www.ctrip.com/"
                    },
                    {
                        "text": "酒店",
                        "url": "https://hotels.ctrip.com/"
                    },
                    {
                        "text": "秦皇岛酒店",
                        "url": "https://hotels.ctrip.com/hotel/qinhuangdao147"
                    },
                    {
                        "text": "北戴河沐鼎雅苑民宿(集发梦想王国店)",
                        "url": ""
                    }
                ],
                "base": {
                    "starType": "DIAMOND",
                    "star": 2,
                    "hotelName": "北戴河沐鼎雅苑民宿(集发梦想王国店)",
                    "book": "选择房型",
                    "badge": "23",
                    "badgeHover": "携程紧密合作酒店/供应商,提供实惠价格。",
                    "mapType": "bd",
                    "cityId": 147,
                    "timeOffset": 28800,
                    "collected": false,
                    "masterHotelId": 2021529,
                    "cityName": "秦皇岛",
                    "cityEName": "Qinhuangdao",
                    "hotelEName": "",
                    "mapUrl": "//api.map.baidu.com/api?v=2.0&ak=eikVTDrvMvVnPldFlh44DWdUAKpq1xfL&s=1",
                    "countryId": 1,
                    "chineseHotel": false,
                    "shaIcon": "",
                    "starIcon": "https://pages.c-ctrip.com/wireless-app/imgs/T2Images/0623/ic_new_circle2@3x.png",
                    "hotelTypeTag": "民宿",
                    "badgeUrl": "https://pages.c-ctrip.com/wireless-app/icons/ic_jinpai_3x.png",
                    "primeHotelIcon": "https://pages.c-ctrip.com/wireless-app/imgs/tagicon/PrimeHotel.png",
                    "isDisadvantageHotel": false
                },
                "position": {
                    "address": "秦皇岛北戴河区古城民宿区南3排4号,066100",
                    "poi": "距离市中心20.5公里",
                    "lat": "39.8118",
                    "lng": "119.422118",
                    "positionReview": "4.9/5-位置优越!",
                    "poiList": [
                        {
                            "type": "airport",
                            "desc": "距离北戴河机场58.62km",
                            "distance": "58.62公里",
                            "id": 2,
                            "name": "北戴河机场",
                            "lat": "39.6666825",
                            "lng": "119.0668778",
                            "driveTime": 0,
                            "distanceNumber": 0
                        },
                        {
                            "type": "station",
                            "desc": "距离北戴河站5.7km",
                            "distance": "5.7公里",
                            "id": 3,
                            "name": "北戴河站",
                            "lat": "39.8513066",
                            "lng": "119.4200057",
                            "driveTime": 0,
                            "distanceNumber": 0
                        },
                        {
                            "type": "station",
                            "desc": "距离抚宁站24.15km",
                            "distance": "24.15公里",
                            "id": 3,
                            "name": "抚宁站",
                            "lat": "39.8939966",
                            "lng": "119.2493733",
                            "driveTime": 0,
                            "distanceNumber": 0
                        },
                        {
                            "type": "business",
                            "desc": "距离南戴河海滨市场1.2km",
                            "distance": "1.2公里",
                            "id": 1,
                            "name": "南戴河海滨市场",
                            "lat": "39.8032538",
                            "lng": "119.4135489",
                            "driveTime": 0,
                            "distanceNumber": 0
                        },
                        {
                            "type": "business",
                            "desc": "距离陆庄市场1.52km",
                            "distance": "1.52公里",
                            "id": 1,
                            "name": "陆庄市场",
                            "lat": "39.812145",
                            "lng": "119.4398412",
                            "driveTime": 0,
                            "distanceNumber": 0
                        }
                    ],
                    "imgUrl": "//api.map.baidu.com/staticimage?width=328&height=138&center=119.422118,39.8118&markers=119.422118,39.8118&zoom=15",
                    "placeList": {
                        "list": [
                            {
                                "type": "airport",
                                "distance": "58.62公里",
                                "hover": "距北戴河机场58.62公里"
                            },
                            {
                                "type": "station",
                                "distance": "5.7公里",
                                "hover": "距北戴河站5.7公里"
                            }
                        ],
                        "desc": "距离市中心20.5公里"
                    }
                },
                "inspiration": {
                    "lastBook": ""
                },
                "album": {
                    "bigPic": {
                        "src": "//dimg04.c-ctrip.com/images/0202q1200026v2ogoCD96.jpg",
                        "index": 2
                    },
                    "smallPic": [
                        {
                            "src": "//dimg04.c-ctrip.com/images/0205t1200026skx2gB40E.jpg",
                            "index": 0
                        },
                        {
                            "src": "//dimg04.c-ctrip.com/images/020691200026ut6n457AA.jpg",
                            "index": 1
                        },
                        {
                            "src": "//dimg04.c-ctrip.com/images/0205q1200026unr6029B5.jpg",
                            "index": 7
                        },
                        {
                            "src": "//dimg04.c-ctrip.com/images/020171200026pvfjhD366.jpg",
                            "index": 8
                        },
                        {
                            "src": "//dimg04.c-ctrip.com/images/020561200026sy2g91AFD.jpg",
                            "index": 41
                        },
                        {
                            "src": "//dimg04.c-ctrip.com/images/200m0s000000i5t76F708.jpg",
                            "index": 42
                        }
                    ],
                    "hotelNewAlbum": {
                        "albumCategoryName": "官方相册",
                        "CategoryList": [
                            {
                                "categoryName": "全部(72)",
                                "categoryId": 0,
                                "albumPictureList": [
                                    {
                                        "rank": 1,
                                        "imgId": "451124609",
                                        "src": "//dimg04.c-ctrip.com/images/0205t1200026skx2gB40E.jpg",
                                        "desc": "花园",
                                        "pictureType": 11,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 1,
                                        "deschtml": "花园",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 2,
                                        "imgId": "451127990",
                                        "src": "//dimg04.c-ctrip.com/images/020691200026ut6n457AA.jpg",
                                        "desc": "酒店外部",
                                        "pictureType": 1,
                                        "index": 1,
                                        "subIndex": 1,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 1,
                                        "deschtml": "酒店外部",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 101,
                                        "imgId": "448740751",
                                        "src": "//dimg04.c-ctrip.com/images/0202q1200026v2ogoCD96.jpg",
                                        "desc": "酒店外部",
                                        "pictureType": 1,
                                        "index": 2,
                                        "subIndex": 2,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 1,
                                        "deschtml": "酒店外部",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 102,
                                        "imgId": "451128248",
                                        "src": "//dimg04.c-ctrip.com/images/0206b1200026vagj2A632.jpg",
                                        "desc": "酒店外部",
                                        "pictureType": 1,
                                        "index": 3,
                                        "subIndex": 3,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 1,
                                        "deschtml": "酒店外部",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 103,
                                        "imgId": "451124337",
                                        "src": "//dimg04.c-ctrip.com/images/0205s1200026so4l47633.jpg",
                                        "desc": "花园",
                                        "pictureType": 11,
                                        "index": 4,
                                        "subIndex": 4,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 1,
                                        "deschtml": "花园",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 106,
                                        "imgId": "451126095",
                                        "src": "//dimg04.c-ctrip.com/images/020381200026uzk96A720.jpg",
                                        "desc": "花园",
                                        "pictureType": 11,
                                        "index": 5,
                                        "subIndex": 5,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 1,
                                        "deschtml": "花园",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 108,
                                        "imgId": "451124998",
                                        "src": "//dimg04.c-ctrip.com/images/020021200026t2n0i5A59.jpg",
                                        "desc": "花园",
                                        "pictureType": 11,
                                        "index": 6,
                                        "subIndex": 6,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 1,
                                        "deschtml": "花园",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 4,
                                        "imgId": "450982251",
                                        "src": "//dimg04.c-ctrip.com/images/0205q1200026unr6029B5.jpg",
                                        "desc": "温之旅·臻品三人房",
                                        "pictureType": 6,
                                        "index": 7,
                                        "subIndex": 7,
                                        "basicRoomTypeId": 275875749,
                                        "categoryType": 9,
                                        "deschtml": "温之旅·臻品三人房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 112,
                                        "imgId": "450979447",
                                        "src": "//dimg04.c-ctrip.com/images/020171200026pvfjhD366.jpg",
                                        "desc": "温之旅·臻品三人房",
                                        "pictureType": 6,
                                        "index": 8,
                                        "subIndex": 8,
                                        "basicRoomTypeId": 275875749,
                                        "categoryType": 9,
                                        "deschtml": "温之旅·臻品三人房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 116,
                                        "imgId": "447296479",
                                        "src": "//dimg04.c-ctrip.com/images/0205u1200026s9ve3FFE2.jpg",
                                        "desc": "温之旅·臻品三人房",
                                        "pictureType": 6,
                                        "index": 9,
                                        "subIndex": 9,
                                        "basicRoomTypeId": 275875749,
                                        "categoryType": 9,
                                        "deschtml": "温之旅·臻品三人房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 151,
                                        "imgId": "450981186",
                                        "src": "//dimg04.c-ctrip.com/images/020131200026sel9p40EC.jpg",
                                        "desc": "温之旅·臻品三人房",
                                        "pictureType": 6,
                                        "index": 10,
                                        "subIndex": 10,
                                        "basicRoomTypeId": 275875749,
                                        "categoryType": 9,
                                        "deschtml": "温之旅·臻品三人房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 220,
                                        "imgId": "450981193",
                                        "src": "//dimg04.c-ctrip.com/images/020481200026s63p3CBF0.jpg",
                                        "desc": "温之旅·臻品三人房",
                                        "pictureType": 6,
                                        "index": 11,
                                        "subIndex": 11,
                                        "basicRoomTypeId": 275875749,
                                        "categoryType": 9,
                                        "deschtml": "温之旅·臻品三人房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 227,
                                        "imgId": "507982139",
                                        "src": "//dimg04.c-ctrip.com/images/0200s120008htzon7B951.jpg",
                                        "desc": "温之旅·臻品三人房",
                                        "pictureType": 6,
                                        "index": 12,
                                        "subIndex": 12,
                                        "basicRoomTypeId": 275875749,
                                        "categoryType": 9,
                                        "deschtml": "温之旅·臻品三人房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 240,
                                        "imgId": "507982138",
                                        "src": "//dimg04.c-ctrip.com/images/0204j120008htzn4c0E25.jpg",
                                        "desc": "温之旅·臻品三人房",
                                        "pictureType": 6,
                                        "index": 13,
                                        "subIndex": 13,
                                        "basicRoomTypeId": 275875749,
                                        "categoryType": 9,
                                        "deschtml": "温之旅·臻品三人房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 243,
                                        "imgId": "450981180",
                                        "src": "//dimg04.c-ctrip.com/images/020561200026rrjzt6688.jpg",
                                        "desc": "温之旅·臻品三人房",
                                        "pictureType": 6,
                                        "index": 14,
                                        "subIndex": 14,
                                        "basicRoomTypeId": 275875749,
                                        "categoryType": 9,
                                        "deschtml": "温之旅·臻品三人房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 6,
                                        "imgId": "450982249",
                                        "src": "//dimg04.c-ctrip.com/images/020371200026ukbp1BF1F.jpg",
                                        "desc": "沐之韵·朴宿亲子房",
                                        "pictureType": 6,
                                        "index": 15,
                                        "subIndex": 15,
                                        "basicRoomTypeId": 275905331,
                                        "categoryType": 9,
                                        "deschtml": "沐之韵·朴宿亲子房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 111,
                                        "imgId": "450983065",
                                        "src": "//dimg04.c-ctrip.com/images/020131200026w6jh2F7BE.jpg",
                                        "desc": "沐之韵·朴宿亲子房",
                                        "pictureType": 6,
                                        "index": 16,
                                        "subIndex": 16,
                                        "basicRoomTypeId": 275905331,
                                        "categoryType": 9,
                                        "deschtml": "沐之韵·朴宿亲子房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 113,
                                        "imgId": "450979437",
                                        "src": "//dimg04.c-ctrip.com/images/0205m1200026qlmg3FBF0.jpg",
                                        "desc": "沐之韵·朴宿亲子房",
                                        "pictureType": 6,
                                        "index": 17,
                                        "subIndex": 17,
                                        "basicRoomTypeId": 275905331,
                                        "categoryType": 9,
                                        "deschtml": "沐之韵·朴宿亲子房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 117,
                                        "imgId": "450982239",
                                        "src": "//dimg04.c-ctrip.com/images/0205x1200026u2zwh2D46.jpg",
                                        "desc": "沐之韵·朴宿亲子房",
                                        "pictureType": 6,
                                        "index": 18,
                                        "subIndex": 18,
                                        "basicRoomTypeId": 275905331,
                                        "categoryType": 9,
                                        "deschtml": "沐之韵·朴宿亲子房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 176,
                                        "imgId": "450979452",
                                        "src": "//dimg04.c-ctrip.com/images/0205w1200026qtgh31A49.jpg",
                                        "desc": "沐之韵·朴宿亲子房",
                                        "pictureType": 6,
                                        "index": 19,
                                        "subIndex": 19,
                                        "basicRoomTypeId": 275905331,
                                        "categoryType": 9,
                                        "deschtml": "沐之韵·朴宿亲子房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 7,
                                        "imgId": "450982257",
                                        "src": "//dimg04.c-ctrip.com/images/0205l1200026urhkjE822.jpg",
                                        "desc": "晨之阳·零压特价房",
                                        "pictureType": 6,
                                        "index": 20,
                                        "subIndex": 20,
                                        "basicRoomTypeId": 276127615,
                                        "categoryType": 9,
                                        "deschtml": "晨之阳·零压特价房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 154,
                                        "imgId": "450982255",
                                        "src": "//dimg04.c-ctrip.com/images/0206k1200026u7qpvAE71.jpg",
                                        "desc": "晨之阳·零压特价房",
                                        "pictureType": 6,
                                        "index": 21,
                                        "subIndex": 21,
                                        "basicRoomTypeId": 276127615,
                                        "categoryType": 9,
                                        "deschtml": "晨之阳·零压特价房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 182,
                                        "imgId": "450982240",
                                        "src": "//dimg04.c-ctrip.com/images/020511200026tzh8k0989.jpg",
                                        "desc": "晨之阳·零压特价房",
                                        "pictureType": 6,
                                        "index": 22,
                                        "subIndex": 22,
                                        "basicRoomTypeId": 276127615,
                                        "categoryType": 9,
                                        "deschtml": "晨之阳·零压特价房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 221,
                                        "imgId": "447661963",
                                        "src": "//dimg04.c-ctrip.com/images/0203o1200026v176u5497.jpg",
                                        "desc": "晨之阳·零压特价房",
                                        "pictureType": 6,
                                        "index": 23,
                                        "subIndex": 23,
                                        "basicRoomTypeId": 276127615,
                                        "categoryType": 9,
                                        "deschtml": "晨之阳·零压特价房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 245,
                                        "imgId": "507982727",
                                        "src": "//dimg04.c-ctrip.com/images/0203c120008htzlts896B.jpg",
                                        "desc": "晨之阳·零压特价房",
                                        "pictureType": 6,
                                        "index": 24,
                                        "subIndex": 24,
                                        "basicRoomTypeId": 276127615,
                                        "categoryType": 9,
                                        "deschtml": "晨之阳·零压特价房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 109,
                                        "imgId": "450979435",
                                        "src": "//dimg04.c-ctrip.com/images/020681200026pp31458AE.jpg",
                                        "desc": "温之旅·雅致四人房",
                                        "pictureType": 6,
                                        "index": 25,
                                        "subIndex": 25,
                                        "basicRoomTypeId": 275876019,
                                        "categoryType": 9,
                                        "deschtml": "温之旅·雅致四人房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 150,
                                        "imgId": "450979431",
                                        "src": "//dimg04.c-ctrip.com/images/020571200026pltu76F80.jpg",
                                        "desc": "温之旅·雅致四人房",
                                        "pictureType": 6,
                                        "index": 26,
                                        "subIndex": 26,
                                        "basicRoomTypeId": 275876019,
                                        "categoryType": 9,
                                        "deschtml": "温之旅·雅致四人房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 161,
                                        "imgId": "450979430",
                                        "src": "//dimg04.c-ctrip.com/images/020201200026pijid127C.jpg",
                                        "desc": "温之旅·雅致四人房",
                                        "pictureType": 6,
                                        "index": 27,
                                        "subIndex": 27,
                                        "basicRoomTypeId": 275876019,
                                        "categoryType": 9,
                                        "deschtml": "温之旅·雅致四人房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 246,
                                        "imgId": "507983215",
                                        "src": "//dimg04.c-ctrip.com/images/0203n120008htzqf29591.jpg",
                                        "desc": "温之旅·雅致四人房",
                                        "pictureType": 6,
                                        "index": 28,
                                        "subIndex": 28,
                                        "basicRoomTypeId": 275876019,
                                        "categoryType": 9,
                                        "deschtml": "温之旅·雅致四人房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 115,
                                        "imgId": "447298401",
                                        "src": "//dimg04.c-ctrip.com/images/0205b1200026q5jb31AC9.jpg",
                                        "desc": "雅之光·轻奢情侣房",
                                        "pictureType": 6,
                                        "index": 29,
                                        "subIndex": 29,
                                        "basicRoomTypeId": 275876561,
                                        "categoryType": 9,
                                        "deschtml": "雅之光·轻奢情侣房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 175,
                                        "imgId": "450983060",
                                        "src": "//dimg04.c-ctrip.com/images/0200m1200026w0pxh034D.jpg",
                                        "desc": "雅之光·轻奢情侣房",
                                        "pictureType": 6,
                                        "index": 30,
                                        "subIndex": 30,
                                        "basicRoomTypeId": 275876561,
                                        "categoryType": 9,
                                        "deschtml": "雅之光·轻奢情侣房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 177,
                                        "imgId": "450982247",
                                        "src": "//dimg04.c-ctrip.com/images/0201k1200026udujz2D93.jpg",
                                        "desc": "雅之光·轻奢情侣房",
                                        "pictureType": 6,
                                        "index": 31,
                                        "subIndex": 31,
                                        "basicRoomTypeId": 275876561,
                                        "categoryType": 9,
                                        "deschtml": "雅之光·轻奢情侣房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 180,
                                        "imgId": "450982253",
                                        "src": "//dimg04.c-ctrip.com/images/0206q1200026u4rxq2F43.jpg",
                                        "desc": "雅之光·轻奢情侣房",
                                        "pictureType": 6,
                                        "index": 32,
                                        "subIndex": 32,
                                        "basicRoomTypeId": 275876561,
                                        "categoryType": 9,
                                        "deschtml": "雅之光·轻奢情侣房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 223,
                                        "imgId": "450979436",
                                        "src": "//dimg04.c-ctrip.com/images/020621200026pz02l1B09.jpg",
                                        "desc": "雅之光·轻奢情侣房",
                                        "pictureType": 6,
                                        "index": 33,
                                        "subIndex": 33,
                                        "basicRoomTypeId": 275876561,
                                        "categoryType": 9,
                                        "deschtml": "雅之光·轻奢情侣房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 302,
                                        "imgId": "450982254",
                                        "src": "//dimg04.c-ctrip.com/images/0201w1200026uxjxe7E3B.jpg",
                                        "desc": "雅之光·轻奢情侣房",
                                        "pictureType": 6,
                                        "index": 34,
                                        "subIndex": 34,
                                        "basicRoomTypeId": 275876561,
                                        "categoryType": 9,
                                        "deschtml": "雅之光·轻奢情侣房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 126,
                                        "imgId": "450982252",
                                        "src": "//dimg04.c-ctrip.com/images/0200m1200026u9gc6FD1F.jpg",
                                        "desc": "沐之韵·淡雅双人房",
                                        "pictureType": 6,
                                        "index": 35,
                                        "subIndex": 35,
                                        "basicRoomTypeId": 275797279,
                                        "categoryType": 9,
                                        "deschtml": "沐之韵·淡雅双人房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 152,
                                        "imgId": "450982246",
                                        "src": "//dimg04.c-ctrip.com/images/020151200026uchjrB950.jpg",
                                        "desc": "沐之韵·淡雅双人房",
                                        "pictureType": 6,
                                        "index": 36,
                                        "subIndex": 36,
                                        "basicRoomTypeId": 275797279,
                                        "categoryType": 9,
                                        "deschtml": "沐之韵·淡雅双人房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 153,
                                        "imgId": "450982242",
                                        "src": "//dimg04.c-ctrip.com/images/020531200026u0j9w9900.jpg",
                                        "desc": "沐之韵·淡雅双人房",
                                        "pictureType": 6,
                                        "index": 37,
                                        "subIndex": 37,
                                        "basicRoomTypeId": 275797279,
                                        "categoryType": 9,
                                        "deschtml": "沐之韵·淡雅双人房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 158,
                                        "imgId": "450981192",
                                        "src": "//dimg04.c-ctrip.com/images/0204g1200026rp4u7A4D3.jpg",
                                        "desc": "沐之韵·淡雅双人房",
                                        "pictureType": 6,
                                        "index": 38,
                                        "subIndex": 38,
                                        "basicRoomTypeId": 275797279,
                                        "categoryType": 9,
                                        "deschtml": "沐之韵·淡雅双人房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 222,
                                        "imgId": "450982250",
                                        "src": "//dimg04.c-ctrip.com/images/0203s1200026ufscsC532.jpg",
                                        "desc": "沐之韵·淡雅双人房",
                                        "pictureType": 6,
                                        "index": 39,
                                        "subIndex": 39,
                                        "basicRoomTypeId": 275797279,
                                        "categoryType": 9,
                                        "deschtml": "沐之韵·淡雅双人房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 232,
                                        "imgId": "450979440",
                                        "src": "//dimg04.c-ctrip.com/images/0200e1200026qmzw40E71.jpg",
                                        "desc": "沐之韵·淡雅双人房",
                                        "pictureType": 6,
                                        "index": 40,
                                        "subIndex": 40,
                                        "basicRoomTypeId": 275797279,
                                        "categoryType": 9,
                                        "deschtml": "沐之韵·淡雅双人房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 250,
                                        "imgId": "451127179",
                                        "src": "//dimg04.c-ctrip.com/images/020561200026sy2g91AFD.jpg",
                                        "desc": "咖啡厅",
                                        "pictureType": 42,
                                        "index": 41,
                                        "subIndex": 41,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 2,
                                        "deschtml": "咖啡厅",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 252,
                                        "imgId": "151734512",
                                        "src": "//dimg04.c-ctrip.com/images/200m0s000000i5t76F708.jpg",
                                        "desc": "咖啡厅",
                                        "pictureType": 42,
                                        "index": 42,
                                        "subIndex": 42,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 2,
                                        "deschtml": "咖啡厅",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 265,
                                        "imgId": "508724860",
                                        "src": "//dimg04.c-ctrip.com/images/0204j120008rb6xznDCB7.jpg",
                                        "desc": "室外游泳池",
                                        "pictureType": 36,
                                        "index": 43,
                                        "subIndex": 43,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 10,
                                        "deschtml": "室外游泳池",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 12,
                                        "imgId": "451125654",
                                        "src": "//dimg04.c-ctrip.com/images/0203n1200026qgbcsF040.jpg",
                                        "desc": "公共区域",
                                        "pictureType": 2,
                                        "index": 44,
                                        "subIndex": 44,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 14,
                                        "deschtml": "公共区域",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 13,
                                        "imgId": "451127472",
                                        "src": "//dimg04.c-ctrip.com/images/020481200026qhw383C3F.jpg",
                                        "desc": "公共区域",
                                        "pictureType": 2,
                                        "index": 45,
                                        "subIndex": 45,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 14,
                                        "deschtml": "公共区域",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 197,
                                        "imgId": "451127662",
                                        "src": "//dimg04.c-ctrip.com/images/0201v1200026sd3zi116D.jpg",
                                        "desc": "公共区域",
                                        "pictureType": 2,
                                        "index": 46,
                                        "subIndex": 46,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 14,
                                        "deschtml": "公共区域",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 15,
                                        "imgId": "146560228",
                                        "src": "//dimg04.c-ctrip.com/images/200m070000002ljwq51D9.jpg",
                                        "desc": "酒店附近",
                                        "pictureType": 46,
                                        "index": 47,
                                        "subIndex": 47,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 12,
                                        "deschtml": "酒店附近",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 204,
                                        "imgId": "142373798",
                                        "src": "//dimg04.c-ctrip.com/images/20050600000020ml4B535.jpg",
                                        "desc": "酒店附近",
                                        "pictureType": 46,
                                        "index": 48,
                                        "subIndex": 48,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 12,
                                        "deschtml": "酒店附近",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 205,
                                        "imgId": "146560179",
                                        "src": "//dimg04.c-ctrip.com/images/2002070000002ljwjA06B.jpg",
                                        "desc": "酒店附近",
                                        "pictureType": 46,
                                        "index": 49,
                                        "subIndex": 49,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 12,
                                        "deschtml": "酒店附近",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 206,
                                        "imgId": "142367953",
                                        "src": "//dimg04.c-ctrip.com/images/20060600000020ml6274E.jpg",
                                        "desc": "酒店附近",
                                        "pictureType": 46,
                                        "index": 50,
                                        "subIndex": 50,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 12,
                                        "deschtml": "酒店附近",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 207,
                                        "imgId": "143734375",
                                        "src": "//dimg04.c-ctrip.com/images/200i070000002ie9wEC7D.jpg",
                                        "desc": "酒店附近",
                                        "pictureType": 46,
                                        "index": 51,
                                        "subIndex": 51,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 12,
                                        "deschtml": "酒店附近",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 264,
                                        "imgId": "508724901",
                                        "src": "//dimg04.c-ctrip.com/images/0203h120008rb712m8A01.jpg",
                                        "desc": "酒店附近",
                                        "pictureType": 46,
                                        "index": 52,
                                        "subIndex": 52,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 12,
                                        "deschtml": "酒店附近",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 266,
                                        "imgId": "508724852",
                                        "src": "//dimg04.c-ctrip.com/images/0206k120008rb6y7k1275.jpg",
                                        "desc": "酒店附近",
                                        "pictureType": 46,
                                        "index": 53,
                                        "subIndex": 53,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 12,
                                        "deschtml": "酒店附近",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 267,
                                        "imgId": "508724896",
                                        "src": "//dimg04.c-ctrip.com/images/0200t120008rb70wmCDEF.jpg",
                                        "desc": "酒店附近",
                                        "pictureType": 46,
                                        "index": 54,
                                        "subIndex": 54,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 12,
                                        "deschtml": "酒店附近",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 268,
                                        "imgId": "508724857",
                                        "src": "//dimg04.c-ctrip.com/images/0205r120008rb72v4EF2D.jpg",
                                        "desc": "酒店附近",
                                        "pictureType": 46,
                                        "index": 55,
                                        "subIndex": 55,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 12,
                                        "deschtml": "酒店附近",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 269,
                                        "imgId": "508724863",
                                        "src": "//dimg04.c-ctrip.com/images/02026120008rb732p39BC.jpg",
                                        "desc": "酒店附近",
                                        "pictureType": 46,
                                        "index": 56,
                                        "subIndex": 56,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 12,
                                        "deschtml": "酒店附近",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 270,
                                        "imgId": "508724859",
                                        "src": "//dimg04.c-ctrip.com/images/02025120008rb6rhhAF13.jpg",
                                        "desc": "酒店附近",
                                        "pictureType": 46,
                                        "index": 57,
                                        "subIndex": 57,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 12,
                                        "deschtml": "酒店附近",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 271,
                                        "imgId": "508724851",
                                        "src": "//dimg04.c-ctrip.com/images/0206j120008rb6rh65912.jpg",
                                        "desc": "酒店附近",
                                        "pictureType": 46,
                                        "index": 58,
                                        "subIndex": 58,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 12,
                                        "deschtml": "酒店附近",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 272,
                                        "imgId": "508724858",
                                        "src": "//dimg04.c-ctrip.com/images/0203g120008rb70whF515.jpg",
                                        "desc": "酒店附近",
                                        "pictureType": 46,
                                        "index": 59,
                                        "subIndex": 59,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 12,
                                        "deschtml": "酒店附近",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 273,
                                        "imgId": "508724867",
                                        "src": "//dimg04.c-ctrip.com/images/02001120008rb6t2m5FCB.jpg",
                                        "desc": "酒店附近",
                                        "pictureType": 46,
                                        "index": 60,
                                        "subIndex": 60,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 12,
                                        "deschtml": "酒店附近",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 274,
                                        "imgId": "508724888",
                                        "src": "//dimg04.c-ctrip.com/images/0205h120008rb6kwpB095.jpg",
                                        "desc": "酒店附近",
                                        "pictureType": 46,
                                        "index": 61,
                                        "subIndex": 61,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 12,
                                        "deschtml": "酒店附近",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 275,
                                        "imgId": "508724869",
                                        "src": "//dimg04.c-ctrip.com/images/02064120008rb72npE19F.jpg",
                                        "desc": "酒店附近",
                                        "pictureType": 46,
                                        "index": 62,
                                        "subIndex": 62,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 12,
                                        "deschtml": "酒店附近",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 276,
                                        "imgId": "508724862",
                                        "src": "//dimg04.c-ctrip.com/images/0205o120008rb6rhdBA42.jpg",
                                        "desc": "酒店附近",
                                        "pictureType": 46,
                                        "index": 63,
                                        "subIndex": 63,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 12,
                                        "deschtml": "酒店附近",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 277,
                                        "imgId": "508724855",
                                        "src": "//dimg04.c-ctrip.com/images/0206l120008rb72ha39D1.jpg",
                                        "desc": "酒店附近",
                                        "pictureType": 46,
                                        "index": 64,
                                        "subIndex": 64,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 12,
                                        "deschtml": "酒店附近",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 278,
                                        "imgId": "508724853",
                                        "src": "//dimg04.c-ctrip.com/images/0200e120008rb6tisD830.jpg",
                                        "desc": "酒店附近",
                                        "pictureType": 46,
                                        "index": 65,
                                        "subIndex": 65,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 12,
                                        "deschtml": "酒店附近",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 213,
                                        "imgId": "281183365",
                                        "src": "//dimg04.c-ctrip.com/images/200n0s000000hvhj89AD6.jpg",
                                        "desc": "其他",
                                        "pictureType": 5,
                                        "index": 66,
                                        "subIndex": 66,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 5,
                                        "deschtml": "其他",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 215,
                                        "imgId": "451125652",
                                        "src": "//dimg04.c-ctrip.com/images/0200y1200026sq9r30967.jpg",
                                        "desc": "其他",
                                        "pictureType": 5,
                                        "index": 67,
                                        "subIndex": 67,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 5,
                                        "deschtml": "其他",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 216,
                                        "imgId": "451124093",
                                        "src": "//dimg04.c-ctrip.com/images/020221200026qeqgo0312.jpg",
                                        "desc": "其他",
                                        "pictureType": 5,
                                        "index": 68,
                                        "subIndex": 68,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 5,
                                        "deschtml": "其他",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 217,
                                        "imgId": "451125007",
                                        "src": "//dimg04.c-ctrip.com/images/020401200026pnacd35EB.jpg",
                                        "desc": "其他",
                                        "pictureType": 5,
                                        "index": 69,
                                        "subIndex": 69,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 5,
                                        "deschtml": "其他",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 280,
                                        "imgId": "451127392",
                                        "src": "//dimg04.c-ctrip.com/images/0203p1200026sup3m8F04.jpg",
                                        "desc": "其他",
                                        "pictureType": 5,
                                        "index": 70,
                                        "subIndex": 70,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 5,
                                        "deschtml": "其他",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 281,
                                        "imgId": "190519462",
                                        "src": "//dimg04.c-ctrip.com/images/200a0i0000009hs4yEE4F.jpg",
                                        "desc": "其他",
                                        "pictureType": 5,
                                        "index": 71,
                                        "subIndex": 71,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 5,
                                        "deschtml": "其他",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    }
                                ]
                            },
                            {
                                "categoryName": "外观(7)",
                                "categoryId": 1,
                                "albumPictureList": [
                                    {
                                        "rank": 1,
                                        "imgId": "451124609",
                                        "src": "//dimg04.c-ctrip.com/images/0205t1200026skx2gB40E.jpg",
                                        "desc": "花园",
                                        "pictureType": 11,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 1,
                                        "deschtml": "花园",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 2,
                                        "imgId": "451127990",
                                        "src": "//dimg04.c-ctrip.com/images/020691200026ut6n457AA.jpg",
                                        "desc": "酒店外部",
                                        "pictureType": 1,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 1,
                                        "deschtml": "酒店外部",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 101,
                                        "imgId": "448740751",
                                        "src": "//dimg04.c-ctrip.com/images/0202q1200026v2ogoCD96.jpg",
                                        "desc": "酒店外部",
                                        "pictureType": 1,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 1,
                                        "deschtml": "酒店外部",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 102,
                                        "imgId": "451128248",
                                        "src": "//dimg04.c-ctrip.com/images/0206b1200026vagj2A632.jpg",
                                        "desc": "酒店外部",
                                        "pictureType": 1,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 1,
                                        "deschtml": "酒店外部",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 103,
                                        "imgId": "451124337",
                                        "src": "//dimg04.c-ctrip.com/images/0205s1200026so4l47633.jpg",
                                        "desc": "花园",
                                        "pictureType": 11,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 1,
                                        "deschtml": "花园",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 106,
                                        "imgId": "451126095",
                                        "src": "//dimg04.c-ctrip.com/images/020381200026uzk96A720.jpg",
                                        "desc": "花园",
                                        "pictureType": 11,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 1,
                                        "deschtml": "花园",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 108,
                                        "imgId": "451124998",
                                        "src": "//dimg04.c-ctrip.com/images/020021200026t2n0i5A59.jpg",
                                        "desc": "花园",
                                        "pictureType": 11,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 1,
                                        "deschtml": "花园",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    }
                                ]
                            },
                            {
                                "categoryName": "房间(44)",
                                "categoryId": 9,
                                "albumPictureList": [
                                    {
                                        "rank": 4,
                                        "imgId": "450982251",
                                        "src": "//dimg04.c-ctrip.com/images/0205q1200026unr6029B5.jpg",
                                        "desc": "温之旅·臻品三人房",
                                        "pictureType": 6,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 275875749,
                                        "categoryType": 9,
                                        "deschtml": "温之旅·臻品三人房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 112,
                                        "imgId": "450979447",
                                        "src": "//dimg04.c-ctrip.com/images/020171200026pvfjhD366.jpg",
                                        "desc": "温之旅·臻品三人房",
                                        "pictureType": 6,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 275875749,
                                        "categoryType": 9,
                                        "deschtml": "温之旅·臻品三人房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 116,
                                        "imgId": "447296479",
                                        "src": "//dimg04.c-ctrip.com/images/0205u1200026s9ve3FFE2.jpg",
                                        "desc": "温之旅·臻品三人房",
                                        "pictureType": 6,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 275875749,
                                        "categoryType": 9,
                                        "deschtml": "温之旅·臻品三人房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 151,
                                        "imgId": "450981186",
                                        "src": "//dimg04.c-ctrip.com/images/020131200026sel9p40EC.jpg",
                                        "desc": "温之旅·臻品三人房",
                                        "pictureType": 6,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 275875749,
                                        "categoryType": 9,
                                        "deschtml": "温之旅·臻品三人房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 220,
                                        "imgId": "450981193",
                                        "src": "//dimg04.c-ctrip.com/images/020481200026s63p3CBF0.jpg",
                                        "desc": "温之旅·臻品三人房",
                                        "pictureType": 6,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 275875749,
                                        "categoryType": 9,
                                        "deschtml": "温之旅·臻品三人房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 227,
                                        "imgId": "507982139",
                                        "src": "//dimg04.c-ctrip.com/images/0200s120008htzon7B951.jpg",
                                        "desc": "温之旅·臻品三人房",
                                        "pictureType": 6,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 275875749,
                                        "categoryType": 9,
                                        "deschtml": "温之旅·臻品三人房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 238,
                                        "imgId": "507982140",
                                        "src": "//dimg04.c-ctrip.com/images/02008120008htzsk10016.jpg",
                                        "desc": "温之旅·臻品三人房",
                                        "pictureType": 6,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 275875749,
                                        "categoryType": 9,
                                        "deschtml": "温之旅·臻品三人房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 240,
                                        "imgId": "507982138",
                                        "src": "//dimg04.c-ctrip.com/images/0204j120008htzn4c0E25.jpg",
                                        "desc": "温之旅·臻品三人房",
                                        "pictureType": 6,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 275875749,
                                        "categoryType": 9,
                                        "deschtml": "温之旅·臻品三人房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 243,
                                        "imgId": "450981180",
                                        "src": "//dimg04.c-ctrip.com/images/020561200026rrjzt6688.jpg",
                                        "desc": "温之旅·臻品三人房",
                                        "pictureType": 6,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 275875749,
                                        "categoryType": 9,
                                        "deschtml": "温之旅·臻品三人房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 6,
                                        "imgId": "450982249",
                                        "src": "//dimg04.c-ctrip.com/images/020371200026ukbp1BF1F.jpg",
                                        "desc": "沐之韵·朴宿亲子房",
                                        "pictureType": 6,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 275905331,
                                        "categoryType": 9,
                                        "deschtml": "沐之韵·朴宿亲子房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 111,
                                        "imgId": "450983065",
                                        "src": "//dimg04.c-ctrip.com/images/020131200026w6jh2F7BE.jpg",
                                        "desc": "沐之韵·朴宿亲子房",
                                        "pictureType": 6,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 275905331,
                                        "categoryType": 9,
                                        "deschtml": "沐之韵·朴宿亲子房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 113,
                                        "imgId": "450979437",
                                        "src": "//dimg04.c-ctrip.com/images/0205m1200026qlmg3FBF0.jpg",
                                        "desc": "沐之韵·朴宿亲子房",
                                        "pictureType": 6,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 275905331,
                                        "categoryType": 9,
                                        "deschtml": "沐之韵·朴宿亲子房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 117,
                                        "imgId": "450982239",
                                        "src": "//dimg04.c-ctrip.com/images/0205x1200026u2zwh2D46.jpg",
                                        "desc": "沐之韵·朴宿亲子房",
                                        "pictureType": 6,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 275905331,
                                        "categoryType": 9,
                                        "deschtml": "沐之韵·朴宿亲子房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 131,
                                        "imgId": "450982238",
                                        "src": "//dimg04.c-ctrip.com/images/020461200026tyd95E9F1.jpg",
                                        "desc": "沐之韵·朴宿亲子房",
                                        "pictureType": 6,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 275905331,
                                        "categoryType": 9,
                                        "deschtml": "沐之韵·朴宿亲子房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 176,
                                        "imgId": "450979452",
                                        "src": "//dimg04.c-ctrip.com/images/0205w1200026qtgh31A49.jpg",
                                        "desc": "沐之韵·朴宿亲子房",
                                        "pictureType": 6,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 275905331,
                                        "categoryType": 9,
                                        "deschtml": "沐之韵·朴宿亲子房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 233,
                                        "imgId": "507982136",
                                        "src": "//dimg04.c-ctrip.com/images/02005120008htzo1rC4CA.jpg",
                                        "desc": "沐之韵·朴宿亲子房",
                                        "pictureType": 6,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 275905331,
                                        "categoryType": 9,
                                        "deschtml": "沐之韵·朴宿亲子房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 7,
                                        "imgId": "450982257",
                                        "src": "//dimg04.c-ctrip.com/images/0205l1200026urhkjE822.jpg",
                                        "desc": "晨之阳·零压特价房",
                                        "pictureType": 6,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 276127615,
                                        "categoryType": 9,
                                        "deschtml": "晨之阳·零压特价房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 154,
                                        "imgId": "450982255",
                                        "src": "//dimg04.c-ctrip.com/images/0206k1200026u7qpvAE71.jpg",
                                        "desc": "晨之阳·零压特价房",
                                        "pictureType": 6,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 276127615,
                                        "categoryType": 9,
                                        "deschtml": "晨之阳·零压特价房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 182,
                                        "imgId": "450982240",
                                        "src": "//dimg04.c-ctrip.com/images/020511200026tzh8k0989.jpg",
                                        "desc": "晨之阳·零压特价房",
                                        "pictureType": 6,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 276127615,
                                        "categoryType": 9,
                                        "deschtml": "晨之阳·零压特价房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 221,
                                        "imgId": "447661963",
                                        "src": "//dimg04.c-ctrip.com/images/0203o1200026v176u5497.jpg",
                                        "desc": "晨之阳·零压特价房",
                                        "pictureType": 6,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 276127615,
                                        "categoryType": 9,
                                        "deschtml": "晨之阳·零压特价房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 234,
                                        "imgId": "507982729",
                                        "src": "//dimg04.c-ctrip.com/images/02005120008htzo1rC4CA.jpg",
                                        "desc": "晨之阳·零压特价房",
                                        "pictureType": 6,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 276127615,
                                        "categoryType": 9,
                                        "deschtml": "晨之阳·零压特价房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 245,
                                        "imgId": "507982727",
                                        "src": "//dimg04.c-ctrip.com/images/0203c120008htzlts896B.jpg",
                                        "desc": "晨之阳·零压特价房",
                                        "pictureType": 6,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 276127615,
                                        "categoryType": 9,
                                        "deschtml": "晨之阳·零压特价房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 109,
                                        "imgId": "450979435",
                                        "src": "//dimg04.c-ctrip.com/images/020681200026pp31458AE.jpg",
                                        "desc": "温之旅·雅致四人房",
                                        "pictureType": 6,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 275876019,
                                        "categoryType": 9,
                                        "deschtml": "温之旅·雅致四人房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 150,
                                        "imgId": "450979431",
                                        "src": "//dimg04.c-ctrip.com/images/020571200026pltu76F80.jpg",
                                        "desc": "温之旅·雅致四人房",
                                        "pictureType": 6,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 275876019,
                                        "categoryType": 9,
                                        "deschtml": "温之旅·雅致四人房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 161,
                                        "imgId": "450979430",
                                        "src": "//dimg04.c-ctrip.com/images/020201200026pijid127C.jpg",
                                        "desc": "温之旅·雅致四人房",
                                        "pictureType": 6,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 275876019,
                                        "categoryType": 9,
                                        "deschtml": "温之旅·雅致四人房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 225,
                                        "imgId": "507983220",
                                        "src": "//dimg04.c-ctrip.com/images/02011120008htznaf4120.jpg",
                                        "desc": "温之旅·雅致四人房",
                                        "pictureType": 6,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 275876019,
                                        "categoryType": 9,
                                        "deschtml": "温之旅·雅致四人房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 229,
                                        "imgId": "507983216",
                                        "src": "//dimg04.c-ctrip.com/images/0200s120008htzon7B951.jpg",
                                        "desc": "温之旅·雅致四人房",
                                        "pictureType": 6,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 275876019,
                                        "categoryType": 9,
                                        "deschtml": "温之旅·雅致四人房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 236,
                                        "imgId": "507983218",
                                        "src": "//dimg04.c-ctrip.com/images/02005120008htzo1rC4CA.jpg",
                                        "desc": "温之旅·雅致四人房",
                                        "pictureType": 6,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 275876019,
                                        "categoryType": 9,
                                        "deschtml": "温之旅·雅致四人房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 246,
                                        "imgId": "507983215",
                                        "src": "//dimg04.c-ctrip.com/images/0203n120008htzqf29591.jpg",
                                        "desc": "温之旅·雅致四人房",
                                        "pictureType": 6,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 275876019,
                                        "categoryType": 9,
                                        "deschtml": "温之旅·雅致四人房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 115,
                                        "imgId": "447298401",
                                        "src": "//dimg04.c-ctrip.com/images/0205b1200026q5jb31AC9.jpg",
                                        "desc": "雅之光·轻奢情侣房",
                                        "pictureType": 6,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 275876561,
                                        "categoryType": 9,
                                        "deschtml": "雅之光·轻奢情侣房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 175,
                                        "imgId": "450983060",
                                        "src": "//dimg04.c-ctrip.com/images/0200m1200026w0pxh034D.jpg",
                                        "desc": "雅之光·轻奢情侣房",
                                        "pictureType": 6,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 275876561,
                                        "categoryType": 9,
                                        "deschtml": "雅之光·轻奢情侣房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 177,
                                        "imgId": "450982247",
                                        "src": "//dimg04.c-ctrip.com/images/0201k1200026udujz2D93.jpg",
                                        "desc": "雅之光·轻奢情侣房",
                                        "pictureType": 6,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 275876561,
                                        "categoryType": 9,
                                        "deschtml": "雅之光·轻奢情侣房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 180,
                                        "imgId": "450982253",
                                        "src": "//dimg04.c-ctrip.com/images/0206q1200026u4rxq2F43.jpg",
                                        "desc": "雅之光·轻奢情侣房",
                                        "pictureType": 6,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 275876561,
                                        "categoryType": 9,
                                        "deschtml": "雅之光·轻奢情侣房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 223,
                                        "imgId": "450979436",
                                        "src": "//dimg04.c-ctrip.com/images/020621200026pz02l1B09.jpg",
                                        "desc": "雅之光·轻奢情侣房",
                                        "pictureType": 6,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 275876561,
                                        "categoryType": 9,
                                        "deschtml": "雅之光·轻奢情侣房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 228,
                                        "imgId": "507983213",
                                        "src": "//dimg04.c-ctrip.com/images/0200s120008htzon7B951.jpg",
                                        "desc": "雅之光·轻奢情侣房",
                                        "pictureType": 6,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 275876561,
                                        "categoryType": 9,
                                        "deschtml": "雅之光·轻奢情侣房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 235,
                                        "imgId": "507983214",
                                        "src": "//dimg04.c-ctrip.com/images/02005120008htzo1rC4CA.jpg",
                                        "desc": "雅之光·轻奢情侣房",
                                        "pictureType": 6,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 275876561,
                                        "categoryType": 9,
                                        "deschtml": "雅之光·轻奢情侣房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 302,
                                        "imgId": "450982254",
                                        "src": "//dimg04.c-ctrip.com/images/0201w1200026uxjxe7E3B.jpg",
                                        "desc": "雅之光·轻奢情侣房",
                                        "pictureType": 6,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 275876561,
                                        "categoryType": 9,
                                        "deschtml": "雅之光·轻奢情侣房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 126,
                                        "imgId": "450982252",
                                        "src": "//dimg04.c-ctrip.com/images/0200m1200026u9gc6FD1F.jpg",
                                        "desc": "沐之韵·淡雅双人房",
                                        "pictureType": 6,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 275797279,
                                        "categoryType": 9,
                                        "deschtml": "沐之韵·淡雅双人房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 152,
                                        "imgId": "450982246",
                                        "src": "//dimg04.c-ctrip.com/images/020151200026uchjrB950.jpg",
                                        "desc": "沐之韵·淡雅双人房",
                                        "pictureType": 6,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 275797279,
                                        "categoryType": 9,
                                        "deschtml": "沐之韵·淡雅双人房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 153,
                                        "imgId": "450982242",
                                        "src": "//dimg04.c-ctrip.com/images/020531200026u0j9w9900.jpg",
                                        "desc": "沐之韵·淡雅双人房",
                                        "pictureType": 6,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 275797279,
                                        "categoryType": 9,
                                        "deschtml": "沐之韵·淡雅双人房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 158,
                                        "imgId": "450981192",
                                        "src": "//dimg04.c-ctrip.com/images/0204g1200026rp4u7A4D3.jpg",
                                        "desc": "沐之韵·淡雅双人房",
                                        "pictureType": 6,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 275797279,
                                        "categoryType": 9,
                                        "deschtml": "沐之韵·淡雅双人房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 222,
                                        "imgId": "450982250",
                                        "src": "//dimg04.c-ctrip.com/images/0203s1200026ufscsC532.jpg",
                                        "desc": "沐之韵·淡雅双人房",
                                        "pictureType": 6,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 275797279,
                                        "categoryType": 9,
                                        "deschtml": "沐之韵·淡雅双人房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 224,
                                        "imgId": "507982137",
                                        "src": "//dimg04.c-ctrip.com/images/0AD3m12000atklieb86E7.jpg",
                                        "desc": "沐之韵·淡雅双人房",
                                        "pictureType": 6,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 275797279,
                                        "categoryType": 9,
                                        "deschtml": "沐之韵·淡雅双人房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 232,
                                        "imgId": "450979440",
                                        "src": "//dimg04.c-ctrip.com/images/0200e1200026qmzw40E71.jpg",
                                        "desc": "沐之韵·淡雅双人房",
                                        "pictureType": 6,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 275797279,
                                        "categoryType": 9,
                                        "deschtml": "沐之韵·淡雅双人房",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    }
                                ]
                            },
                            {
                                "categoryName": "餐饮(2)",
                                "categoryId": 2,
                                "albumPictureList": [
                                    {
                                        "rank": 250,
                                        "imgId": "451127179",
                                        "src": "//dimg04.c-ctrip.com/images/020561200026sy2g91AFD.jpg",
                                        "desc": "咖啡厅",
                                        "pictureType": 42,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 2,
                                        "deschtml": "咖啡厅",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 252,
                                        "imgId": "151734512",
                                        "src": "//dimg04.c-ctrip.com/images/200m0s000000i5t76F708.jpg",
                                        "desc": "咖啡厅",
                                        "pictureType": 42,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 2,
                                        "deschtml": "咖啡厅",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    }
                                ]
                            },
                            {
                                "categoryName": "休闲(1)",
                                "categoryId": 10,
                                "albumPictureList": [
                                    {
                                        "rank": 265,
                                        "imgId": "508724860",
                                        "src": "//dimg04.c-ctrip.com/images/0204j120008rb6xznDCB7.jpg",
                                        "desc": "室外游泳池",
                                        "pictureType": 36,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 10,
                                        "deschtml": "室外游泳池",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    }
                                ]
                            },
                            {
                                "categoryName": "公共区域(3)",
                                "categoryId": 14,
                                "albumPictureList": [
                                    {
                                        "rank": 12,
                                        "imgId": "451125654",
                                        "src": "//dimg04.c-ctrip.com/images/0203n1200026qgbcsF040.jpg",
                                        "desc": "公共区域",
                                        "pictureType": 2,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 14,
                                        "deschtml": "公共区域",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 13,
                                        "imgId": "451127472",
                                        "src": "//dimg04.c-ctrip.com/images/020481200026qhw383C3F.jpg",
                                        "desc": "公共区域",
                                        "pictureType": 2,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 14,
                                        "deschtml": "公共区域",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 197,
                                        "imgId": "451127662",
                                        "src": "//dimg04.c-ctrip.com/images/0201v1200026sd3zi116D.jpg",
                                        "desc": "公共区域",
                                        "pictureType": 2,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 14,
                                        "deschtml": "公共区域",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    }
                                ]
                            },
                            {
                                "categoryName": "周边(19)",
                                "categoryId": 12,
                                "albumPictureList": [
                                    {
                                        "rank": 15,
                                        "imgId": "146560228",
                                        "src": "//dimg04.c-ctrip.com/images/200m070000002ljwq51D9.jpg",
                                        "desc": "酒店附近",
                                        "pictureType": 46,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 12,
                                        "deschtml": "酒店附近",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 204,
                                        "imgId": "142373798",
                                        "src": "//dimg04.c-ctrip.com/images/20050600000020ml4B535.jpg",
                                        "desc": "酒店附近",
                                        "pictureType": 46,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 12,
                                        "deschtml": "酒店附近",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 205,
                                        "imgId": "146560179",
                                        "src": "//dimg04.c-ctrip.com/images/2002070000002ljwjA06B.jpg",
                                        "desc": "酒店附近",
                                        "pictureType": 46,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 12,
                                        "deschtml": "酒店附近",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 206,
                                        "imgId": "142367953",
                                        "src": "//dimg04.c-ctrip.com/images/20060600000020ml6274E.jpg",
                                        "desc": "酒店附近",
                                        "pictureType": 46,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 12,
                                        "deschtml": "酒店附近",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 207,
                                        "imgId": "143734375",
                                        "src": "//dimg04.c-ctrip.com/images/200i070000002ie9wEC7D.jpg",
                                        "desc": "酒店附近",
                                        "pictureType": 46,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 12,
                                        "deschtml": "酒店附近",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 264,
                                        "imgId": "508724901",
                                        "src": "//dimg04.c-ctrip.com/images/0203h120008rb712m8A01.jpg",
                                        "desc": "酒店附近",
                                        "pictureType": 46,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 12,
                                        "deschtml": "酒店附近",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 266,
                                        "imgId": "508724852",
                                        "src": "//dimg04.c-ctrip.com/images/0206k120008rb6y7k1275.jpg",
                                        "desc": "酒店附近",
                                        "pictureType": 46,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 12,
                                        "deschtml": "酒店附近",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 267,
                                        "imgId": "508724896",
                                        "src": "//dimg04.c-ctrip.com/images/0200t120008rb70wmCDEF.jpg",
                                        "desc": "酒店附近",
                                        "pictureType": 46,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 12,
                                        "deschtml": "酒店附近",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 268,
                                        "imgId": "508724857",
                                        "src": "//dimg04.c-ctrip.com/images/0205r120008rb72v4EF2D.jpg",
                                        "desc": "酒店附近",
                                        "pictureType": 46,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 12,
                                        "deschtml": "酒店附近",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 269,
                                        "imgId": "508724863",
                                        "src": "//dimg04.c-ctrip.com/images/02026120008rb732p39BC.jpg",
                                        "desc": "酒店附近",
                                        "pictureType": 46,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 12,
                                        "deschtml": "酒店附近",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 270,
                                        "imgId": "508724859",
                                        "src": "//dimg04.c-ctrip.com/images/02025120008rb6rhhAF13.jpg",
                                        "desc": "酒店附近",
                                        "pictureType": 46,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 12,
                                        "deschtml": "酒店附近",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 271,
                                        "imgId": "508724851",
                                        "src": "//dimg04.c-ctrip.com/images/0206j120008rb6rh65912.jpg",
                                        "desc": "酒店附近",
                                        "pictureType": 46,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 12,
                                        "deschtml": "酒店附近",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 272,
                                        "imgId": "508724858",
                                        "src": "//dimg04.c-ctrip.com/images/0203g120008rb70whF515.jpg",
                                        "desc": "酒店附近",
                                        "pictureType": 46,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 12,
                                        "deschtml": "酒店附近",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 273,
                                        "imgId": "508724867",
                                        "src": "//dimg04.c-ctrip.com/images/02001120008rb6t2m5FCB.jpg",
                                        "desc": "酒店附近",
                                        "pictureType": 46,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 12,
                                        "deschtml": "酒店附近",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 274,
                                        "imgId": "508724888",
                                        "src": "//dimg04.c-ctrip.com/images/0205h120008rb6kwpB095.jpg",
                                        "desc": "酒店附近",
                                        "pictureType": 46,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 12,
                                        "deschtml": "酒店附近",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 275,
                                        "imgId": "508724869",
                                        "src": "//dimg04.c-ctrip.com/images/02064120008rb72npE19F.jpg",
                                        "desc": "酒店附近",
                                        "pictureType": 46,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 12,
                                        "deschtml": "酒店附近",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 276,
                                        "imgId": "508724862",
                                        "src": "//dimg04.c-ctrip.com/images/0205o120008rb6rhdBA42.jpg",
                                        "desc": "酒店附近",
                                        "pictureType": 46,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 12,
                                        "deschtml": "酒店附近",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 277,
                                        "imgId": "508724855",
                                        "src": "//dimg04.c-ctrip.com/images/0206l120008rb72ha39D1.jpg",
                                        "desc": "酒店附近",
                                        "pictureType": 46,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 12,
                                        "deschtml": "酒店附近",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 278,
                                        "imgId": "508724853",
                                        "src": "//dimg04.c-ctrip.com/images/0200e120008rb6tisD830.jpg",
                                        "desc": "酒店附近",
                                        "pictureType": 46,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 12,
                                        "deschtml": "酒店附近",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    }
                                ]
                            },
                            {
                                "categoryName": "其他(6)",
                                "categoryId": 5,
                                "albumPictureList": [
                                    {
                                        "rank": 213,
                                        "imgId": "281183365",
                                        "src": "//dimg04.c-ctrip.com/images/200n0s000000hvhj89AD6.jpg",
                                        "desc": "其他",
                                        "pictureType": 5,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 5,
                                        "deschtml": "其他",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 215,
                                        "imgId": "451125652",
                                        "src": "//dimg04.c-ctrip.com/images/0200y1200026sq9r30967.jpg",
                                        "desc": "其他",
                                        "pictureType": 5,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 5,
                                        "deschtml": "其他",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 216,
                                        "imgId": "451124093",
                                        "src": "//dimg04.c-ctrip.com/images/020221200026qeqgo0312.jpg",
                                        "desc": "其他",
                                        "pictureType": 5,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 5,
                                        "deschtml": "其他",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 217,
                                        "imgId": "451125007",
                                        "src": "//dimg04.c-ctrip.com/images/020401200026pnacd35EB.jpg",
                                        "desc": "其他",
                                        "pictureType": 5,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 5,
                                        "deschtml": "其他",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 280,
                                        "imgId": "451127392",
                                        "src": "//dimg04.c-ctrip.com/images/0203p1200026sup3m8F04.jpg",
                                        "desc": "其他",
                                        "pictureType": 5,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 5,
                                        "deschtml": "其他",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 281,
                                        "imgId": "190519462",
                                        "src": "//dimg04.c-ctrip.com/images/200a0i0000009hs4yEE4F.jpg",
                                        "desc": "其他",
                                        "pictureType": 5,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 5,
                                        "deschtml": "其他",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    }
                                ]
                            }
                        ]
                    },
                    "userNewAlbum": {
                        "albumCategoryName": "住客晒图",
                        "CategoryList": [
                            {
                                "categoryName": "全部(18)",
                                "categoryId": 0,
                                "albumPictureList": [
                                    {
                                        "rank": 0,
                                        "imgId": "215697897",
                                        "src": "//dimg04.c-ctrip.com/images/0230112000b577bgq3E52.jpg",
                                        "desc": "酒店外部",
                                        "pictureType": 1,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 1,
                                        "deschtml": "酒店外部",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 0,
                                        "imgId": "217385939",
                                        "src": "//dimg04.c-ctrip.com/images/0234h12000b6v9coi03B7.jpg",
                                        "desc": "卫生间",
                                        "pictureType": 103,
                                        "index": 1,
                                        "subIndex": 1,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 9,
                                        "deschtml": "卫生间",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 0,
                                        "imgId": "215697901",
                                        "src": "//dimg04.c-ctrip.com/images/0231j12000b578ygj6D46.jpg",
                                        "desc": "卫生间",
                                        "pictureType": 103,
                                        "index": 2,
                                        "subIndex": 2,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 9,
                                        "deschtml": "卫生间",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 0,
                                        "imgId": "372700407",
                                        "src": "//dimg04.c-ctrip.com/images/0232g12000fcxfx9v07E4.jpg",
                                        "desc": "房间",
                                        "pictureType": 6,
                                        "index": 3,
                                        "subIndex": 3,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 9,
                                        "deschtml": "房间",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 0,
                                        "imgId": "217385937",
                                        "src": "//dimg04.c-ctrip.com/images/0235b12000b6uzaou6B68.jpg",
                                        "desc": "房间",
                                        "pictureType": 6,
                                        "index": 4,
                                        "subIndex": 4,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 9,
                                        "deschtml": "房间",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 0,
                                        "imgId": "215697899",
                                        "src": "//dimg04.c-ctrip.com/images/0231m12000b57gset50A8.jpg",
                                        "desc": "房间",
                                        "pictureType": 6,
                                        "index": 5,
                                        "subIndex": 5,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 9,
                                        "deschtml": "房间",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 0,
                                        "imgId": "372700411",
                                        "src": "//dimg04.c-ctrip.com/images/0235t12000fcxfsvmF9A7.jpg",
                                        "desc": "公共区域",
                                        "pictureType": 2,
                                        "index": 6,
                                        "subIndex": 6,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 14,
                                        "deschtml": "公共区域",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 0,
                                        "imgId": "217607859",
                                        "src": "//dimg04.c-ctrip.com/images/0231g12000b75dr0o57FC.jpg",
                                        "desc": "走廊",
                                        "pictureType": 105,
                                        "index": 7,
                                        "subIndex": 7,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 14,
                                        "deschtml": "走廊",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 0,
                                        "imgId": "234252991",
                                        "src": "//dimg04.c-ctrip.com/images/0236e12000bj31kcwF9C6.jpg",
                                        "desc": "其他",
                                        "pictureType": 5,
                                        "index": 8,
                                        "subIndex": 8,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 5,
                                        "deschtml": "其他",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 0,
                                        "imgId": "217607857",
                                        "src": "//dimg04.c-ctrip.com/images/0230y12000b75748g9F34.jpg",
                                        "desc": "其他",
                                        "pictureType": 5,
                                        "index": 9,
                                        "subIndex": 9,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 5,
                                        "deschtml": "其他",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 0,
                                        "imgId": "372700409",
                                        "src": "//dimg04.c-ctrip.com/images/0230e12000fcx0znk8B01.jpg",
                                        "desc": "其他",
                                        "pictureType": 5,
                                        "index": 10,
                                        "subIndex": 10,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 5,
                                        "deschtml": "其他",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 0,
                                        "imgId": "234252993",
                                        "src": "//dimg04.c-ctrip.com/images/0230w12000bj31sawF059.jpg",
                                        "desc": "其他",
                                        "pictureType": 5,
                                        "index": 11,
                                        "subIndex": 11,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 5,
                                        "deschtml": "其他",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 0,
                                        "imgId": "234252985",
                                        "src": "//dimg04.c-ctrip.com/images/0230x12000bj2thn41736.jpg",
                                        "desc": "其他",
                                        "pictureType": 5,
                                        "index": 12,
                                        "subIndex": 12,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 5,
                                        "deschtml": "其他",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 0,
                                        "imgId": "234252989",
                                        "src": "//dimg04.c-ctrip.com/images/0234l12000bj2s0zu334E.jpg",
                                        "desc": "其他",
                                        "pictureType": 5,
                                        "index": 13,
                                        "subIndex": 13,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 5,
                                        "deschtml": "其他",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 0,
                                        "imgId": "217607861",
                                        "src": "//dimg04.c-ctrip.com/images/0235x12000b754pj73260.jpg",
                                        "desc": "其他",
                                        "pictureType": 5,
                                        "index": 14,
                                        "subIndex": 14,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 5,
                                        "deschtml": "其他",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 0,
                                        "imgId": "234252987",
                                        "src": "//dimg04.c-ctrip.com/images/0231z12000bj341ot2262.jpg",
                                        "desc": "其他",
                                        "pictureType": 5,
                                        "index": 15,
                                        "subIndex": 15,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 5,
                                        "deschtml": "其他",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 0,
                                        "imgId": "215697895",
                                        "src": "//dimg04.c-ctrip.com/images/0234o12000b56z1d9BDF9.jpg",
                                        "desc": "其他",
                                        "pictureType": 5,
                                        "index": 16,
                                        "subIndex": 16,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 5,
                                        "deschtml": "其他",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 0,
                                        "imgId": "217385941",
                                        "src": "//dimg04.c-ctrip.com/images/0235q12000b6v5izgAC92.jpg",
                                        "desc": "其他",
                                        "pictureType": 5,
                                        "index": 17,
                                        "subIndex": 17,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 5,
                                        "deschtml": "其他",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    }
                                ]
                            },
                            {
                                "categoryName": "外观(1)",
                                "categoryId": 1,
                                "albumPictureList": [
                                    {
                                        "rank": 0,
                                        "imgId": "215697897",
                                        "src": "//dimg04.c-ctrip.com/images/0230112000b577bgq3E52.jpg",
                                        "desc": "酒店外部",
                                        "pictureType": 1,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 1,
                                        "deschtml": "酒店外部",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    }
                                ]
                            },
                            {
                                "categoryName": "房间(5)",
                                "categoryId": 9,
                                "albumPictureList": [
                                    {
                                        "rank": 0,
                                        "imgId": "217385939",
                                        "src": "//dimg04.c-ctrip.com/images/0234h12000b6v9coi03B7.jpg",
                                        "desc": "卫生间",
                                        "pictureType": 103,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 9,
                                        "deschtml": "卫生间",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 0,
                                        "imgId": "215697901",
                                        "src": "//dimg04.c-ctrip.com/images/0231j12000b578ygj6D46.jpg",
                                        "desc": "卫生间",
                                        "pictureType": 103,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 9,
                                        "deschtml": "卫生间",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 0,
                                        "imgId": "372700407",
                                        "src": "//dimg04.c-ctrip.com/images/0232g12000fcxfx9v07E4.jpg",
                                        "desc": "房间",
                                        "pictureType": 6,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 9,
                                        "deschtml": "房间",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 0,
                                        "imgId": "217385937",
                                        "src": "//dimg04.c-ctrip.com/images/0235b12000b6uzaou6B68.jpg",
                                        "desc": "房间",
                                        "pictureType": 6,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 9,
                                        "deschtml": "房间",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 0,
                                        "imgId": "215697899",
                                        "src": "//dimg04.c-ctrip.com/images/0231m12000b57gset50A8.jpg",
                                        "desc": "房间",
                                        "pictureType": 6,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 9,
                                        "deschtml": "房间",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    }
                                ]
                            },
                            {
                                "categoryName": "公共区域(2)",
                                "categoryId": 14,
                                "albumPictureList": [
                                    {
                                        "rank": 0,
                                        "imgId": "372700411",
                                        "src": "//dimg04.c-ctrip.com/images/0235t12000fcxfsvmF9A7.jpg",
                                        "desc": "公共区域",
                                        "pictureType": 2,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 14,
                                        "deschtml": "公共区域",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 0,
                                        "imgId": "217607859",
                                        "src": "//dimg04.c-ctrip.com/images/0231g12000b75dr0o57FC.jpg",
                                        "desc": "走廊",
                                        "pictureType": 105,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 14,
                                        "deschtml": "走廊",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    }
                                ]
                            },
                            {
                                "categoryName": "其他(10)",
                                "categoryId": 5,
                                "albumPictureList": [
                                    {
                                        "rank": 0,
                                        "imgId": "234252991",
                                        "src": "//dimg04.c-ctrip.com/images/0236e12000bj31kcwF9C6.jpg",
                                        "desc": "其他",
                                        "pictureType": 5,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 5,
                                        "deschtml": "其他",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 0,
                                        "imgId": "217607857",
                                        "src": "//dimg04.c-ctrip.com/images/0230y12000b75748g9F34.jpg",
                                        "desc": "其他",
                                        "pictureType": 5,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 5,
                                        "deschtml": "其他",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 0,
                                        "imgId": "372700409",
                                        "src": "//dimg04.c-ctrip.com/images/0230e12000fcx0znk8B01.jpg",
                                        "desc": "其他",
                                        "pictureType": 5,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 5,
                                        "deschtml": "其他",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 0,
                                        "imgId": "234252993",
                                        "src": "//dimg04.c-ctrip.com/images/0230w12000bj31sawF059.jpg",
                                        "desc": "其他",
                                        "pictureType": 5,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 5,
                                        "deschtml": "其他",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 0,
                                        "imgId": "234252985",
                                        "src": "//dimg04.c-ctrip.com/images/0230x12000bj2thn41736.jpg",
                                        "desc": "其他",
                                        "pictureType": 5,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 5,
                                        "deschtml": "其他",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 0,
                                        "imgId": "234252989",
                                        "src": "//dimg04.c-ctrip.com/images/0234l12000bj2s0zu334E.jpg",
                                        "desc": "其他",
                                        "pictureType": 5,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 5,
                                        "deschtml": "其他",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 0,
                                        "imgId": "217607861",
                                        "src": "//dimg04.c-ctrip.com/images/0235x12000b754pj73260.jpg",
                                        "desc": "其他",
                                        "pictureType": 5,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 5,
                                        "deschtml": "其他",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 0,
                                        "imgId": "234252987",
                                        "src": "//dimg04.c-ctrip.com/images/0231z12000bj341ot2262.jpg",
                                        "desc": "其他",
                                        "pictureType": 5,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 5,
                                        "deschtml": "其他",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 0,
                                        "imgId": "215697895",
                                        "src": "//dimg04.c-ctrip.com/images/0234o12000b56z1d9BDF9.jpg",
                                        "desc": "其他",
                                        "pictureType": 5,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 5,
                                        "deschtml": "其他",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    },
                                    {
                                        "rank": 0,
                                        "imgId": "217385941",
                                        "src": "//dimg04.c-ctrip.com/images/0235q12000b6v5izgAC92.jpg",
                                        "desc": "其他",
                                        "pictureType": 5,
                                        "index": 0,
                                        "subIndex": 0,
                                        "basicRoomTypeId": 0,
                                        "categoryType": 5,
                                        "deschtml": "其他",
                                        "imgSource": "",
                                        "imgSourceUrl": ""
                                    }
                                ]
                            }
                        ]
                    }
                },
                "comment": {
                    "content": "住的地方我很喜欢,房间很干净,用品都是一次性的,老板人很好,还帮忙提行李箱,还送给小朋友一罐海苔,附近就有超市,防晒帽子,拖鞋,泳衣都有卖得,挖沙工具也都有。",
                    "scoreDescription": "棒",
                    "score": "4.8",
                    "totalReviews": "32",
                    "categoryScore": [
                        {
                            "scoreName": "环境",
                            "itemScore": "4.9",
                            "scoreDescription": ""
                        },
                        {
                            "scoreName": "卫生",
                            "itemScore": "4.6",
                            "scoreDescription": ""
                        },
                        {
                            "scoreName": "服务",
                            "itemScore": "4.9",
                            "scoreDescription": ""
                        },
                        {
                            "scoreName": "设施",
                            "itemScore": "4.6",
                            "scoreDescription": ""
                        }
                    ],
                    "showMoreReview": "显示所有32条点评",
                    "quality": [
                        "干净卫生",
                        "服务很好"
                    ],
                    "translationContent": "",
                    "userProfile": {
                        "avatarUrl": "//dimg04.c-ctrip.com/images/Z80p180000013uw9yF21F_R_100_100_R5_Q70_D.jpg",
                        "userName": "M51840****",
                        "reviewedCount": 1,
                        "headPictureUrl": "https://dimg04.c-ctrip.com/images/Z80p180000013uw9yF21F_C_130_130_Q70.jpg"
                    },
                    "reviewDetails": {
                        "reviewScore": {
                            "score": "5",
                            "scoreMax": "5",
                            "scoreDescription": "超棒"
                        },
                        "reviewContent": "住的地方我很喜欢,房间很干净,用品都是一次性的,老板人很好,还帮忙提行李箱,还送给小朋友一罐海苔,附近就有超市,防晒帽子,拖鞋,泳衣都有卖得,挖沙工具也都有。",
                        "releaseDate": "2023-06-2916:10:32",
                        "travelType": "家庭亲子",
                        "roomType": "沐之韵·淡雅双人房",
                        "checkInDate": "2023-06-0100:00:00",
                        "reviewUpdateImages": [
                            "//dimg04.c-ctrip.com/images/0230x12000bj2thn41736_R_150_150_R5_Q70_D.jpg",
                            "//dimg04.c-ctrip.com/images/0231z12000bj341ot2262_R_150_150_R5_Q70_D.jpg",
                            "//dimg04.c-ctrip.com/images/0234l12000bj2s0zu334E_R_150_150_R5_Q70_D.jpg",
                            "//dimg04.c-ctrip.com/images/0236e12000bj31kcwF9C6_R_150_150_R5_Q70_D.jpg",
                            "//dimg04.c-ctrip.com/images/0230w12000bj31sawF059_R_150_150_R5_Q70_D.jpg"
                        ],
                        "translationContent": "",
                        "feedbackList": [
                            {
                                "reviewId": "842277403",
                                "type": 3,
                                "createDate": "2023-06-29",
                                "content": "小遇明白您跟小遇一样我们喜欢在这薄情的世界里讲深情的话做浪漫的事",
                                "ipLocation": "发布于河北",
                                "language": "CN"
                            }
                        ],
                        "language": "CN",
                        "translationSourceText": ""
                    },
                    "reviewId": "842231097",
                    "helpfulCount": 0,
                    "markUseful": true
                },
                "isMemberLogin": 0,
                "childPolicy": {
                    "beds": {
                        "title": "儿童及加床",
                        "description": "酒店允许客人携带儿童入住。",
                        "menu": [
                            {
                                "title": "使用现有床铺",
                                "description": [
                                    "每房间可有1名17岁或以下的儿童使用现有床铺。部分房型政策根据您所选的房型有所不同,请具体查看预订房型政策"
                                ],
                                "details": [
                                    {
                                        "title": "17岁或以下的儿童",
                                        "content": [
                                            {
                                                "title": "费用",
                                                "content": "免费",
                                                "bold": true
                                            }
                                        ]
                                    }
                                ]
                            }
                        ]
                    },
                    "text": [
                        "酒店允许客人携带儿童入住。",
                        "每房间可有1名17岁或以下的儿童使用现有床铺。部分房型政策根据您所选的房型有所不同,请具体查看预订房型政策"
                    ]
                },
                "hotFacility": {
                    "list": [
                        {
                            "icon": "ic_new_fa_pickup",
                            "facilityName": "接机服务",
                            "facilityId": 105
                        },
                        {
                            "icon": "ic_new_fa_check",
                            "facilityName": "棋牌室",
                            "facilityId": 24
                        },
                        {
                            "icon": "ic_new_fa_24h_service",
                            "facilityName": "24小时前台服务",
                            "facilityId": 140
                        },
                        {
                            "icon": "ic_new_fa_business",
                            "facilityName": "会议厅",
                            "facilityId": 6
                        },
                        {
                            "icon": "ic_new_fa_check",
                            "facilityName": "空调",
                            "facilityId": 107
                        }
                    ],
                    "desc": "显示所有设施"
                },
                "linkInfo": [
                    {
                        "rel": "alternate",
                        "href": "https://www.trip.com/hotels/",
                        "hreflang": "en-US"
                    },
                    {
                        "rel": "alternate",
                        "href": "https://fr.trip.com/hotels/",
                        "hreflang": "fr-FR"
                    },
                    {
                        "rel": "alternate",
                        "href": "https://de.trip.com/hotels/",
                        "hreflang": "de-DE"
                    },
                    {
                        "rel": "alternate",
                        "href": "https://es.trip.com/hotels/",
                        "hreflang": "es-ES"
                    },
                    {
                        "rel": "alternate",
                        "href": "https://jp.trip.com/hotels/",
                        "hreflang": "ja-JP"
                    },
                    {
                        "rel": "alternate",
                        "href": "https://kr.trip.com/hotels/",
                        "hreflang": "ko-KR"
                    },
                    {
                        "rel": "alternate",
                        "href": "https://hk.trip.com/hotels/",
                        "hreflang": "zh-HK"
                    },
                    {
                        "rel": "alternate",
                        "href": "https://ru.trip.com/hotels/",
                        "hreflang": "ru-RU"
                    },
                    {
                        "rel": "alternate",
                        "href": "https://sg.trip.com/hotels/",
                        "hreflang": "en-SG"
                    },
                    {
                        "rel": "alternate",
                        "href": "https://my.trip.com/hotels/",
                        "hreflang": "ms-MY"
                    },
                    {
                        "rel": "alternate",
                        "href": "https://id.trip.com/hotels/",
                        "hreflang": "id-ID"
                    },
                    {
                        "rel": "alternate",
                        "href": "https://th.trip.com/hotels/",
                        "hreflang": "th-TH"
                    },
                    {
                        "rel": "alternate",
                        "href": "https://tw.trip.com/hotels/",
                        "hreflang": "zh-TW"
                    },
                    {
                        "rel": "alternate",
                        "href": "https://au.trip.com/hotels/",
                        "hreflang": "en-AU"
                    },
                    {
                        "rel": "alternate",
                        "href": "android-app://ctrip.english/http/www.trip.com/hotels/",
                        "hreflang": ""
                    },
                    {
                        "rel": "alternate",
                        "href": "android-app://ctrip.english/http/fr.trip.com/hotels/",
                        "hreflang": ""
                    },
                    {
                        "rel": "alternate",
                        "href": "android-app://ctrip.english/http/de.trip.com/hotels/",
                        "hreflang": ""
                    },
                    {
                        "rel": "alternate",
                        "href": "android-app://ctrip.english/http/es.trip.com/hotels/",
                        "hreflang": ""
                    },
                    {
                        "rel": "alternate",
                        "href": "android-app://ctrip.english/http/jp.trip.com/hotels/",
                        "hreflang": ""
                    },
                    {
                        "rel": "alternate",
                        "href": "android-app://ctrip.english/http/kr.trip.com/hotels/",
                        "hreflang": ""
                    },
                    {
                        "rel": "alternate",
                        "href": "android-app://ctrip.english/http/hk.trip.com/hotels/",
                        "hreflang": ""
                    },
                    {
                        "rel": "alternate",
                        "href": "android-app://ctrip.english/http/ru.trip.com/hotels/",
                        "hreflang": ""
                    }
                ],
                "safeguard": [
                    {
                        "icon": "ic_member",
                        "title": "无房必赔保障",
                        "content": "无房必赔保障",
                        "type": 2
                    },
                    {
                        "icon": "ic_member",
                        "title": "全天客服在线",
                        "content": "全天客服在线",
                        "type": 2
                    },
                    {
                        "icon": "ic_member",
                        "title": "紧急情况援助",
                        "content": "紧急情况援助",
                        "type": 2
                    }
                ],
                "seoHeader": [
                    {
                        "property": "fb:app_id",
                        "name": "",
                        "content": "891889767495675",
                        "httpequiv": ""
                    },
                    {
                        "property": "og:title",
                        "name": "",
                        "content": "北戴河沐鼎雅苑民宿(集发梦想王国店)预订价格,联系电话位置地址【携程酒店】",
                        "httpequiv": ""
                    },
                    {
                        "property": "og:description",
                        "name": "",
                        "content": "Findthebesthotelatthebestrate.Over1,200,000hotelsinmorethan200regions.24/7CustomerService.",
                        "httpequiv": ""
                    },
                    {
                        "property": "og:url",
                        "name": "",
                        "content": "https://hotels.ctrip.com/hotels/2021529.html",
                        "httpequiv": ""
                    },
                    {
                        "property": "og:image",
                        "name": "",
                        "content": "https://dimg04.c-ctrip.com/images/0202q1200026v2ogoCD96_R_600_400_R5_D.jpg",
                        "httpequiv": ""
                    },
                    {
                        "property": "",
                        "name": "",
                        "content": "on",
                        "httpequiv": "x-dns-prefetch-control"
                    },
                    {
                        "property": "",
                        "name": "",
                        "content": "text/html;charset=utf-8",
                        "httpequiv": "Content-Type"
                    },
                    {
                        "property": "",
                        "name": "",
                        "content": "no-cache",
                        "httpequiv": "pragma"
                    },
                    {
                        "property": "",
                        "name": "",
                        "content": "IE=edge,chrome=1",
                        "httpequiv": "x-ua-compatible"
                    }
                ],
                "GtmData": "{\"productSDate\":\"2024-10-11\",\"productEDate\":\"2024-10-12\",\"productCity\":\"147\",\"productCName\":\"Qinhuangdao\",\"productIds\":\"2021529\",\"productType\":\"DomesticsHotels\",\"productCategory\":\"Dome\"}",
                "staticHotelInfo": {
                    "hotelInfo": {
                        "basic": {
                            "label": [
                                "开业:2014",
                                "装修:2019",
                                "客房数:22"
                            ],
                            "description": "北戴河沐鼎雅苑民宿位于古城村城园小区南三街,临近集发观光园,离海滨浴场数分钟车程,距京沈高速北戴河出口约1公里。",
                            "name": "北戴河沐鼎雅苑民宿(集发梦想王国店)",
                            "image": [
                                "//ak-d.tripcdn.com/images/0202q1200026v2ogoCD96_R_800_525.jpg"
                            ],
                            "badge": "23",
                            "badgeHover": "携程紧密合作酒店/供应商,提供实惠价格。",
                            "descriptionPre": "装修:2019",
                            "certiInfo": {
                                "picUrls": [
                                    "https://dimg04.c-ctrip.com/images/1mc3p12000dinujg1955A_Z_702_0_Q70.jpg",
                                    "https://dimg04.c-ctrip.com/images/0zm0e12000c0rbl4aCAC0_Z_702_0_Q70.jpg",
                                    "https://dimg04.c-ctrip.com/images/0201u12000fjgyz4j47F3_Z_702_0_Q70.jpg",
                                    "https://dimg04.c-ctrip.com/images/0202y12000c3wj0024A09_Z_702_0_Q70.jpg"
                                ],
                                "groupPicUrls": [
                                    {
                                        "title": "",
                                        "picUrls": [
                                            "https://dimg04.c-ctrip.com/images/1mc3p12000dinujg1955A_Z_702_0_Q70.jpg",
                                            "https://dimg04.c-ctrip.com/images/0zm0e12000c0rbl4aCAC0_Z_702_0_Q70.jpg",
                                            "https://dimg04.c-ctrip.com/images/0201u12000fjgyz4j47F3_Z_702_0_Q70.jpg",
                                            "https://dimg04.c-ctrip.com/images/0202y12000c3wj0024A09_Z_702_0_Q70.jpg"
                                        ]
                                    }
                                ]
                            },
                            "telephone": [
                                "+86-13333339646"
                            ]
                        },
                        "detail": [
                            {
                                "content": "房间宽敞明亮,床上用品一客一换。客栈配有餐厅,为你烹调特色美味,并有自家停车场提供给开车来的朋友免费使用。"
                            },
                            {
                                "content": "这里配备有空调、液晶电视、独立卫生间、千兆光纤WIFI上网、24小时电热水器,还可代购景点打折门票。"
                            },
                            {
                                "content": "这里是乡村主题文化的传承,融入的是乡村的气息,有着客家的情怀,古朴典雅。走廊上的诗篇就如老板一样,包含着他不同的故事。"
                            },
                            {
                                "content": "这里有着客与主的温暖,进入客栈,会有一种清新的感觉,你一定会爱上这里。"
                            }
                        ]
                    },
                    "hotelPolicy": {
                        "date": {
                            "title": "入住及退房",
                            "content": [
                                {
                                    "title": "入住时间",
                                    "description": "入住时间:14:00后",
                                    "transkey": ""
                                },
                                {
                                    "title": "退房时间",
                                    "description": "退房时间:12:00前",
                                    "transkey": ""
                                }
                            ]
                        },
                        "beds": {
                            "title": "儿童及加床",
                            "description": "酒店允许客人携带儿童入住。",
                            "menu": [
                                {
                                    "title": "使用现有床铺",
                                    "description": [
                                        "每房间可有1名17岁或以下的儿童使用现有床铺。部分房型政策根据您所选的房型有所不同,请具体查看预订房型政策"
                                    ],
                                    "details": [
                                        {
                                            "title": "17岁或以下的儿童",
                                            "content": [
                                                {
                                                    "title": "费用",
                                                    "content": "使用现有床铺免费",
                                                    "bold": true
                                                }
                                            ]
                                        }
                                    ]
                                }
                            ]
                        },
                        "dining": {
                            "title": "早餐",
                            "description": "",
                            "content": [

                            ],
                            "addBreakfastDesc": "不包括早餐",
                            "isProvide": true,
                            "addBreakfastHover": "酒店提供早餐,可到店加购选择。"
                        },
                        "pets": {
                            "title": "宠物",
                            "description": "允许携带宠物,不收取额外费用。"
                        },
                        "credit": {
                            "title": "到店付款方式",
                            "description": "酒店接受以下付款方式",
                            "support": [
                                {
                                    "name": "现金支付",
                                    "type": ""
                                },
                                {
                                    "name": "支付宝支付",
                                    "type": "alipay"
                                },
                                {
                                    "name": "微信支付",
                                    "type": "wechat"
                                },
                                {
                                    "name": "国内发行银联卡",
                                    "type": "unionpay"
                                }
                            ]
                        },
                        "checkInWay": {
                            "title": "入住方式",
                            "content": [
                                "前台营业时间:24小时营业"
                            ]
                        },
                        "ageLimit": {
                            "title": "年龄限制",
                            "description": "入住办理人需年满18岁"
                        },
                        "specialConcern": {
                            "title": "入住提示",
                            "description": "住宿提供方仅能接待中国(含港澳台)客人入住"
                        }
                    },
                    "hotelUsefulInfo": [
                        {
                            "title": "交通出行",
                            "type": "around",
                            "content": [
                                {
                                    "facilityDescTitle": "前往北戴河机场所需时间:45分钟"
                                }
                            ]
                        }
                    ],
                    "hotelFacility": [
                        {
                            "type": "popular",
                            "title": "热门设施",
                            "content": [
                                {
                                    "facilityDesc": "接机服务",
                                    "id": "105",
                                    "imgList": [

                                    ],
                                    "chargeType": 1,
                                    "icon": "ic_new_fa_pickup",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "棋牌室",
                                    "id": "24",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_check",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "24小时前台服务",
                                    "id": "140",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_24h_service",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "会议厅",
                                    "id": "6",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_business",
                                    "value": 1
                                }
                            ]
                        },
                        {
                            "type": "general",
                            "title": "交通服务",
                            "content": [
                                {
                                    "facilityDesc": "送机服务",
                                    "id": "361",
                                    "imgList": [

                                    ],
                                    "chargeType": 1,
                                    "icon": "ic_new_fa_check",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "接机服务",
                                    "id": "105",
                                    "imgList": [

                                    ],
                                    "chargeType": 1,
                                    "icon": "ic_new_fa_pickup",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "接站服务",
                                    "id": "263",
                                    "imgList": [

                                    ],
                                    "chargeType": 1,
                                    "icon": "ic_new_fa_check",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "送站服务",
                                    "id": "369",
                                    "imgList": [

                                    ],
                                    "chargeType": 1,
                                    "icon": "ic_new_fa_check",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "穿梭机场班车",
                                    "id": "60",
                                    "imgList": [

                                    ],
                                    "chargeType": 1,
                                    "icon": "ic_new_fa_shuttle_bus",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "租车服务",
                                    "id": "123",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_bu_carreantal",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "代客泊车",
                                    "id": "149",
                                    "imgList": [

                                    ],
                                    "chargeType": 0,
                                    "icon": "ic_new_fa_check",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "叫车服务",
                                    "id": "55",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_check",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "自行车租赁服务",
                                    "id": "152",
                                    "imgList": [

                                    ],
                                    "chargeType": 0,
                                    "icon": "ic_new_fa_check",
                                    "value": 1
                                }
                            ]
                        },
                        {
                            "type": "",
                            "title": "娱乐活动设施",
                            "content": [
                                {
                                    "facilityDesc": "泳池",
                                    "id": "605",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_check",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "游戏室",
                                    "id": "154",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_check",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "沙滩毛巾",
                                    "id": "380",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_check",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "桌面足球",
                                    "id": "352",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_check",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "钓鱼",
                                    "id": "153",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_check",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "种植采摘",
                                    "id": "525",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_check",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "棋牌室",
                                    "id": "24",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_check",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "KTV",
                                    "id": "22",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_ktv",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "茶室",
                                    "id": "63",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_tea",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "家庭影院",
                                    "id": "357",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_check",
                                    "value": 1
                                }
                            ]
                        },
                        {
                            "type": "",
                            "title": "康体设施",
                            "content": [
                                {
                                    "facilityDesc": "按摩室",
                                    "id": "43",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_massage",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "理发美容中心",
                                    "id": "41",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_hairdressing",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "美容化妆",
                                    "id": "418",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_check",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "理发",
                                    "id": "421",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_check",
                                    "value": 1
                                }
                            ]
                        },
                        {
                            "type": "accessibility",
                            "title": "前台服务",
                            "content": [
                                {
                                    "facilityDesc": "专职行李员",
                                    "id": "96",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_check",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "行李寄存",
                                    "id": "97",
                                    "imgList": [

                                    ],
                                    "chargeType": 0,
                                    "icon": "ic_new_fa_baggage",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "叫醒服务",
                                    "id": "98",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_wake_up",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "房东接待服务",
                                    "id": "480",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_check",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "快速入住退房",
                                    "id": "143",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_check",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "VIP通道入住",
                                    "id": "131",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_check",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "24小时前台",
                                    "id": "140",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_24h_service",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "礼宾服务",
                                    "id": "127",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_check",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "旅游票务服务",
                                    "id": "12",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_polyglot",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "前台贵重物品保险柜",
                                    "id": "95",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_check",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "储物柜",
                                    "id": "360",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_check",
                                    "value": 1
                                }
                            ]
                        },
                        {
                            "type": "",
                            "title": "清洁服务",
                            "content": [
                                {
                                    "facilityDesc": "洗衣房",
                                    "id": "362",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_check",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "熨衣服务",
                                    "id": "130",
                                    "imgList": [

                                    ],
                                    "chargeType": 0,
                                    "icon": "ic_new_fa_check",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "洗衣服务",
                                    "id": "15",
                                    "imgList": [

                                    ],
                                    "chargeType": 0,
                                    "icon": "ic_new_fa_access",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "外送洗衣服务",
                                    "id": "178",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_check",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "干洗服务",
                                    "id": "128",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_check",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "洗涤用具",
                                    "id": "355",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_check",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "熨斗/挂烫机",
                                    "id": "356",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_check",
                                    "value": 1
                                }
                            ]
                        },
                        {
                            "type": "multilingual",
                            "title": "餐饮服务",
                            "content": [
                                {
                                    "facilityDesc": "餐厅",
                                    "id": "147",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_breakfast",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "咖啡厅",
                                    "id": "3",
                                    "imgList": [
                                        "//ak-d.tripcdn.com/images/020561200026sy2g91AFD_R_800_525.jpg",
                                        "//ak-d.tripcdn.com/images/200m0s000000i5t76F708_R_800_525.jpg"
                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_coffee",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "送餐服务",
                                    "id": "16",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_check",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "大堂吧",
                                    "id": "106",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_check",
                                    "value": 1
                                }
                            ]
                        },
                        {
                            "type": "public",
                            "title": "公共区",
                            "content": [
                                {
                                    "facilityDesc": "公用区wifi",
                                    "id": "102",
                                    "imgList": [

                                    ],
                                    "chargeType": 0,
                                    "icon": "ic_new_fa_wifi",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "加湿器",
                                    "id": "354",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_check",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "电梯",
                                    "id": "110",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_check",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "新风系统",
                                    "id": "351",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_check",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "公共音响系统",
                                    "id": "170",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_check",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "净水机",
                                    "id": "345",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_check",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "公共区域禁烟",
                                    "id": "141",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_check",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "吸烟区",
                                    "id": "142",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_smoking",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "无烟楼层",
                                    "id": "173",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_no_smoking",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "行政楼层",
                                    "id": "174",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_floor",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "行政酒廊",
                                    "id": "175",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_executive_lounge",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "花园",
                                    "id": "384",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_check",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "烧烤",
                                    "id": "67",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_check",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "户外家具",
                                    "id": "385",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_check",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "自动售货机",
                                    "id": "358",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_check",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "礼品廊",
                                    "id": "161",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_check",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "共用厨房",
                                    "id": "359",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_check",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "图书室",
                                    "id": "157",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_library",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "机器人服务",
                                    "id": "364",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_check",
                                    "value": 1
                                }
                            ]
                        },
                        {
                            "type": "",
                            "title": "商务服务",
                            "content": [
                                {
                                    "facilityDesc": "会议厅",
                                    "id": "6",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_business",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "商务服务",
                                    "id": "168",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "businessservic",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "多媒体演示系统",
                                    "id": "176",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_media",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "传真/复印",
                                    "id": "129",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "order_printer",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "快递服务",
                                    "id": "69",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_check",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "婚宴服务",
                                    "id": "137",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_check",
                                    "value": 1
                                }
                            ]
                        },
                        {
                            "type": "",
                            "title": "安全与安保",
                            "content": [
                                {
                                    "facilityDesc": "公共区域监控",
                                    "id": "177",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_check",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "门禁系统",
                                    "id": "350",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_check",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "安全报警器",
                                    "id": "372",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_check",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "火灾报警器",
                                    "id": "347",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_check",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "烟雾报警器",
                                    "id": "371",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_check",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "一氧化碳报警器",
                                    "id": "513",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_check",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "灭火器",
                                    "id": "353",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_check",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "医务室",
                                    "id": "40",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_check",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "急救包",
                                    "id": "344",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_check",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "安保人员",
                                    "id": "479",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_check",
                                    "value": 1
                                }
                            ]
                        },
                        {
                            "type": "",
                            "title": "运动",
                            "content": [
                                {
                                    "facilityDesc": "健身室",
                                    "id": "42",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_gym",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "健身课程",
                                    "id": "439",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_check",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "徒步旅行",
                                    "id": "155",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_on_foot",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "桌球室",
                                    "id": "26",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_billiards",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "篮球场",
                                    "id": "72",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_basketball",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "模拟高尔夫",
                                    "id": "34",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_golf",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "迷你高尔夫",
                                    "id": "373",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_check",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "乒乓球室",
                                    "id": "27",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_pingpang",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "滑雪用具寄存",
                                    "id": "148",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_check",
                                    "value": 1
                                }
                            ]
                        },
                        {
                            "type": "",
                            "title": "无障碍设施服务",
                            "content": [

                            ]
                        },
                        {
                            "type": "dining",
                            "title": "儿童设施",
                            "content": [
                                {
                                    "facilityDesc": "儿童乐园",
                                    "id": "68",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_playground",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "儿童玩具",
                                    "id": "334",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_check",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "儿童牙刷",
                                    "id": "333",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_check",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "儿童拖鞋",
                                    "id": "331",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_check",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "儿童俱乐部",
                                    "id": "136",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_kidstoys",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "儿童书籍/影音",
                                    "id": "368",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_check",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "儿童桌面游戏/拼图",
                                    "id": "367",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_check",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "婴儿推车",
                                    "id": "365",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_check",
                                    "value": 1
                                },
                                {
                                    "facilityDesc": "儿童餐",
                                    "id": "330",
                                    "imgList": [

                                    ],
                                    "chargeType": 2,
                                    "icon": "ic_new_fa_child",
                                    "value": 1
                                }
                            ]
                        }
                    ],
                    "hotelFacilityPage": [
                        {
                            "facilityDesc": "接机服务",
                            "id": "105"
                        },
                        {
                            "facilityDesc": "棋牌室",
                            "id": "24"
                        },
                        {
                            "facilityDesc": "24小时前台服务",
                            "id": "140"
                        },
                        {
                            "facilityDesc": "会议厅",
                            "id": "6"
                        },
                        {
                            "facilityDesc": "空调",
                            "id": "107"
                        },
                        {
                            "facilityDesc": "吹风机",
                            "id": "93"
                        }
                    ],
                    "reservationNoticeTipsInfo": [

                    ]
                },
                "clubMedHotel": false,
                "P": "51546354135",
                "traceLogId": "15950eaa-e59e-47ec-bd4c-5aa5543ab2711728634406118",
                "canonicalUrl": "https://hotels.ctrip.com/hotels/2021529.html",
                "initialReview": {
                    "ReviewBaseInfo": {
                        "categoryScore": [
                            {
                                "scoreName": "环境",
                                "itemScore": "4.9",
                                "scoreDescription": ""
                            },
                            {
                                "scoreName": "卫生",
                                "itemScore": "4.6",
                                "scoreDescription": ""
                            },
                            {
                                "scoreName": "服务",
                                "itemScore": "4.9",
                                "scoreDescription": ""
                            },
                            {
                                "scoreName": "设施",
                                "itemScore": "4.6",
                                "scoreDescription": ""
                            }
                        ],
                        "recommendPercent": "100%推荐度",
                        "score": "4.8",
                        "totalReviews": 32,
                        "scoreMax": 5,
                        "totalReviewsTA": 0,
                        "scoreDesc": "棒",
                        "allTotalReviews": 0,
                        "ctripTotalReviews": 32,
                        "ctripTotalReviewsForPage": 29,
                        "totalUnusefulReviewsForPage": 3
                    },
                    "ReviewList": [
                        {
                            "userProfile": {
                                "avatarUrl": "//dimg04.c-ctrip.com/images/Z80p180000013uw9yF21F_R_100_100_R5_Q70_D.jpg",
                                "userName": "M51840****",
                                "reviewedCount": 1,
                                "headPictureUrl": "https://dimg04.c-ctrip.com/images/Z80p180000013uw9yF21F_C_130_130_Q70.jpg"
                            },
                            "reviewDetails": {
                                "reviewScore": {
                                    "score": "5",
                                    "scoreMax": "5",
                                    "scoreDescription": "超棒"
                                },
                                "reviewContent": "住的地方我很喜欢,房间很干净,用品都是一次性的,老板人很好,还帮忙提行李箱,还送给小朋友一罐海苔,附近就有超市,防晒帽子,拖鞋,泳衣都有卖得,挖沙工具也都有。",
                                "releaseDate": "2023-06-29",
                                "travelType": "家庭亲子",
                                "roomType": "沐之韵·淡雅双人房",
                                "checkInDate": "2023-06-01",
                                "reviewUpdateImages": [
                                    "//dimg04.c-ctrip.com/images/0230x12000bj2thn41736_R_150_150_R5_Q70_D.jpg",
                                    "//dimg04.c-ctrip.com/images/0231z12000bj341ot2262_R_150_150_R5_Q70_D.jpg",
                                    "//dimg04.c-ctrip.com/images/0234l12000bj2s0zu334E_R_150_150_R5_Q70_D.jpg",
                                    "//dimg04.c-ctrip.com/images/0236e12000bj31kcwF9C6_R_150_150_R5_Q70_D.jpg",
                                    "//dimg04.c-ctrip.com/images/0230w12000bj31sawF059_R_150_150_R5_Q70_D.jpg"
                                ],
                                "feedbackList": [
                                    {
                                        "reviewId": "842277403",
                                        "type": 3,
                                        "createDate": "2023-06-29",
                                        "content": "小遇明白您跟小遇一样我们喜欢在这薄情的世界里讲深情的话做浪漫的事",
                                        "ipLocation": "发布于河北",
                                        "language": "CN"
                                    }
                                ],
                                "sourceText": "",
                                "language": "CN"
                            },
                            "reviewId": "842231097",
                            "helpfulCount": 0,
                            "markUseful": true,
                            "ipLocation": "发布于河北"
                        },
                        {
                            "userProfile": {
                                "avatarUrl": "//dimg04.c-ctrip.com/images/fd/headphoto/g6/M01/6A/BB/CggYs1b7oC-AVxtZAAD9CTOqgnE107_R_100_100_R5_Q70_D.jpg",
                                "userName": "菟菟新",
                                "reviewedCount": 11,
                                "headPictureUrl": "https://dimg04.c-ctrip.com/images/fd/headphoto/g6/M01/6A/BB/CggYs1b7oC-AVxtZAAD9CTOqgnE107_C_130_130_Q70.jpg"
                            },
                            "reviewDetails": {
                                "reviewScore": {
                                    "score": "4.5",
                                    "scoreMax": "5",
                                    "scoreDescription": "不错"
                                },
                                "reviewContent": "还行。住之前我要求住低楼层因为我妈腿不好爬不了楼,也安排在一楼了。\n出了火车站还接来了。那炕挺有意思的。以为会硬,但是有垫,不会咯。就是屋里没热水壶。我们对面就是厨房,出来在厨房烧的。\n周边民宿挺多的,小卖部也多。吃饭地方也挺多的。往前走点是集发那。\n反正整体还是可以的。比较客气。而且要求啥也能满足。",
                                "releaseDate": "2024-09-02",
                                "travelType": "家庭亲子",
                                "roomType": "晨之阳·零压特价房",
                                "checkInDate": "2024-08-01",
                                "reviewUpdateImages": [
                                    "//dimg04.c-ctrip.com/images/0232g12000fcxfx9v07E4_R_150_150_R5_Q70_D.jpg",
                                    "//dimg04.c-ctrip.com/images/0230e12000fcx0znk8B01_R_150_150_R5_Q70_D.jpg",
                                    "//dimg04.c-ctrip.com/images/0235t12000fcxfsvmF9A7_R_150_150_R5_Q70_D.jpg"
                                ],
                                "feedbackList": [
                                    {
                                        "reviewId": "1247443327",
                                        "type": 3,
                                        "createDate": "2024-09-03",
                                        "content": "亲,由于客房烧水壶小店实在保证不了卫生清洁,所以全楼改用了饮水机啦……抱歉,忘了告诉您!",
                                        "ipLocation": "发布于河北",
                                        "language": "CN"
                                    }
                                ],
                                "sourceText": "",
                                "language": "CN"
                            },
                            "reviewId": "1246964073",
                            "helpfulCount": 0,
                            "markUseful": true,
                            "ipLocation": "发布于河北"
                        }
                    ]
                },
                "detailseo": {
                    "hotcity": [
                        {
                            "title": "北京酒店预订",
                            "href": "//hotels.ctrip.com/hotel/beijing1",
                            "data-ctm": "#ctm_ref=hd_hp_hc_lst_hi_i_a_1",
                            "name": "北京酒店"
                        },
                        {
                            "title": "上海酒店预订",
                            "href": "//hotels.ctrip.com/hotel/shanghai2",
                            "data-ctm": "#ctm_ref=hd_hp_hc_lst_hi_i_a_2",
                            "name": "上海酒店"
                        },
                        {
                            "title": "广州酒店预订",
                            "href": "//hotels.ctrip.com/hotel/guangzhou32",
                            "data-ctm": "#ctm_ref=hd_hp_hc_lst_hi_i_a_3",
                            "name": "广州酒店"
                        },
                        {
                            "title": "深圳酒店预订",
                            "href": "//hotels.ctrip.com/hotel/shenzhen30",
                            "data-ctm": "#ctm_ref=hd_hp_hc_lst_hi_i_a_4",
                            "name": "深圳酒店"
                        },
                        {
                            "title": "南京酒店预订",
                            "href": "//hotels.ctrip.com/hotel/nanjing12",
                            "data-ctm": "#ctm_ref=hd_hp_hc_lst_hi_i_a_5",
                            "name": "南京酒店"
                        },
                        {
                            "title": "杭州酒店预订",
                            "href": "//hotels.ctrip.com/hotel/hangzhou17",
                            "data-ctm": "#ctm_ref=hd_hp_hc_lst_hi_i_a_6",
                            "name": "杭州酒店"
                        },
                        {
                            "title": "成都酒店预订",
                            "href": "//hotels.ctrip.com/hotel/chengdu28",
                            "data-ctm": "#ctm_ref=hd_hp_hc_lst_hi_i_a_7",
                            "name": "成都酒店"
                        },
                        {
                            "title": "厦门酒店预订",
                            "href": "//hotels.ctrip.com/hotel/xiamen25",
                            "data-ctm": "#ctm_ref=hd_hp_hc_lst_hi_i_a_8",
                            "name": "厦门酒店"
                        },
                        {
                            "title": "青岛酒店预订",
                            "href": "//hotels.ctrip.com/hotel/qingdao7",
                            "data-ctm": "#ctm_ref=hd_hp_hc_lst_hi_i_a_9",
                            "name": "青岛酒店"
                        },
                        {
                            "title": "三亚酒店预订",
                            "href": "//hotels.ctrip.com/hotel/sanya43",
                            "data-ctm": "#ctm_ref=hd_hp_hc_lst_hi_i_a_10",
                            "name": "三亚酒店"
                        },
                        {
                            "title": "香港酒店预订",
                            "href": "//hotels.ctrip.com/hotel/hong-kong58",
                            "data-ctm": "#ctm_ref=hd_hp_hc_lst_hi_i_a_11",
                            "name": "香港酒店"
                        },
                        {
                            "title": "澳门酒店预订",
                            "href": "//hotels.ctrip.com/hotel/macau59",
                            "data-ctm": "#ctm_ref=hd_hp_hc_lst_hi_i_a_12",
                            "name": "澳门酒店"
                        },
                        {
                            "title": "西安酒店预订",
                            "href": "//hotels.ctrip.com/hotel/xian10",
                            "data-ctm": "#ctm_ref=hd_hp_hc_lst_hi_i_a_13",
                            "name": "西安酒店"
                        },
                        {
                            "title": "苏州酒店预订",
                            "href": "//hotels.ctrip.com/hotel/suzhou14",
                            "data-ctm": "#ctm_ref=hd_hp_hc_lst_hi_i_a_14",
                            "name": "苏州酒店"
                        },
                        {
                            "title": "长沙酒店预订",
                            "href": "//hotels.ctrip.com/hotel/changsha206",
                            "data-ctm": "#ctm_ref=hd_hp_hc_lst_hi_i_a_15",
                            "name": "长沙酒店"
                        },
                        {
                            "title": "武汉酒店预订",
                            "href": "//hotels.ctrip.com/hotel/wuhan477",
                            "data-ctm": "#ctm_ref=hd_hp_hc_lst_hi_i_a_16",
                            "name": "武汉酒店"
                        },
                        {
                            "title": "大连酒店预订",
                            "href": "//hotels.ctrip.com/hotel/dalian6",
                            "data-ctm": "#ctm_ref=hd_hp_hc_lst_hi_i_a_17",
                            "name": "大连酒店"
                        },
                        {
                            "title": "天津酒店预订",
                            "href": "//hotels.ctrip.com/hotel/tianjin3",
                            "data-ctm": "#ctm_ref=hd_hp_hc_lst_hi_i_a_18",
                            "name": "天津酒店"
                        },
                        {
                            "title": "重庆酒店预订",
                            "href": "//hotels.ctrip.com/hotel/chongqing4",
                            "data-ctm": "#ctm_ref=hd_hp_hc_lst_hi_i_a_19",
                            "name": "重庆酒店"
                        },
                        {
                            "title": "长春酒店预订",
                            "href": "//hotels.ctrip.com/hotel/changchun158",
                            "data-ctm": "#ctm_ref=hd_hp_hc_lst_hi_i_a_20",
                            "name": "长春酒店"
                        },
                        {
                            "title": "济南酒店预订",
                            "href": "//hotels.ctrip.com/hotel/jinan144",
                            "data-ctm": "#ctm_ref=hd_hp_hc_lst_hi_i_a_21",
                            "name": "济南酒店"
                        },
                        {
                            "title": "贵阳酒店预订",
                            "href": "//hotels.ctrip.com/hotel/guiyang38",
                            "data-ctm": "#ctm_ref=hd_hp_hc_lst_hi_i_a_22",
                            "name": "贵阳酒店"
                        },
                        {
                            "title": "昆明酒店预订",
                            "href": "//hotels.ctrip.com/hotel/kunming34",
                            "data-ctm": "#ctm_ref=hd_hp_hc_lst_hi_i_a_23",
                            "name": "昆明酒店"
                        },
                        {
                            "title": "郑州酒店预订",
                            "href": "//hotels.ctrip.com/hotel/zhengzhou559",
                            "data-ctm": "#ctm_ref=hd_hp_hc_lst_hi_i_a_24",
                            "name": "郑州酒店"
                        },
                        {
                            "title": "银川酒店预订",
                            "href": "//hotels.ctrip.com/hotel/yinchuan99",
                            "data-ctm": "#ctm_ref=hd_hp_hc_lst_hi_i_a_25",
                            "name": "银川酒店"
                        },
                        {
                            "title": "南昌酒店预订",
                            "href": "//hotels.ctrip.com/hotel/nanchang376",
                            "data-ctm": "#ctm_ref=hd_hp_hc_lst_hi_i_a_26",
                            "name": "南昌酒店"
                        },
                        {
                            "title": "沈阳酒店预订",
                            "href": "//hotels.ctrip.com/hotel/shenyang451",
                            "data-ctm": "#ctm_ref=hd_hp_hc_lst_hi_i_a_27",
                            "name": "沈阳酒店"
                        },
                        {
                            "title": "石家庄酒店预订",
                            "href": "//hotels.ctrip.com/hotel/shijiazhuang428",
                            "data-ctm": "#ctm_ref=hd_hp_hc_lst_hi_i_a_28",
                            "name": "石家庄酒店"
                        },
                        {
                            "title": "福州酒店预订",
                            "href": "//hotels.ctrip.com/hotel/fuzhou258",
                            "data-ctm": "#ctm_ref=hd_hp_hc_lst_hi_i_a_29",
                            "name": "福州酒店"
                        },
                        {
                            "title": "合肥酒店预订",
                            "href": "//hotels.ctrip.com/hotel/hefei278",
                            "data-ctm": "#ctm_ref=hd_hp_hc_lst_hi_i_a_30",
                            "name": "合肥酒店"
                        },
                        {
                            "title": "南宁酒店预订",
                            "href": "//hotels.ctrip.com/hotel/nanning380",
                            "data-ctm": "#ctm_ref=hd_hp_hc_lst_hi_i_a_31",
                            "name": "南宁酒店"
                        },
                        {
                            "title": "乌鲁木齐酒店预订",
                            "href": "//hotels.ctrip.com/hotel/urumqi39",
                            "data-ctm": "#ctm_ref=hd_hp_hc_lst_hi_i_a_32",
                            "name": "乌鲁木齐酒店"
                        },
                        {
                            "title": "太原酒店预订",
                            "href": "//hotels.ctrip.com/hotel/taiyuan105",
                            "data-ctm": "#ctm_ref=hd_hp_hc_lst_hi_i_a_33",
                            "name": "太原酒店"
                        },
                        {
                            "title": "哈尔滨酒店预订",
                            "href": "//hotels.ctrip.com/hotel/harbin5",
                            "data-ctm": "#ctm_ref=hd_hp_hc_lst_hi_i_a_34",
                            "name": "哈尔滨酒店"
                        },
                        {
                            "title": "兰州酒店预订",
                            "href": "//hotels.ctrip.com/hotel/lanzhou100",
                            "data-ctm": "#ctm_ref=hd_hp_hc_lst_hi_i_a_35",
                            "name": "兰州酒店"
                        },
                        {
                            "title": "台北酒店预订",
                            "href": "//hotels.ctrip.com/hotel/taipei617",
                            "data-ctm": "#ctm_ref=hd_hp_hc_lst_hi_i_a_36",
                            "name": "台北酒店"
                        },
                        {
                            "title": "拉萨酒店预订",
                            "href": "//hotels.ctrip.com/hotel/lasa41",
                            "data-ctm": "#ctm_ref=hd_hp_hc_lst_hi_i_a_37",
                            "name": "拉萨酒店"
                        },
                        {
                            "title": "西宁酒店预订",
                            "href": "//hotels.ctrip.com/hotel/xining124",
                            "data-ctm": "#ctm_ref=hd_hp_hc_lst_hi_i_a_38",
                            "name": "西宁酒店"
                        },
                        {
                            "title": "呼和浩特酒店预订",
                            "href": "//hotels.ctrip.com/hotel/huhehaote103",
                            "data-ctm": "#ctm_ref=hd_hp_hc_lst_hi_i_a_39",
                            "name": "呼和浩特酒店"
                        }
                    ],
                    "brands": [
                        {
                            "href": "//hotels.ctrip.com/brand/h132/",
                            "title": "7天连锁酒店"
                        },
                        {
                            "href": "//hotels.ctrip.com/brand/h110/",
                            "title": "如家快捷酒店"
                        },
                        {
                            "href": "//hotels.ctrip.com/brand/h48/",
                            "title": "汉庭酒店"
                        },
                        {
                            "href": "//hotels.ctrip.com/brand/h50/",
                            "title": "锦江之星"
                        },
                        {
                            "href": "//hotels.ctrip.com/brand/h35/",
                            "title": "香格里拉酒店"
                        },
                        {
                            "href": "//hotels.ctrip.com/brand/h168/",
                            "title": "格林豪泰"
                        },
                        {
                            "href": "//hotels.ctrip.com/brand/h44/",
                            "title": "莫泰168"
                        },
                        {
                            "href": "//hotels.ctrip.com/brand/h160/",
                            "title": "布丁酒店"
                        },
                        {
                            "href": "//hotels.ctrip.com/brand/h68/",
                            "title": "桔子酒店"
                        },
                        {
                            "href": "//hotels.ctrip.com/brand/h10/",
                            "title": "希尔顿"
                        },
                        {
                            "href": "//hotels.ctrip.com/brand/h166/",
                            "title": "凯宾斯基"
                        },
                        {
                            "href": "//hotels.ctrip.com/brand/h23/",
                            "title": "皇冠假日酒店"
                        },
                        {
                            "href": "//hotels.ctrip.com/brand/h15/",
                            "title": "威斯汀酒店"
                        },
                        {
                            "href": "//hotels.ctrip.com/brand/h21/",
                            "title": "假日酒店"
                        },
                        {
                            "href": "//hotels.ctrip.com/brand/h12/",
                            "title": "喜来登酒店"
                        },
                        {
                            "href": "//hotels.ctrip.com/brand/h152/",
                            "title": "维也纳酒店"
                        },
                        {
                            "href": "//hotels.ctrip.com/brand/h53/",
                            "title": "星程酒店"
                        },
                        {
                            "href": "//hotels.ctrip.com/brand/h8/",
                            "title": "宜必思酒店"
                        },
                        {
                            "href": "//hotels.ctrip.com/brand/h24/",
                            "title": "洲际酒店"
                        },
                        {
                            "href": "//hotels.ctrip.com/brand/h18/",
                            "title": "万豪酒店"
                        },
                        {
                            "href": "//hotels.ctrip.com/brand/h39/",
                            "title": "速8酒店"
                        },
                        {
                            "href": "//hotels.ctrip.com/brand/h26/",
                            "title": "凯悦酒店"
                        },
                        {
                            "href": "//hotels.ctrip.com/brand/h108/",
                            "title": "百时快捷酒店"
                        },
                        {
                            "href": "//hotels.ctrip.com/brand/h162/",
                            "title": "半岛酒店"
                        },
                        {
                            "href": "//hotels.ctrip.com/brand/h5/",
                            "title": "诺富特酒店"
                        }
                    ],
                    "intlCountryList": [
                        {
                            "url": "/international/country4/",
                            "title": "泰国酒店"
                        },
                        {
                            "url": "/international/country42/",
                            "title": "韩国酒店"
                        },
                        {
                            "url": "/international/country78/",
                            "title": "日本酒店"
                        },
                        {
                            "url": "/international/country2/",
                            "title": "马来西亚酒店"
                        },
                        {
                            "url": "/international/country108/",
                            "title": "印度尼西亚酒店"
                        },
                        {
                            "url": "/international/country66/",
                            "title": "美国酒店"
                        },
                        {
                            "url": "/international/country31/",
                            "title": "法国酒店"
                        },
                        {
                            "url": "/international/country146/",
                            "title": "马尔代夫酒店"
                        },
                        {
                            "url": "/international/singapore73/",
                            "title": "新加坡酒店"
                        },
                        {
                            "url": "/international/phuket725/",
                            "title": "普吉岛酒店"
                        },
                        {
                            "url": "/international/bali723/",
                            "title": "巴厘岛酒店"
                        },
                        {
                            "url": "/international/boracay1391/",
                            "title": "长滩岛酒店"
                        },
                        {
                            "url": "/international/seoul274/",
                            "title": "首尔酒店"
                        },
                        {
                            "url": "/international/chiangmai623/",
                            "title": "清迈酒店"
                        },
                        {
                            "url": "/international/paris192/",
                            "title": "巴黎酒店"
                        },
                        {
                            "url": "/international/london338/",
                            "title": "伦敦酒店"
                        },
                        {
                            "url": "/international/newyork633/",
                            "title": "纽约酒店"
                        },
                        {
                            "url": "/brand/h10",
                            "title": "希尔顿"
                        },
                        {
                            "url": "/brand/h23",
                            "title": "皇冠假日酒店"
                        },
                        {
                            "url": "/brand/h12",
                            "title": "喜来登酒店"
                        },
                        {
                            "url": "/brand/h24",
                            "title": "洲际酒店"
                        },
                        {
                            "url": "/brand/h18",
                            "title": "万豪酒店"
                        },
                        {
                            "url": "/brand/h26",
                            "title": "凯悦酒店"
                        },
                        {
                            "url": "/international/landmarks",
                            "title": "海外酒店大全"
                        }
                    ],
                    "wordseg": {
                        "seg1": "携程网为您推荐",
                        "seg2": "以及酒店预订、价格查询,",
                        "seg3": "信息,酒店地址:",
                        "seg4": ";涵盖酒店周边设施,酒店交通地图,真实用户点评等信息,同时还可查找",
                        "seg5": "旅游",
                        "seg6": "报价以及",
                        "seg7": "旅游攻略。",
                        "seg8": "酒店",
                        "seg9": "预订,",
                        "seg10": "酒店导航",
                        "seg11": ",酒店团购,特价酒店,选携程更放心!"
                    },
                    "intlwordseg": {
                        "seg1": "酒店信息",
                        "seg2": "携程网为您提供",
                        "seg3": "预订价格查询,涵盖该酒店电话、地址、交通、地图、点评以及",
                        "seg4": "、",
                        "seg5": "信息,使您入住",
                        "seg6": "更放心更省心。",
                        "seg7": "预订快捷入口"
                    },
                    "lvyouLink": {
                        "1": "//you.ctrip.com/place/beijing1.html",
                        "2": "//you.ctrip.com/place/shanghai2.html",
                        "3": "//you.ctrip.com/place/tianjin154.html",
                        "4": "//you.ctrip.com/place/chongqing158.html",
                        "5": "//you.ctrip.com/place/haerbin151.html",
                        "6": "//you.ctrip.com/place/dalian4.html",
                        "7": "//you.ctrip.com/place/qingdao5.html",
                        "10": "//you.ctrip.com/place/xian7.html",
                        "11": "//you.ctrip.com/place/dunhuang8.html",
                        "12": "//you.ctrip.com/place/nanjing9.html",
                        "13": "//you.ctrip.com/place/wuxi10.html",
                        "14": "//you.ctrip.com/place/suzhou11.html",
                        "15": "//you.ctrip.com/place/yangzhou12.html",
                        "16": "//you.ctrip.com/place/zhenjiang13.html",
                        "17": "//you.ctrip.com/place/hangzhou14.html",
                        "19": "//you.ctrip.com/place/zhoushan479.html",
                        "20": "//you.ctrip.com/place/chunan2249.html",
                        "22": "//you.ctrip.com/place/shaoxing18.html",
                        "23": "//you.ctrip.com/place/huangshan19.html",
                        "24": "//you.ctrip.com/place/jiujiang877.html",
                        "25": "//you.ctrip.com/place/xiamen21.html",
                        "26": "//you.ctrip.com/place/wuyishan22.html",
                        "27": "//you.ctrip.com/place/zhangjiajie23.html",
                        "28": "//you.ctrip.com/place/chengdu104.html",
                        "30": "//you.ctrip.com/place/shenzhen26.html",
                        "31": "//you.ctrip.com/place/zhuhai27.html",
                        "32": "//you.ctrip.com/place/guangzhou152.html",
                        "33": "//you.ctrip.com/place/guilin28.html",
                        "34": "//you.ctrip.com/place/kunming29.html",
                        "35": "//you.ctrip.com/place/xishuangbanna30.html",
                        "36": "//you.ctrip.com/place/dali31.html",
                        "37": "//you.ctrip.com/place/lijiang32.html",
                        "38": "//you.ctrip.com/place/guiyang33.html",
                        "39": "//you.ctrip.com/place/wulumuqi117.html",
                        "40": "//you.ctrip.com/place/tulufan2484.html",
                        "41": "//you.ctrip.com/place/lhasa36.html",
                        "42": "//you.ctrip.com/place/haikou37.html",
                        "43": "//you.ctrip.com/place/sanya61.html",
                        "44": "//you.ctrip.com/place/wenchang1007.html",
                        "45": "//you.ctrip.com/place/wanning846.html",
                        "46": "//you.ctrip.com/place/wuzhishan982.html",
                        "47": "//you.ctrip.com/place/tunchang845.html",
                        "48": "//you.ctrip.com/place/dongfang842.html",
                        "49": "//you.ctrip.com/place/ledong981.html",
                        "50": "//you.ctrip.com/place/dingan2021.html",
                        "52": "//you.ctrip.com/place/qionghai843.html",
                        "53": "//you.ctrip.com/place/qiongzhong844.html",
                        "56": "//you.ctrip.com/place/changjiang2456.html",
                        "57": "//you.ctrip.com/place/danzhou841.html",
                        "58": "//you.ctrip.com/place/hongkong38.html",
                        "59": "//you.ctrip.com/place/macau39.html",
                        "82": "//you.ctrip.com/place/nantong85.html",
                        "83": "//you.ctrip.com/place/kunshan77.html",
                        "84": "//you.ctrip.com/place/haining86.html",
                        "85": "//you.ctrip.com/place/yongjia785.html",
                        "86": "//you.ctrip.com/place/huzhou68.html",
                        "87": "//you.ctrip.com/place/fenghua1020.html",
                        "90": "//you.ctrip.com/place/linan88.html",
                        "91": "//you.ctrip.com/place/jiuzhaigou25.html",
                        "92": "//you.ctrip.com/place/rikaze100.html",
                        "93": "//you.ctrip.com/place/diqing120009.html",
                        "94": "//you.ctrip.com/place/dujiangyan911.html",
                        "95": "//you.ctrip.com/place/emeishan24.html",
                        "96": "//you.ctrip.com/place/changshu101.html",
                        "97": "//you.ctrip.com/place/ali99.html",
                        "99": "//you.ctrip.com/place/yinchuan239.html",
                        "100": "//you.ctrip.com/place/lanzhou231.html",
                        "103": "//you.ctrip.com/place/huhehaote156.html",
                        "104": "//you.ctrip.com/place/pingyao365.html",
                        "105": "//you.ctrip.com/place/taiyuan167.html",
                        "106": "//you.ctrip.com/place/wutaishan184.html",
                        "108": "//you.ctrip.com/place/linzhi126.html",
                        "109": "//you.ctrip.com/place/kashenfu2507.html",
                        "110": "//you.ctrip.com/place/yanan423.html",
                        "111": "//you.ctrip.com/place/xianyang632.html",
                        "112": "//you.ctrip.com/place/baoji422.html",
                        "118": "//you.ctrip.com/place/tongchuan907.html",
                        "119": "//you.ctrip.com/place/huayin476.html",
                        "124": "//you.ctrip.com/place/xining237.html",
                        "128": "//you.ctrip.com/place/hancheng120420.html",
                        "129": "//you.ctrip.com/place/hanzhong486.html",
                        "131": "//you.ctrip.com/place/qishan2746.html",
                        "132": "//you.ctrip.com/place/geermu332.html",
                        "134": "//you.ctrip.com/place/lingdan3011.html",
                        "135": "//you.ctrip.com/place/jiexiu2982.html",
                        "136": "//you.ctrip.com/place/datong275.html",
                        "137": "//you.ctrip.com/place/changzhi901.html",
                        "139": "//you.ctrip.com/place/linfen318.html",
                        "140": "//you.ctrip.com/place/yuncheng397.html",
                        "141": "//you.ctrip.com/place/baotou347.html",
                        "143": "//you.ctrip.com/place/qufu129.html",
                        "144": "//you.ctrip.com/place/jinan128.html",
                        "147": "//you.ctrip.com/place/qinhuangdao132.html",
                        "149": "//you.ctrip.com/place/qiqihaer395.html",
                        "150": "//you.ctrip.com/place/mudanjiang264.html",
                        "157": "//you.ctrip.com/place/jixi852.html",
                        "158": "//you.ctrip.com/place/changchun216.html",
                        "159": "//you.ctrip.com/place/jilinshi267.html",
                        "165": "//you.ctrip.com/place/dunhua1388.html",
                        "166": "//you.ctrip.com/place/kelamayi428.html",
                        "171": "//you.ctrip.com/place/ankang545.html",
                        "173": "//you.ctrip.com/place/akesu920.html",
                        "175": "//you.ctrip.com/place/aletai427.html",
                        "177": "//you.ctrip.com/place/anqing179.html",
                        "178": "//you.ctrip.com/place/anshan229.html",
                        "179": "//you.ctrip.com/place/anshun518.html",
                        "180": "//you.ctrip.com/place/anxi2647.html",
                        "181": "//you.ctrip.com/place/anyang412.html",
                        "182": "//you.ctrip.com/place/bengbu205.html",
                        "185": "//you.ctrip.com/place/baoding459.html",
                        "186": "//you.ctrip.com/place/yuxi477.html",
                        "189": "//you.ctrip.com/place/beihai140.html",
                        "197": "//you.ctrip.com/place/baoshan420.html",
                        "201": "//you.ctrip.com/place/changde417.html",
                        "202": "//you.ctrip.com/place/chifeng483.html",
                        "203": "//you.ctrip.com/place/changle2650.html",
                        "206": "//you.ctrip.com/place/changsha148.html",
                        "209": "//you.ctrip.com/place/guangde2631.html",
                        "211": "//you.ctrip.com/place/chaoyang143885.html",
                        "213": "//you.ctrip.com/place/changzhou206.html",
                        "214": "//you.ctrip.com/place/chuzhou228.html",
                        "215": "//you.ctrip.com/place/chaozhou467.html",
                        "216": "//you.ctrip.com/place/cangzhou540.html",
                        "218": "//you.ctrip.com/place/chizhou825.html",
                        "221": "//you.ctrip.com/place/dandong315.html",
                        "222": "//you.ctrip.com/place/dengfeng1014.html",
                        "223": "//you.ctrip.com/place/dongguan212.html",
                        "231": "//you.ctrip.com/place/daqing531.html",
                        "236": "//you.ctrip.com/place/dongying612.html",
                        "237": "//you.ctrip.com/place/deyang462.html",
                        "238": "//you.ctrip.com/place/danyang1038.html",
                        "245": "//you.ctrip.com/place/enshi487.html",
                        "246": "//you.ctrip.com/place/fuding613.html",
                        "247": "//you.ctrip.com/place/fengdu120029.html",
                        "251": "//you.ctrip.com/place/foshan207.html",
                        "252": "//you.ctrip.com/place/fushun514.html",
                        "254": "//you.ctrip.com/place/fuxin879.html",
                        "255": "//you.ctrip.com/place/fuwen2509.html",
                        "256": "//you.ctrip.com/place/fuyang1513.html",
                        "257": "//you.ctrip.com/place/fuyang361.html",
                        "258": "//you.ctrip.com/place/fuzhou164.html",
                        "267": "//you.ctrip.com/place/guangyuan593.html",
                        "268": "//you.ctrip.com/place/ganzhou473.html",
                        "270": "//you.ctrip.com/place/huian2680.html",
                        "272": "//you.ctrip.com/place/huaibei657.html",
                        "275": "//you.ctrip.com/place/handan495.html",
                        "278": "//you.ctrip.com/place/hefei196.html",
                        "281": "//you.ctrip.com/place/heihe265.html",
                        "282": "//you.ctrip.com/place/huaihua655.html",
                        "285": "//you.ctrip.com/place/hami2483.html",
                        "287": "//you.ctrip.com/place/huainan638.html",
                        "288": "//you.ctrip.com/place/huashan183.html",
                        "290": "//you.ctrip.com/place/hengshui461.html",
                        "292": "//you.ctrip.com/place/huangshi710.html",
                        "294": "//you.ctrip.com/place/hetianfu2487.html",
                        "297": "//you.ctrip.com/place/hengyang864.html",
                        "299": "//you.ctrip.com/place/huizhou213.html",
                        "305": "//you.ctrip.com/place/jingdezhen405.html",
                        "307": "//you.ctrip.com/place/jinggangshan171.html",
                        "308": "//you.ctrip.com/place/jinhua219.html",
                        "310": "//you.ctrip.com/place/penglai168.html",
                        "316": "//you.ctrip.com/place/jiangmen362.html",
                        "317": "//you.ctrip.com/place/jiamusi501.html",
                        "318": "//you.ctrip.com/place/jining658.html",
                        "321": "//you.ctrip.com/place/guyuan888.html",
                        "324": "//you.ctrip.com/place/jianyang2651.html",
                        "325": "//you.ctrip.com/place/jiangyin235.html",
                        "326": "//you.ctrip.com/place/jiayuguan284.html",
                        "327": "//you.ctrip.com/place/jinzhou513.html",
                        "328": "//you.ctrip.com/place/jingzhou413.html",
                        "329": "//you.ctrip.com/place/kuche1345.html",
                        "330": "//you.ctrip.com/place/kuerle429.html",
                        "331": "//you.ctrip.com/place/kaifeng165.html",
                        "333": "//you.ctrip.com/place/kaili491.html",
                        "335": "//you.ctrip.com/place/kaiping525.html",
                        "340": "//you.ctrip.com/place/langfang582.html",
                        "344": "//you.ctrip.com/place/lushan20.html",
                        "345": "//you.ctrip.com/place/leshan103.html",
                        "346": "//you.ctrip.com/place/lishui441.html",
                        "348": "//you.ctrip.com/place/longyan366.html",
                        "350": "//you.ctrip.com/place/luoyang198.html",
                        "351": "//you.ctrip.com/place/liaoyang881.html",
                        "352": "//you.ctrip.com/place/liaoyuan872.html",
                        "353": "//you.ctrip.com/place/lianyungang238.html",
                        "354": "//you.ctrip.com/place/liuzhou143.html",
                        "355": "//you.ctrip.com/place/luzhou604.html",
                        "370": "//you.ctrip.com/place/mianyang915.html",
                        "374": "//you.ctrip.com/place/nanan1521.html",
                        "375": "//you.ctrip.com/place/ningbo83.html",
                        "376": "//you.ctrip.com/place/nanchang175.html",
                        "377": "//you.ctrip.com/place/nanchong782.html",
                        "378": "//you.ctrip.com/place/ningde490.html",
                        "380": "//you.ctrip.com/place/nanning166.html",
                        "385": "//you.ctrip.com/place/nanyang591.html",
                        "387": "//you.ctrip.com/place/panjin602.html",
                        "388": "//you.ctrip.com/place/pingliang424.html",
                        "392": "//you.ctrip.com/place/pingtan2652.html",
                        "396": "//you.ctrip.com/place/pingxiang840.html",
                        "403": "//you.ctrip.com/place/yixian528.html",
                        "404": "//you.ctrip.com/place/qingyang834.html",
                        "406": "//you.ctrip.com/place/quanzhou243.html",
                        "407": "//you.ctrip.com/place/quzhou174.html",
                        "408": "//you.ctrip.com/place/ruian535.html",
                        "411": "//you.ctrip.com/place/shangrao547.html",
                        "412": "//you.ctrip.com/place/ruili1213.html",
                        "421": "//you.ctrip.com/place/suifenhe855.html",
                        "422": "//you.ctrip.com/place/shaoguan222.html",
                        "426": "//you.ctrip.com/place/shihezi1168.html",
                        "427": "//you.ctrip.com/place/liangping120023.html",
                        "428": "//you.ctrip.com/place/shijiazhuang199.html",
                        "431": "//you.ctrip.com/place/shilin271.html",
                        "433": "//you.ctrip.com/place/hanshou2822.html",
                        "436": "//you.ctrip.com/place/sanmenxia522.html",
                        "437": "//you.ctrip.com/place/sanming620.html",
                        "439": "//you.ctrip.com/place/shannan339.html",
                        "440": "//you.ctrip.com/place/siping556.html",
                        "441": "//you.ctrip.com/place/shangqiu849.html",
                        "444": "//you.ctrip.com/place/shishi245.html",
                        "446": "//you.ctrip.com/place/shaoshan346.html",
                        "447": "//you.ctrip.com/place/shantou215.html",
                        "448": "//you.ctrip.com/place/shaowu172.html",
                        "449": "//you.ctrip.com/place/shaxian2664.html",
                        "451": "//you.ctrip.com/place/shenyang155.html",
                        "452": "//you.ctrip.com/place/shiyan464.html",
                        "454": "//you.ctrip.com/place/taian746.html",
                        "455": "//you.ctrip.com/place/tacheng924.html",
                        "456": "//you.ctrip.com/place/tonghua874.html",
                        "458": "//you.ctrip.com/place/tongliao885.html",
                        "459": "//you.ctrip.com/place/tongling472.html",
                        "460": "//you.ctrip.com/place/tonglu688.html",
                        "464": "//you.ctrip.com/place/tianshui285.html",
                        "468": "//you.ctrip.com/place/tangshan200.html",
                        "470": "//you.ctrip.com/place/tiantaishan246.html",
                        "474": "//you.ctrip.com/place/wudangshan146.html",
                        "475": "//you.ctrip.com/place/weifang226.html",
                        "477": "//you.ctrip.com/place/wuhan145.html",
                        "478": "//you.ctrip.com/place/wuhu457.html",
                        "479": "//you.ctrip.com/place/weihai169.html",
                        "481": "//you.ctrip.com/place/wujiang1017.html",
                        "484": "//you.ctrip.com/place/wulanhaote1316.html",
                        "485": "//you.ctrip.com/place/yongan288.html",
                        "489": "//you.ctrip.com/place/wuyuan446.html",
                        "491": "//you.ctrip.com/place/wenzhou153.html",
                        "492": "//you.ctrip.com/place/wuzhou142.html",
                        "494": "//you.ctrip.com/place/xichang592.html",
                        "496": "//you.ctrip.com/place/xiangyang414.html",
                        "497": "//you.ctrip.com/place/xiahe2792.html",
                        "499": "//you.ctrip.com/place/xinlong2528.html",
                        "500": "//you.ctrip.com/place/xilinhaote1373.html",
                        "502": "//you.ctrip.com/place/jingxian2533.html",
                        "507": "//you.ctrip.com/place/xinxiang474.html",
                        "508": "//you.ctrip.com/place/shexian527.html",
                        "510": "//you.ctrip.com/place/xinyang448.html",
                        "512": "//you.ctrip.com/place/xuzhou230.html",
                        "513": "//you.ctrip.com/place/xinzhou783.html",
                        "514": "//you.ctrip.com/place/yibin278.html",
                        "515": "//you.ctrip.com/place/yichang313.html",
                        "517": "//you.ctrip.com/place/yichun498.html",
                        "518": "//you.ctrip.com/place/yichun743.html",
                        "521": "//you.ctrip.com/place/suzhou672.html",
                        "523": "//you.ctrip.com/place/yanji475.html",
                        "527": "//you.ctrip.com/place/yulin485.html",
                        "533": "//you.ctrip.com/place/yantai170.html",
                        "534": "//you.ctrip.com/place/yingtan186.html",
                        "536": "//you.ctrip.com/place/yiwu1005.html",
                        "537": "//you.ctrip.com/place/yixing227.html",
                        "539": "//you.ctrip.com/place/yueyang287.html",
                        "540": "//you.ctrip.com/place/yuyao98.html",
                        "541": "//you.ctrip.com/place/yanzhou1425.html",
                        "542": "//you.ctrip.com/place/zibo536.html",
                        "544": "//you.ctrip.com/place/zigong575.html",
                        "545": "//you.ctrip.com/place/zunhua1181.html",
                        "547": "//you.ctrip.com/place/zhanjiang202.html",
                        "548": "//you.ctrip.com/place/zhuji690.html",
                        "550": "//you.ctrip.com/place/zhangjiakou497.html",
                        "551": "//you.ctrip.com/place/zhumadian642.html",
                        "552": "//you.ctrip.com/place/zhaoqing269.html",
                        "553": "//you.ctrip.com/place/zhongshan233.html",
                        "555": "//you.ctrip.com/place/zhaotong929.html",
                        "556": "//you.ctrip.com/place/zhongwei1184.html",
                        "557": "//you.ctrip.com/place/gunyuan3026.html",
                        "558": "//you.ctrip.com/place/zunyi204.html",
                        "559": "//you.ctrip.com/place/zhengzhou157.html",
                        "560": "//you.ctrip.com/place/zhangzhou334.html",
                        "561": "//you.ctrip.com/place/zhouzhuang81.html",
                        "562": "//you.ctrip.com/place/chengde135.html",
                        "569": "//you.ctrip.com/place/linyi480.html",
                        "571": "//you.ctrip.com/place/jiaxing272.html",
                        "575": "//you.ctrip.com/place/changdu559.html",
                        "577": "//you.ctrip.com/place/huaian351.html",
                        "578": "//you.ctrip.com/place/taizhou402.html",
                        "579": "//you.ctrip.com/place/taizhou494.html",
                        "580": "//you.ctrip.com/place/tongxiang220.html",
                        "582": "//you.ctrip.com/place/haiyan529.html",
                        "583": "//you.ctrip.com/place/jiuhuashan182.html",
                        "589": "//you.ctrip.com/place/chaohu187.html",
                        "595": "//you.ctrip.com/place/shangyu617.html",
                        "596": "//you.ctrip.com/place/jiashan1019.html",
                        "597": "//you.ctrip.com/place/lanxi611.html",
                        "598": "//you.ctrip.com/place/xiangtan1417.html",
                        "601": "//you.ctrip.com/place/zhuzhou1174.html",
                        "603": "//you.ctrip.com/place/xinyu878.html",
                        "605": "//you.ctrip.com/place/liupanshui679.html",
                        "606": "//you.ctrip.com/place/nanping827.html",
                        "612": "//you.ctrip.com/place/chenzhou336.html",
                        "614": "//you.ctrip.com/place/zaozhuang656.html",
                        "619": "//you.ctrip.com/place/wenling546.html",
                        "621": "//you.ctrip.com/place/zhangjiagang203.html",
                        "652": "//you.ctrip.com/place/jinyun1021.html",
                        "654": "//you.ctrip.com/place/taicang255.html",
                        "657": "//you.ctrip.com/place/shennongjia147.html",
                        "658": "//you.ctrip.com/place/jiande687.html",
                        "659": "//you.ctrip.com/place/anji686.html",
                        "660": "//you.ctrip.com/place/xianggelila106.html",
                        "662": "//you.ctrip.com/place/jiuquan282.html",
                        "663": "//you.ctrip.com/place/zhangye283.html",
                        "664": "//you.ctrip.com/place/wuwei290.html",
                        "667": "//you.ctrip.com/place/putian317.html",
                        "692": "//you.ctrip.com/place/yangjiang363.html",
                        "693": "//you.ctrip.com/place/heyuan350.html",
                        "696": "//you.ctrip.com/place/xuyi2100.html",
                        "697": "//you.ctrip.com/place/qidong1542.html",
                        "729": "//you.ctrip.com/place/taishan673.html",
                        "732": "//you.ctrip.com/place/yueqing1022.html",
                        "750": "//you.ctrip.com/place/guanghan1349.html",
                        "755": "//you.ctrip.com/place/dongyang608.html",
                        "833": "//you.ctrip.com/place/rongcheng899.html",
                        "866": "//you.ctrip.com/place/fenghuang988.html",
                        "868": "//you.ctrip.com/place/xianju691.html",
                        "869": "//you.ctrip.com/place/luoping676.html",
                        "871": "//you.ctrip.com/place/yangshuo702.html",
                        "872": "//you.ctrip.com/place/xinchang75.html",
                        "887": "//you.ctrip.com/place/tunqiao2520.html",
                        "891": "//you.ctrip.com/place/guzhen2592.html",
                        "893": "//you.ctrip.com/place/lujiang2602.html",
                        "894": "//you.ctrip.com/place/donghai3078.html",
                        "895": "//you.ctrip.com/place/xinyi1064.html",
                        "905": "//you.ctrip.com/place/xinji2541.html",
                        "907": "//you.ctrip.com/place/yangquan904.html",
                        "909": "//you.ctrip.com/place/tengzhou1371.html",
                        "918": "//you.ctrip.com/place/loudi866.html",
                        "920": "//you.ctrip.com/place/lengshuijiang2835.html",
                        "921": "//you.ctrip.com/place/xinhua2856.html",
                        "929": "//you.ctrip.com/place/pujiang1002.html",
                        "933": "//you.ctrip.com/place/jian876.html",
                        "935": "//you.ctrip.com/place/xinfeng2380.html",
                        "936": "//you.ctrip.com/place/dingnan2401.html",
                        "937": "//you.ctrip.com/place/xianning861.html",
                        "940": "//you.ctrip.com/place/leiyang1849.html",
                        "941": "//you.ctrip.com/place/huangmei2689.html",
                        "943": "//you.ctrip.com/place/yongxiu1848.html",
                        "944": "//you.ctrip.com/place/tongcheng1847.html",
                        "945": "//you.ctrip.com/place/tianzhushan161.html",
                        "947": "//you.ctrip.com/place/xingtai460.html",
                        "948": "//you.ctrip.com/place/susong2597.html",
                        "951": "//you.ctrip.com/place/hebi595.html",
                        "956": "//you.ctrip.com/place/jieyang835.html",
                        "958": "//you.ctrip.com/place/gongyi1846.html",
                        "959": "//you.ctrip.com/place/wuyi1004.html",
                        "960": "//you.ctrip.com/place/yongkang189.html",
                        "961": "//you.ctrip.com/place/qingtian2247.html",
                        "963": "//you.ctrip.com/place/haicheng607.html",
                        "966": "//you.ctrip.com/place/wafangdian2136.html",
                        "969": "//you.ctrip.com/place/xingyang1842.html",
                        "970": "//you.ctrip.com/place/yongzhou869.html",
                        "973": "//you.ctrip.com/place/longyou812.html",
                        "975": "//you.ctrip.com/place/duyun678.html",
                        "977": "//you.ctrip.com/place/dongxiang2404.html",
                        "979": "//you.ctrip.com/place/zhangshu1160.html",
                        "981": "//you.ctrip.com/place/liling2837.html",
                        "984": "//you.ctrip.com/place/xuanwei2160.html",
                        "985": "//you.ctrip.com/place/qujing509.html",
                        "986": "//you.ctrip.com/place/zhenyuan1840.html",
                        "992": "//you.ctrip.com/place/ezhou858.html",
                        "996": "//you.ctrip.com/place/gutian2674.html",
                        "1000": "//you.ctrip.com/place/jiangshan1000.html",
                        "1001": "//you.ctrip.com/place/yushan1013.html",
                        "1002": "//you.ctrip.com/place/yiyang2406.html",
                        "1003": "//you.ctrip.com/place/fengcheng1839.html",
                        "1005": "//you.ctrip.com/place/ningguo1167.html",
                        "1006": "//you.ctrip.com/place/xuancheng504.html",
                        "1008": "//you.ctrip.com/place/jixi2627.html",
                        "1010": "//you.ctrip.com/place/fengyang2626.html",
                        "1011": "//you.ctrip.com/place/ningxiang2846.html",
                        "1016": "//you.ctrip.com/place/fanchang2611.html",
                        "1021": "//you.ctrip.com/place/dingxi830.html",
                        "1022": "//you.ctrip.com/place/xingping2739.html",
                        "1023": "//you.ctrip.com/place/lingbao1162.html",
                        "1024": "//you.ctrip.com/place/maanshan503.html",
                        "1030": "//you.ctrip.com/place/weinan908.html",
                        "1035": "//you.ctrip.com/place/zhongning2328.html",
                        "1037": "//you.ctrip.com/place/haiyang1188.html",
                        "1038": "//you.ctrip.com/place/laiyang1838.html",
                        "1040": "//you.ctrip.com/place/gaomi1837.html",
                        "1043": "//you.ctrip.com/place/jiaozhou1836.html",
                        "1044": "//you.ctrip.com/place/qingzhou898.html",
                        "1046": "//you.ctrip.com/place/gongzhuling1360.html",
                        "1048": "//you.ctrip.com/place/tieling589.html",
                        "1050": "//you.ctrip.com/place/huludao345.html",
                        "1052": "//you.ctrip.com/place/changli1835.html",
                        "1053": "//you.ctrip.com/place/luanxian2573.html",
                        "1054": "//you.ctrip.com/place/jiangyou1037.html",
                        "1058": "//you.ctrip.com/place/dengzhou2269.html",
                        "1068": "//you.ctrip.com/place/bazhou1834.html",
                        "1069": "//you.ctrip.com/place/renqiu1180.html",
                        "1070": "//you.ctrip.com/place/suning2571.html",
                        "1071": "//you.ctrip.com/place/liaocheng635.html",
                        "1073": "//you.ctrip.com/place/liangshan2899.html",
                        "1074": "//you.ctrip.com/place/heze708.html",
                        "1078": "//you.ctrip.com/place/bozhou404.html",
                        "1079": "//you.ctrip.com/place/macheng1833.html",
                        "1081": "//you.ctrip.com/place/qichun2725.html",
                        "1082": "//you.ctrip.com/place/shucheng2630.html",
                        "1083": "//you.ctrip.com/place/manzhouli319.html",
                        "1087": "//you.ctrip.com/place/suixi2594.html",
                        "1088": "//you.ctrip.com/place/luohe664.html",
                        "1089": "//you.ctrip.com/place/leping2417.html",
                        "1090": "//you.ctrip.com/place/dingzhou2562.html",
                        "1092": "//you.ctrip.com/place/jincheng665.html",
                        "1093": "//you.ctrip.com/place/jiaozuo663.html",
                        "1094": "//you.ctrip.com/place/xuchang465.html",
                        "1095": "//you.ctrip.com/place/houma3019.html",
                        "1097": "//you.ctrip.com/place/panzhihua786.html",
                        "1100": "//you.ctrip.com/place/guangan693.html",
                        "1105": "//you.ctrip.com/place/maoming615.html",
                        "1106": "//you.ctrip.com/place/rizhao622.html",
                        "1107": "//you.ctrip.com/place/changxing1832.html",
                        "1108": "//you.ctrip.com/place/longnan2424.html",
                        "1110": "//you.ctrip.com/place/jishou865.html",
                        "1111": "//you.ctrip.com/place/shaoyang867.html",
                        "1113": "//you.ctrip.com/place/yulin141.html",
                        "1114": "//you.ctrip.com/place/dushan2354.html",
                        "1115": "//you.ctrip.com/place/meihekou2468.html",
                        "1116": "//you.ctrip.com/place/baicheng870.html",
                        "1117": "//you.ctrip.com/place/suizhou860.html",
                        "1119": "//you.ctrip.com/place/lingyuan2142.html",
                        "1121": "//you.ctrip.com/place/jingmen634.html",
                        "1122": "//you.ctrip.com/place/dangyang2699.html",
                        "1123": "//you.ctrip.com/place/shimen143838.html",
                        "1125": "//you.ctrip.com/place/yiyang868.html",
                        "1128": "//you.ctrip.com/place/suihua856.html",
                        "1133": "//you.ctrip.com/place/wuhai677.html",
                        "1135": "//you.ctrip.com/place/zhalantun2972.html",
                        "1136": "//you.ctrip.com/place/yakeshi887.html",
                        "1139": "//you.ctrip.com/place/xingyi519.html",
                        "1140": "//you.ctrip.com/place/baise524.html",
                        "1141": "//you.ctrip.com/place/bengguan3062.html",
                        "1148": "//you.ctrip.com/place/meishan914.html",
                        "1155": "//you.ctrip.com/place/benxi463.html",
                        "1158": "//you.ctrip.com/place/jinchang832.html",
                        "1200": "//you.ctrip.com/place/yancheng493.html",
                        "1201": "//you.ctrip.com/place/ninghai689.html",
                        "1205": "//you.ctrip.com/place/tongli95.html",
                        "1206": "//you.ctrip.com/place/pinghu533.html",
                        "1208": "//you.ctrip.com/place/cixi543.html",
                        "1209": "//you.ctrip.com/place/linhai544.html",
                        "1212": "//you.ctrip.com/place/shengzhou553.html",
                        "1219": "//you.ctrip.com/place/wuxue1445077.html",
                        "1222": "//you.ctrip.com/place/daocheng342.html",
                        "1223": "//you.ctrip.com/place/jiangdu560.html",
                        "1224": "//you.ctrip.com/place/yizheng562.html",
                        "1227": "//you.ctrip.com/place/tongren2367.html",
                        "1232": "//you.ctrip.com/place/puyang581.html",
                        "1233": "//you.ctrip.com/place/dazhou910.html",
                        "1236": "//you.ctrip.com/place/lincang926.html",
                        "1300": "//you.ctrip.com/place/yingkou692.html",
                        "1303": "//you.ctrip.com/place/songyuan873.html",
                        "1315": "//you.ctrip.com/place/yongji1772.html",
                        "1317": "//you.ctrip.com/place/shuozhou903.html",
                        "1322": "//you.ctrip.com/place/dongming1768.html",
                        "1325": "//you.ctrip.com/place/kuitun1169.html",
                        "1330": "//you.ctrip.com/place/shiping2191.html",
                        "1333": "//you.ctrip.com/place/kaiyuan1318.html",
                        "1358": "//you.ctrip.com/place/liyang598.html",
                        "1367": "//you.ctrip.com/place/deqing1011.html",
                        "1370": "//you.ctrip.com/place/dezhou603.html",
                        "1371": "//you.ctrip.com/place/suining605.html",
                        "1372": "//you.ctrip.com/place/songpan606.html",
                        "1422": "//you.ctrip.com/place/qingyuan517.html",
                        "1436": "//you.ctrip.com/place/shanwei624.html",
                        "1443": "//you.ctrip.com/place/taishun625.html",
                        "1452": "//you.ctrip.com/place/laiwu794.html",
                        "1453": "//you.ctrip.com/place/jinzhong639.html",
                        "1454": "//you.ctrip.com/place/jiyuan640.html",
                        "1466": "//you.ctrip.com/place/antu643.html",
                        "1472": "//you.ctrip.com/place/suqian492.html",
                        "1474": "//you.ctrip.com/place/fengning568.html",
                        "1490": "//you.ctrip.com/place/xiaogan862.html",
                        "1495": "//you.ctrip.com/place/hekou2201.html",
                        "1501": "//you.ctrip.com/place/gaobeidian1124.html",
                        "1511": "//you.ctrip.com/place/yuanbeng3014.html",
                        "1517": "//you.ctrip.com/place/hanyuan3090.html",
                        "1518": "//you.ctrip.com/place/guigang711.html",
                        "1521": "//you.ctrip.com/place/chibi1135.html",
                        "1522": "//you.ctrip.com/place/laiyuan2549.html",
                        "1541": "//you.ctrip.com/place/baiyin828.html",
                        "1550": "//you.ctrip.com/place/gujiao3010.html",
                        "1555": "//you.ctrip.com/place/zaoyang2718.html",
                        "1556": "//you.ctrip.com/place/anlu2685.html",
                        "1557": "//you.ctrip.com/place/zhijiang1507.html",
                        "1558": "//you.ctrip.com/place/songzi2697.html",
                        "1560": "//you.ctrip.com/place/ziyang918.html",
                        "1565": "//you.ctrip.com/place/kaiyuan1336.html",
                        "1575": "//you.ctrip.com/place/anbeng2517.html",
                        "1585": "//you.ctrip.com/place/jiaohe2471.html",
                        "1597": "//you.ctrip.com/place/neijiang823.html",
                        "1599": "//you.ctrip.com/place/qitaihe1179.html",
                        "1609": "//you.ctrip.com/place/mishan1508.html",
                        "1610": "//you.ctrip.com/place/yushu2478.html",
                        "1611": "//you.ctrip.com/place/hegang811.html",
                        "1617": "//you.ctrip.com/place/shuangyashan854.html",
                        "1624": "//you.ctrip.com/place/zhaodong2246.html",
                        "1632": "//you.ctrip.com/place/sanhe671.html",
                        "1633": "//you.ctrip.com/place/yutian2568.html",
                        "1646": "//you.ctrip.com/place/zhuanghe2148.html",
                        "1658": "//you.ctrip.com/place/aershan120084.html",
                        "1664": "//you.ctrip.com/place/yabuli815.html",
                        "1677": "//you.ctrip.com/place/fangchenggang698.html",
                        "1680": "//you.ctrip.com/place/shenmu2762.html",
                        "1696": "//you.ctrip.com/place/caoxian2876.html",
                        "1697": "//you.ctrip.com/place/xishui2694.html",
                        "1700": "//you.ctrip.com/place/ruichang2397.html",
                        "1705": "//you.ctrip.com/place/liuan502.html",
                        "1706": "//you.ctrip.com/place/hailuogou705.html",
                        "1708": "//you.ctrip.com/place/libo659.html",
                        "1803": "//you.ctrip.com/place/jinjiang675.html",
                        "1804": "//you.ctrip.com/place/laixi1445084.html",
                        "1819": "//you.ctrip.com/place/tengchong696.html",
                        "1820": "//you.ctrip.com/place/binzhou660.html",
                        "1823": "//you.ctrip.com/place/xiangshan723.html",
                        "1838": "//you.ctrip.com/place/abazhou744.html",
                        "1839": "//you.ctrip.com/place/jintan1538.html",
                        "1840": "//you.ctrip.com/place/pingxiang714.html",
                        "1882": "//you.ctrip.com/place/xiantao775.html",
                        "1884": "//you.ctrip.com/place/feicheng1387.html",
                        "1892": "//you.ctrip.com/place/laibin839.html",
                        "1896": "//you.ctrip.com/place/chongzuo837.html",
                        "1899": "//you.ctrip.com/place/qinzhou697.html",
                        "1904": "//you.ctrip.com/place/shizong2193.html",
                        "1905": "//you.ctrip.com/place/zhashui2766.html",
                        "1937": "//you.ctrip.com/place/mizhi1895.html",
                        "1946": "//you.ctrip.com/place/pucheng2738.html",
                        "1980": "//you.ctrip.com/place/dingxing2558.html",
                        "1983": "//you.ctrip.com/place/xushui1564.html",
                        "1991": "//you.ctrip.com/place/xinle2543.html",
                        "1993": "//you.ctrip.com/place/zhengding2581.html",
                        "1996": "//you.ctrip.com/place/yuanshi2561.html",
                        "2000": "//you.ctrip.com/place/longyao2567.html",
                        "2033": "//you.ctrip.com/place/wuan1566.html",
                        "2057": "//you.ctrip.com/place/gaobeng3003.html",
                        "2109": "//you.ctrip.com/place/yichuan2282.html",
                        "2155": "//you.ctrip.com/place/laohekou2711.html",
                        "2157": "//you.ctrip.com/place/gucheng2719.html",
                        "2230": "//you.ctrip.com/place/qianan1397.html",
                        "2248": "//you.ctrip.com/place/lianyuan2836.html",
                        "2313": "//you.ctrip.com/place/shuifu2200.html",
                        "2339": "//you.ctrip.com/place/shaodong1365.html",
                        "2346": "//you.ctrip.com/place/mayang2844.html",
                        "2431": "//you.ctrip.com/place/mengzi1201.html",
                        "2442": "//you.ctrip.com/place/jianshui2151.html",
                        "2487": "//you.ctrip.com/place/fuquan2363.html",
                        "2542": "//you.ctrip.com/place/delingha891.html",
                        "2548": "//you.ctrip.com/place/bole922.html",
                        "2552": "//you.ctrip.com/place/daying1395.html",
                        "2580": "//you.ctrip.com/place/luochuan2772.html",
                        "2607": "//you.ctrip.com/place/wufeng2712.html",
                        "2651": "//you.ctrip.com/place/genhe2955.html",
                        "2708": "//you.ctrip.com/place/xinan2315.html",
                        "2886": "//you.ctrip.com/place/wenxi2105.html",
                        "3017": "//you.ctrip.com/place/ningan2233.html",
                        "3053": "//you.ctrip.com/place/meizhou523.html",
                        "3055": "//you.ctrip.com/place/longquan2033.html",
                        "3221": "//you.ctrip.com/place/zhoukou709.html",
                        "3222": "//you.ctrip.com/place/pingdingshan810.html",
                        "3230": "//you.ctrip.com/place/jurong817.html",
                        "3233": "//you.ctrip.com/place/dongtai916.html",
                        "3275": "//you.ctrip.com/place/langzhong831.html",
                        "3277": "//you.ctrip.com/place/yaan917.html",
                        "3309": "//you.ctrip.com/place/hengdian1096.html",
                        "3326": "//you.ctrip.com/place/kanasi816.html",
                        "3327": "//you.ctrip.com/place/buerjin1010.html",
                        "3839": "//you.ctrip.com/place/naqu120387.html",
                        "3852": "//you.ctrip.com/place/liping1346.html",
                        "3863": "//you.ctrip.com/place/shouguang1089.html",
                        "3881": "//you.ctrip.com/place/siyang1097.html",
                        "3884": "//you.ctrip.com/place/fuzhou875.html",
                        "3885": "//you.ctrip.com/place/huanggang859.html",
                        "3886": "//you.ctrip.com/place/baishan871.html",
                        "3887": "//you.ctrip.com/place/bayannaoer883.html",
                        "3906": "//you.ctrip.com/place/jimo1532.html",
                        "3908": "//you.ctrip.com/place/wendeng900.html",
                        "3909": "//you.ctrip.com/place/jiaonan897.html",
                        "3913": "//you.ctrip.com/place/yiyuan1134.html",
                        "3914": "//you.ctrip.com/place/daye1543.html",
                        "3915": "//you.ctrip.com/place/laizhou1161.html",
                        "3917": "//you.ctrip.com/place/fuqing1152.html",
                        "3920": "//you.ctrip.com/place/tianmen987.html",
                        "3922": "//you.ctrip.com/place/gejiu925.html",
                        "3923": "//you.ctrip.com/place/haian1548.html",
                        "3924": "//you.ctrip.com/place/pingshan1139.html",
                        "3925": "//you.ctrip.com/place/yuhuan1006.html",
                        "3926": "//you.ctrip.com/place/jingjiang1554.html",
                        "3927": "//you.ctrip.com/place/dexing1558.html",
                        "3928": "//you.ctrip.com/place/deqin2178.html",
                        "3929": "//you.ctrip.com/place/pizhou1560.html",
                        "3930": "//you.ctrip.com/place/luliang1140.html",
                        "3933": "//you.ctrip.com/place/yunfu836.html",
                        "3934": "//you.ctrip.com/place/xiaoyi1144.html",
                        "3935": "//you.ctrip.com/place/yingcheng1145.html",
                        "3937": "//you.ctrip.com/place/yangzhong1563.html",
                        "3938": "//you.ctrip.com/place/zhongxiang863.html",
                        "3940": "//you.ctrip.com/place/wudi2877.html",
                        "3941": "//you.ctrip.com/place/geshan3053.html",
                        "3943": "//you.ctrip.com/place/pingdu1565.html",
                        "3944": "//you.ctrip.com/place/binxian2740.html",
                        "3946": "//you.ctrip.com/place/longkou1567.html",
                        "3966": "//you.ctrip.com/place/bazhong703.html",
                        "3969": "//you.ctrip.com/place/hechi838.html",
                        "3970": "//you.ctrip.com/place/gaoan1165.html",
                        "3971": "//you.ctrip.com/place/ruijin1159.html",
                        "3972": "//you.ctrip.com/place/yidou2705.html",
                        "3976": "//you.ctrip.com/place/eerduosi600.html",
                        "3977": "//you.ctrip.com/place/zixing1570.html",
                        "3980": "//you.ctrip.com/place/taixing1172.html",
                        "3989": "//you.ctrip.com/place/jiyang2884.html",
                        "3990": "//you.ctrip.com/place/donge2893.html",
                        "3996": "//you.ctrip.com/place/puer928.html",
                        "4004": "//you.ctrip.com/place/jingbian2745.html",
                        "4026": "//you.ctrip.com/place/jiangyan1581.html",
                        "4029": "//you.ctrip.com/place/dafeng995.html",
                        "4125": "//you.ctrip.com/place/gaoyou2075.html",
                        "4130": "//you.ctrip.com/place/kangding344.html",
                        "4131": "//you.ctrip.com/place/yangcheng2076.html",
                        "4132": "//you.ctrip.com/place/xianghe2526.html",
                        "4136": "//you.ctrip.com/place/xinmi1163.html",
                        "4137": "//you.ctrip.com/place/hunchun2461.html",
                        "4139": "//you.ctrip.com/place/rugao1372.html",
                        "4144": "//you.ctrip.com/place/zhucheng2077.html",
                        "4146": "//you.ctrip.com/place/hezhou707.html",
                        "4147": "//you.ctrip.com/place/yizhou1319.html",
                        "4154": "//you.ctrip.com/place/qianjiang985.html",
                        "4159": "//you.ctrip.com/place/boao2078.html",
                        "4182": "//you.ctrip.com/place/baoying3073.html",
                        "4185": "//you.ctrip.com/place/liuyang1337.html",
                        "4216": "//you.ctrip.com/place/shizuishan889.html",
                        "4251": "//you.ctrip.com/place/zhaoyuan1352.html",
                        "4255": "//you.ctrip.com/place/hulunbeier458.html",
                        "7518": "//you.ctrip.com/place/wulanchabu1358.html",
                        "7519": "//you.ctrip.com/place/zoucheng1359.html",
                        "7521": "//you.ctrip.com/place/longsheng1445120.html",
                        "7525": "//you.ctrip.com/place/beichuan1934.html",
                        "7530": "//you.ctrip.com/place/tanghai1947.html",
                        "7531": "//you.ctrip.com/place/daxin963.html",
                        "7533": "//you.ctrip.com/place/pingyang1012.html",
                        "7534": "//you.ctrip.com/place/changjifu2503.html",
                        "7536": "//you.ctrip.com/place/pingyi1875.html",
                        "7537": "//you.ctrip.com/place/liangshan912.html",
                        "7540": "//you.ctrip.com/place/maerkang913.html",
                        "7544": "//you.ctrip.com/place/chishui1770.html",
                        "7549": "//you.ctrip.com/place/luding2059.html",
                        "7551": "//you.ctrip.com/place/shangluo906.html",
                        "7552": "//you.ctrip.com/place/pingding2057.html",
                        "7553": "//you.ctrip.com/place/qionglai1403.html",
                        "7554": "//you.ctrip.com/place/rushan2046.html",
                        "7557": "//you.ctrip.com/place/rudong997.html",
                        "7558": "//you.ctrip.com/place/sanmen1945.html",
                        "7559": "//you.ctrip.com/place/haimen1935.html",
                        "7560": "//you.ctrip.com/place/miluo989.html",
                        "7571": "//you.ctrip.com/place/panan2028.html",
                        "7575": "//you.ctrip.com/place/shehong1944.html",
                        "7577": "//you.ctrip.com/place/tianchang1739.html",
                        "7578": "//you.ctrip.com/place/xinghua1946.html",
                        "7586": "//you.ctrip.com/place/kaihua1001.html",
                        "7587": "//you.ctrip.com/place/wuzhong890.html",
                        "7590": "//you.ctrip.com/place/changshan1939.html",
                        "7592": "//you.ctrip.com/place/nankang1776.html",
                        "7593": "//you.ctrip.com/place/zhangqiu2027.html",
                        "7594": "//you.ctrip.com/place/yuanyang2032.html",
                        "7596": "//you.ctrip.com/place/fufeng1880.html",
                        "7599": "//you.ctrip.com/place/tianquan2056.html",
                        "7604": "//you.ctrip.com/place/fenyang2053.html",
                        "7605": "//you.ctrip.com/place/zhuozhou848.html",
                        "7606": "//you.ctrip.com/place/wuchuan1898.html",
                        "7618": "//you.ctrip.com/place/honghu2031.html",
                        "7619": "//you.ctrip.com/place/renhuai1905.html",
                        "7625": "//you.ctrip.com/place/guangrao1769.html",
                        "7626": "//you.ctrip.com/place/erlianhaote2976.html",
                        "7629": "//you.ctrip.com/place/botou1729.html",
                        "7631": "//you.ctrip.com/place/lvliang902.html",
                        "7632": "//you.ctrip.com/place/wugang1940.html",
                        "7637": "//you.ctrip.com/place/luanchuan1930.html",
                        "7638": "//you.ctrip.com/place/eerguna2026.html",
                        "7639": "//you.ctrip.com/place/mengcheng1872.html",
                        "7644": "//you.ctrip.com/place/huanghua1868.html",
                        "7646": "//you.ctrip.com/place/youyang1903.html",
                        "7650": "//you.ctrip.com/place/changge2055.html",
                        "7651": "//you.ctrip.com/place/ningcheng1736.html",
                        "7663": "//you.ctrip.com/place/daxinganling396.html",
                        "7665": "//you.ctrip.com/place/suichang1431.html",
                        "7666": "//you.ctrip.com/place/cangnan2049.html",
                        "7667": "//you.ctrip.com/place/luotian2717.html",
                        "7669": "//you.ctrip.com/place/qixia1445082.html",
                        "7670": "//you.ctrip.com/place/longhushan160.html",
                        "7673": "//you.ctrip.com/place/yuncheng2898.html",
                        "7674": "//you.ctrip.com/place/changdao505.html",
                        "7675": "//you.ctrip.com/place/yinan2036.html",
                        "7679": "//you.ctrip.com/place/jingning2034.html",
                        "7680": "//you.ctrip.com/place/kenli1767.html",
                        "7682": "//you.ctrip.com/place/luxi2024.html",
                        "7685": "//you.ctrip.com/place/danjiangkou1018.html",
                        "7687": "//you.ctrip.com/place/gaocheng2081.html",
                        "7688": "//you.ctrip.com/place/leting2082.html",
                        "7692": "//you.ctrip.com/place/jinhu368.html",
                        "7693": "//you.ctrip.com/place/lanshui3085.html",
                        "7694": "//you.ctrip.com/place/huining3082.html",
                        "7695": "//you.ctrip.com/place/xiangshui3076.html",
                        "7696": "//you.ctrip.com/place/gaochun3084.html",
                        "7697": "//you.ctrip.com/place/lishui3087.html",
                        "7700": "//you.ctrip.com/place/wulian2084.html",
                        "7707": "//you.ctrip.com/place/longnan1491.html",
                        "7712": "//you.ctrip.com/place/pingluo2102.html",
                        "7713": "//you.ctrip.com/place/huangzhong2645.html",
                        "7714": "//you.ctrip.com/place/junan2104.html",
                        "7716": "//you.ctrip.com/place/dae3130.html",
                        "7728": "//you.ctrip.com/place/dongping2894.html",
                        "7733": "//you.ctrip.com/place/yanshan2553.html",
                        "7736": "//you.ctrip.com/place/anqiu2867.html",
                        "7744": "//you.ctrip.com/place/jianyang3122.html",
                        "7745": "//you.ctrip.com/place/jinxiang2881.html",
                        "7748": "//you.ctrip.com/place/yijinhuoluoqi2966.html",
                        "7749": "//you.ctrip.com/place/dalateqi2964.html",
                        "7752": "//you.ctrip.com/place/haidong120010.html",
                        "7758": "//you.ctrip.com/place/zouping2911.html",
                        "7759": "//you.ctrip.com/place/hejian2522.html",
                        "7766": "//you.ctrip.com/place/yuzhou2301.html",
                        "7771": "//you.ctrip.com/place/xintai2886.html",
                        "7772": "//you.ctrip.com/place/hejin3012.html",
                        "7783": "//you.ctrip.com/place/leling2896.html",
                        "7789": "//you.ctrip.com/place/yunhe2251.html",
                        "7791": "//you.ctrip.com/place/yiliang2177.html",
                        "7792": "//you.ctrip.com/place/wujiaju2493.html",
                        "7802": "//you.ctrip.com/place/huangnan120042.html",
                        "7803": "//you.ctrip.com/place/hongjiang2825.html",
                        "7807": "//you.ctrip.com/place/haibei120014.html",
                        "7823": "//you.ctrip.com/place/faku2131.html",
                        "7829": "//you.ctrip.com/place/chengxian829.html",
                        "7834": "//you.ctrip.com/place/reergai3165.html",
                        "7836": "//you.ctrip.com/place/wencheng1003.html",
                        "7839": "//you.ctrip.com/place/qihe2885.html",
                        "7841": "//you.ctrip.com/place/dongtou506.html",
                        "7842": "//you.ctrip.com/place/chiping2887.html",
                        "7843": "//you.ctrip.com/place/eryuan2180.html",
                        "10253": "//you.ctrip.com/place/chongli2548.html",
                        "10254": "//you.ctrip.com/place/anning2150.html",
                        "10272": "//you.ctrip.com/place/danba704.html",
                        "10273": "//you.ctrip.com/place/juxian2888.html",
                        "10296": "//you.ctrip.com/place/hongya3096.html",
                        "10297": "//you.ctrip.com/place/changle2878.html",
                        "10298": "//you.ctrip.com/place/maoxian3164.html",
                        "19953": "//you.ctrip.com/place/pingyuan2882.html",
                        "19954": "//you.ctrip.com/place/qingyun2890.html",
                        "19955": "//you.ctrip.com/place/qingyuan2248.html",
                        "19956": "//you.ctrip.com/place/gaotang2902.html",
                        "19958": "//you.ctrip.com/place/guide2636.html",
                        "19959": "//you.ctrip.com/place/mengyin2870.html",
                        "20743": "//you.ctrip.com/place/weishan2869.html",
                        "20756": "//you.ctrip.com/place/pingyin2879.html",
                        "20793": "//you.ctrip.com/place/changshun120452.html",
                        "20794": "//you.ctrip.com/place/lingwu2323.html",
                        "20805": "//you.ctrip.com/place/huantai2910.html",
                        "20806": "//you.ctrip.com/place/linqu2907.html",
                        "20808": "//you.ctrip.com/place/jixian3038.html",
                        "20809": "//you.ctrip.com/place/linshu2909.html",
                        "20810": "//you.ctrip.com/place/yunyang120028.html",
                        "20812": "//you.ctrip.com/place/songxian1445115.html",
                        "20825": "//you.ctrip.com/place/guanna3086.html",
                        "20826": "//you.ctrip.com/place/liulin3016.html",
                        "20833": "//you.ctrip.com/place/yanggu2889.html",
                        "20846": "//you.ctrip.com/place/huishui2372.html",
                        "20849": "//you.ctrip.com/place/yongtai2665.html",
                        "20853": "//you.ctrip.com/place/kuandian2137.html",
                        "20856": "//you.ctrip.com/place/xinwen3120.html",
                        "20860": "//you.ctrip.com/place/rucheng2852.html",
                        "20868": "//you.ctrip.com/place/lingao2458.html",
                        "20874": "//you.ctrip.com/place/taihe2601.html",
                        "20876": "//you.ctrip.com/place/gongan2714.html",
                        "20877": "//you.ctrip.com/place/kaiyang2342.html",
                        "20878": "//you.ctrip.com/place/lichuan2421.html",
                        "20879": "//you.ctrip.com/place/lufeng2188.html",
                        "20884": "//you.ctrip.com/place/fengjie120033.html",
                        "20896": "//you.ctrip.com/place/luquan2579.html",
                        "20899": "//you.ctrip.com/place/huize2212.html",
                        "20903": "//you.ctrip.com/place/yanbian3139.html",
                        "20916": "//you.ctrip.com/place/binhai3074.html",
                        "20918": "//you.ctrip.com/place/ningjin2523.html",
                        "20919": "//you.ctrip.com/place/chengjiang2171.html",
                        "20922": "//you.ctrip.com/place/jianshi2696.html",
                        "20924": "//you.ctrip.com/place/fengxian3080.html",
                        "20930": "//you.ctrip.com/place/fuping2771.html",
                        "20934": "//you.ctrip.com/place/cangwu3052.html",
                        "20935": "//you.ctrip.com/place/hengfeng2382.html",
                        "20936": "//you.ctrip.com/place/ningyuan2847.html",
                        "20938": "//you.ctrip.com/place/tancheng2908.html",
                        "20958": "//you.ctrip.com/place/huayuan2827.html",
                        "20960": "//you.ctrip.com/place/yuanmou2197.html",
                        "20963": "//you.ctrip.com/place/wenshan511.html",
                        "20965": "//you.ctrip.com/place/shuangbai2196.html",
                        "20967": "//you.ctrip.com/place/changning3114.html",
                        "20970": "//you.ctrip.com/place/lantian2755.html",
                        "20976": "//you.ctrip.com/place/duolun2967.html",
                        "20978": "//you.ctrip.com/place/dingyuan2605.html",
                        "20980": "//you.ctrip.com/place/xiapu1154.html",
                        "20985": "//you.ctrip.com/place/jingyang2749.html",
                        "20990": "//you.ctrip.com/place/jinzhou2536.html",
                        "20996": "//you.ctrip.com/place/shanxian2897.html",
                        "20997": "//you.ctrip.com/place/daming2554.html",
                        "21000": "//you.ctrip.com/place/yanling2278.html",
                        "21001": "//you.ctrip.com/place/keshiketengqi2971.html",
                        "21004": "//you.ctrip.com/place/jingxian2529.html",
                        "21008": "//you.ctrip.com/place/xiuning2625.html",
                        "21009": "//you.ctrip.com/place/xinzheng2264.html",
                        "21022": "//you.ctrip.com/place/kuancheng2542.html",
                        "21024": "//you.ctrip.com/place/tonggu2425.html",
                        "21025": "//you.ctrip.com/place/baisha2455.html",
                        "21026": "//you.ctrip.com/place/changchixian2985.html",
                        "21027": "//you.ctrip.com/place/wuhuxian2614.html",
                        "21052": "//you.ctrip.com/place/changyang2690.html",
                        "21055": "//you.ctrip.com/place/huma2225.html",
                        "21060": "//you.ctrip.com/place/xiongxian2547.html",
                        "21061": "//you.ctrip.com/place/hanchuan2721.html",
                        "21066": "//you.ctrip.com/place/hongdong3015.html",
                        "21072": "//you.ctrip.com/place/qixian2310.html",
                        "21089": "//you.ctrip.com/place/laishui2545.html",
                        "21091": "//you.ctrip.com/place/huolinguole2962.html",
                        "21103": "//you.ctrip.com/place/longling2184.html",
                        "21108": "//you.ctrip.com/place/helingeer2956.html",
                        "21115": "//you.ctrip.com/place/jinzhai2623.html",
                        "21125": "//you.ctrip.com/place/maguan2205.html",
                        "21138": "//you.ctrip.com/place/juye2892.html",
                        "21141": "//you.ctrip.com/place/weishan2211.html",
                        "21142": "//you.ctrip.com/place/jinping2162.html",
                        "21147": "//you.ctrip.com/place/tongnan120031.html",
                        "21148": "//you.ctrip.com/place/wushenqi2954.html",
                        "21151": "//you.ctrip.com/place/luqu2799.html",
                        "21152": "//you.ctrip.com/place/yuxian2565.html",
                        "21166": "//you.ctrip.com/place/hongze996.html",
                        "21168": "//you.ctrip.com/place/wenshang2872.html",
                        "21180": "//you.ctrip.com/place/cangshan2873.html",
                        "21181": "//you.ctrip.com/place/gaoqing2901.html",
                        "21183": "//you.ctrip.com/place/shizhu120022.html",
                        "21187": "//you.ctrip.com/place/chengcheng2744.html",
                        "21190": "//you.ctrip.com/place/zhongxian120032.html",
                        "21199": "//you.ctrip.com/place/qianxi2339.html",
                        "21203": "//you.ctrip.com/place/xishui2343.html",
                        "21206": "//you.ctrip.com/place/xiushui2399.html",
                        "21208": "//you.ctrip.com/place/mengla2210.html",
                        "21214": "//you.ctrip.com/place/luancheng2570.html",
                        "21219": "//you.ctrip.com/place/linxiang2840.html",
                        "21227": "//you.ctrip.com/place/yichuan2757.html",
                        "21230": "//you.ctrip.com/place/funing3081.html",
                        "21231": "//you.ctrip.com/place/jianhe120446.html",
                        "21238": "//you.ctrip.com/place/chongyi2391.html",
                        "21243": "//you.ctrip.com/place/qianshan2389.html",
                        "21245": "//you.ctrip.com/place/yicheng2702.html",
                        "21258": "//you.ctrip.com/place/tangxian2574.html",
                        "21259": "//you.ctrip.com/place/wulong120015.html",
                        "21260": "//you.ctrip.com/place/cuoyang2988.html",
                        "21261": "//you.ctrip.com/place/shayang2686.html",
                        "21265": "//you.ctrip.com/place/liangcheng2974.html",
                        "21269": "//you.ctrip.com/place/alashanzuoqi143886.html",
                        "21272": "//you.ctrip.com/place/huili3106.html",
                        "21274": "//you.ctrip.com/place/youxian2862.html",
                        "21279": "//you.ctrip.com/place/zuoquan3037.html",
                        "21283": "//you.ctrip.com/place/xixia2268.html",
                        "21286": "//you.ctrip.com/place/leishan2345.html",
                        "21291": "//you.ctrip.com/place/changning2813.html",
                        "21297": "//you.ctrip.com/place/luyi2276.html",
                        "21299": "//you.ctrip.com/place/xiushan120020.html",
                        "21308": "//you.ctrip.com/place/huoqiu2606.html",
                        "21312": "//you.ctrip.com/place/yixian2557.html",
                        "21316": "//you.ctrip.com/place/pengshui120030.html",
                        "21330": "//you.ctrip.com/place/qianxi2530.html",
                        "21338": "//you.ctrip.com/place/zhanhua2904.html",
                        "21339": "//you.ctrip.com/place/ejinaqi2973.html",
                        "21340": "//you.ctrip.com/place/naxi3113.html",
                        "21343": "//you.ctrip.com/place/guanxian2905.html",
                        "21349": "//you.ctrip.com/place/fangxian2710.html",
                        "21371": "//you.ctrip.com/place/shanlin2987.html",
                        "21380": "//you.ctrip.com/place/shouxian2628.html",
                        "21382": "//you.ctrip.com/place/qiyang2850.html",
                        "21385": "//you.ctrip.com/place/feixian2895.html",
                        "21387": "//you.ctrip.com/place/tongliang120027.html",
                        "21394": "//you.ctrip.com/place/zhidan2777.html",
                        "21404": "//you.ctrip.com/place/ganyu3083.html",
                        "21409": "//you.ctrip.com/place/shitai2624.html",
                        "21410": "//you.ctrip.com/place/guoyang2635.html",
                        "21411": "//you.ctrip.com/place/zhouzhi2781.html",
                        "21415": "//you.ctrip.com/place/wulateqianqi2977.html",
                        "21416": "//you.ctrip.com/place/najing2672.html",
                        "21418": "//you.ctrip.com/place/ningjin2871.html",
                        "21420": "//you.ctrip.com/place/jiayin2228.html",
                        "21427": "//you.ctrip.com/place/yiyang2289.html",
                        "21431": "//you.ctrip.com/place/zigui2726.html",
                        "21432": "//you.ctrip.com/place/etuokejianqi2979.html",
                        "21433": "//you.ctrip.com/place/yizhang2861.html",
                        "21436": "//you.ctrip.com/place/zhijin2362.html",
                        "21437": "//you.ctrip.com/place/guanyun3088.html",
                        "21442": "//you.ctrip.com/place/shishou2691.html",
                        "21445": "//you.ctrip.com/place/baokang143871.html",
                        "21452": "//you.ctrip.com/place/yongchun2661.html",
                        "21458": "//you.ctrip.com/place/gajiang3108.html",
                        "21466": "//you.ctrip.com/place/jinshi2833.html",
                        "21467": "//you.ctrip.com/place/linxian2998.html",
                        "21470": "//you.ctrip.com/place/guangfeng2377.html",
                        "21472": "//you.ctrip.com/place/wushan120018.html",
                        "21474": "//you.ctrip.com/place/menghai2207.html",
                        "21483": "//you.ctrip.com/place/wuqi2732.html",
                        "21486": "//you.ctrip.com/place/dingbian2754.html",
                        "21488": "//you.ctrip.com/place/feixi2619.html",
                        "21490": "//you.ctrip.com/place/wenan2588.html",
                        "21501": "//you.ctrip.com/place/fengtai2622.html",
                        "21505": "//you.ctrip.com/place/xiaochang2687.html",
                        "21509": "//you.ctrip.com/place/lianjiang2657.html",
                        "21511": "//you.ctrip.com/place/qixian3039.html",
                        "21512": "//you.ctrip.com/place/chongyang2695.html",
                        "21514": "//you.ctrip.com/place/bishan120016.html",
                        "21515": "//you.ctrip.com/place/shanghe2900.html",
                        "21521": "//you.ctrip.com/place/longjing2465.html",
                        "21528": "//you.ctrip.com/place/songming2202.html",
                        "21531": "//you.ctrip.com/place/huoshan2609.html",
                        "21532": "//you.ctrip.com/place/jiayu2700.html",
                        "21548": "//you.ctrip.com/place/linying2259.html",
                        "21554": "//you.ctrip.com/place/mancheng2583.html",
                        "21557": "//you.ctrip.com/place/batang3102.html",
                        "21560": "//you.ctrip.com/place/xianyou2654.html",
                        "21564": "//you.ctrip.com/place/shenfang3154.html",
                        "21565": "//you.ctrip.com/place/dundian2164.html",
                        "21567": "//you.ctrip.com/place/lushui927.html",
                        "21574": "//you.ctrip.com/place/taining2678.html",
                        "21579": "//you.ctrip.com/place/zezhou3032.html",
                        "21581": "//you.ctrip.com/place/jingshan2703.html",
                        "21582": "//you.ctrip.com/place/jingan2396.html",
                        "21583": "//you.ctrip.com/place/lushi2273.html",
                        "21590": "//you.ctrip.com/place/jianhu3077.html",
                        "21601": "//you.ctrip.com/place/guan2586.html",
                        "21603": "//you.ctrip.com/place/sheyang998.html",
                        "21606": "//you.ctrip.com/place/gaoling2778.html",
                        "21609": "//you.ctrip.com/place/xiaojin3110.html",
                        "21610": "//you.ctrip.com/place/kaixian120021.html",
                        "21616": "//you.ctrip.com/place/minqing2668.html",
                        "21624": "//you.ctrip.com/place/xianxian2524.html",
                        "21633": "//you.ctrip.com/place/xiangyin2855.html",
                        "21636": "//you.ctrip.com/place/anyue3092.html",
                        "21648": "//you.ctrip.com/place/wuwei2618.html",
                        "21651": "//you.ctrip.com/place/tongbai2281.html",
                        "21652": "//you.ctrip.com/place/datian2656.html",
                        "21654": "//you.ctrip.com/place/hezuo2784.html",
                        "21659": "//you.ctrip.com/place/bobai3049.html",
                        "21660": "//you.ctrip.com/place/changyi2880.html",
                        "21661": "//you.ctrip.com/place/jianning2648.html",
                        "21670": "//you.ctrip.com/place/nanxiong2921.html",
                        "21677": "//you.ctrip.com/place/peixian3075.html",
                        "21680": "//you.ctrip.com/place/chengwu2883.html",
                        "21684": "//you.ctrip.com/place/xianfeng2720.html",
                        "21691": "//you.ctrip.com/place/beiliu3045.html",
                        "21698": "//you.ctrip.com/place/funing2187.html",
                        "21699": "//you.ctrip.com/place/mengzhou2280.html",
                        "21700": "//you.ctrip.com/place/dianjiang120026.html",
                        "21701": "//you.ctrip.com/place/nanzhang2722.html",
                        "21706": "//you.ctrip.com/place/huanren2144.html",
                        "21710": "//you.ctrip.com/place/meixian2776.html",
                        "21721": "//you.ctrip.com/place/guazhou2807.html",
                        "21723": "//you.ctrip.com/place/jinta2806.html",
                        "21750": "//you.ctrip.com/place/zhaoxian2578.html",
                        "21757": "//you.ctrip.com/place/zhuolu2585.html",
                        "21760": "//you.ctrip.com/place/bangshan3123.html",
                        "21764": "//you.ctrip.com/place/rongchang2332.html",
                        "21771": "//you.ctrip.com/place/pulandian2147.html",
                        "21773": "//you.ctrip.com/place/huixian2313.html",
                        "21777": "//you.ctrip.com/place/yunmeng2715.html",
                        "21783": "//you.ctrip.com/place/jiaxiang2874.html",
                        "21790": "//you.ctrip.com/place/zhangbei2575.html",
                        "21795": "//you.ctrip.com/place/hua2298.html",
                        "21810": "//you.ctrip.com/place/yuanan2713.html",
                        "21813": "//you.ctrip.com/place/shangcheng2260.html",
                        "21815": "//you.ctrip.com/place/yangxin2698.html",
                        "21818": "//you.ctrip.com/place/guangshui2716.html",
                        "21822": "//you.ctrip.com/place/wuxi143870.html",
                        "21829": "//you.ctrip.com/place/yunlong2203.html",
                        "21836": "//you.ctrip.com/place/leye968.html",
                        "21843": "//you.ctrip.com/place/jianli2693.html",
                        "21851": "//you.ctrip.com/place/songyang2250.html",
                        "21858": "//you.ctrip.com/place/fulai2527.html",
                        "21860": "//you.ctrip.com/place/tagu2997.html",
                        "21868": "//you.ctrip.com/place/quanjiao2617.html",
                        "21871": "//you.ctrip.com/place/jingxian2616.html",
                        "21872": "//you.ctrip.com/place/rongcheng2551.html",
                        "21880": "//you.ctrip.com/place/badong2688.html",
                        "21883": "//you.ctrip.com/place/wenchuan3101.html",
                        "21885": "//you.ctrip.com/place/hepu965.html",
                        "21886": "//you.ctrip.com/place/kalaqinqi2968.html",
                        "21896": "//you.ctrip.com/place/huaxian2730.html",
                        "21897": "//you.ctrip.com/place/shenzhou2564.html",
                        "21899": "//you.ctrip.com/place/jianchuan2215.html",
                        "21900": "//you.ctrip.com/place/anxin2521.html",
                        "21903": "//you.ctrip.com/place/pingjiang2848.html",
                        "21908": "//you.ctrip.com/place/anguo2514.html",
                        "21909": "//you.ctrip.com/place/bengwu3134.html",
                        "21919": "//you.ctrip.com/place/chengdexian847.html",
                        "21921": "//you.ctrip.com/place/langxi2632.html",
                        "21929": "//you.ctrip.com/place/xinghe2959.html",
                        "21936": "//you.ctrip.com/place/dehua2659.html",
                        "21937": "//you.ctrip.com/place/huinan2464.html",
                        "21953": "//you.ctrip.com/place/xingshan2692.html",
                        "21964": "//you.ctrip.com/place/quyang2546.html",
                        "21966": "//you.ctrip.com/place/tongshan2706.html",
                        "21970": "//you.ctrip.com/place/leizhou2936.html",
                        "21972": "//you.ctrip.com/place/xiangcheng3107.html",
                        "21973": "//you.ctrip.com/place/zhecheng2308.html",
                        "21985": "//you.ctrip.com/place/qinghe2537.html",
                        "21992": "//you.ctrip.com/place/yingshan2709.html",
                        "21993": "//you.ctrip.com/place/huimin2868.html",
                        "21994": "//you.ctrip.com/place/hexian2598.html",
                        "22001": "//you.ctrip.com/place/renshou2336.html",
                        "22004": "//you.ctrip.com/place/linqing2906.html",
                        "22006": "//you.ctrip.com/place/yanshan2170.html",
                        "22008": "//you.ctrip.com/place/ganxian2427.html",
                        "22014": "//you.ctrip.com/place/tongren895.html",
                        "62441": "//you.ctrip.com/place/yongding143895.html"
                    }
                },
                "_ABInfo": "",
                "abAllTest": [

                ],
                "qconfig": {
                    "mapBorderCityList": "[60335]",
                    "enableMapTWTransform": "T"
                }
            },
            "translate": {
                "common_sure": "确认",
                "common_cancel": "取消",
                "common_networkError": "网络连接失败,请检查网络设置。",
                "error_parameter": "系统出错,请稍后再试",
                "key.hotel.detail.page.map.poi": "交通及景点",
                "key.hotel.detail.page.map.hotel": "附近的酒店",
                "key.hotel.online.nearby.hotel.area.poi": "%1$s|%2$s",
                "key.hotel.detail.page.map.traffic": "交通",
                "key.hotel.detail.page.map.scenic": "景点",
                "key.hotel.detail.page.map.shopping": "购物",
                "key.hotel.detail.page.map.food": "美食",
                "key.hotel.detail.page.map.noresult": "抱歉,暂未找到酒店周边的推荐信息",
                "key.hotel.online.detail.seo.from.price": "From%1$s",
                "resx.onlinehotelresource.hotel_roomdata_breakfast_include_v2": "含早餐",
                "resx.onlinehotelresource.labeltext_hotel_freecancelation": "免费取消",
                "resx.onlinehotelresource.text_twinbed": "2张床",
                "resx.onlinehotelresource.text_doublebedsize": "1张双人床",
                "key.hotel.filter.single.bed": "单人床",
                "key.hotel.filter.multiple.beds": "多床",
                "resx.onlinehotelresource.hotel_detail_instant_confirmation_v2": "立即确认",
                "resx.onlinehotelresource.text_payathotel": "到店付",
                "resx.onlinehotelresource.v3_hotel_detail_roomdetail_payment_prepaynow": "在线付",
                "key.hotel.detail.room.type.free.meal": "免费餐食",
                "key.hotel.detail.room.type.free.breakfast": "免费早餐",
                "key.hotel.detail.room.pricerange.start": "¥150以下",
                "key.hotel.detail.room.pricerange.end": "¥2000以上",
                "key.hotel.detail.room.pricerange.title": "价格范围",
                "key.hotel.online.homepage.search.japan.tab1": "",
                "key.hotel.online.homepage.search.japan.tab2": "",
                "key.hotel.online.homepage.search.japan.tab3": "",
                "resx.onlinehotelresource.hotel_reviews_label_noreview_v2": "暂无评分",
                "key.hotel.online.homepage.child.age": "儿童年龄(以入住当天计算)",
                "key.hotel.online.assist.search": "按钮:查询酒店",
                "key.hotel.list.page.search.keywords.current.country": "当前国家的查询结果",
                "key.hotel.list.page.search.keywords.current.country.error": "抱歉,当前国家无法为您查询到“%1$s”",
                "key.hotel.list.page.search.keywords.current.province": "当前省份的查询结果",
                "key.hotel.list.page.search.keywords.current.province.error": "抱歉,当前省份无法查询到“%1$s”。",
                "key.hotel.list.page.search.keywords.current.area": "当前区域的查询结果",
                "key.hotel.list.page.search.keywords.current.area.error": "抱歉,当前区域无法查询到“%1$s”。",
                "key.hotel.list.page.search.keywords.current.city": "当前城市的查询结果",
                "key.hotel.list.page.search.keywords.current.city.error": "抱歉,当前城市无法查询到“%1$s”。",
                "key.hotel.list.page.search.keywords.other.province": "其他省份的查询结果",
                "key.hotel.list.page.search.keywords.other.city.error": "抱歉,无法为您查询到“%1$s”。",
                "key.hotel.list.page.search.keywords.other.area": "其他区域的查询结果",
                "key.hotel.list.page.search.keywords.other.city": "其他城市的查询结果",
                "key.hotel.online.calendar.date.text": "今天|明天|后天",
                "key.hotel.list.page.search.keywords": "关键词(选填)",
                "key.hotel.list.page.search.keywords.content": "机场、火车站、酒店名称或区域",
                "key.hotel.online.homepage.recent.search.no.result": "抱歉,沒有「%1$s」的相关搜索結果。",
                "key.hotel.online.homepage.destination.input.error": "请提供目的地或酒店名称",
                "key.hotel.online.homepage.destination": "目的地/酒店名称",
                "key.hotel.online.homepage.destination.input": "城市、机场、区域、地标或酒店名称",
                "key.hotel.online.homepage.recent.search": "最近搜索记录",
                "key.hotel.search.clearhistory": "清除历史",
                "key.hotel.online.homepage.searchbox.rooms": "%1$s间",
                "key.hotel.online.homepage.searchbox.rooms.pluralsuffix.few": "",
                "key.hotel.online.homepage.searchbox.rooms.pluralsuffix.many": "",
                "key.hotel.online.homepage.searchbox.rooms.pluralsuffix.other": "%1$s间",
                "key.hotel.online.homepage.searchbox.guests": "%1$s位",
                "key.hotel.online.homepage.searchbox.guests.pluralsuffix.few": "",
                "key.hotel.online.homepage.searchbox.guests.pluralsuffix.many": "",
                "key.hotel.online.homepage.searchbox.guests.pluralsuffix.other": "%1$s位",
                "key.hotel.online.homepage.checkin": "入住时间",
                "key.hotel.online.homepage.checkout": "退房时间",
                "key.hotel.common.night": "%1$s晚",
                "key.hotel.common.night.pluralsuffix.few": "",
                "key.hotel.common.night.pluralsuffix.many": "",
                "key.hotel.common.night.pluralsuffix.other": "%1$snights",
                "calendar_local_time": "入住和退房时间均为酒店当地时间。",
                "key.hotel.online.homepage.rooms.guests": "房间及住客",
                "key.hotel.search.aria.roomNum": "间",
                "key.hotel.online.homepage.rooms": "房间",
                "key.hotel.online.homepage.adult": "成人",
                "key.hotel.online.homepage.adult.year": "18岁及以上",
                "key.hotel.online.homepage.child": "儿童",
                "key.hotel.online.homepage.child.year": "0-17岁",
                "key.hotel.online.homepage.rooms.guests.done": "确定",
                "key.hotel.online.assist.lastone": "上一张",
                "key.hotel.room.pop.up.no.image": "暂无图片",
                "key.hotel.detail.page.album.book": "立即预定",
                "key.hotel.online.assist.nextone": "下一张",
                "key.hotel.detail.page.album.all.with.number": "全部({0})",
                "": "",
                "key.hotel.facility.detail.hot.facility": "热门设施",
                "key.hotel.detail.page.album.base.info": "基本信息",
                "key.hotel.detail.page.album.all.room.facilities": "全部设施",
                "key.hotel.room.pop.up.facility.content": "标有星号(*)的设施只设于部分房间",
                "key.hotel.online.detail.room.tips": "特别提示",
                "key.hotel.online.detail.room.tips.show.more": "显示更多",
                "key.hotel.online.detail.room.tips.show.less": "隐藏",
                "key.hotel.detail.page.album.facility.nofree": "收费",
                "key.hotel.detail.page.album.facility.free": "(免费)",
                "key.hotel.room.pop.up.select.room": "选择房间",
                "detail_policy": "酒店政策",
                "key.hotel.detail.tips.title": "订房必读",
                "key.hotel.review.page.show": "展开",
                "key.hotel.review.page.hide": "收起",
                "key.hotel.detailPage.childAndBed": "儿童及加床",
                "resx.onlinehotelresource.labeltext_hotel_showallphotos": "查看所有{0}张照片",
                "key.hotel.detail.page.favorite.tip": "点击收藏",
                "key.hotel.detail.page.favorite.confirm": "已添加",
                "key.hotel.detail.page.favorite.cancel": "已取消收藏",
                "key.hotel.online.homepage.seobottom.seeall": "查看全部",
                "key.hotel.online.detail.hotcity": "热门城市",
                "key.hotel.online.detail.brands": "品牌推荐",
                "key.hotel.service.guarantee.icon": "https://pages.c-ctrip.com/hotels/online/img/serviceguarantee/ic-service@2x.png&https://pages.c-ctrip.com/hotels/online/img/serviceguarantee/ic-im@2x.png&https://pages.c-ctrip.com/hotels/online/img/serviceguarantee/ic-privide@2x.png",
                "key.hotel.service.guarantee.newtitle": "入住保障&专业客服&应急支援",
                "key.hotel.service.guarantee.content": "无房必赔保障&全天客服在线&紧急情况援助",
                "detail_description": "酒店简介",
                "xjt_hotel_amenityservice": "服务与设施",
                "resx.onlinehotelresource.hotel_detail_navi_policy": "政策",
                "key.hotel.hoteldetail.helpfacts.typetltle": "实用资讯",
                "detail_selectRoom": "选择房间",
                "resx.onlinehotelresource.v3_hotel_detail_navi_rooms": "房间",
                "key.hotel.list.page.map": "地图",
                "key.hotel.review.title": "点评",
                "key.hotel.detail.page.unit.room": "%1$s间",
                "key.hotel.detail.page.unit.room.pluralsuffix.few": "",
                "key.hotel.detail.page.unit.room.pluralsuffix.many": "",
                "key.hotel.detail.page.unit.room.pluralsuffix.other": "%1$s间",
                "key.hotel.detail.page.unit.guest": "%1$s位",
                "key.hotel.detail.page.unit.guest.pluralsuffix.few": "",
                "key.hotel.detail.page.unit.guest.pluralsuffix.many": "",
                "key.hotel.detail.page.unit.guest.pluralsuffix.other": "%1$s位",
                "key.hotel.detail.page.enlarge.map": "放大",
                "key.hotel.detail.price.desc": "价格说明|划线价格为参考价,该价格指商品或服务的门市价、服务提供商的指导价、零售价或该商品或服务曾经展示过的销售价等,并非原价;由于产品信息实时更新、市场价格波动等可能会与您预订时展示的不一致,该价格仅供您参考。|未划线价格指商品或服务的实时标价,为划线价基础上计算出的优惠金额。具体成交价格根据商品或服务参加活动,或会员使用优惠券等发生变化,最终以订单结算页价格为准。|如有疑问,您可在预订前联系客服进行咨询。|此说明仅当出现价格比较时有效。若服务提供商单独对划线价格进行说明的,以服务提供商的表述为准。",
                "key.hotel.detail.page.overview": "概览",
                "key.hotel.detail.page.ctrip.comment.all.room.selection": "所有房型",
                "key.hotel.online.ctrip.name": "携程",
                "sharkdesc": "",
                "key.hotel.review.real.evaluation.num": "(%1$s条点评)",
                "key.hotel.review.real.evaluation.num.single": "(%1$s条点评)",
                "key.hotel.review.thirdparty": "第三方点评",
                "key.hotel.review.real.evaluation.quantity": "(%1$s真实住客点评)",
                "detail_review_none_reviews": "",
                "key.hotel.online.assist.backTop": "按钮:回顶部",
                "key.hotel.online.assist.gotoIm": "链接:客服",
                "key.hotel.coupon.promotion.fail": "领取失败,请再次尝试",
                "key.hotel.coupon.promotion.success": "领取成功",
                "key.hotel.coupon.promotion.partialfail": "部分券领取失败,请再次尝试",
                "key.hotel.coupon.promotion.getAll": "一键领取",
                "key.hotel.coupon.promotion.name": "优惠券",
                "key.hotel.online.assist.lingquan": "领券",
                "key.hotel.coupon.promotion.received": "已领取",
                "key.hotel.coupon.promotion.get": "领取",
                "key.hotel.detailPage.convid.cancel": "安心取消:",
                "key.hotel.detailpage.convid.cancelText": "疫情期间,订“安心取消”酒店,可免费取消订单",
                "key.hotel.navigation.bar.powered.by": "技术提供:",
                "key.hotel.online.presale.download.app.1.title": "想获取更多酒店超值优惠及积分?立即免費下载携程App!",
                "key.hotel.online.presale.download.app.1.button": "立即获取",
                "key.hotel.online.presale.download.app.2.title": "更多优惠及积分,尽在携程App",
                "key.hotel.online.presale.download.app.2.note": "输入电话号码以接收免費下载App的短信",
                "key.hotel.list.page.sign.in.ctrip.B": "限时体验免费升级会员,增享更多权益和优惠",
                "key.hotel.list.page.sign.in.ctrip.login.B": "查看资格",
                "key.hotel.list.page.sign.in.ctrip": "登录后可享更多立减、返现优惠",
                "key.hotel.list.page.sign.in.ctrip.login": "登录",
                "key.hotel.online.cbanner.href.seemore": "查看详情",
                "key.hotel.online.assist.hotelPic": "酒店图片",
                "key.hotel.online.assist.unfavorite": "取消收藏",
                "key.hotel.online.assist.favorite": "收藏酒店",
                "v3_detail_showonmap": "显示地图",
                "key.hotel.price.match.hover": "Weaimtoprovidethebestpossiblepricesforourusers.Ifyoufindacheaperpriceelsewhere,wellrefundthedifference.",
                "key.hotel.price.match.title": "Trip.comPriceMatchGuarantee",
                "trip_hotel_brg_rules_newrule": "",
                "trip_hotel_brg_submit_entrance": "",
                "key.hotel.price.match.pop.up.all.content": "AtTrip.com,ourgoalistoprovideouruserswiththebestpossibleroomrates.Ifyoufindalowerpriceforthesameroomtypeandthesamedatesonanotherplatform,youcanrequestforustorefundthedifference.Onceyourrequesthasbeenapproved,wellsendyoutherefundinTripCoins.",
                "key.hotel.price.match.pop.up.one.title": "SubmittingyourRefundRequest",
                "key.hotel.price.match.pop.up.one.content2": "Pleasesubmityourrequestbefore12:00(hotelslocaltime)thedaybeforeyourcheck-indate.",
                "key.hotel.price.match.pop.up.one.content3": "Whenyousubmityourrequest,pleasetellusyourTrip.combookingnumber.",
                "key.hotel.price.match.pop.up.one.content4": "PleasefollowtheinstructionsonTrip.comtoprovideprice-relateddetailsandthewebaddresswhereyoufoundthecheaperprice.Pleaseensurethatthewebaddressyouprovidewillstillbevalidatthetimeitischecked,andthatthecheaperpriceyousubmitwillstillbeavailabletobookatthattime.",
                "key.hotel.price.match.pop.up.one.content5": "Pleaseprovide3screenshotsoftheplatformwhereyoufoundthecheaperprice.Thesescreenshotsshouldclearlyshowthehotelname,roomtype,check-inandcheck-outdates,theroomprice,andanyotherdetailsrelatedtoyourclaim.",
                "key.hotel.price.match.pop.up.two.title": "Terms&Conditions",
                "key.hotel.price.match.pop.up.two.title1": "1.Scopeofuse:",
                "key.hotel.price.match.pop.up.two.title1.content1": "OnlyapplicabletobookingswhichhavebeenconfirmedbyTrip.comandhavenotbeencanceled.",
                "key.hotel.price.match.pop.up.two.title1.content2": "NotapplicabletoroomtypesofferingadditionalTripCoinsrewards.",
                "key.hotel.price.match.pop.up.two.title1.content3": "NotapplicabletobookingswhicharepartofthePointsPlusprogram.",
                "key.hotel.price.match.pop.up.two.title2": "2.Allthefollowingconditionsmustbemet:",
                "key.hotel.price.match.pop.up.two.title2.content1": "RoomTypeMatch",
                "key.hotel.price.match.pop.up.two.title2.content2": "TheroomtypeforyourTrip.comPriceGuaranteeclaimmustmatchtheroomtypeinyourbooking.Theroomtypemustalsobeatthesamehotel,andthefollowingdetailsmustalsobethesame:whetherbreakfastisincluded,bedtype,whetherWi-Fiisprovided,roomsize,paymentmethod,numberofguests,changeandcancellationpolicy,bookingtermsandconditions,depositpolicy(ifapplicable),freegiftsincluded,andanyotherapplicableroomdetails.",
                "key.hotel.price.match.pop.up.two.title2.content3": "BookingMatch",
                "key.hotel.price.match.pop.up.two.title2.content4": "Thecheck-inandcheck-outdatesforyourTrip.comPriceMatchGuaranteeclaimmustmatchthecheck-inandcheck-outdatesofyourbooking.Thedeviceyouusetobook,theselectedcurrency,andtheselectedlanguagemustalsobethesame.",
                "key.hotel.price.match.pop.up.two.title2.content5": "PriceRequirements",
                "key.hotel.price.match.pop.up.two.title2.content6": "Thelowerpriceyoufoundmustbeavailabletoallusers;restrictedormember-onlypricesarenoteligible.",
                "key.hotel.price.match.pop.up.two.title2.content7": "Thelowerpriceyoufoundcannotbethepriceafterpromocodesoranyotherwebsitepromotionshavebeenapplied.",
                "key.hotel.price.match.pop.up.two.title2.content8": "Thelowerpriceyoufoundmustbeavailabletobookindependently.Itcannotbeapricewhichisonlyavailablewhenbookedwithotherproducts,suchaspartofatourgroup,oraspartofaflight+hotelpackagebooking.",
                "key.hotel.price.match.pop.up.two.title2.content9": "TheTrip.comPriceGuaranteeismainlyapplicabletopricesdisplayedonhotelofficialwebsitesandmajorhotelbookingwebsitesworldwide.Ifthelowerpriceyoufoundisnotavailableononeofthesetypesofwebsites,theTrip.comPriceGuaranteewillnotapply.",
                "key.hotel.price.match.pop.up.two.title3": "3.Pleasenote",
                "key.hotel.price.match.pop.up.two.title3.content1": "ThemaximumpricedifferencethatcanberefundedisUS$1,500ortheequivalentamountinothercurrencies(theexchangerateatthetimeyousubmittedyourclaimwillapply).",
                "key.hotel.price.match.pop.up.two.title3.content2": "IfyouusedpromocodesforyourTrip.comhotelbooking,wewillusetheTrip.compriceafteranypromocodeshavebeenappliedtocompareprices.",
                "key.hotel.price.match.pop.up.two.title3.content2.1": "Wewillusethetotalpriceofyourbookingaftertaxtocompareprices.",
                "key.hotel.price.match.pop.up.two.title3.content2.2": "Thecurrencyweusewhencomparingpriceswilldependonthepaymentmethod.Forbookingsthatareprepaidonline,wewillusethecurrencytheprepaymentismadeinforpricecomparison.Forbookingsthatarepaidatthehotel,wewillusethelocalcurrencyatthehotelslocationforpricecomparison.",
                "key.hotel.price.match.pop.up.two.title3.content3": "IfyousubmitabookingchangerequestafteryourpricedifferenceclaimisapprovedbyTrip.com,youwillnotbeabletoreceivethepricedifferencerefund.",
                "key.hotel.price.match.pop.up.two.title3.content3.1": "OnlyoneTrip.comPriceGuaranteeclaimcanbeapprovedperbooking.",
                "key.hotel.price.match.pop.up.two.title3.content4": "TheTrip.comPriceGuaranteeiscurrentlyinthetrialstage,andsoisonlyavailableonsomeoftheTrip.comlanguagewebsites.Weapologizeforanyinconveniencecaused.",
                "key.hotel.price.match.pop.up.two.title3.content5": "Trip.comreservestherighttoexerciseitsdiscretionregardingwhethertheTrip.comPriceGuaranteeisapplicable.Thisincludes,butisnotlimitedto,decidingwhetherornotthelowerpricematchestheTrip.combookingintermsofhotel,roomtype,datesofstay,andwhetherornotthepricedifferenceclaimmeetsallapplicabletermsandconditions.",
                "key.hotel.price.match.pop.up.two.title3.content6": "Trip.comreservesallfinalrightsofinterpretationregardingtheTrip.comPriceGuarantee,includingtherighttomakethefollowingchangestotheTrip.comPriceGuaranteeatanytime:edit,change,addto,orinvalidate(oneitheratemporaryorpermanentbasis).",
                "key.hotel.detail.page.children.and.bed.show.all": "查看政策详情",
                "key.hotel.detail.page.children.and.bed": "儿童及加床",
                "key.hotel.detail.facility.tag.free": "免费",
                "key.hotel.detail.facility.tag.additionalcharge": "额外收费",
                "translate_button": "",
                "newBtnState": "",
                "resx.onlinehotelresource.labeltext_hotel_hoteldescription_v3": "酒店简介",
                "key.hotel.detail.contact.telephone": "酒店电话:",
                "key.hotel.translate.tips": "翻译提供方:Google",
                "hotel_see_this_more": "展开",
                "key.hotel.detail.certi.entry.name": "预订服务提供方",
                "key.hotel.detail.certi.entry.name.oversea": "预订服务提供方",
                "key.hotel.detail.certi.entry.business.name": "营业者姓名",
                "key.hotel.detail.certi.entry.business.number": "商号",
                "key.hotel.translate.original.button": "原文",
                "key.hotel.translate.button": "翻译",
                "key.hotel.review.page.translate.error": "翻译失败,请重试",
                "LabelText_Hotel_AmenitiesV2": "服务及设施",
                "key.hotel.online.review.page.same.review.fold.show.more": "查看更多",
                "key.hotel.price.tip.qi": "起",
                "hotel.key.listpage.location.score": "分",
                "key.hotel.review.none.score": "暂无评分",
                "key.hotel.detail.view.map.poi": "查看地图",
                "[bPosition": "",
                "key.hotel.detail.page.bottom.hotel": "仍未找到合适的酒店?",
                "key.hotel.detail.page.bottom.hotel.to.list": "查看更多%1$s的酒店",
                "key.hotel.online.currency.cny": "¥",
                "key.88801001.hotel.login.display.price": "登录看低价",
                "key.hotel.detail.page.location": "酒店位置",
                "key.hotel.detail.page.show.map": "查看地图",
                "key.hotel.online.review.page.same.review.fold.title": "已折叠对您帮助不大的评论",
                "key.hotel.online.review.page.same.review.fold.rule": "折叠规则",
                "key.hotel.online.review.page.same.review.fold.show.less": "收起",
                "key.hotel.online.review.page.same.review.fold.show.more.2": "查看更多折叠评论",
                "key.hotel.online.review.page.same.review.fold.rule.0": "系统根据客人入住时间和评论内容质量优先展示最相关的评论,包括但不限于以下情况,评论会被认为帮助不大而隐藏或者置底:",
                "key.hotel.online.review.page.same.review.fold.newrule.1": "1、与入住体验无关的点评",
                "key.hotel.online.review.page.same.review.fold.newrule.2": "2、实际入住体验不完整的点评",
                "key.hotel.online.review.page.same.review.fold.newrule.3": "3、内容相似的点评",
                "key.hotel.online.review.page.same.review.fold.newrule.4": "4、同一用户对同一酒店的多次点评",
                "key.hotel.online.review.page.same.review.fold.newrule.5": "5、酒店装修前的历史点评",
                "key.hotel.online.review.page.same.review.fold.newrule.6": "6、点评分与内容不符的点评",
                "key.hotel.review.page.like.modal.desc": "有用",
                "key.hotel.review.page.time.modal.desc": "%1$s发布",
                "key.hotel.review.page.users.stayin.modal.desc": "于%1$s入住",
                "key.hotel.review.page.reply.modal.title": "酒店回复",
                "reviewKey": "",
                "key.hotel.online.hotel.reivew.page.sort1": "推荐排序",
                "key.hotel.online.hotel.reivew.page.sort2": "最近入住",
                "key.hotel.online.hotel.reivew.page.filter.by": "筛选:",
                "key.hotel.review.display.evaluation": "排序方式:",
                "key.hotel.online.assist.userProfile": "用户头像",
                "key.hotel.list.page.filter.clear.all": "清除",
                "key.hotel.online.hotel.detail.page.review.no.match1": "很抱歉!暂无符合您筛选条件的点评,请修改条件重新查询。",
                "key.hotel.review.page.users.views.modal.content": "%1$s条点评",
                "key.hotel.review.page.user.view.modal.content": "%1$s条点评",
                "total_stay_taxes_and_fees": "总价(含税费)",
                "nightly_local_taxes_and_fees": "每晚房价(含税费)",
                "resx.onlinehotelresource.hotel_detail_roomlist_avgprice_v2": "每晚均价",
                "key.hotel.detail.suspend.business": "暂停营业",
                "hotel.detail.noroom.pause": "酒店目前暂停营业",
                "key.hotel.detail.clubmedtips": "以下客房未考虑\"房间数\"\"住客数\"筛选条件,可按您的喜欢自由搭配",
                "resx.onlinehotelresource.v2_searchingrooms": "正在搜索",
                "no_match_rooms": "未能找到符合条件的客房。请选择其他日期。",
                "resx.onlinehotelresource.v2_nomatchingrooms": "未能找到符合条件的客房",
                "key.hotel.detail.page.try.other.date": "请选择其他日期后重试",
                "resx.onlinehotelresource.buttontext_hotel_clearallfilter": "清除筛选条件",
                "key.hotel.app.five.star.no.cooperation1": "暂时无法提供此酒店价格",
                "key.hotel.app.five.star.no.cooperation2": "您可通通以下任意一种方式直接预订此酒店,或者选择其他酒店",
                "key.hotel.app.five.star.no.cooperation.button1": "酒店官网",
                "key.hotel.room.recommend.for.you": "推荐",
                "resx.onlinehotelresource.labeltext_showmore": "查看客房信息",
                "ShowPriceAfterLogin": "{0}SignIn{/0}or{0}Register{/0}toaccessmember-onlyrates",
                "start_price_hover_info": "Trip.basic提供指定酒店超低优惠价格。此价格仅在限定时间内有效且必需经酒店确认才可生效。我们无法完全保证此优惠房型的预订,如预订失败将全额退款。请注意,经酒店确认后将无法修改或取消预订。",
                "resx.onlinehotelresource.searchresults_greatchoice": "超棒选择,立即预订!",
                "key.hotel.detailpage.roomlist.localtime": "当地时间",
                "key.hotel.detailpage.roomlist.beijingtime": "北京时间",
                "key.hotel.detailpage.roomlist.canceltitle": "取消政策",
                "key.hotel.filter.quickcheckin": "闪住",
                "key.hotel.price.tip.jun": "均",
                "key.hotel.detail.page.continue.book": "继续",
                "key.hotel.detail.page.back.to.detail": "返回",
                "resx.onlinehotelresource.buttontext_fullroom": "售完",
                "resx.onlinehotelresource.buttontext_signin": "登录",
                "resx.onlinehotelresource.buttontext_receivableCoupon": "领券订",
                "resx.onlinehotelresource.buttontext_member": "查看会员价",
                "resx.onlinehotelresource.buttontext_book": "预订",
                "key.hotel.detail.page.booking.continue": "是否继续预订?",
                "dw_book_min_rooms_with_discount": "此优惠价格房型要求最少预订{0}间",
                "key.hotel.detail.page.few.rooms": "抱歉!您所选的房型仅剩%1$s间,",
                "key.hotel.detail.page.few.rooms.pluralsuffix.few": "",
                "key.hotel.detail.page.few.rooms.pluralsuffix.many": "",
                "key.hotel.detail.page.few.rooms.pluralsuffix.other": "抱歉!您所选的房型仅剩%1$s间,",
                "key.hotel.detail.page.guests.max.childroom": "最多可容纳%1$s位成人,%2$s位儿童入住",
                "key.hotel.detail.page.guests.max.childroom.pluralsuffix.few": "",
                "key.hotel.detail.page.guests.max.childroom.pluralsuffix.many": "",
                "key.hotel.detail.page.guests.max.childroom.pluralsuffix.other": "",
                "key.hotel.detail.page.guests.max": "最多可容纳%1$s位客人入住。",
                "key.hotel.detail.page.guests.max.pluralsuffix.few": "",
                "key.hotel.detail.page.guests.max.pluralsuffix.many": "",
                "key.hotel.detail.page.guests.max.pluralsuffix.other": "最多容纳%1$s位客人入住。",
                "key": "",
                "key.pluralsuffix.few": "",
                "key.pluralsuffix.many": "",
                "key.pluralsuffix.other": "",
                "key.hotel.detail.page.guests.fit.childroom": "但可容纳%1$s位成人,%2$s位儿童入住",
                "key.hotel.detail.page.guests.fit.childroom.pluralsuffix.few": "",
                "key.hotel.detail.page.guests.fit.childroom.pluralsuffix.many": "",
                "key.hotel.detail.page.guests.fit.childroom.pluralsuffix.other": "",
                "key.hotel.detail.page.guests.fit": "但可容纳%1$s位客人入住。",
                "key.hotel.detail.page.guests.fit.pluralsuffix.few": "",
                "key.hotel.detail.page.guests.fit.pluralsuffix.many": "",
                "key.hotel.detail.page.guests.fit.pluralsuffix.other": "但可容纳%1$s位客人入住。",
                "key.hotel.detail.page.guests.max.childroom.v2": "抱歉!您所选的房型最多可容纳%1$s位成人,%2$s位儿童入住。",
                "key.hotel.detail.page.guests.max.childroom.v2.pluralsuffix.few": "",
                "key.hotel.detail.page.guests.max.childroom.v2.pluralsuffix.many": "",
                "key.hotel.detail.page.guests.max.childroom.v2.pluralsuffix.other": "",
                "key.hotel.detail.page.guests.max.v2": "抱歉!您所选的房型最多可容纳%1$s位房客入住。",
                "key.hotel.detail.page.guests.max.v2.pluralsuffix.few": "",
                "key.hotel.detail.page.guests.max.v2.pluralsuffix.many": "",
                "key.hotel.detail.page.guests.max.v2.pluralsuffix.other": "抱歉!您所选的房型最多可容纳%1$s位客人入住。",
                "key.hotel.promotion.limited.time.over": "活动已结束,请点击下方查看最新价格。",
                "key.hotel.promotion.detail.page.limited.time.over": "查看最新价格",
                "key.hotel.listpage.price.taxinfo.explain.txt": "*小数点向上取整展示",
                "key.hotel.detail.clubmedtip": "请将#人数及儿童年龄#(如有)正确填写,我们将据此筛选房型",
                "key.hotel.filter.free.fruits": "免费兑水果",
                "key.hotel.filter.before.checkin": "免费兑提前入住",
                "key.hotel.filter.free.breakfast": "免费兑早餐",
                "key.hotel.filter.free.cancel": "免费兑取消权益",
                "key.hotel.filter.delay.check-out": "免费兑延迟退房",
                "key.hotel.filter.free.better.room": "免费兑升房",
                "key.hotel.filter.all.equity": "全部权益",
                "key.hotel.filter.nothourroom": "不看钟点房",
                "key.hotel.detail.page.hotel.review.title": "酒店评价",
                "key.hotel.online.homepage.viewed.hotels": "查看过的酒店",
                "key.hotel.user.reward.try.again.later": "稍后再试",
                "key.hotel.user.reward.check": "立刻查看会员优惠酒店",
                "key.hotel.coupon.promotion.money": "元",
                "key.hotel.coupon.promotion.discount": "折",
                "key.hotel.coupon.promotion.nowget": "立即领取"
            },
            "cargo": {
                "locale": "zh-CN",
                "site": "CN",
                "currency": "CNY"
            },
            "localization": {
                "currency": {
                    "GBP": {
                        "default": "£"
                    },
                    "RUB": {
                        "default": "RUB",
                        "RU-RU": "руб"
                    },
                    "AUD": {
                        "default": "AU$"
                    },
                    "CAD": {
                        "default": "CAD"
                    },
                    "THB": {
                        "default": "THB",
                        "TH-TH": "บาท"
                    },
                    "BRL": {
                        "default": "BRL"
                    },
                    "INR": {
                        "default": "INR"
                    },
                    "PLN": {
                        "default": "PLN"
                    },
                    "MYR": {
                        "default": "MYR",
                        "MS-MY": "RM",
                        "EN-MY": "RM"
                    },
                    "IDR": {
                        "default": "IDR",
                        "ID-ID": "Rp"
                    },
                    "PHP": {
                        "default": "PHP"
                    },
                    "NZD": {
                        "default": "NZD"
                    },
                    "CHF": {
                        "default": "CHF"
                    },
                    "TRY": {
                        "default": "TRY"
                    },
                    "CNY": {
                        "default": "CNY"
                    },
                    "TWD": {
                        "default": "TWD",
                        "ZH-HK": "NT$",
                        "ZH-TW": "NT$"
                    },
                    "HKD": {
                        "default": "HK$"
                    },
                    "SGD": {
                        "default": "SGD"
                    },
                    "KRW": {
                        "default": "₩",
                        "KO-KR": "원"
                    },
                    "JPY": {
                        "default": "JPY",
                        "JA-JP": "円"
                    },
                    "EUR": {
                        "default": "€"
                    },
                    "USD": {
                        "default": "US$",
                        "EN-US": "$"
                    },
                    "VND": {
                        "default": "VND"
                    }
                },
                "number": {
                    "DE-DE": {
                        "point": ",",
                        "thousand": "."
                    },
                    "ES-ES": {
                        "point": ",",
                        "thousand": "."
                    },
                    "FR-FR": {
                        "point": ",",
                        "thousand": ""
                    },
                    "RU-RU": {
                        "point": ",",
                        "thousand": ""
                    },
                    "IT-IT": {
                        "point": ",",
                        "thousand": "."
                    },
                    "ID-ID": {
                        "point": ",",
                        "thousand": "."
                    },
                    "VI-VN": {
                        "point": ",",
                        "thousand": "."
                    }
                },
                "order": {
                    "ZH-CN": "{0}{1}",
                    "DE-DE": "{1}{0}",
                    "FR-FR": "{1}{0}",
                    "ES-ES": "{1}{0}",
                    "IT-IT": "{1}{0}",
                    "ZH-HK": "{0}{1}",
                    "ID-ID": "{0}{1}",
                    "JA-JP": "{0}{1}",
                    "KO-KR": "{0}{1}",
                    "MS-MY": "{0}{1}",
                    "TL-PH": "{0}{1}",
                    "RU-RU": "{1}{0}",
                    "ZH-SG": "{0}{1}",
                    "TH-TH": "{0}{1}",
                    "ZH-TW": "{0}{1}",
                    "VI-VN": "{1}{0}",
                    "JA-JP-JPY": "{1}{0}",
                    "KO-KR-KRW": "{1}{0}",
                    "default": "{0}{1}"
                }
            },
            "cobranding": {
                "CobrandValueConfig": [
                    {
                        "aid": 1031505,
                        "sid": 1656419,
                        "pic": "easybooking",
                        "locale": [
                            "en_sg"
                        ],
                        "content": "partner_ship",
                        "pageid": [

                        ]
                    },
                    {
                        "aid": 1031505,
                        "sid": 1656425,
                        "pic": "easybooking",
                        "locale": [
                            "ms_my",
                            "en_my"
                        ],
                        "content": "partner_ship",
                        "pageid": [

                        ]
                    },
                    {
                        "aid": 297634,
                        "sid": 1834183,
                        "pic": "cathayunitedbank",
                        "locale": [
                            "zh_tw"
                        ],
                        "content": "partner_ship",
                        "pageid": [

                        ]
                    }
                ],
                "CobrandKeyConfig": [
                    1031505,
                    297634
                ]
            },
            "appDownloadSide": {
                "SidebarHideAll": {
                    "10320668150": [
                        "6107",
                        "854457"
                    ],
                    "10320668148": [
                        "6107",
                        "854457"
                    ],
                    "10320668147": [
                        "6107",
                        "854457"
                    ],
                    "10320668268": [
                        "6107",
                        "854457"
                    ]
                },
                "SidebarHidePop": {
                    "10320668150": [
                        "3625",
                        "4778",
                        "15214",
                        "12607",
                        "292713",
                        "296732",
                        "310733",
                        "679967",
                        "310725",
                        "719103",
                        "771553",
                        "860660",
                        "868830",
                        "898878",
                        "909051",
                        "2539",
                        "3204",
                        "774014",
                        "786545",
                        "754754",
                        "109070",
                        "893153",
                        "1064647",
                        "870102"
                    ],
                    "10320668148": [
                        "3625",
                        "4778",
                        "15214",
                        "12607",
                        "292713",
                        "296732",
                        "310733",
                        "679967",
                        "310725",
                        "719103",
                        "771553",
                        "860660",
                        "868830",
                        "898878",
                        "909051",
                        "2539",
                        "3204",
                        "774014",
                        "786545",
                        "754754",
                        "109070",
                        "893153",
                        "1064647",
                        "870102"
                    ],
                    "10320668147": [
                        "3625",
                        "4778",
                        "15214",
                        "12607",
                        "292713",
                        "296732",
                        "310733",
                        "679967",
                        "310725",
                        "719103",
                        "771553",
                        "860660",
                        "868830",
                        "898878",
                        "909051",
                        "2539",
                        "3204",
                        "774014",
                        "786545",
                        "754754",
                        "109070",
                        "893153",
                        "1064647",
                        "870102"
                    ],
                    "10320668268": [
                        "3625",
                        "4778",
                        "15214",
                        "12607",
                        "292713",
                        "296732",
                        "310733",
                        "679967",
                        "310725",
                        "719103",
                        "771553",
                        "860660",
                        "868830",
                        "898878",
                        "909051",
                        "2539",
                        "3204",
                        "774014",
                        "786545",
                        "754754",
                        "109070",
                        "893153",
                        "1064647",
                        "870102"
                    ]
                }
            },
            "callControllerJava": [

            ],
            "async": "https://ws-s.tripcdn.cn/modules/hotel/hotel-ctrip-online/detailPage/async.2733f0befe429c6af8a6.js",
            "source": [
                {
                    "url": "https://webresource.c-ctrip.com/ares2/basebiz/cusersdk_base/~1.1.5/default/loginsdk.js?expires=1d",
                    "index": 2
                }
            ],
            "pageName": "detailPage",
            "abResults": "",
            "swtor": "/hotels/sw.js",
            "swtorSwitch": false,
            "initParams": null,
            "pageId": "102003",
            "cma": "",
            "brgSite": "",
            "pixelConfig": {
                "3625": "Ctripta",
                "4778": "Trivago",
                "12607": "skyscnr",
                "15214": "NEW_GOOGLE_HPA",
                "310725": {
                    "789742": "LineTravel",
                    "1413596": "LineTravel",
                    "tag": "CustomerAmount"
                },
                "340177": "EQS",
                "664610": "LinkPrice"
            },
            "hideAppDownBlackList": [

            ],
            "headFootConfig": {
                "head": {
                    "simple": false,
                    "showHeadline": true,
                    "showFootLine": true,
                    "showCurrencySelector": true,
                    "showLanguageSelector": true,
                    "showLocaleSelector": true,
                    "showServiceChat": true,
                    "channel": "hotels"
                },
                "foot": {
                    "simple": false,
                    "showHeadline": true,
                    "showFootLine": true,
                    "showCurrencySelector": true,
                    "showLanguageSelector": true,
                    "showLocaleSelector": true,
                    "showServiceChat": true,
                    "channel": "hotels"
                },
                "sideBar": {
                    "channel": "hotels",
                    "showServiceChat": true
                }
            },
            "uip": "240e:3b3:30b1:f3d0:a8b8:12e7:a546:bbe3",
            "ajaxTimeOut": 0,
            "ajaxRetryTimes": 0,
            "ajaxTimeOutLast": 40000,
            "bookPageCallbackUrl": "/hotels/vieworder",
            "useNewOnline": false,
            "needLoginLayer": true,
            "bookPageNewEditionSwitch": true,
            "bmapZoom": 13,
            "showListRoomMapSwitch": 1,
            "showReview": true,
            "enableCoupon": true,
            "enableJumpCT": true,
            "enableKenanForList": true,
            "enableKenanForDetail": true,
            "enableKenanForBook": true,
            "enableKenanForOrder": true,
            "kenanSDK": "https://webresource.c-ctrip.com/ares2/flight/coffeebean_ares/3.6.2/default/main.js?expires=5m",
            "notFoundHotels": "40706586,22230323,63964983,24216587,21876609,1287040,57686383,112222826,31484684,1598757,117045386,113591967,97353042,121140765,120433450,1255405,926595,890587,700945,995888,1553367,1938349,54652128,85088729,73688013,2707235,123078966,111224785,121748483,10116435,9271627,346382,706175",
            "isNewTemplate": true,
            "albumImgRorW": "W",
            "enableDoubleRatePlan": "T",
            "enableHotelCompensate": true,
            "enableSuspendBus": true,
            "enableMapOfCompensateList": false,
            "enableNewPriceList": true,
            "enableBookNewPriceList": true,
            "enableBookSeaPersonalAuth": "F",
            "componentLogin2page": "T",
            "searchFilterAdultNum": 30,
            "searchFilterChildNum": 30
        },
        "room_info": {
            "baseRooms": [
                {
                    "saleRoom": [
                        {
                            "money": {
                                "price": "188",
                                "payType": "在线付",
                                "priceAndTax": "188",
                                "includeTaxText": "",
                                "includeTaxPrice": "",
                                "filterPrice": "188"
                            },
                            "facility": [
                                {
                                    "icon": "ic_new_fa_breakfast",
                                    "content": "无早餐",
                                    "type": "NoMeal"
                                }
                            ],
                            "policy": [
                                {
                                    "icon": "ic_new_warning_line",
                                    "content": "30分钟内免费取消",
                                    "hover": "{\"title\":\"30分钟内免费取消\",\"table\":[{\"head\":true,\"cells\":[{\"content\":\"北京时间\"},{\"content\":\"取消费用\"}]},{\"cells\":[{\"content\":\"订单确认30分钟内\"},{\"highLight\":true,\"content\":\"免费取消\"}]},{\"cells\":[{\"content\":\"订单确认30分钟后\"},{\"content\":\"不可取消\"}]}],\"list\":[{\"title\":\"不可取消\",\"hotelDateTitle\":\"酒店当地时间\",\"hotelDateContent\":\"01月16日 12:00后\",\"localDateTitle\":\"所在地时间(GMT+8.0):\",\"localDateContent\":\"01月16日 12:00后\",\"titleWithCurrencyMark\":\"不可取消\",\"isFree\":false}]}",
                                    "type": "LadderCancel",
                                    "labelExtensions": [
                                        {
                                            "type": "ignoreScene",
                                            "value": "2"
                                        },
                                        {
                                            "type": "roomScene",
                                            "value": "0"
                                        }
                                    ]
                                },
                                {
                                    "icon": "ic_new_check_line",
                                    "content": "1小时确认",
                                    "hover": "此酒店近期大多数订单的确认速度为1小时",
                                    "type": "NotInstanceConfirm"
                                }
                            ],
                            "promotion": [

                            ],
                            "base": {
                                "maxGuest": 2,
                                "minQuantity": 1,
                                "maxQuantity": 10,
                                "roomId": 870075711,
                                "rank": 6,
                                "countDown": 0,
                                "filterValue": 0,
                                "buttonType": 1,
                                "startPriceRoom": false,
                                "tripBasicRoom": false,
                                "tpRoom": false,
                                "availParam": {
                                    "extendParam": "{\"guaranteeType\":0,\"payType\":0,\"subPayType\":1,\"guaranteeAmount\":188,\"balanceType\":\"PP\",\"currency\":\"CNY\",\"exchange\":1,\"maxRoomQuantity\":10,\"orderTraceId\":\"45805eaa-a307-4cd9-b536-e6991713f07d1728634406842\",\"timestamp\":1728634407,\"lowestPriceRoom\":false,\"needInventoryTension\":false,\"displayprice\":188,\"totalprice\":188,\"roomid\":870075711,\"cityId\":147,\"countryId\":1,\"vendorId\":0,\"cancelPolicyType\":\"30分钟内免费取消\",\"cancelPolicyDesc\":\"{\\"title\\":\\"30分钟内免费取消\\",\\"table\\":[{\\"head\\":true,\\"cells\\":[{\\"content\\":\\"北京时间\\"},{\\"content\\":\\"取消费用\\"}]},{\\"cells\\":[{\\"content\\":\\"订单确认30分钟内\\"},{\\"highLight\\":true,\\"content\\":\\"免费取消\\"}]},{\\"cells\\":[{\\"content\\":\\"订单确认30分钟后\\"},{\\"content\\":\\"不可取消\\"}]}],\\"list\\":[{\\"title\\":\\"不可取消\\",\\"hotelDateTitle\\":\\"酒店当地时间\\",\\"hotelDateContent\\":\\"01月16日 12:00后\\",\\"localDateTitle\\":\\"所在地时间(GMT+8.0):\\",\\"localDateContent\\":\\"01月16日 12:00后\\",\\"titleWithCurrencyMark\\":\\"不可取消\\",\\"isFree\\":false}]}\",\"mealType\":\"无早餐\",\"mealDesc\":\"\"}",
                                    "comparingAmount": 188,
                                    "roomkey": "870075711_0_0"
                                },
                                "filterList": [
                                    "77|488",
                                    "77|246",
                                    "77|489",
                                    "77|247",
                                    "77|406",
                                    "77|407",
                                    "77|404",
                                    "44|1006",
                                    "77|245",
                                    "77|259",
                                    "77|413",
                                    "77|257",
                                    "77|258",
                                    "77|493",
                                    "3|F-1",
                                    "77|494",
                                    "77|491",
                                    "77|492",
                                    "23|6",
                                    "77|497",
                                    "77|256",
                                    "77|253",
                                    "77|496",
                                    "77|490",
                                    "77|408",
                                    "77|389",
                                    "77|262",
                                    "77|260",
                                    "77|261",
                                    "76|2",
                                    "77|388",
                                    "76|1",
                                    "77|264",
                                    "76|3",
                                    "77|76",
                                    "77|75",
                                    "77|78",
                                    "77|77",
                                    "77|79",
                                    "77|711",
                                    "77|312",
                                    "23|10",
                                    "77|715",
                                    "77|317",
                                    "77|713",
                                    "4|0",
                                    "22|666667",
                                    "81|831",
                                    "77|392",
                                    "77|398",
                                    "77|396",
                                    "77|397",
                                    "77|391",
                                    "77|446",
                                    "77|721",
                                    "77|447",
                                    "77|324",
                                    "77|445",
                                    "77|203",
                                    "77|725",
                                    "77|448",
                                    "77|723",
                                    "77|449",
                                    "81|824",
                                    "77|321",
                                    "77|443",
                                    "77|201",
                                    "77|92",
                                    "77|93",
                                    "77|719",
                                    "148|2",
                                    "77|457",
                                    "77|215",
                                    "77|612",
                                    "77|458",
                                    "77|733",
                                    "77|455",
                                    "77|213",
                                    "77|610",
                                    "77|456",
                                    "77|615",
                                    "77|219",
                                    "81|1186",
                                    "77|459",
                                    "77|217",
                                    "77|614",
                                    "77|218",
                                    "77|735",
                                    "77|450",
                                    "77|211",
                                    "7|2",
                                    "77|212",
                                    "7|3",
                                    "7|5",
                                    "77|81",
                                    "77|80",
                                    "77|83",
                                    "77|82",
                                    "77|608",
                                    "77|606",
                                    "77|727",
                                    "77|86",
                                    "77|89",
                                    "77|501",
                                    "77|502",
                                    "77|224",
                                    "77|225",
                                    "77|107",
                                    "77|503",
                                    "77|229",
                                    "77|185",
                                    "77|460",
                                    "77|461",
                                    "77|464",
                                    "77|222",
                                    "77|223",
                                    "77|221",
                                    "23|1003",
                                    "77|181",
                                    "77|182",
                                    "77|512",
                                    "77|238",
                                    "77|114",
                                    "77|477",
                                    "77|478",
                                    "77|511",
                                    "77|197",
                                    "77|230",
                                    "81|1727",
                                    "66|1",
                                    "77|233",
                                    "77|231",
                                    "77|509",
                                    "77|507",
                                    "77|508"
                                ],
                                "payMethod": 2,
                                "favorateRoom": false,
                                "payType": 0,
                                "subPayType": 1,
                                "isFullRoom": true,
                                "childPriceRoom": false,
                                "personFilterMatch": true,
                                "adult": 0,
                                "childHitAge": [

                                ],
                                "isFold": true,
                                "roomCode": "443QOR"
                            },
                            "roomLayerInfo": {
                                "prePaidInfo": {
                                    "list": [
                                        {
                                            "type": "RoomPrice",
                                            "title": "每间每晚均价",
                                            "content": "¥188",
                                            "adultAndChildrenInfo": ""
                                        }
                                    ]
                                },
                                "totalInfo": {
                                    "price": "¥188"
                                },
                                "titleInfo": {
                                    "meal": "无早餐",
                                    "title": "价格详情"
                                },
                                "taxInfo": {
                                    "offlineTaxInfoDetailList": [

                                    ],
                                    "totalOfflineTaxPrice": ""
                                }
                            },
                            "priceLogParam": {
                                "roomkey": "870075711_0_0"
                            },
                            "tags": [
                                {
                                    "title": "闪住"
                                },
                                {
                                    "title": "30分钟内免费取消"
                                },
                                {
                                    "title": "1小时确认"
                                }
                            ],
                            "p5Tags": [

                            ],
                            "p6Tags": [

                            ],
                            "passToNext": "00000IdepS3lHe6zsaCdD4hpVozQSqUtoMEmA3WZwQ63/+axcK+s0SG8QcXOgoURMcNzPXv6QxYA8BKDjXhHhy+XyuzB0lKWifce4R7pu+85WVgSYYYZu2PWI7YJesiuy/8/3o/z/ahD5YhdD+aojR+jwshX/3F+ndCpq0mVbj9m73X4KftnKH34SnvKjRGWa9gEdUx7ic+vKHmiJecfEbpv34NDcNbRGJH5BjJp5pzxxc4UKnPb6Z3I1Qpl2NuqvUzHb/xljG/77Vc/3XcUrAe7XdowEspoxkSHiD1VmrI8u3Qp+pL+Z6Z08VI7mzGpArvfSpCuUar9gNZM6VCCI6RRP2CJMfw9B16g3d+pqPuOUSwmBcr28KuTs0MGGftF5xjk8GAQtc6L4lfaY8pu7EyrfRA==",
                            "traceInfo": "{\"timestamp\":1728634407079,\"checkIn\":\"2024-10-11\",\"checkOut\":\"2024-10-12\",\"region\":\"MAINLAND\",\"cityId\":147,\"hotelId\":2021529,\"groupId\":0,\"roomId\":870075711,\"shadowId\":0,\"ismemberlogin\":true,\"uid\":\"B7D81DA3\",\"infoSec\":false}",
                            "receivableCouponInfo": {
                                "strategyIds": [

                                ]
                            }
                        }
                    ],
                    "baseRoom": {
                        "roomId": 275876561,
                        "roomName": "雅之光·轻奢情侣房",
                        "roomSize": {
                            "text": "26平方米"
                        },
                        "roomFloor": "2-3楼",
                        "facility": [
                            {
                                "icon": "",
                                "content": "26m²",
                                "type": "",
                                "hover": ""
                            },
                            {
                                "icon": "window",
                                "content": "有窗",
                                "type": "Window"
                            },
                            {
                                "icon": "ic_new_fa_no_smoking",
                                "content": "部分禁烟",
                                "type": "NoSmoke"
                            }
                        ],
                        "album": {
                            "list": [
                                {
                                    "url": "//dimg04.c-ctrip.com/images/0205b1200026q5jb31AC9_R_400_400_R5_D.jpg"
                                },
                                {
                                    "url": "//dimg04.c-ctrip.com/images/0200m1200026w0pxh034D_R_400_400_R5_D.jpg"
                                },
                                {
                                    "url": "//dimg04.c-ctrip.com/images/0201k1200026udujz2D93_R_400_400_R5_D.jpg"
                                },
                                {
                                    "url": "//dimg04.c-ctrip.com/images/0206q1200026u4rxq2F43_R_400_400_R5_D.jpg"
                                },
                                {
                                    "url": "//dimg04.c-ctrip.com/images/020621200026pz02l1B09_R_400_400_R5_D.jpg"
                                },
                                {
                                    "url": "//dimg04.c-ctrip.com/images/0200s120008htzon7B951_R_400_400_R5_D.jpg"
                                },
                                {
                                    "url": "//dimg04.c-ctrip.com/images/02005120008htzo1rC4CA_R_400_400_R5_D.jpg"
                                },
                                {
                                    "url": "//dimg04.c-ctrip.com/images/0201w1200026uxjxe7E3B_R_400_400_R5_D.jpg"
                                }
                            ],
                            "amenty": [
                                {
                                    "title": "清洁服务",
                                    "list": [
                                        {
                                            "name": "每日打扫",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "打扫工具",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "洗衣用品",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "熨衣设备",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "熨裤机",
                                            "value": 1,
                                            "charge": "0"
                                        }
                                    ]
                                },
                                {
                                    "title": "食品饮品",
                                    "list": [
                                        {
                                            "name": "速食品",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "小食",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "水果",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "咖啡壶/茶壶",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "茶包",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "软饮",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "瓶装水",
                                            "value": 1,
                                            "charge": "2"
                                        },
                                        {
                                            "name": "电热水壶",
                                            "value": 1,
                                            "charge": "0"
                                        }
                                    ]
                                },
                                {
                                    "title": "洗浴用品",
                                    "list": [
                                        {
                                            "name": "牙刷",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "牙膏",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "沐浴露",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "洗发水",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "护发素",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "香皂",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "浴帽",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "梳子",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "剃须刀",
                                            "value": 1,
                                            "charge": "0"
                                        }
                                    ]
                                },
                                {
                                    "title": "客房布局和家具",
                                    "list": [
                                        {
                                            "name": "沙发",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "书桌",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "茶几",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "休闲椅",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "餐桌",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "用餐区",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "私人入口",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "挂墙装饰画/字画",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "阳台",
                                            "value": 1,
                                            "charge": "0"
                                        }
                                    ]
                                },
                                {
                                    "title": "无障碍设施",
                                    "list": [
                                        {
                                            "name": "无障碍通道",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "无障碍淋浴",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "淋浴座椅",
                                            "value": 1,
                                            "charge": "0"
                                        }
                                    ]
                                },
                                {
                                    "title": "网络与通讯",
                                    "list": [
                                        {
                                            "name": "客房WIFI",
                                            "value": 1,
                                            "charge": "2"
                                        },
                                        {
                                            "name": "电话",
                                            "value": 1,
                                            "charge": "0"
                                        }
                                    ]
                                },
                                {
                                    "title": "儿童设施服务",
                                    "list": [
                                        {
                                            "name": "儿童洗漱用品",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "儿童浴巾",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "儿童面巾",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "儿童防护设施",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "磁吸飞镖",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "跳跳球",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "洗浴玩具",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "儿童餐具",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "儿童餐椅",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "儿童玩具",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "桌角防护",
                                            "value": 1,
                                            "charge": "0"
                                        }
                                    ]
                                },
                                {
                                    "title": "卫浴设施",
                                    "list": [
                                        {
                                            "name": "私人浴室",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "私人卫生间",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "吹风机",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "浴室化妆放大镜",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "毛巾",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "浴巾",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "24小时热水",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "拖鞋",
                                            "value": 1,
                                            "charge": "0"
                                        }
                                    ]
                                },
                                {
                                    "title": "媒体科技",
                                    "list": [
                                        {
                                            "name": "智能客控",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "液晶电视机",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "3D电视",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "卫星频道",
                                            "value": 1,
                                            "charge": "0"
                                        }
                                    ]
                                },
                                {
                                    "title": "客房设施",
                                    "list": [
                                        {
                                            "name": "空调",
                                            "value": 1,
                                            "charge": "2"
                                        },
                                        {
                                            "name": "暖气",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "地暖",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "电热毯",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "手动窗帘",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "自动窗帘",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "遮光窗帘",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "地毯",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "特长睡床(超过两米)",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "床具:鸭绒被",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "床具:毯子或被子",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "备用床具",
                                            "value": 1,
                                            "charge": "2"
                                        },
                                        {
                                            "name": "空气净化器",
                                            "value": 1,
                                            "charge": "0"
                                        }
                                    ]
                                },
                                {
                                    "title": "厨房用品",
                                    "list": [
                                        {
                                            "name": "餐具",
                                            "value": 1,
                                            "charge": "0"
                                        }
                                    ]
                                },
                                {
                                    "title": "室外景观",
                                    "list": [
                                        {
                                            "name": "花园景",
                                            "value": 1,
                                            "charge": "0"
                                        }
                                    ]
                                },
                                {
                                    "title": "便利设施",
                                    "list": [
                                        {
                                            "name": "管家服务",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "电子秤",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "针线包",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "开夜床",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "衣架",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "多种规格电源插座",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "220V电压插座",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "雨伞",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "欢迎礼品",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "棋牌桌",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "桌游",
                                            "value": 1,
                                            "charge": "0"
                                        }
                                    ]
                                }
                            ]
                        },
                        "addBed": "加床费用:该房型不可加床",
                        "roomNetwork": {
                            "content": "Wi-Fi免费",
                            "type": "Wifi"
                        },
                        "roomDescription": "",
                        "bed": {
                            "list": [
                                "ic_new_double_bed"
                            ],
                            "contentListHover": [
                                "1张榻榻米  (2.2米)"
                            ],
                            "contentList": [
                                "1张2.2米榻榻米"
                            ]
                        },
                        "childPolicyDisplayInfo": {
                            "policyTitle": "儿童及加床",
                            "subCategoryInfos": [
                                {
                                    "title": "",
                                    "descriptions": [
                                        "该房型欢迎携带儿童入住"
                                    ],
                                    "type": "summary"
                                },
                                {
                                    "title": "婴儿床及加床政策",
                                    "descriptions": [
                                        "该房型不提供加床、不提供加婴儿床",
                                        "超过入住人数时,可能涉及额外费用,收费规则如下"
                                    ],
                                    "tableInfo": {
                                        "headers": [
                                            "年龄",
                                            "床铺",
                                            "费用"
                                        ],
                                        "tableItems": [
                                            {
                                                "tableDetails": [
                                                    {
                                                        "content": "17岁及以下"
                                                    },
                                                    {
                                                        "content": "使用现有床铺"
                                                    },
                                                    {
                                                        "content": "免费",
                                                        "highlight": "免费"
                                                    }
                                                ]
                                            }
                                        ]
                                    },
                                    "type": "bedPolicy"
                                }
                            ]
                        },
                        "bedInfo": {
                            "bedTypeDesc": "1张2.2米榻榻米",
                            "bedWidthDesc": "1张榻榻米2.2米",
                            "complicatedBedInfo": {
                                "title": "1张榻榻米2.2米",
                                "icon": "https://pages.c-ctrip.com/wireless-app/imgs/T2Images/0625/bedTitleIcon.png",
                                "roomBedEntity": [

                                ]
                            }
                        }
                    }
                },
                {
                    "saleRoom": [
                        {
                            "money": {
                                "price": "228",
                                "payType": "在线付",
                                "priceAndTax": "228",
                                "includeTaxText": "",
                                "includeTaxPrice": "",
                                "filterPrice": "228"
                            },
                            "facility": [
                                {
                                    "icon": "ic_new_fa_breakfast",
                                    "content": "无早餐",
                                    "type": "NoMeal"
                                }
                            ],
                            "policy": [
                                {
                                    "icon": "ic_new_warning_line",
                                    "content": "30分钟内免费取消",
                                    "hover": "{\"title\":\"30分钟内免费取消\",\"table\":[{\"head\":true,\"cells\":[{\"content\":\"北京时间\"},{\"content\":\"取消费用\"}]},{\"cells\":[{\"content\":\"订单确认30分钟内\"},{\"highLight\":true,\"content\":\"免费取消\"}]},{\"cells\":[{\"content\":\"订单确认30分钟后\"},{\"content\":\"不可取消\"}]}],\"list\":[{\"title\":\"不可取消\",\"hotelDateTitle\":\"酒店当地时间\",\"hotelDateContent\":\"01月16日 12:00后\",\"localDateTitle\":\"所在地时间(GMT+8.0):\",\"localDateContent\":\"01月16日 12:00后\",\"titleWithCurrencyMark\":\"不可取消\",\"isFree\":false}]}",
                                    "type": "LadderCancel",
                                    "labelExtensions": [
                                        {
                                            "type": "ignoreScene",
                                            "value": "2"
                                        },
                                        {
                                            "type": "roomScene",
                                            "value": "0"
                                        }
                                    ]
                                },
                                {
                                    "icon": "ic_new_check_line",
                                    "content": "1小时确认",
                                    "hover": "此酒店近期大多数订单的确认速度为1小时",
                                    "type": "NotInstanceConfirm"
                                }
                            ],
                            "promotion": [

                            ],
                            "base": {
                                "maxGuest": 4,
                                "minQuantity": 1,
                                "maxQuantity": 10,
                                "roomId": 870075710,
                                "rank": 5,
                                "countDown": 0,
                                "filterValue": 0,
                                "buttonType": 1,
                                "startPriceRoom": false,
                                "tripBasicRoom": false,
                                "tpRoom": false,
                                "availParam": {
                                    "extendParam": "{\"guaranteeType\":0,\"payType\":0,\"subPayType\":1,\"guaranteeAmount\":228,\"balanceType\":\"PP\",\"currency\":\"CNY\",\"exchange\":1,\"maxRoomQuantity\":10,\"orderTraceId\":\"45805eaa-a307-4cd9-b536-e6991713f07d1728634406842\",\"timestamp\":1728634407,\"lowestPriceRoom\":false,\"needInventoryTension\":false,\"displayprice\":228,\"totalprice\":228,\"roomid\":870075710,\"cityId\":147,\"countryId\":1,\"vendorId\":0,\"cancelPolicyType\":\"30分钟内免费取消\",\"cancelPolicyDesc\":\"{\\"title\\":\\"30分钟内免费取消\\",\\"table\\":[{\\"head\\":true,\\"cells\\":[{\\"content\\":\\"北京时间\\"},{\\"content\\":\\"取消费用\\"}]},{\\"cells\\":[{\\"content\\":\\"订单确认30分钟内\\"},{\\"highLight\\":true,\\"content\\":\\"免费取消\\"}]},{\\"cells\\":[{\\"content\\":\\"订单确认30分钟后\\"},{\\"content\\":\\"不可取消\\"}]}],\\"list\\":[{\\"title\\":\\"不可取消\\",\\"hotelDateTitle\\":\\"酒店当地时间\\",\\"hotelDateContent\\":\\"01月16日 12:00后\\",\\"localDateTitle\\":\\"所在地时间(GMT+8.0):\\",\\"localDateContent\\":\\"01月16日 12:00后\\",\\"titleWithCurrencyMark\\":\\"不可取消\\",\\"isFree\\":false}]}\",\"mealType\":\"无早餐\",\"mealDesc\":\"\"}",
                                    "comparingAmount": 228,
                                    "roomkey": "870075710_0_0"
                                },
                                "filterList": [
                                    "77|488",
                                    "77|246",
                                    "77|489",
                                    "77|247",
                                    "77|406",
                                    "77|407",
                                    "77|404",
                                    "44|1006",
                                    "77|245",
                                    "77|259",
                                    "77|413",
                                    "77|257",
                                    "77|258",
                                    "77|493",
                                    "3|F-1",
                                    "77|494",
                                    "77|491",
                                    "77|492",
                                    "23|6",
                                    "77|497",
                                    "77|256",
                                    "77|253",
                                    "77|496",
                                    "77|490",
                                    "77|408",
                                    "77|389",
                                    "77|262",
                                    "77|261",
                                    "76|2",
                                    "77|388",
                                    "76|1",
                                    "77|264",
                                    "76|3",
                                    "77|76",
                                    "77|75",
                                    "77|78",
                                    "77|77",
                                    "77|79",
                                    "77|711",
                                    "23|10",
                                    "77|715",
                                    "77|317",
                                    "77|713",
                                    "4|0",
                                    "22|666667",
                                    "81|831",
                                    "77|392",
                                    "77|398",
                                    "77|396",
                                    "77|397",
                                    "77|391",
                                    "77|446",
                                    "77|721",
                                    "77|447",
                                    "77|324",
                                    "77|445",
                                    "77|203",
                                    "77|725",
                                    "77|448",
                                    "77|723",
                                    "77|449",
                                    "81|824",
                                    "77|321",
                                    "77|443",
                                    "77|201",
                                    "77|92",
                                    "77|93",
                                    "77|719",
                                    "148|2",
                                    "77|457",
                                    "77|215",
                                    "77|612",
                                    "77|458",
                                    "77|733",
                                    "77|455",
                                    "77|213",
                                    "81|814",
                                    "77|610",
                                    "77|456",
                                    "77|615",
                                    "77|219",
                                    "77|459",
                                    "77|217",
                                    "77|614",
                                    "77|735",
                                    "77|450",
                                    "77|211",
                                    "7|2",
                                    "77|212",
                                    "7|3",
                                    "77|210",
                                    "7|5",
                                    "77|81",
                                    "77|80",
                                    "77|83",
                                    "77|82",
                                    "77|608",
                                    "77|606",
                                    "77|727",
                                    "77|86",
                                    "77|89",
                                    "77|501",
                                    "77|502",
                                    "77|224",
                                    "77|225",
                                    "77|107",
                                    "77|503",
                                    "77|229",
                                    "77|185",
                                    "77|460",
                                    "81|1737",
                                    "77|461",
                                    "77|464",
                                    "77|222",
                                    "77|223",
                                    "23|1003",
                                    "77|181",
                                    "77|182",
                                    "77|512",
                                    "77|238",
                                    "77|114",
                                    "77|477",
                                    "77|478",
                                    "77|511",
                                    "77|197",
                                    "77|230",
                                    "81|1727",
                                    "66|1",
                                    "77|233",
                                    "77|231",
                                    "77|509",
                                    "77|507",
                                    "77|508"
                                ],
                                "payMethod": 2,
                                "favorateRoom": false,
                                "payType": 0,
                                "subPayType": 1,
                                "isFullRoom": true,
                                "childPriceRoom": false,
                                "personFilterMatch": true,
                                "adult": 0,
                                "childHitAge": [

                                ],
                                "isFold": true,
                                "roomCode": "443QOQ"
                            },
                            "roomLayerInfo": {
                                "prePaidInfo": {
                                    "list": [
                                        {
                                            "type": "RoomPrice",
                                            "title": "每间每晚均价",
                                            "content": "¥228",
                                            "adultAndChildrenInfo": ""
                                        }
                                    ]
                                },
                                "totalInfo": {
                                    "price": "¥228"
                                },
                                "titleInfo": {
                                    "meal": "无早餐",
                                    "title": "价格详情"
                                },
                                "taxInfo": {
                                    "offlineTaxInfoDetailList": [

                                    ],
                                    "totalOfflineTaxPrice": ""
                                }
                            },
                            "priceLogParam": {
                                "roomkey": "870075710_0_0"
                            },
                            "tags": [
                                {
                                    "title": "闪住"
                                },
                                {
                                    "title": "30分钟内免费取消"
                                },
                                {
                                    "title": "1小时确认"
                                }
                            ],
                            "p5Tags": [

                            ],
                            "p6Tags": [

                            ],
                            "passToNext": "00000IdepS3lHe6zsaCdD4hpVozQSqUtoMEmA3WZwQ63/+axcK+s0SG8QcXOgoURMcNzPXv6QxYA8BKDjXhHhy+XyuzB0lKWifce4R7pu+85WVgSYYYZu2PWI7YJesiuy/8/3o/z/ahD5YhfpZBLMSeo9PJAfXqGQz1oPznji4MwUzjyONHPTyENDQ4UXWzwa4EC4+nr1TRL4gXoD3B0+jPHFghEdt3LCsPOukl4n28F/ynXo4lby55VEezVDUjha3XNxeBU4UwH4HV0sb6FeAFvvm2YxV8m3CJVQsVVTTQjXLx9xnnhMX3eXI0/EZtOKqpmNDundETEixPYHFjvtlhjc1qtI5bByHw4lLRlGeGvLVgoPs7q4CchI8SA1e8/nZdDzGMzseQ2JnK0gLc8b8oHRvQ==",
                            "traceInfo": "{\"timestamp\":1728634407080,\"checkIn\":\"2024-10-11\",\"checkOut\":\"2024-10-12\",\"region\":\"MAINLAND\",\"cityId\":147,\"hotelId\":2021529,\"groupId\":0,\"roomId\":870075710,\"shadowId\":0,\"ismemberlogin\":true,\"uid\":\"B7D81DA3\",\"infoSec\":false}",
                            "receivableCouponInfo": {
                                "strategyIds": [

                                ]
                            }
                        }
                    ],
                    "baseRoom": {
                        "roomId": 275876019,
                        "roomName": "温之旅·雅致四人房",
                        "roomSize": {
                            "text": "32平方米"
                        },
                        "roomFloor": "1-3楼",
                        "facility": [
                            {
                                "icon": "",
                                "content": "32m²",
                                "type": "",
                                "hover": ""
                            },
                            {
                                "icon": "window",
                                "content": "有窗",
                                "type": "Window"
                            },
                            {
                                "icon": "ic_new_fa_no_smoking",
                                "content": "部分禁烟",
                                "type": "NoSmoke"
                            }
                        ],
                        "album": {
                            "list": [
                                {
                                    "url": "//dimg04.c-ctrip.com/images/020681200026pp31458AE_R_400_400_R5_D.jpg"
                                },
                                {
                                    "url": "//dimg04.c-ctrip.com/images/020571200026pltu76F80_R_400_400_R5_D.jpg"
                                },
                                {
                                    "url": "//dimg04.c-ctrip.com/images/020201200026pijid127C_R_400_400_R5_D.jpg"
                                },
                                {
                                    "url": "//dimg04.c-ctrip.com/images/02011120008htznaf4120_R_400_400_R5_D.jpg"
                                },
                                {
                                    "url": "//dimg04.c-ctrip.com/images/0200s120008htzon7B951_R_400_400_R5_D.jpg"
                                },
                                {
                                    "url": "//dimg04.c-ctrip.com/images/02005120008htzo1rC4CA_R_400_400_R5_D.jpg"
                                },
                                {
                                    "url": "//dimg04.c-ctrip.com/images/0203n120008htzqf29591_R_400_400_R5_D.jpg"
                                }
                            ],
                            "amenty": [
                                {
                                    "title": "清洁服务",
                                    "list": [
                                        {
                                            "name": "每日打扫",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "打扫工具",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "洗衣用品",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "熨衣设备",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "熨裤机",
                                            "value": 1,
                                            "charge": "0"
                                        }
                                    ]
                                },
                                {
                                    "title": "食品饮品",
                                    "list": [
                                        {
                                            "name": "速食品",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "小食",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "水果",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "咖啡壶/茶壶",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "茶包",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "软饮",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "瓶装水",
                                            "value": 1,
                                            "charge": "2"
                                        },
                                        {
                                            "name": "电热水壶",
                                            "value": 1,
                                            "charge": "0"
                                        }
                                    ]
                                },
                                {
                                    "title": "洗浴用品",
                                    "list": [
                                        {
                                            "name": "牙刷",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "牙膏",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "沐浴露",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "洗发水",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "护发素",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "香皂",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "浴帽",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "梳子",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "剃须刀",
                                            "value": 1,
                                            "charge": "0"
                                        }
                                    ]
                                },
                                {
                                    "title": "客房布局和家具",
                                    "list": [
                                        {
                                            "name": "沙发",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "书桌",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "茶几",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "休闲椅",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "餐桌",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "用餐区",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "私人入口",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "挂墙装饰画/字画",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "阳台",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "露台",
                                            "value": 1,
                                            "charge": "0"
                                        }
                                    ]
                                },
                                {
                                    "title": "无障碍设施",
                                    "list": [
                                        {
                                            "name": "无障碍通道",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "无障碍淋浴",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "淋浴座椅",
                                            "value": 1,
                                            "charge": "0"
                                        }
                                    ]
                                },
                                {
                                    "title": "网络与通讯",
                                    "list": [
                                        {
                                            "name": "客房WIFI",
                                            "value": 1,
                                            "charge": "2"
                                        },
                                        {
                                            "name": "电话",
                                            "value": 1,
                                            "charge": "0"
                                        }
                                    ]
                                },
                                {
                                    "title": "儿童设施服务",
                                    "list": [
                                        {
                                            "name": "儿童洗漱用品",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "儿童浴巾",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "儿童面巾",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "儿童防护设施",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "磁吸飞镖",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "跳跳球",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "洗浴玩具",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "儿童餐具",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "儿童餐椅",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "儿童玩具",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "桌角防护",
                                            "value": 1,
                                            "charge": "0"
                                        }
                                    ]
                                },
                                {
                                    "title": "卫浴设施",
                                    "list": [
                                        {
                                            "name": "私人浴室",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "私人卫生间",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "吹风机",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "浴室化妆放大镜",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "毛巾",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "浴巾",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "24小时热水",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "拖鞋",
                                            "value": 1,
                                            "charge": "0"
                                        }
                                    ]
                                },
                                {
                                    "title": "媒体科技",
                                    "list": [
                                        {
                                            "name": "智能客控",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "液晶电视机",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "3D电视",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "卫星频道",
                                            "value": 1,
                                            "charge": "0"
                                        }
                                    ]
                                },
                                {
                                    "title": "客房设施",
                                    "list": [
                                        {
                                            "name": "空调",
                                            "value": 1,
                                            "charge": "2"
                                        },
                                        {
                                            "name": "暖气",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "地暖",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "电热毯",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "手动窗帘",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "遮光窗帘",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "地毯",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "特长睡床(超过两米)",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "床具:鸭绒被",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "床具:毯子或被子",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "备用床具",
                                            "value": 1,
                                            "charge": "2"
                                        }
                                    ]
                                },
                                {
                                    "title": "厨房用品",
                                    "list": [
                                        {
                                            "name": "餐具",
                                            "value": 1,
                                            "charge": "0"
                                        }
                                    ]
                                },
                                {
                                    "title": "室外景观",
                                    "list": [
                                        {
                                            "name": "花园景",
                                            "value": 1,
                                            "charge": "0"
                                        }
                                    ]
                                },
                                {
                                    "title": "便利设施",
                                    "list": [
                                        {
                                            "name": "管家服务",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "电子秤",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "针线包",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "开夜床",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "衣架",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "多种规格电源插座",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "220V电压插座",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "雨伞",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "欢迎礼品",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "棋牌桌",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "桌游",
                                            "value": 1,
                                            "charge": "0"
                                        }
                                    ]
                                }
                            ]
                        },
                        "addBed": "加床费用:该房型不可加床",
                        "roomNetwork": {
                            "content": "Wi-Fi免费",
                            "type": "Wifi"
                        },
                        "roomDescription": "",
                        "bed": {
                            "list": [
                                "ic_new_double_bed"
                            ],
                            "contentListHover": [
                                "1张榻榻米  (3.7米)"
                            ],
                            "contentList": [
                                "1张3.7米榻榻米"
                            ]
                        },
                        "childPolicyDisplayInfo": {
                            "policyTitle": "儿童及加床",
                            "subCategoryInfos": [
                                {
                                    "title": "",
                                    "descriptions": [
                                        "该房型欢迎携带儿童入住"
                                    ],
                                    "type": "summary"
                                },
                                {
                                    "title": "婴儿床及加床政策",
                                    "descriptions": [
                                        "该房型不提供加床、不提供加婴儿床",
                                        "超过入住人数时,可能涉及额外费用,收费规则如下"
                                    ],
                                    "tableInfo": {
                                        "headers": [
                                            "年龄",
                                            "床铺",
                                            "费用"
                                        ],
                                        "tableItems": [
                                            {
                                                "tableDetails": [
                                                    {
                                                        "content": "17岁及以下"
                                                    },
                                                    {
                                                        "content": "使用现有床铺"
                                                    },
                                                    {
                                                        "content": "免费",
                                                        "highlight": "免费"
                                                    }
                                                ]
                                            }
                                        ]
                                    },
                                    "type": "bedPolicy"
                                }
                            ]
                        },
                        "bedInfo": {
                            "bedTypeDesc": "1张3.7米榻榻米",
                            "bedWidthDesc": "1张榻榻米3.7米",
                            "complicatedBedInfo": {
                                "title": "1张榻榻米3.7米",
                                "icon": "https://pages.c-ctrip.com/wireless-app/imgs/T2Images/0625/bedTitleIcon.png",
                                "roomBedEntity": [

                                ]
                            }
                        }
                    }
                },
                {
                    "saleRoom": [
                        {
                            "money": {
                                "price": "179",
                                "payType": "在线付",
                                "priceAndTax": "179",
                                "includeTaxText": "",
                                "includeTaxPrice": "",
                                "filterPrice": "179"
                            },
                            "facility": [
                                {
                                    "icon": "ic_new_fa_breakfast",
                                    "content": "无早餐",
                                    "type": "NoMeal"
                                }
                            ],
                            "policy": [
                                {
                                    "icon": "ic_new_warning_line",
                                    "content": "30分钟内免费取消",
                                    "hover": "{\"title\":\"30分钟内免费取消\",\"table\":[{\"head\":true,\"cells\":[{\"content\":\"北京时间\"},{\"content\":\"取消费用\"}]},{\"cells\":[{\"content\":\"订单确认30分钟内\"},{\"highLight\":true,\"content\":\"免费取消\"}]},{\"cells\":[{\"content\":\"订单确认30分钟后\"},{\"content\":\"不可取消\"}]}],\"list\":[{\"title\":\"不可取消\",\"hotelDateTitle\":\"酒店当地时间\",\"hotelDateContent\":\"01月16日 12:00后\",\"localDateTitle\":\"所在地时间(GMT+8.0):\",\"localDateContent\":\"01月16日 12:00后\",\"titleWithCurrencyMark\":\"不可取消\",\"isFree\":false}]}",
                                    "type": "LadderCancel",
                                    "labelExtensions": [
                                        {
                                            "type": "ignoreScene",
                                            "value": "2"
                                        },
                                        {
                                            "type": "roomScene",
                                            "value": "0"
                                        }
                                    ]
                                },
                                {
                                    "icon": "ic_new_check_line",
                                    "content": "1小时确认",
                                    "hover": "此酒店近期大多数订单的确认速度为1小时",
                                    "type": "NotInstanceConfirm"
                                }
                            ],
                            "promotion": [

                            ],
                            "base": {
                                "maxGuest": 2,
                                "minQuantity": 1,
                                "maxQuantity": 10,
                                "roomId": 870075713,
                                "rank": 4,
                                "countDown": 0,
                                "filterValue": 0,
                                "buttonType": 1,
                                "startPriceRoom": false,
                                "tripBasicRoom": false,
                                "tpRoom": false,
                                "availParam": {
                                    "extendParam": "{\"guaranteeType\":0,\"payType\":0,\"subPayType\":1,\"guaranteeAmount\":179,\"balanceType\":\"PP\",\"currency\":\"CNY\",\"exchange\":1,\"maxRoomQuantity\":10,\"orderTraceId\":\"45805eaa-a307-4cd9-b536-e6991713f07d1728634406842\",\"timestamp\":1728634407,\"lowestPriceRoom\":false,\"needInventoryTension\":false,\"displayprice\":179,\"totalprice\":179,\"roomid\":870075713,\"cityId\":147,\"countryId\":1,\"vendorId\":0,\"cancelPolicyType\":\"30分钟内免费取消\",\"cancelPolicyDesc\":\"{\\"title\\":\\"30分钟内免费取消\\",\\"table\\":[{\\"head\\":true,\\"cells\\":[{\\"content\\":\\"北京时间\\"},{\\"content\\":\\"取消费用\\"}]},{\\"cells\\":[{\\"content\\":\\"订单确认30分钟内\\"},{\\"highLight\\":true,\\"content\\":\\"免费取消\\"}]},{\\"cells\\":[{\\"content\\":\\"订单确认30分钟后\\"},{\\"content\\":\\"不可取消\\"}]}],\\"list\\":[{\\"title\\":\\"不可取消\\",\\"hotelDateTitle\\":\\"酒店当地时间\\",\\"hotelDateContent\\":\\"01月16日 12:00后\\",\\"localDateTitle\\":\\"所在地时间(GMT+8.0):\\",\\"localDateContent\\":\\"01月16日 12:00后\\",\\"titleWithCurrencyMark\\":\\"不可取消\\",\\"isFree\\":false}]}\",\"mealType\":\"无早餐\",\"mealDesc\":\"\"}",
                                    "comparingAmount": 179,
                                    "roomkey": "870075713_0_0"
                                },
                                "filterList": [
                                    "77|488",
                                    "77|246",
                                    "77|489",
                                    "77|406",
                                    "77|407",
                                    "77|404",
                                    "44|1006",
                                    "77|245",
                                    "77|259",
                                    "77|413",
                                    "77|257",
                                    "77|258",
                                    "77|493",
                                    "3|F-1",
                                    "77|494",
                                    "77|491",
                                    "77|492",
                                    "23|6",
                                    "77|497",
                                    "77|256",
                                    "77|253",
                                    "77|496",
                                    "77|490",
                                    "77|408",
                                    "77|389",
                                    "77|262",
                                    "77|261",
                                    "76|2",
                                    "77|388",
                                    "76|1",
                                    "77|264",
                                    "76|3",
                                    "77|76",
                                    "77|75",
                                    "77|78",
                                    "77|77",
                                    "77|79",
                                    "77|711",
                                    "23|10",
                                    "77|715",
                                    "77|317",
                                    "77|713",
                                    "4|0",
                                    "22|666667",
                                    "77|392",
                                    "77|398",
                                    "77|396",
                                    "77|397",
                                    "77|391",
                                    "77|446",
                                    "77|721",
                                    "77|447",
                                    "77|324",
                                    "77|445",
                                    "77|203",
                                    "77|725",
                                    "77|448",
                                    "77|723",
                                    "77|449",
                                    "81|824",
                                    "77|321",
                                    "77|443",
                                    "77|201",
                                    "77|92",
                                    "77|93",
                                    "77|719",
                                    "148|2",
                                    "77|457",
                                    "77|215",
                                    "77|612",
                                    "77|458",
                                    "77|733",
                                    "77|455",
                                    "77|213",
                                    "77|610",
                                    "77|456",
                                    "77|615",
                                    "77|219",
                                    "77|459",
                                    "77|217",
                                    "77|614",
                                    "77|735",
                                    "77|450",
                                    "77|211",
                                    "7|2",
                                    "77|212",
                                    "7|3",
                                    "7|5",
                                    "77|81",
                                    "77|80",
                                    "77|83",
                                    "77|82",
                                    "77|608",
                                    "77|606",
                                    "77|727",
                                    "77|86",
                                    "77|89",
                                    "77|501",
                                    "77|502",
                                    "77|224",
                                    "77|225",
                                    "77|107",
                                    "77|503",
                                    "77|229",
                                    "77|185",
                                    "77|460",
                                    "77|461",
                                    "77|464",
                                    "77|222",
                                    "77|223",
                                    "23|1003",
                                    "77|181",
                                    "77|182",
                                    "77|512",
                                    "77|238",
                                    "77|114",
                                    "77|477",
                                    "77|478",
                                    "77|511",
                                    "77|197",
                                    "77|230",
                                    "81|1727",
                                    "66|1",
                                    "77|233",
                                    "77|231",
                                    "77|509",
                                    "77|507",
                                    "77|508"
                                ],
                                "payMethod": 2,
                                "favorateRoom": false,
                                "payType": 0,
                                "subPayType": 1,
                                "isFullRoom": true,
                                "childPriceRoom": false,
                                "personFilterMatch": true,
                                "adult": 0,
                                "childHitAge": [

                                ],
                                "isFold": true,
                                "roomCode": "443QOS"
                            },
                            "roomLayerInfo": {
                                "prePaidInfo": {
                                    "list": [
                                        {
                                            "type": "RoomPrice",
                                            "title": "每间每晚均价",
                                            "content": "¥179",
                                            "adultAndChildrenInfo": ""
                                        }
                                    ]
                                },
                                "totalInfo": {
                                    "price": "¥179"
                                },
                                "titleInfo": {
                                    "meal": "无早餐",
                                    "title": "价格详情"
                                },
                                "taxInfo": {
                                    "offlineTaxInfoDetailList": [

                                    ],
                                    "totalOfflineTaxPrice": ""
                                }
                            },
                            "priceLogParam": {
                                "roomkey": "870075713_0_0"
                            },
                            "tags": [
                                {
                                    "title": "闪住"
                                },
                                {
                                    "title": "30分钟内免费取消"
                                },
                                {
                                    "title": "1小时确认"
                                }
                            ],
                            "p5Tags": [

                            ],
                            "p6Tags": [

                            ],
                            "passToNext": "00000IdepS3lHe6zsaCdD4hpVozQSqUtoMEmA3WZwQ63/+axcK+s0SG8QcXOgoURMcNzPXv6QxYA8BKDjXhHhy+XyuzB0lKWifce4R7pu+85WVgSYYYZu2PWI7YJesiuy/8/3o/z/ahD5YhfpZBLMSeo9PJAfXqGQz1oPznji4MwUzjyONHPTyENDQ4UXWzwa4EC4+nr1TRL4gXoD3B0+jPHFghEdt3LCsPOuB2xmvgNHyS3o4lby55VEezVDUjha3XNxeBU4UwH4HV0sb6FeAFvvm2YxV8m3CJVQsVVTTQjXLx9xnnhMX3eXI0/EZtOKqpmNDundETEixPYHFjvtlhjc1qtI5bByHw4lLRlGeGvLVgoPs7q4CchI8SA1e8/nZdDzHJgi6iAoIhMgLc8b8oHRvQ==",
                            "traceInfo": "{\"timestamp\":1728634407081,\"checkIn\":\"2024-10-11\",\"checkOut\":\"2024-10-12\",\"region\":\"MAINLAND\",\"cityId\":147,\"hotelId\":2021529,\"groupId\":0,\"roomId\":870075713,\"shadowId\":0,\"ismemberlogin\":true,\"uid\":\"B7D81DA3\",\"infoSec\":false}",
                            "receivableCouponInfo": {
                                "strategyIds": [

                                ]
                            }
                        }
                    ],
                    "baseRoom": {
                        "roomId": 275905331,
                        "roomName": "沐之韵·朴宿亲子房",
                        "roomSize": {
                            "text": "26平方米"
                        },
                        "roomFloor": "1-3楼",
                        "facility": [
                            {
                                "icon": "",
                                "content": "26m²",
                                "type": "",
                                "hover": ""
                            },
                            {
                                "icon": "window",
                                "content": "有窗",
                                "type": "Window"
                            },
                            {
                                "icon": "ic_new_fa_no_smoking",
                                "content": "部分禁烟",
                                "type": "NoSmoke"
                            }
                        ],
                        "album": {
                            "list": [
                                {
                                    "url": "//dimg04.c-ctrip.com/images/020371200026ukbp1BF1F_R_400_400_R5_D.jpg"
                                },
                                {
                                    "url": "//dimg04.c-ctrip.com/images/020131200026w6jh2F7BE_R_400_400_R5_D.jpg"
                                },
                                {
                                    "url": "//dimg04.c-ctrip.com/images/0205m1200026qlmg3FBF0_R_400_400_R5_D.jpg"
                                },
                                {
                                    "url": "//dimg04.c-ctrip.com/images/0205x1200026u2zwh2D46_R_400_400_R5_D.jpg"
                                },
                                {
                                    "url": "//dimg04.c-ctrip.com/images/020461200026tyd95E9F1_R_400_400_R5_D.jpg"
                                },
                                {
                                    "url": "//dimg04.c-ctrip.com/images/0205w1200026qtgh31A49_R_400_400_R5_D.jpg"
                                },
                                {
                                    "url": "//dimg04.c-ctrip.com/images/02005120008htzo1rC4CA_R_400_400_R5_D.jpg"
                                }
                            ],
                            "amenty": [
                                {
                                    "title": "清洁服务",
                                    "list": [
                                        {
                                            "name": "每日打扫",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "打扫工具",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "洗衣用品",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "熨衣设备",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "熨裤机",
                                            "value": 1,
                                            "charge": "0"
                                        }
                                    ]
                                },
                                {
                                    "title": "食品饮品",
                                    "list": [
                                        {
                                            "name": "速食品",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "小食",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "水果",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "咖啡壶/茶壶",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "茶包",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "软饮",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "瓶装水",
                                            "value": 1,
                                            "charge": "2"
                                        },
                                        {
                                            "name": "电热水壶",
                                            "value": 1,
                                            "charge": "0"
                                        }
                                    ]
                                },
                                {
                                    "title": "洗浴用品",
                                    "list": [
                                        {
                                            "name": "牙刷",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "牙膏",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "沐浴露",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "洗发水",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "护发素",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "香皂",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "浴帽",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "梳子",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "剃须刀",
                                            "value": 1,
                                            "charge": "0"
                                        }
                                    ]
                                },
                                {
                                    "title": "客房布局和家具",
                                    "list": [
                                        {
                                            "name": "沙发",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "书桌",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "茶几",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "休闲椅",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "餐桌",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "用餐区",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "私人入口",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "挂墙装饰画/字画",
                                            "value": 1,
                                            "charge": "0"
                                        }
                                    ]
                                },
                                {
                                    "title": "无障碍设施",
                                    "list": [
                                        {
                                            "name": "无障碍通道",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "无障碍淋浴",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "淋浴座椅",
                                            "value": 1,
                                            "charge": "0"
                                        }
                                    ]
                                },
                                {
                                    "title": "网络与通讯",
                                    "list": [
                                        {
                                            "name": "客房WIFI",
                                            "value": 1,
                                            "charge": "2"
                                        },
                                        {
                                            "name": "电话",
                                            "value": 1,
                                            "charge": "0"
                                        }
                                    ]
                                },
                                {
                                    "title": "儿童设施服务",
                                    "list": [
                                        {
                                            "name": "儿童洗漱用品",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "儿童浴巾",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "儿童面巾",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "儿童防护设施",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "磁吸飞镖",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "跳跳球",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "洗浴玩具",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "儿童餐具",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "儿童餐椅",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "儿童玩具",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "桌角防护",
                                            "value": 1,
                                            "charge": "0"
                                        }
                                    ]
                                },
                                {
                                    "title": "卫浴设施",
                                    "list": [
                                        {
                                            "name": "私人浴室",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "私人卫生间",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "吹风机",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "浴室化妆放大镜",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "毛巾",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "浴巾",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "24小时热水",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "拖鞋",
                                            "value": 1,
                                            "charge": "0"
                                        }
                                    ]
                                },
                                {
                                    "title": "媒体科技",
                                    "list": [
                                        {
                                            "name": "智能客控",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "液晶电视机",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "3D电视",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "卫星频道",
                                            "value": 1,
                                            "charge": "0"
                                        }
                                    ]
                                },
                                {
                                    "title": "客房设施",
                                    "list": [
                                        {
                                            "name": "空调",
                                            "value": 1,
                                            "charge": "2"
                                        },
                                        {
                                            "name": "暖气",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "地暖",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "电热毯",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "手动窗帘",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "遮光窗帘",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "地毯",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "特长睡床(超过两米)",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "床具:鸭绒被",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "床具:毯子或被子",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "备用床具",
                                            "value": 1,
                                            "charge": "2"
                                        }
                                    ]
                                },
                                {
                                    "title": "厨房用品",
                                    "list": [
                                        {
                                            "name": "餐具",
                                            "value": 1,
                                            "charge": "0"
                                        }
                                    ]
                                },
                                {
                                    "title": "室外景观",
                                    "list": [
                                        {
                                            "name": "花园景",
                                            "value": 1,
                                            "charge": "0"
                                        }
                                    ]
                                },
                                {
                                    "title": "便利设施",
                                    "list": [
                                        {
                                            "name": "管家服务",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "电子秤",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "针线包",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "开夜床",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "衣架",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "多种规格电源插座",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "220V电压插座",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "雨伞",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "欢迎礼品",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "棋牌桌",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "桌游",
                                            "value": 1,
                                            "charge": "0"
                                        }
                                    ]
                                }
                            ]
                        },
                        "addBed": "加床费用:该房型不可加床",
                        "roomNetwork": {
                            "content": "Wi-Fi免费",
                            "type": "Wifi"
                        },
                        "roomDescription": "",
                        "bed": {
                            "list": [
                                "ic_new_double_bed"
                            ],
                            "contentListHover": [
                                "1张榻榻米  (2.8米)"
                            ],
                            "contentList": [
                                "1张2.8米榻榻米"
                            ]
                        },
                        "childPolicyDisplayInfo": {
                            "policyTitle": "儿童及加床",
                            "subCategoryInfos": [
                                {
                                    "title": "",
                                    "descriptions": [
                                        "该房型欢迎携带儿童入住"
                                    ],
                                    "type": "summary"
                                },
                                {
                                    "title": "婴儿床及加床政策",
                                    "descriptions": [
                                        "该房型不提供加床、不提供加婴儿床",
                                        "超过入住人数时,可能涉及额外费用,收费规则如下"
                                    ],
                                    "tableInfo": {
                                        "headers": [
                                            "年龄",
                                            "床铺",
                                            "费用"
                                        ],
                                        "tableItems": [
                                            {
                                                "tableDetails": [
                                                    {
                                                        "content": "17岁及以下"
                                                    },
                                                    {
                                                        "content": "使用现有床铺"
                                                    },
                                                    {
                                                        "content": "免费",
                                                        "highlight": "免费"
                                                    }
                                                ]
                                            }
                                        ]
                                    },
                                    "type": "bedPolicy"
                                }
                            ]
                        },
                        "bedInfo": {
                            "bedTypeDesc": "1张2.8米榻榻米",
                            "bedWidthDesc": "1张榻榻米2.8米",
                            "complicatedBedInfo": {
                                "title": "1张榻榻米2.8米",
                                "icon": "https://pages.c-ctrip.com/wireless-app/imgs/T2Images/0625/bedTitleIcon.png",
                                "roomBedEntity": [

                                ]
                            }
                        }
                    }
                },
                {
                    "saleRoom": [
                        {
                            "money": {
                                "price": "208",
                                "payType": "在线付",
                                "priceAndTax": "208",
                                "includeTaxText": "",
                                "includeTaxPrice": "",
                                "filterPrice": "208"
                            },
                            "facility": [
                                {
                                    "icon": "ic_new_fa_breakfast",
                                    "content": "无早餐",
                                    "type": "NoMeal"
                                }
                            ],
                            "policy": [
                                {
                                    "icon": "ic_new_warning_line",
                                    "content": "30分钟内免费取消",
                                    "hover": "{\"title\":\"30分钟内免费取消\",\"table\":[{\"head\":true,\"cells\":[{\"content\":\"北京时间\"},{\"content\":\"取消费用\"}]},{\"cells\":[{\"content\":\"订单确认30分钟内\"},{\"highLight\":true,\"content\":\"免费取消\"}]},{\"cells\":[{\"content\":\"订单确认30分钟后\"},{\"content\":\"不可取消\"}]}],\"list\":[{\"title\":\"不可取消\",\"hotelDateTitle\":\"酒店当地时间\",\"hotelDateContent\":\"01月16日 12:00后\",\"localDateTitle\":\"所在地时间(GMT+8.0):\",\"localDateContent\":\"01月16日 12:00后\",\"titleWithCurrencyMark\":\"不可取消\",\"isFree\":false}]}",
                                    "type": "LadderCancel",
                                    "labelExtensions": [
                                        {
                                            "type": "ignoreScene",
                                            "value": "2"
                                        },
                                        {
                                            "type": "roomScene",
                                            "value": "0"
                                        }
                                    ]
                                },
                                {
                                    "icon": "ic_new_check_line",
                                    "content": "1小时确认",
                                    "hover": "此酒店近期大多数订单的确认速度为1小时",
                                    "type": "NotInstanceConfirm"
                                }
                            ],
                            "promotion": [

                            ],
                            "base": {
                                "maxGuest": 3,
                                "minQuantity": 1,
                                "maxQuantity": 10,
                                "roomId": 870075708,
                                "rank": 3,
                                "countDown": 0,
                                "filterValue": 0,
                                "buttonType": 1,
                                "startPriceRoom": false,
                                "tripBasicRoom": false,
                                "tpRoom": false,
                                "availParam": {
                                    "extendParam": "{\"guaranteeType\":0,\"payType\":0,\"subPayType\":1,\"guaranteeAmount\":208,\"balanceType\":\"PP\",\"currency\":\"CNY\",\"exchange\":1,\"maxRoomQuantity\":10,\"orderTraceId\":\"45805eaa-a307-4cd9-b536-e6991713f07d1728634406842\",\"timestamp\":1728634407,\"lowestPriceRoom\":false,\"needInventoryTension\":false,\"displayprice\":208,\"totalprice\":208,\"roomid\":870075708,\"cityId\":147,\"countryId\":1,\"vendorId\":0,\"cancelPolicyType\":\"30分钟内免费取消\",\"cancelPolicyDesc\":\"{\\"title\\":\\"30分钟内免费取消\\",\\"table\\":[{\\"head\\":true,\\"cells\\":[{\\"content\\":\\"北京时间\\"},{\\"content\\":\\"取消费用\\"}]},{\\"cells\\":[{\\"content\\":\\"订单确认30分钟内\\"},{\\"highLight\\":true,\\"content\\":\\"免费取消\\"}]},{\\"cells\\":[{\\"content\\":\\"订单确认30分钟后\\"},{\\"content\\":\\"不可取消\\"}]}],\\"list\\":[{\\"title\\":\\"不可取消\\",\\"hotelDateTitle\\":\\"酒店当地时间\\",\\"hotelDateContent\\":\\"01月16日 12:00后\\",\\"localDateTitle\\":\\"所在地时间(GMT+8.0):\\",\\"localDateContent\\":\\"01月16日 12:00后\\",\\"titleWithCurrencyMark\\":\\"不可取消\\",\\"isFree\\":false}]}\",\"mealType\":\"无早餐\",\"mealDesc\":\"\"}",
                                    "comparingAmount": 208,
                                    "roomkey": "870075708_0_0"
                                },
                                "filterList": [
                                    "77|488",
                                    "77|246",
                                    "77|489",
                                    "77|247",
                                    "77|406",
                                    "77|407",
                                    "77|404",
                                    "44|1006",
                                    "77|245",
                                    "77|259",
                                    "77|413",
                                    "77|257",
                                    "77|258",
                                    "77|493",
                                    "3|F-1",
                                    "77|494",
                                    "77|491",
                                    "77|492",
                                    "23|6",
                                    "77|497",
                                    "77|256",
                                    "77|253",
                                    "77|496",
                                    "77|490",
                                    "77|408",
                                    "77|389",
                                    "77|262",
                                    "77|261",
                                    "76|2",
                                    "77|388",
                                    "76|1",
                                    "77|264",
                                    "76|3",
                                    "77|76",
                                    "77|75",
                                    "77|78",
                                    "77|77",
                                    "77|79",
                                    "77|711",
                                    "23|10",
                                    "77|715",
                                    "77|317",
                                    "77|713",
                                    "4|0",
                                    "22|666667",
                                    "81|831",
                                    "77|392",
                                    "77|398",
                                    "77|396",
                                    "77|397",
                                    "77|391",
                                    "77|446",
                                    "77|721",
                                    "77|447",
                                    "77|324",
                                    "77|445",
                                    "77|203",
                                    "77|725",
                                    "77|448",
                                    "77|723",
                                    "77|449",
                                    "81|824",
                                    "77|321",
                                    "77|443",
                                    "77|201",
                                    "77|92",
                                    "77|93",
                                    "77|719",
                                    "148|2",
                                    "77|457",
                                    "77|215",
                                    "77|612",
                                    "77|458",
                                    "77|733",
                                    "77|455",
                                    "77|213",
                                    "77|610",
                                    "77|456",
                                    "77|615",
                                    "77|219",
                                    "77|459",
                                    "77|217",
                                    "77|614",
                                    "77|735",
                                    "77|450",
                                    "77|211",
                                    "7|2",
                                    "77|212",
                                    "7|3",
                                    "7|5",
                                    "77|81",
                                    "77|80",
                                    "77|83",
                                    "77|82",
                                    "77|608",
                                    "77|606",
                                    "77|727",
                                    "77|86",
                                    "77|89",
                                    "77|501",
                                    "77|502",
                                    "77|224",
                                    "77|225",
                                    "77|107",
                                    "77|503",
                                    "77|229",
                                    "77|185",
                                    "77|460",
                                    "77|461",
                                    "77|464",
                                    "77|222",
                                    "77|223",
                                    "23|1003",
                                    "77|181",
                                    "77|182",
                                    "77|512",
                                    "77|238",
                                    "77|114",
                                    "77|477",
                                    "77|478",
                                    "77|511",
                                    "77|197",
                                    "77|230",
                                    "66|1",
                                    "77|233",
                                    "77|231",
                                    "77|509",
                                    "77|507",
                                    "77|508"
                                ],
                                "payMethod": 2,
                                "favorateRoom": false,
                                "payType": 0,
                                "subPayType": 1,
                                "isFullRoom": true,
                                "childPriceRoom": false,
                                "personFilterMatch": true,
                                "adult": 0,
                                "childHitAge": [

                                ],
                                "isFold": true,
                                "roomCode": "443QON"
                            },
                            "roomLayerInfo": {
                                "prePaidInfo": {
                                    "list": [
                                        {
                                            "type": "RoomPrice",
                                            "title": "每间每晚均价",
                                            "content": "¥208",
                                            "adultAndChildrenInfo": ""
                                        }
                                    ]
                                },
                                "totalInfo": {
                                    "price": "¥208"
                                },
                                "titleInfo": {
                                    "meal": "无早餐",
                                    "title": "价格详情"
                                },
                                "taxInfo": {
                                    "offlineTaxInfoDetailList": [

                                    ],
                                    "totalOfflineTaxPrice": ""
                                }
                            },
                            "priceLogParam": {
                                "roomkey": "870075708_0_0"
                            },
                            "tags": [
                                {
                                    "title": "闪住"
                                },
                                {
                                    "title": "30分钟内免费取消"
                                },
                                {
                                    "title": "1小时确认"
                                }
                            ],
                            "p5Tags": [

                            ],
                            "p6Tags": [

                            ],
                            "passToNext": "00000IdepS3lHe6zsaCdD4hpVozQSqUtoMEmA3WZwQ63/+axcK+s0SG8QcXOgoURMcNzPXv6QxYA8BKDjXhHhy+XyuzB0lKWifce4R7pu+85WVgSYYYZu2PWI7YJesiuy/8/3o/z/ahD5YheisevTGUvJvBX/3F+ndCpq0mVbj9m73X4KftnKH34SnvKjRGWa9gEdUx7ic+vKHmiJecfEbpv34NDcNbRGJH5BGiejJz0wkwcd9P6Z54U8CJl2NuqvUzHb/xljG/77Vc/3XcUrAe7XdowEspoxkSHiD1VmrI8u3Qp+pL+Z6Z08VI7mzGpArvfSpCuUar9gNZM6VCCI6RRP2CJMfw9B16g3d+pqPuOUSwmBcr28KuTs0MGGftF5xjk8GAQtc6L4lfZU3zJZkuvX2g==",
                            "traceInfo": "{\"timestamp\":1728634407081,\"checkIn\":\"2024-10-11\",\"checkOut\":\"2024-10-12\",\"region\":\"MAINLAND\",\"cityId\":147,\"hotelId\":2021529,\"groupId\":0,\"roomId\":870075708,\"shadowId\":0,\"ismemberlogin\":true,\"uid\":\"B7D81DA3\",\"infoSec\":false}",
                            "receivableCouponInfo": {
                                "strategyIds": [

                                ]
                            }
                        }
                    ],
                    "baseRoom": {
                        "roomId": 275875749,
                        "roomName": "温之旅·臻品三人房",
                        "roomSize": {
                            "text": "30平方米"
                        },
                        "roomFloor": "1-3楼",
                        "facility": [
                            {
                                "icon": "",
                                "content": "30m²",
                                "type": "",
                                "hover": ""
                            },
                            {
                                "icon": "window",
                                "content": "有窗",
                                "type": "Window"
                            },
                            {
                                "icon": "ic_new_fa_no_smoking",
                                "content": "部分禁烟",
                                "type": "NoSmoke"
                            }
                        ],
                        "album": {
                            "list": [
                                {
                                    "url": "//dimg04.c-ctrip.com/images/0205q1200026unr6029B5_R_400_400_R5_D.jpg"
                                },
                                {
                                    "url": "//dimg04.c-ctrip.com/images/020171200026pvfjhD366_R_400_400_R5_D.jpg"
                                },
                                {
                                    "url": "//dimg04.c-ctrip.com/images/0205u1200026s9ve3FFE2_R_400_400_R5_D.jpg"
                                },
                                {
                                    "url": "//dimg04.c-ctrip.com/images/020131200026sel9p40EC_R_400_400_R5_D.jpg"
                                },
                                {
                                    "url": "//dimg04.c-ctrip.com/images/020481200026s63p3CBF0_R_400_400_R5_D.jpg"
                                },
                                {
                                    "url": "//dimg04.c-ctrip.com/images/0200s120008htzon7B951_R_400_400_R5_D.jpg"
                                },
                                {
                                    "url": "//dimg04.c-ctrip.com/images/02008120008htzsk10016_R_400_400_R5_D.jpg"
                                },
                                {
                                    "url": "//dimg04.c-ctrip.com/images/0204j120008htzn4c0E25_R_400_400_R5_D.jpg"
                                },
                                {
                                    "url": "//dimg04.c-ctrip.com/images/020561200026rrjzt6688_R_400_400_R5_D.jpg"
                                }
                            ],
                            "amenty": [
                                {
                                    "title": "清洁服务",
                                    "list": [
                                        {
                                            "name": "每日打扫",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "打扫工具",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "洗衣用品",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "熨衣设备",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "熨裤机",
                                            "value": 1,
                                            "charge": "0"
                                        }
                                    ]
                                },
                                {
                                    "title": "食品饮品",
                                    "list": [
                                        {
                                            "name": "速食品",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "小食",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "水果",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "咖啡壶/茶壶",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "茶包",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "软饮",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "瓶装水",
                                            "value": 1,
                                            "charge": "2"
                                        },
                                        {
                                            "name": "电热水壶",
                                            "value": 1,
                                            "charge": "0"
                                        }
                                    ]
                                },
                                {
                                    "title": "洗浴用品",
                                    "list": [
                                        {
                                            "name": "牙刷",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "牙膏",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "沐浴露",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "洗发水",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "护发素",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "香皂",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "浴帽",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "梳子",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "剃须刀",
                                            "value": 1,
                                            "charge": "0"
                                        }
                                    ]
                                },
                                {
                                    "title": "客房布局和家具",
                                    "list": [
                                        {
                                            "name": "沙发",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "书桌",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "茶几",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "休闲椅",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "餐桌",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "用餐区",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "私人入口",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "挂墙装饰画/字画",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "阳台",
                                            "value": 1,
                                            "charge": "0"
                                        }
                                    ]
                                },
                                {
                                    "title": "无障碍设施",
                                    "list": [
                                        {
                                            "name": "无障碍通道",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "无障碍淋浴",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "淋浴座椅",
                                            "value": 1,
                                            "charge": "0"
                                        }
                                    ]
                                },
                                {
                                    "title": "网络与通讯",
                                    "list": [
                                        {
                                            "name": "客房WIFI",
                                            "value": 1,
                                            "charge": "2"
                                        },
                                        {
                                            "name": "电话",
                                            "value": 1,
                                            "charge": "0"
                                        }
                                    ]
                                },
                                {
                                    "title": "儿童设施服务",
                                    "list": [
                                        {
                                            "name": "儿童洗漱用品",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "儿童浴巾",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "儿童面巾",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "儿童防护设施",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "磁吸飞镖",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "跳跳球",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "洗浴玩具",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "儿童餐具",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "儿童餐椅",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "儿童玩具",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "桌角防护",
                                            "value": 1,
                                            "charge": "0"
                                        }
                                    ]
                                },
                                {
                                    "title": "卫浴设施",
                                    "list": [
                                        {
                                            "name": "私人浴室",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "私人卫生间",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "吹风机",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "浴室化妆放大镜",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "毛巾",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "浴巾",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "24小时热水",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "拖鞋",
                                            "value": 1,
                                            "charge": "0"
                                        }
                                    ]
                                },
                                {
                                    "title": "媒体科技",
                                    "list": [
                                        {
                                            "name": "智能客控",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "液晶电视机",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "3D电视",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "卫星频道",
                                            "value": 1,
                                            "charge": "0"
                                        }
                                    ]
                                },
                                {
                                    "title": "客房设施",
                                    "list": [
                                        {
                                            "name": "空调",
                                            "value": 1,
                                            "charge": "2"
                                        },
                                        {
                                            "name": "暖气",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "地暖",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "电热毯",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "手动窗帘",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "遮光窗帘",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "地毯",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "特长睡床(超过两米)",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "床具:鸭绒被",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "床具:毯子或被子",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "备用床具",
                                            "value": 1,
                                            "charge": "2"
                                        }
                                    ]
                                },
                                {
                                    "title": "厨房用品",
                                    "list": [
                                        {
                                            "name": "餐具",
                                            "value": 1,
                                            "charge": "0"
                                        }
                                    ]
                                },
                                {
                                    "title": "室外景观",
                                    "list": [
                                        {
                                            "name": "花园景",
                                            "value": 1,
                                            "charge": "0"
                                        }
                                    ]
                                },
                                {
                                    "title": "便利设施",
                                    "list": [
                                        {
                                            "name": "管家服务",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "电子秤",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "针线包",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "开夜床",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "衣架",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "多种规格电源插座",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "220V电压插座",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "雨伞",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "欢迎礼品",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "棋牌桌",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "桌游",
                                            "value": 1,
                                            "charge": "0"
                                        }
                                    ]
                                }
                            ]
                        },
                        "addBed": "加床费用:该房型不可加床",
                        "roomNetwork": {
                            "content": "Wi-Fi免费",
                            "type": "Wifi"
                        },
                        "roomDescription": "",
                        "childPolicyDisplayInfo": {
                            "policyTitle": "儿童及加床",
                            "subCategoryInfos": [
                                {
                                    "title": "",
                                    "descriptions": [
                                        "该房型欢迎携带儿童入住"
                                    ],
                                    "type": "summary"
                                },
                                {
                                    "title": "婴儿床及加床政策",
                                    "descriptions": [
                                        "该房型不提供加床、不提供加婴儿床",
                                        "超过入住人数时,可能涉及额外费用,收费规则如下"
                                    ],
                                    "tableInfo": {
                                        "headers": [
                                            "年龄",
                                            "床铺",
                                            "费用"
                                        ],
                                        "tableItems": [
                                            {
                                                "tableDetails": [
                                                    {
                                                        "content": "17岁及以下"
                                                    },
                                                    {
                                                        "content": "使用现有床铺"
                                                    },
                                                    {
                                                        "content": "免费",
                                                        "highlight": "免费"
                                                    }
                                                ]
                                            }
                                        ]
                                    },
                                    "type": "bedPolicy"
                                }
                            ]
                        },
                        "bedInfo": {
                            "bedTypeDesc": "",
                            "bedWidthDesc": "",
                            "complicatedBedInfo": {
                                "title": "",
                                "icon": "https://pages.c-ctrip.com/wireless-app/imgs/T2Images/0625/bedTitleIcon.png",
                                "roomBedEntity": [

                                ]
                            }
                        }
                    }
                },
                {
                    "saleRoom": [
                        {
                            "money": {
                                "price": "188",
                                "payType": "在线付",
                                "priceAndTax": "188",
                                "includeTaxText": "",
                                "includeTaxPrice": "",
                                "filterPrice": "188"
                            },
                            "facility": [
                                {
                                    "icon": "ic_new_fa_breakfast",
                                    "content": "无早餐",
                                    "type": "NoMeal"
                                }
                            ],
                            "policy": [
                                {
                                    "icon": "ic_new_warning_line",
                                    "content": "30分钟内免费取消",
                                    "hover": "{\"title\":\"30分钟内免费取消\",\"table\":[{\"head\":true,\"cells\":[{\"content\":\"北京时间\"},{\"content\":\"取消费用\"}]},{\"cells\":[{\"content\":\"订单确认30分钟内\"},{\"highLight\":true,\"content\":\"免费取消\"}]},{\"cells\":[{\"content\":\"订单确认30分钟后\"},{\"content\":\"不可取消\"}]}],\"list\":[{\"title\":\"不可取消\",\"hotelDateTitle\":\"酒店当地时间\",\"hotelDateContent\":\"01月16日 12:00后\",\"localDateTitle\":\"所在地时间(GMT+8.0):\",\"localDateContent\":\"01月16日 12:00后\",\"titleWithCurrencyMark\":\"不可取消\",\"isFree\":false}]}",
                                    "type": "LadderCancel",
                                    "labelExtensions": [
                                        {
                                            "type": "ignoreScene",
                                            "value": "2"
                                        },
                                        {
                                            "type": "roomScene",
                                            "value": "0"
                                        }
                                    ]
                                },
                                {
                                    "icon": "ic_new_check_line",
                                    "content": "1小时确认",
                                    "hover": "此酒店近期大多数订单的确认速度为1小时",
                                    "type": "NotInstanceConfirm"
                                }
                            ],
                            "promotion": [

                            ],
                            "base": {
                                "maxGuest": 2,
                                "minQuantity": 1,
                                "maxQuantity": 8,
                                "roomId": 870576773,
                                "rank": 2,
                                "countDown": 0,
                                "filterValue": 0,
                                "buttonType": 1,
                                "startPriceRoom": false,
                                "tripBasicRoom": false,
                                "tpRoom": false,
                                "availParam": {
                                    "extendParam": "{\"guaranteeType\":0,\"payType\":0,\"subPayType\":1,\"guaranteeAmount\":188,\"balanceType\":\"PP\",\"currency\":\"CNY\",\"exchange\":1,\"maxRoomQuantity\":8,\"orderTraceId\":\"45805eaa-a307-4cd9-b536-e6991713f07d1728634406842\",\"timestamp\":1728634407,\"lowestPriceRoom\":false,\"needInventoryTension\":false,\"displayprice\":188,\"totalprice\":188,\"roomid\":870576773,\"cityId\":147,\"countryId\":1,\"vendorId\":0,\"cancelPolicyType\":\"30分钟内免费取消\",\"cancelPolicyDesc\":\"{\\"title\\":\\"30分钟内免费取消\\",\\"table\\":[{\\"head\\":true,\\"cells\\":[{\\"content\\":\\"北京时间\\"},{\\"content\\":\\"取消费用\\"}]},{\\"cells\\":[{\\"content\\":\\"订单确认30分钟内\\"},{\\"highLight\\":true,\\"content\\":\\"免费取消\\"}]},{\\"cells\\":[{\\"content\\":\\"订单确认30分钟后\\"},{\\"content\\":\\"不可取消\\"}]}],\\"list\\":[{\\"title\\":\\"不可取消\\",\\"hotelDateTitle\\":\\"酒店当地时间\\",\\"hotelDateContent\\":\\"01月16日 12:00后\\",\\"localDateTitle\\":\\"所在地时间(GMT+8.0):\\",\\"localDateContent\\":\\"01月16日 12:00后\\",\\"titleWithCurrencyMark\\":\\"不可取消\\",\\"isFree\\":false}]}\",\"mealType\":\"无早餐\",\"mealDesc\":\"\"}",
                                    "comparingAmount": 188,
                                    "roomkey": "870576773_0_0"
                                },
                                "filterList": [
                                    "77|488",
                                    "77|246",
                                    "77|489",
                                    "77|406",
                                    "77|407",
                                    "77|404",
                                    "44|1006",
                                    "77|245",
                                    "77|259",
                                    "77|413",
                                    "77|257",
                                    "77|258",
                                    "77|493",
                                    "3|F-1",
                                    "77|494",
                                    "77|491",
                                    "77|492",
                                    "23|6",
                                    "77|497",
                                    "77|256",
                                    "77|253",
                                    "77|496",
                                    "77|490",
                                    "77|408",
                                    "77|389",
                                    "77|262",
                                    "77|260",
                                    "77|261",
                                    "76|2",
                                    "77|388",
                                    "76|1",
                                    "77|264",
                                    "76|3",
                                    "77|76",
                                    "77|75",
                                    "77|78",
                                    "77|77",
                                    "77|79",
                                    "77|711",
                                    "23|10",
                                    "77|715",
                                    "77|317",
                                    "77|713",
                                    "4|0",
                                    "22|666667",
                                    "77|392",
                                    "77|398",
                                    "77|396",
                                    "77|397",
                                    "77|391",
                                    "77|446",
                                    "77|721",
                                    "77|447",
                                    "77|324",
                                    "77|445",
                                    "77|203",
                                    "77|208",
                                    "77|725",
                                    "77|448",
                                    "77|723",
                                    "77|449",
                                    "81|824",
                                    "77|321",
                                    "77|443",
                                    "77|201",
                                    "77|92",
                                    "77|93",
                                    "77|719",
                                    "148|2",
                                    "77|457",
                                    "77|215",
                                    "77|612",
                                    "77|458",
                                    "77|733",
                                    "77|455",
                                    "77|213",
                                    "81|814",
                                    "77|610",
                                    "77|456",
                                    "77|615",
                                    "77|219",
                                    "77|459",
                                    "77|217",
                                    "77|614",
                                    "77|735",
                                    "77|450",
                                    "77|211",
                                    "7|2",
                                    "77|212",
                                    "7|3",
                                    "77|210",
                                    "7|5",
                                    "77|81",
                                    "77|80",
                                    "77|83",
                                    "77|82",
                                    "77|608",
                                    "77|606",
                                    "77|727",
                                    "77|86",
                                    "77|89",
                                    "77|501",
                                    "77|502",
                                    "77|224",
                                    "77|225",
                                    "77|107",
                                    "77|503",
                                    "77|229",
                                    "77|185",
                                    "77|460",
                                    "77|461",
                                    "77|464",
                                    "77|222",
                                    "77|223",
                                    "23|1003",
                                    "77|181",
                                    "77|182",
                                    "77|512",
                                    "77|238",
                                    "77|114",
                                    "77|477",
                                    "77|478",
                                    "77|511",
                                    "77|197",
                                    "77|230",
                                    "81|1727",
                                    "66|1",
                                    "77|233",
                                    "77|231",
                                    "77|509",
                                    "77|507",
                                    "77|508"
                                ],
                                "payMethod": 2,
                                "favorateRoom": false,
                                "payType": 0,
                                "subPayType": 1,
                                "isFullRoom": true,
                                "childPriceRoom": false,
                                "personFilterMatch": true,
                                "adult": 0,
                                "childHitAge": [

                                ],
                                "isFold": true,
                                "roomCode": "449G05"
                            },
                            "roomLayerInfo": {
                                "prePaidInfo": {
                                    "list": [
                                        {
                                            "type": "RoomPrice",
                                            "title": "每间每晚均价",
                                            "content": "¥188",
                                            "adultAndChildrenInfo": ""
                                        }
                                    ]
                                },
                                "totalInfo": {
                                    "price": "¥188"
                                },
                                "titleInfo": {
                                    "meal": "无早餐",
                                    "title": "价格详情"
                                },
                                "taxInfo": {
                                    "offlineTaxInfoDetailList": [

                                    ],
                                    "totalOfflineTaxPrice": ""
                                }
                            },
                            "priceLogParam": {
                                "roomkey": "870576773_0_0"
                            },
                            "tags": [
                                {
                                    "title": "闪住"
                                },
                                {
                                    "title": "30分钟内免费取消"
                                },
                                {
                                    "title": "1小时确认"
                                }
                            ],
                            "p5Tags": [

                            ],
                            "p6Tags": [

                            ],
                            "passToNext": "00000IdepS3lHe6zsaCdD4hpVozQSqUtoMEmA3WZwQ63/+axcK+s0SG8QcXOgoURMcNzPXv6QxYA8BKDjXhHhy+XyuzB0lKWifce4R7pu+85WVgSYYYZu2PWI7YJesiuy/8/3o/z/ahD5YhdJ7FCC/9Fk3BX/3F+ndCpq0mVbj9m73X4KftnKH34SnvKjRGWa9gEdUx7ic+vKHmiJecfEbpv34NDcNbRGJH5BMBb+2h3TK4h9cGklCpNR8Jl2NuqvUzHb/xljG/77Vc/3XcUrAe7XdowEspoxkSHiD1VmrI8u3Qp+pL+Z6Z08VI7mzGpArvfSpCuUar9gNZM6VCCI6RRP2CJMfw9B16g3d+pqPuOUSwmBcr28KuTs0MGGftF5xjk81n9Q71bp/x6cl0dNvO8dfA==",
                            "traceInfo": "{\"timestamp\":1728634407082,\"checkIn\":\"2024-10-11\",\"checkOut\":\"2024-10-12\",\"region\":\"MAINLAND\",\"cityId\":147,\"hotelId\":2021529,\"groupId\":0,\"roomId\":870576773,\"shadowId\":0,\"ismemberlogin\":true,\"uid\":\"B7D81DA3\",\"infoSec\":false}",
                            "receivableCouponInfo": {
                                "strategyIds": [

                                ]
                            }
                        }
                    ],
                    "baseRoom": {
                        "roomId": 276127615,
                        "roomName": "晨之阳·零压特价房",
                        "roomSize": {
                            "text": "30平方米"
                        },
                        "roomFloor": "1楼",
                        "facility": [
                            {
                                "icon": "",
                                "content": "30m²",
                                "type": "",
                                "hover": ""
                            },
                            {
                                "icon": "window",
                                "content": "有窗",
                                "type": "Window"
                            },
                            {
                                "icon": "ic_new_fa_no_smoking",
                                "content": "部分禁烟",
                                "type": "NoSmoke"
                            }
                        ],
                        "album": {
                            "list": [
                                {
                                    "url": "//dimg04.c-ctrip.com/images/0205l1200026urhkjE822_R_400_400_R5_D.jpg"
                                },
                                {
                                    "url": "//dimg04.c-ctrip.com/images/0206k1200026u7qpvAE71_R_400_400_R5_D.jpg"
                                },
                                {
                                    "url": "//dimg04.c-ctrip.com/images/020511200026tzh8k0989_R_400_400_R5_D.jpg"
                                },
                                {
                                    "url": "//dimg04.c-ctrip.com/images/0203o1200026v176u5497_R_400_400_R5_D.jpg"
                                },
                                {
                                    "url": "//dimg04.c-ctrip.com/images/02005120008htzo1rC4CA_R_400_400_R5_D.jpg"
                                },
                                {
                                    "url": "//dimg04.c-ctrip.com/images/0203c120008htzlts896B_R_400_400_R5_D.jpg"
                                }
                            ],
                            "amenty": [
                                {
                                    "title": "清洁服务",
                                    "list": [
                                        {
                                            "name": "每日打扫",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "打扫工具",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "洗衣用品",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "熨衣设备",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "熨裤机",
                                            "value": 1,
                                            "charge": "0"
                                        }
                                    ]
                                },
                                {
                                    "title": "食品饮品",
                                    "list": [
                                        {
                                            "name": "速食品",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "小食",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "水果",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "咖啡壶/茶壶",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "茶包",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "软饮",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "瓶装水",
                                            "value": 1,
                                            "charge": "2"
                                        },
                                        {
                                            "name": "电热水壶",
                                            "value": 1,
                                            "charge": "0"
                                        }
                                    ]
                                },
                                {
                                    "title": "洗浴用品",
                                    "list": [
                                        {
                                            "name": "牙刷",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "牙膏",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "沐浴露",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "洗发水",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "护发素",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "香皂",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "浴帽",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "梳子",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "剃须刀",
                                            "value": 1,
                                            "charge": "0"
                                        }
                                    ]
                                },
                                {
                                    "title": "客房布局和家具",
                                    "list": [
                                        {
                                            "name": "沙发",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "衣柜/衣橱",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "书桌",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "茶几",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "休闲椅",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "餐桌",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "用餐区",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "私人入口",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "挂墙装饰画/字画",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "露台",
                                            "value": 1,
                                            "charge": "0"
                                        }
                                    ]
                                },
                                {
                                    "title": "无障碍设施",
                                    "list": [
                                        {
                                            "name": "无障碍通道",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "无障碍淋浴",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "淋浴座椅",
                                            "value": 1,
                                            "charge": "0"
                                        }
                                    ]
                                },
                                {
                                    "title": "网络与通讯",
                                    "list": [
                                        {
                                            "name": "客房WIFI",
                                            "value": 1,
                                            "charge": "2"
                                        },
                                        {
                                            "name": "电话",
                                            "value": 1,
                                            "charge": "0"
                                        }
                                    ]
                                },
                                {
                                    "title": "儿童设施服务",
                                    "list": [
                                        {
                                            "name": "儿童洗漱用品",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "儿童浴巾",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "儿童面巾",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "儿童防护设施",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "磁吸飞镖",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "跳跳球",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "洗浴玩具",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "儿童餐具",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "儿童餐椅",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "儿童玩具",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "桌角防护",
                                            "value": 1,
                                            "charge": "0"
                                        }
                                    ]
                                },
                                {
                                    "title": "卫浴设施",
                                    "list": [
                                        {
                                            "name": "私人浴室",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "私人卫生间",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "吹风机",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "浴室化妆放大镜",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "毛巾",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "浴巾",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "24小时热水",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "拖鞋",
                                            "value": 1,
                                            "charge": "0"
                                        }
                                    ]
                                },
                                {
                                    "title": "媒体科技",
                                    "list": [
                                        {
                                            "name": "智能客控",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "液晶电视机",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "3D电视",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "卫星频道",
                                            "value": 1,
                                            "charge": "0"
                                        }
                                    ]
                                },
                                {
                                    "title": "客房设施",
                                    "list": [
                                        {
                                            "name": "空调",
                                            "value": 1,
                                            "charge": "2"
                                        },
                                        {
                                            "name": "暖气",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "地暖",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "电热毯",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "手动窗帘",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "遮光窗帘",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "地毯",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "特长睡床(超过两米)",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "床具:鸭绒被",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "床具:毯子或被子",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "备用床具",
                                            "value": 1,
                                            "charge": "2"
                                        }
                                    ]
                                },
                                {
                                    "title": "厨房用品",
                                    "list": [
                                        {
                                            "name": "餐具",
                                            "value": 1,
                                            "charge": "0"
                                        }
                                    ]
                                },
                                {
                                    "title": "室外景观",
                                    "list": [
                                        {
                                            "name": "花园景",
                                            "value": 1,
                                            "charge": "0"
                                        }
                                    ]
                                },
                                {
                                    "title": "便利设施",
                                    "list": [
                                        {
                                            "name": "管家服务",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "电子秤",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "针线包",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "开夜床",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "衣架",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "多种规格电源插座",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "220V电压插座",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "雨伞",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "欢迎礼品",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "棋牌桌",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "桌游",
                                            "value": 1,
                                            "charge": "0"
                                        }
                                    ]
                                }
                            ]
                        },
                        "addBed": "加床费用:该房型不可加床",
                        "roomNetwork": {
                            "content": "Wi-Fi免费",
                            "type": "Wifi"
                        },
                        "roomDescription": "",
                        "bed": {
                            "list": [
                                "ic_new_double_bed"
                            ],
                            "contentListHover": [
                                "1张榻榻米  (2.0米)"
                            ],
                            "contentList": [
                                "1张2米榻榻米"
                            ]
                        },
                        "childPolicyDisplayInfo": {
                            "policyTitle": "儿童及加床",
                            "subCategoryInfos": [
                                {
                                    "title": "",
                                    "descriptions": [
                                        "该房型欢迎携带儿童入住"
                                    ],
                                    "type": "summary"
                                },
                                {
                                    "title": "婴儿床及加床政策",
                                    "descriptions": [
                                        "该房型不提供加床、不提供加婴儿床",
                                        "超过入住人数时,可能涉及额外费用,收费规则如下"
                                    ],
                                    "tableInfo": {
                                        "headers": [
                                            "年龄",
                                            "床铺",
                                            "费用"
                                        ],
                                        "tableItems": [
                                            {
                                                "tableDetails": [
                                                    {
                                                        "content": "17岁及以下"
                                                    },
                                                    {
                                                        "content": "使用现有床铺"
                                                    },
                                                    {
                                                        "content": "免费",
                                                        "highlight": "免费"
                                                    }
                                                ]
                                            }
                                        ]
                                    },
                                    "type": "bedPolicy"
                                }
                            ]
                        },
                        "bedInfo": {
                            "bedTypeDesc": "1张2米榻榻米",
                            "bedWidthDesc": "1张榻榻米2米",
                            "complicatedBedInfo": {
                                "title": "1张榻榻米2米",
                                "icon": "https://pages.c-ctrip.com/wireless-app/imgs/T2Images/0625/bedTitleIcon.png",
                                "roomBedEntity": [

                                ]
                            }
                        }
                    }
                },
                {
                    "saleRoom": [
                        {
                            "money": {
                                "price": "168",
                                "payType": "在线付",
                                "priceAndTax": "168",
                                "includeTaxText": "",
                                "includeTaxPrice": "",
                                "filterPrice": "168"
                            },
                            "facility": [
                                {
                                    "icon": "ic_new_fa_breakfast",
                                    "content": "无早餐",
                                    "type": "NoMeal"
                                }
                            ],
                            "policy": [
                                {
                                    "icon": "ic_new_warning_line",
                                    "content": "30分钟内免费取消",
                                    "hover": "{\"title\":\"30分钟内免费取消\",\"table\":[{\"head\":true,\"cells\":[{\"content\":\"北京时间\"},{\"content\":\"取消费用\"}]},{\"cells\":[{\"content\":\"订单确认30分钟内\"},{\"highLight\":true,\"content\":\"免费取消\"}]},{\"cells\":[{\"content\":\"订单确认30分钟后\"},{\"content\":\"不可取消\"}]}],\"list\":[{\"title\":\"不可取消\",\"hotelDateTitle\":\"酒店当地时间\",\"hotelDateContent\":\"01月16日 12:00后\",\"localDateTitle\":\"所在地时间(GMT+8.0):\",\"localDateContent\":\"01月16日 12:00后\",\"titleWithCurrencyMark\":\"不可取消\",\"isFree\":false}]}",
                                    "type": "LadderCancel",
                                    "labelExtensions": [
                                        {
                                            "type": "ignoreScene",
                                            "value": "2"
                                        },
                                        {
                                            "type": "roomScene",
                                            "value": "0"
                                        }
                                    ]
                                },
                                {
                                    "icon": "ic_new_check_line",
                                    "content": "1小时确认",
                                    "hover": "此酒店近期大多数订单的确认速度为1小时",
                                    "type": "NotInstanceConfirm"
                                }
                            ],
                            "promotion": [

                            ],
                            "base": {
                                "maxGuest": 2,
                                "minQuantity": 1,
                                "maxQuantity": 10,
                                "roomId": 870075706,
                                "rank": 1,
                                "countDown": 0,
                                "filterValue": 0,
                                "buttonType": 1,
                                "startPriceRoom": false,
                                "tripBasicRoom": false,
                                "tpRoom": false,
                                "availParam": {
                                    "extendParam": "{\"guaranteeType\":0,\"payType\":0,\"subPayType\":1,\"guaranteeAmount\":168,\"balanceType\":\"PP\",\"currency\":\"CNY\",\"exchange\":1,\"maxRoomQuantity\":10,\"orderTraceId\":\"45805eaa-a307-4cd9-b536-e6991713f07d1728634406842\",\"timestamp\":1728634407,\"lowestPriceRoom\":true,\"needInventoryTension\":false,\"displayprice\":168,\"totalprice\":168,\"roomid\":870075706,\"cityId\":147,\"countryId\":1,\"vendorId\":0,\"cancelPolicyType\":\"30分钟内免费取消\",\"cancelPolicyDesc\":\"{\\"title\\":\\"30分钟内免费取消\\",\\"table\\":[{\\"head\\":true,\\"cells\\":[{\\"content\\":\\"北京时间\\"},{\\"content\\":\\"取消费用\\"}]},{\\"cells\\":[{\\"content\\":\\"订单确认30分钟内\\"},{\\"highLight\\":true,\\"content\\":\\"免费取消\\"}]},{\\"cells\\":[{\\"content\\":\\"订单确认30分钟后\\"},{\\"content\\":\\"不可取消\\"}]}],\\"list\\":[{\\"title\\":\\"不可取消\\",\\"hotelDateTitle\\":\\"酒店当地时间\\",\\"hotelDateContent\\":\\"01月16日 12:00后\\",\\"localDateTitle\\":\\"所在地时间(GMT+8.0):\\",\\"localDateContent\\":\\"01月16日 12:00后\\",\\"titleWithCurrencyMark\\":\\"不可取消\\",\\"isFree\\":false}]}\",\"mealType\":\"无早餐\",\"mealDesc\":\"\"}",
                                    "comparingAmount": 168,
                                    "roomkey": "870075706_0_0"
                                },
                                "filterList": [
                                    "77|402",
                                    "77|488",
                                    "77|246",
                                    "77|489",
                                    "77|406",
                                    "77|407",
                                    "77|404",
                                    "44|1006",
                                    "77|245",
                                    "77|259",
                                    "77|413",
                                    "77|257",
                                    "77|258",
                                    "77|493",
                                    "3|F-1",
                                    "77|494",
                                    "77|491",
                                    "77|492",
                                    "23|6",
                                    "77|497",
                                    "77|256",
                                    "77|253",
                                    "77|496",
                                    "77|490",
                                    "77|408",
                                    "77|389",
                                    "77|262",
                                    "77|261",
                                    "76|2",
                                    "77|388",
                                    "76|1",
                                    "77|264",
                                    "76|3",
                                    "77|76",
                                    "77|75",
                                    "77|78",
                                    "77|77",
                                    "77|79",
                                    "77|711",
                                    "23|10",
                                    "77|715",
                                    "77|317",
                                    "77|713",
                                    "4|0",
                                    "22|666667",
                                    "77|392",
                                    "77|398",
                                    "77|396",
                                    "77|397",
                                    "77|391",
                                    "77|446",
                                    "77|721",
                                    "77|447",
                                    "77|324",
                                    "77|445",
                                    "77|203",
                                    "77|725",
                                    "77|448",
                                    "77|723",
                                    "77|449",
                                    "81|824",
                                    "77|321",
                                    "77|443",
                                    "77|201",
                                    "77|92",
                                    "77|93",
                                    "77|719",
                                    "148|2",
                                    "77|457",
                                    "77|215",
                                    "77|612",
                                    "77|458",
                                    "77|733",
                                    "77|455",
                                    "77|213",
                                    "77|610",
                                    "77|456",
                                    "77|615",
                                    "77|219",
                                    "77|459",
                                    "77|217",
                                    "77|614",
                                    "77|735",
                                    "77|450",
                                    "77|211",
                                    "7|2",
                                    "77|212",
                                    "7|3",
                                    "7|5",
                                    "77|81",
                                    "77|80",
                                    "77|83",
                                    "77|82",
                                    "77|608",
                                    "77|606",
                                    "77|727",
                                    "77|86",
                                    "77|89",
                                    "77|501",
                                    "77|502",
                                    "77|224",
                                    "77|225",
                                    "77|107",
                                    "77|503",
                                    "77|229",
                                    "77|185",
                                    "77|460",
                                    "77|461",
                                    "77|464",
                                    "77|222",
                                    "77|223",
                                    "23|1003",
                                    "77|181",
                                    "77|182",
                                    "77|512",
                                    "77|238",
                                    "77|114",
                                    "77|477",
                                    "77|478",
                                    "77|511",
                                    "77|197",
                                    "77|230",
                                    "81|1727",
                                    "66|1",
                                    "77|233",
                                    "77|231",
                                    "77|509",
                                    "77|507",
                                    "77|508"
                                ],
                                "payMethod": 2,
                                "favorateRoom": false,
                                "payType": 0,
                                "subPayType": 1,
                                "isFullRoom": true,
                                "childPriceRoom": false,
                                "personFilterMatch": true,
                                "adult": 0,
                                "childHitAge": [

                                ],
                                "isFold": true,
                                "roomCode": "443QOH"
                            },
                            "roomLayerInfo": {
                                "prePaidInfo": {
                                    "list": [
                                        {
                                            "type": "RoomPrice",
                                            "title": "每间每晚均价",
                                            "content": "¥168",
                                            "adultAndChildrenInfo": ""
                                        }
                                    ]
                                },
                                "totalInfo": {
                                    "price": "¥168"
                                },
                                "titleInfo": {
                                    "meal": "无早餐",
                                    "title": "价格详情"
                                },
                                "taxInfo": {
                                    "offlineTaxInfoDetailList": [

                                    ],
                                    "totalOfflineTaxPrice": ""
                                }
                            },
                            "priceLogParam": {
                                "roomkey": "870075706_0_0"
                            },
                            "tags": [
                                {
                                    "title": "闪住"
                                },
                                {
                                    "title": "30分钟内免费取消"
                                },
                                {
                                    "title": "1小时确认"
                                }
                            ],
                            "p5Tags": [

                            ],
                            "p6Tags": [

                            ],
                            "passToNext": "00000IdepS3lHe6zsaCdD4hpVozQSqUtoMEmA3WZwQ63/+axcK+s0SG8QcXOgoURMcNzPXv6QxYA8BKDjXhHhy+XyuzB0lKWifce4R7pu+85WVgSYYYZu2PWI7YJesiuy/8/3o/z/ahD5YhdJ7FCC/9Fk3BX/3F+ndCpq0mVbj9m73X4KftnKH34SnvKjRGWa9gEdUx7ic+vKHmiJecfEbpv34NDcNbRGJH5BGiejJz0wkwfguGpzfgjCI5l2NuqvUzHb/xljG/77Vc/3XcUrAe7XdowEspoxkSHiD1VmrI8u3Qp+pL+Z6Z08VI7mzGpArvfSpCuUar9gNZM6VCCI6RRP2CJMfw9B16g3d+pqPuOUSwmBcr28KuTs0MGGftF5xjk8GAQtc6L4lfbhEfdQYpD8RA==",
                            "traceInfo": "{\"timestamp\":1728634407083,\"checkIn\":\"2024-10-11\",\"checkOut\":\"2024-10-12\",\"region\":\"MAINLAND\",\"cityId\":147,\"hotelId\":2021529,\"groupId\":0,\"roomId\":870075706,\"shadowId\":0,\"ismemberlogin\":true,\"uid\":\"B7D81DA3\",\"infoSec\":false}",
                            "receivableCouponInfo": {
                                "strategyIds": [

                                ]
                            }
                        }
                    ],
                    "baseRoom": {
                        "roomId": 275797279,
                        "roomName": "沐之韵·淡雅双人房",
                        "roomSize": {
                            "text": "24平方米"
                        },
                        "roomFloor": "1-3楼",
                        "facility": [
                            {
                                "icon": "",
                                "content": "24m²",
                                "type": "",
                                "hover": ""
                            },
                            {
                                "icon": "window",
                                "content": "有窗",
                                "type": "Window"
                            },
                            {
                                "icon": "ic_new_fa_no_smoking",
                                "content": "部分禁烟",
                                "type": "NoSmoke"
                            }
                        ],
                        "album": {
                            "list": [
                                {
                                    "url": "//dimg04.c-ctrip.com/images/0200m1200026u9gc6FD1F_R_400_400_R5_D.jpg"
                                },
                                {
                                    "url": "//dimg04.c-ctrip.com/images/020151200026uchjrB950_R_400_400_R5_D.jpg"
                                },
                                {
                                    "url": "//dimg04.c-ctrip.com/images/020531200026u0j9w9900_R_400_400_R5_D.jpg"
                                },
                                {
                                    "url": "//dimg04.c-ctrip.com/images/0204g1200026rp4u7A4D3_R_400_400_R5_D.jpg"
                                },
                                {
                                    "url": "//dimg04.c-ctrip.com/images/0203s1200026ufscsC532_R_400_400_R5_D.jpg"
                                },
                                {
                                    "url": "//dimg04.c-ctrip.com/images/0AD3m12000atklieb86E7_R_400_400_R5_D.jpg"
                                },
                                {
                                    "url": "//dimg04.c-ctrip.com/images/0200e1200026qmzw40E71_R_400_400_R5_D.jpg"
                                }
                            ],
                            "amenty": [
                                {
                                    "title": "清洁服务",
                                    "list": [
                                        {
                                            "name": "每日打扫",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "打扫工具",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "洗衣用品",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "熨衣设备",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "熨裤机",
                                            "value": 1,
                                            "charge": "0"
                                        }
                                    ]
                                },
                                {
                                    "title": "食品饮品",
                                    "list": [
                                        {
                                            "name": "速食品",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "小食",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "水果",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "咖啡壶/茶壶",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "茶包",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "软饮",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "瓶装水",
                                            "value": 1,
                                            "charge": "2"
                                        },
                                        {
                                            "name": "电热水壶",
                                            "value": 1,
                                            "charge": "0"
                                        }
                                    ]
                                },
                                {
                                    "title": "洗浴用品",
                                    "list": [
                                        {
                                            "name": "牙刷",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "牙膏",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "沐浴露",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "洗发水",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "护发素",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "香皂",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "浴帽",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "梳子",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "剃须刀",
                                            "value": 1,
                                            "charge": "0"
                                        }
                                    ]
                                },
                                {
                                    "title": "客房布局和家具",
                                    "list": [
                                        {
                                            "name": "沙发",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "书桌",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "茶几",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "休闲椅",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "餐桌",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "用餐区",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "私人入口",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "挂墙装饰画/字画",
                                            "value": 1,
                                            "charge": "0"
                                        }
                                    ]
                                },
                                {
                                    "title": "无障碍设施",
                                    "list": [
                                        {
                                            "name": "无障碍通道",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "无障碍淋浴",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "盥洗盆较低",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "淋浴座椅",
                                            "value": 1,
                                            "charge": "0"
                                        }
                                    ]
                                },
                                {
                                    "title": "网络与通讯",
                                    "list": [
                                        {
                                            "name": "客房WIFI",
                                            "value": 1,
                                            "charge": "2"
                                        },
                                        {
                                            "name": "电话",
                                            "value": 1,
                                            "charge": "0"
                                        }
                                    ]
                                },
                                {
                                    "title": "儿童设施服务",
                                    "list": [
                                        {
                                            "name": "儿童洗漱用品",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "儿童浴巾",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "儿童面巾",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "儿童防护设施",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "磁吸飞镖",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "跳跳球",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "洗浴玩具",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "儿童餐具",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "儿童餐椅",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "儿童玩具",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "桌角防护",
                                            "value": 1,
                                            "charge": "0"
                                        }
                                    ]
                                },
                                {
                                    "title": "卫浴设施",
                                    "list": [
                                        {
                                            "name": "私人浴室",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "私人卫生间",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "吹风机",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "浴室化妆放大镜",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "毛巾",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "浴巾",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "24小时热水",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "拖鞋",
                                            "value": 1,
                                            "charge": "0"
                                        }
                                    ]
                                },
                                {
                                    "title": "媒体科技",
                                    "list": [
                                        {
                                            "name": "智能客控",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "液晶电视机",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "3D电视",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "卫星频道",
                                            "value": 1,
                                            "charge": "0"
                                        }
                                    ]
                                },
                                {
                                    "title": "客房设施",
                                    "list": [
                                        {
                                            "name": "空调",
                                            "value": 1,
                                            "charge": "2"
                                        },
                                        {
                                            "name": "暖气",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "地暖",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "电热毯",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "手动窗帘",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "遮光窗帘",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "地毯",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "特长睡床(超过两米)",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "床具:鸭绒被",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "床具:毯子或被子",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "备用床具",
                                            "value": 1,
                                            "charge": "2"
                                        }
                                    ]
                                },
                                {
                                    "title": "厨房用品",
                                    "list": [
                                        {
                                            "name": "餐具",
                                            "value": 1,
                                            "charge": "0"
                                        }
                                    ]
                                },
                                {
                                    "title": "室外景观",
                                    "list": [
                                        {
                                            "name": "花园景",
                                            "value": 1,
                                            "charge": "0"
                                        }
                                    ]
                                },
                                {
                                    "title": "便利设施",
                                    "list": [
                                        {
                                            "name": "管家服务",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "电子秤",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "针线包",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "开夜床",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "衣架",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "多种规格电源插座",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "220V电压插座",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "雨伞",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "欢迎礼品",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "棋牌桌",
                                            "value": 1,
                                            "charge": "0"
                                        },
                                        {
                                            "name": "桌游",
                                            "value": 1,
                                            "charge": "0"
                                        }
                                    ]
                                }
                            ]
                        },
                        "addBed": "加床费用:该房型不可加床",
                        "roomNetwork": {
                            "content": "Wi-Fi免费",
                            "type": "Wifi"
                        },
                        "roomDescription": "",
                        "bed": {
                            "list": [
                                "ic_new_double_bed"
                            ],
                            "contentListHover": [
                                "1张榻榻米  (2.4米)"
                            ],
                            "contentList": [
                                "1张2.4米榻榻米"
                            ]
                        },
                        "childPolicyDisplayInfo": {
                            "policyTitle": "儿童及加床",
                            "subCategoryInfos": [
                                {
                                    "title": "",
                                    "descriptions": [
                                        "该房型欢迎携带儿童入住"
                                    ],
                                    "type": "summary"
                                },
                                {
                                    "title": "婴儿床及加床政策",
                                    "descriptions": [
                                        "该房型不提供加床、不提供加婴儿床",
                                        "超过入住人数时,可能涉及额外费用,收费规则如下"
                                    ],
                                    "tableInfo": {
                                        "headers": [
                                            "年龄",
                                            "床铺",
                                            "费用"
                                        ],
                                        "tableItems": [
                                            {
                                                "tableDetails": [
                                                    {
                                                        "content": "17岁及以下"
                                                    },
                                                    {
                                                        "content": "使用现有床铺"
                                                    },
                                                    {
                                                        "content": "免费",
                                                        "highlight": "免费"
                                                    }
                                                ]
                                            }
                                        ]
                                    },
                                    "type": "bedPolicy"
                                }
                            ]
                        },
                        "bedInfo": {
                            "bedTypeDesc": "1张2.4米榻榻米",
                            "bedWidthDesc": "1张榻榻米2.4米",
                            "complicatedBedInfo": {
                                "title": "1张榻榻米2.4米",
                                "icon": "https://pages.c-ctrip.com/wireless-app/imgs/T2Images/0625/bedTitleIcon.png",
                                "roomBedEntity": [

                                ]
                            }
                        }
                    }
                }
            ],
            "priceType": 0,
            "isLogin": true,
            "computeRoomPerson": 0,
            "detailFilter": {
                "detailFilterInfo": [
                    {
                        "title": "特色房型",
                        "multiSelect": false,
                        "subFilterList": [
                            {
                                "title": "情侣房",
                                "selected": false,
                                "serverFilter": false,
                                "filterData": {
                                    "filterId": "81|1186",
                                    "type": "81",
                                    "value": "1186",
                                    "subType": "2"
                                },
                                "unionFilter": false
                            }
                        ],
                        "id": "81",
                        "unionFilter": false
                    },
                    {
                        "title": "客房设施",
                        "multiSelect": true,
                        "subFilterList": [
                            {
                                "title": "电热水壶",
                                "selected": false,
                                "serverFilter": false,
                                "filterData": {
                                    "filterId": "77|80",
                                    "type": "77",
                                    "value": "80",
                                    "subType": "2"
                                },
                                "unionFilter": false
                            },
                            {
                                "title": "阳台",
                                "selected": false,
                                "serverFilter": false,
                                "filterData": {
                                    "filterId": "77|247",
                                    "type": "77",
                                    "value": "247",
                                    "subType": "2"
                                },
                                "unionFilter": false
                            },
                            {
                                "title": "露台",
                                "selected": false,
                                "serverFilter": false,
                                "filterData": {
                                    "filterId": "77|210",
                                    "type": "77",
                                    "value": "210",
                                    "subType": "2"
                                },
                                "unionFilter": false
                            },
                            {
                                "title": "私人浴室",
                                "selected": false,
                                "serverFilter": false,
                                "filterData": {
                                    "filterId": "77|92",
                                    "type": "77",
                                    "value": "92",
                                    "subType": "2"
                                },
                                "unionFilter": false
                            },
                            {
                                "title": "棋牌桌",
                                "selected": false,
                                "serverFilter": false,
                                "filterData": {
                                    "filterId": "77|512",
                                    "type": "77",
                                    "value": "512",
                                    "subType": "2"
                                },
                                "unionFilter": false
                            },
                            {
                                "title": "私人卫生间",
                                "selected": false,
                                "serverFilter": false,
                                "filterData": {
                                    "filterId": "77|445",
                                    "type": "77",
                                    "value": "445",
                                    "subType": "2"
                                },
                                "unionFilter": false
                            },
                            {
                                "title": "空调",
                                "selected": false,
                                "serverFilter": false,
                                "filterData": {
                                    "filterId": "77|107",
                                    "type": "77",
                                    "value": "107",
                                    "subType": "2"
                                },
                                "unionFilter": false
                            }
                        ],
                        "id": "77",
                        "unionFilter": false
                    },
                    {
                        "title": "携程服务",
                        "multiSelect": true,
                        "subFilterList": [
                            {
                                "title": "免费取消",
                                "selected": false,
                                "serverFilter": false,
                                "filterData": {
                                    "filterId": "23|10",
                                    "type": "23",
                                    "value": "10",
                                    "subType": "2"
                                },
                                "unionFilter": false
                            },
                            {
                                "title": "不看钟点房",
                                "selected": false,
                                "serverFilter": false,
                                "filterData": {
                                    "filterId": "22|666667",
                                    "type": "22",
                                    "value": "666667",
                                    "subType": "2"
                                },
                                "unionFilter": false
                            }
                        ],
                        "id": "22",
                        "unionFilter": false
                    },
                    {
                        "title": "支付方式",
                        "multiSelect": false,
                        "subFilterList": [
                            {
                                "title": "在线付款",
                                "selected": false,
                                "serverFilter": false,
                                "filterData": {
                                    "filterId": "7|2",
                                    "type": "7",
                                    "value": "2",
                                    "subType": "2"
                                },
                                "unionFilter": false
                            }
                        ],
                        "id": "7",
                        "unionFilter": false
                    },
                    {
                        "title": "EASY住",
                        "multiSelect": true,
                        "subFilterList": [
                            {
                                "title": "酒店开票",
                                "selected": false,
                                "serverFilter": false,
                                "filterData": {
                                    "filterId": "44|1006",
                                    "type": "44",
                                    "value": "1006",
                                    "subType": "2"
                                },
                                "unionFilter": false
                            }
                        ],
                        "id": "44",
                        "unionFilter": false
                    },
                    {
                        "title": "宽带",
                        "multiSelect": true,
                        "subFilterList": [
                            {
                                "title": "免费WiFi上网",
                                "selected": false,
                                "serverFilter": false,
                                "filterData": {
                                    "filterId": "3|F-1",
                                    "type": "3",
                                    "value": "F-1",
                                    "subType": "2"
                                },
                                "unionFilter": false
                            }
                        ],
                        "id": "3",
                        "unionFilter": false
                    },
                    {
                        "title": "适用人群",
                        "multiSelect": false,
                        "subFilterList": [
                            {
                                "title": "香港客人适用",
                                "selected": false,
                                "serverFilter": false,
                                "filterData": {
                                    "filterId": "76|1",
                                    "type": "76",
                                    "value": "1",
                                    "subType": "2"
                                },
                                "unionFilter": false
                            },
                            {
                                "title": "澳门客人适用",
                                "selected": false,
                                "serverFilter": false,
                                "filterData": {
                                    "filterId": "76|2",
                                    "type": "76",
                                    "value": "2",
                                    "subType": "2"
                                },
                                "unionFilter": false
                            },
                            {
                                "title": "台湾客人适用",
                                "selected": false,
                                "serverFilter": false,
                                "filterData": {
                                    "filterId": "76|3",
                                    "type": "76",
                                    "value": "3",
                                    "subType": "2"
                                },
                                "unionFilter": false
                            }
                        ],
                        "id": "76",
                        "unionFilter": false
                    }
                ],
                "detailQuickFilter": [
                    {
                        "title": "免费取消",
                        "selected": false,
                        "serverFilter": false,
                        "filterData": {
                            "filterId": "23|10",
                            "type": "23",
                            "value": "10",
                            "subType": "2"
                        },
                        "unionFilter": false
                    },
                    {
                        "title": "棋牌桌",
                        "selected": false,
                        "serverFilter": false,
                        "filterData": {
                            "filterId": "77|512",
                            "type": "77",
                            "value": "512",
                            "subType": "2"
                        },
                        "unionFilter": false
                    },
                    {
                        "title": "在线付款",
                        "selected": false,
                        "serverFilter": false,
                        "filterData": {
                            "filterId": "7|2",
                            "type": "7",
                            "value": "2",
                            "subType": "2"
                        },
                        "unionFilter": false
                    },
                    {
                        "title": "免费Wi-Fi上网",
                        "selected": false,
                        "serverFilter": false,
                        "filterData": {
                            "filterId": "3|F-1",
                            "type": "3",
                            "value": "F-1",
                            "subType": "2"
                        },
                        "unionFilter": false
                    }
                ],
                "filterRelation": [
                    {
                        "filterIds": [
                            "4|1",
                            "4|3",
                            "4|4",
                            "4|2",
                            "4|6",
                            "4|5"
                        ]
                    },
                    {
                        "filterIds": [
                            "23|40",
                            "81|1062",
                            "81|1309",
                            "81|1188",
                            "81|1174",
                            "81|834",
                            "81|1395",
                            "81|1061",
                            "81|1192",
                            "81|679",
                            "81|1583",
                            "81|835",
                            "81|1581",
                            "81|1190",
                            "81|1185",
                            "81|1191",
                            "81|1587",
                            "81|1317",
                            "81|873",
                            "81|671",
                            "81|1186",
                            "81|952"
                        ]
                    },
                    {
                        "filterIds": [
                            "77|192"
                        ]
                    },
                    {
                        "filterIds": [
                            "77|311"
                        ]
                    },
                    {
                        "filterIds": [
                            "77|87"
                        ]
                    },
                    {
                        "filterIds": [
                            "77|80"
                        ]
                    },
                    {
                        "filterIds": [
                            "77|183"
                        ]
                    },
                    {
                        "filterIds": [
                            "77|247"
                        ]
                    },
                    {
                        "filterIds": [
                            "77|236"
                        ]
                    },
                    {
                        "filterIds": [
                            "77|198"
                        ]
                    },
                    {
                        "filterIds": [
                            "77|210"
                        ]
                    },
                    {
                        "filterIds": [
                            "77|207"
                        ]
                    },
                    {
                        "filterIds": [
                            "77|187"
                        ]
                    },
                    {
                        "filterIds": [
                            "77|92"
                        ]
                    },
                    {
                        "filterIds": [
                            "77|512"
                        ]
                    },
                    {
                        "filterIds": [
                            "77|228"
                        ]
                    },
                    {
                        "filterIds": [
                            "77|635"
                        ]
                    },
                    {
                        "filterIds": [
                            "77|445"
                        ]
                    },
                    {
                        "filterIds": [
                            "77|107"
                        ]
                    },
                    {
                        "filterIds": [
                            "77|91"
                        ]
                    },
                    {
                        "filterIds": [
                            "77|Smoking"
                        ]
                    },
                    {
                        "filterIds": [
                            "77|NoSmoking"
                        ]
                    },
                    {
                        "filterIds": [
                            "77|extraBed"
                        ]
                    },
                    {
                        "filterIds": [
                            "77|extraCrib"
                        ]
                    },
                    {
                        "filterIds": [
                            "5|1",
                            "5|2",
                            "5|3"
                        ]
                    },
                    {
                        "filterIds": [
                            "86|1",
                            "86|2",
                            "86|3"
                        ]
                    },
                    {
                        "filterIds": [
                            "23|5"
                        ]
                    },
                    {
                        "filterIds": [
                            "23|10"
                        ]
                    },
                    {
                        "filterIds": [
                            "23|2"
                        ]
                    },
                    {
                        "filterIds": [
                            "3|SpecialInvoiceHotel"
                        ]
                    },
                    {
                        "filterIds": [
                            "23|20"
                        ]
                    },
                    {
                        "filterIds": [
                            "22|666667"
                        ]
                    },
                    {
                        "filterIds": [
                            "65|9999",
                            "65|33",
                            "156|8899",
                            "65|294",
                            "65|300",
                            "65|1197",
                            "65|366",
                            "65|242",
                            "65|443",
                            "65|88",
                            "23|41",
                            "65|99",
                            "65|101",
                            "65|100",
                            "65|102",
                            "65|254",
                            "65|372",
                            "65|373",
                            "65|375",
                            "65|374",
                            "65|8888",
                            "65|545"
                        ]
                    },
                    {
                        "filterIds": [
                            "7|2",
                            "7|1",
                            "7|3"
                        ]
                    },
                    {
                        "filterIds": [
                            "44|1005"
                        ]
                    },
                    {
                        "filterIds": [
                            "44|1006"
                        ]
                    },
                    {
                        "filterIds": [
                            "3|F-1"
                        ]
                    },
                    {
                        "filterIds": [
                            "3|F-16"
                        ]
                    },
                    {
                        "filterIds": [
                            "76|1",
                            "76|2",
                            "76|3",
                            "76|4"
                        ]
                    },
                    {
                        "filterIds": [
                            "63|0-120",
                            "63|180-180",
                            "63|240-240",
                            "63|300-1440"
                        ]
                    },
                    {
                        "filterIds": [
                            "23|15"
                        ]
                    }
                ]
            },
            "abTestResult": "A",
            "traceId": 1678568,
            "bookingStatus": 0,
            "propertyIds": [
                101,
                146,
                166,
                167,
                168,
                171,
                177,
                180,
                185,
                130,
                347,
                332,
                491,
                192,
                609,
                611
            ],
            "longShortRent": 0,
            "traceInfo": "{\"timestamp\":1728634407083,\"checkIn\":\"2024-10-11\",\"checkOut\":\"2024-10-12\",\"region\":\"MAINLAND\",\"cityId\":147,\"hotelId\":2021529,\"groupId\":0,\"roomId\":0,\"shadowId\":0,\"ismemberlogin\":true,\"uid\":\"B7D81DA3\",\"infoSec\":false}",
            "isDisplayPrimeTag": false
        },
        "_ddf": "fb",
        "format_check": "ok"
    },
    "error": "",
    "secache": "2108cabc4594a46c025f66e0bf1c68a9",
    "secache_time": 1728634408,
    "secache_date": "2024-10-11 16:13:28",
    "reason": "",
    "error_code": "0000",
    "cache": 0,
    "api_info": "today: max:15000 all[=++];expires:2031-01-01",
    "execution_time": "4.208",
    "server_time": "Beijing/2024-10-11 16:13:28",
    "client_ip": "127.0.0.1",
    "call_args": {
        "num_iid": "9568550"
    },
    "api_type": "xiecheng",
    "server_memory": "6.23MB",
    "last_id": false
}
异常示例
{
  "error": "item-not-found",
  "reason": "商品没找到",
  "error_code": "2000",
  "success": 0,
  "cache": 0,
  "api_info": "today:0 max:10000",
  "execution_time": 0.081,
  "server_time": "Beijing/2020-06-10 23:44:00",
  "call_args": [],
  "api_type": "taobao",
  "request_id": "15ee0ffc041242"}
相关资料
错误码解释
状态代码(error_code) 状态信息 详细描述 是否收费
0000success接口调用成功并返回相关数据
2000Search success but no result接口访问成功,但是搜索没有结果
4000Server internal error服务器内部错误
4001Network error网络错误
4002Target server error目标服务器错误
4003Param error用户输入参数错误忽略
4004Account not found用户帐号不存在忽略
4005Invalid authentication credentials授权失败忽略
4006API stopped您的当前API已停用忽略
4007Account stopped您的账户已停用忽略
4008API rate limit exceeded并发已达上限忽略
4009API maintenanceAPI维护中忽略
4010API not found with these valuesAPI不存在忽略
4012Please add api first请先添加api忽略
4013Number of calls exceeded调用次数超限忽略
4014Missing url param参数缺失忽略
4015Wrong pageToken参数pageToken有误忽略
4016Insufficient balance余额不足忽略
4017timeout error请求超时
5000unknown error未知错误
API 工具
如何获得此API
立即开通 有疑问联系客服QQ:QQ:31424016063142401606(微信同号)