万邦客路获取客路详情原数据 API 返回值说明

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

klook.item_get_app

公共参数

请求地址: https://api-gw.onebound.cn/klook/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版本
请求参数

请求参数:item_id=495187&checkin=2025-02-18&checkout=2025-02-19

参数说明:item_id:酒店ID
checkin:入住时间
checkout:退订时间

响应参数

Version: Date:2025-02-07

名称 类型 必须 示例值 描述
item
Mix 1 获得酒店详细信息
请求示例
	
-- 请求示例 url 默认请求参数已经URL编码处理
curl -i "https://api-gw.onebound.cn/klook/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&item_id=495187&checkin=2025-02-18&checkout=2025-02-19"
<?php

// 请求示例 url 默认请求参数已经URL编码处理
// 本示例代码未加密secret参数明文传输,若要加密请参考:https://open.onebound.cn/help/demo/sdk/demo-sign.php
$method = "GET";
$url = "https://api-gw.onebound.cn/klook/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&item_id=495187&checkin=2025-02-18&checkout=2025-02-19";
$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" =>"klook",
	                "api_name" =>"item_get_app",
	                "api_params"=>array (
  'item_id' => '495187',
  'checkin' => '2025-02-18',
  'checkout' => '2025-02-19',
)
                )
            );
 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/klook/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&item_id=495187&checkin=2025-02-18&checkout=2025-02-19";
		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/klook/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&item_id=495187&checkin=2025-02-18&checkout=2025-02-19";
	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/klook/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&item_id=495187&checkin=2025-02-18&checkout=2025-02-19"
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/klook/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&item_id=495187&checkin=2025-02-18&checkout=2025-02-19", 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/klook/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({"item_id":"495187","checkin":"2025-02-18","checkout":"2025-02-19"})// 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":"klook",
     "api_name" : "item_get_app",
     "api_params": {"item_id":"495187","checkin":"2025-02-18","checkout":"2025-02-19"}//item_id=495187&checkin=2025-02-18&checkout=2025-02-19,#具体参数请参考文档说明
     },
     function(e){
        document.querySelector("#api_data_box").innerHTML=JSON.stringify(e)
     }
);
</script>
require "net/http"
require "uri"
url = URI("https://api-gw.onebound.cn/klook/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&item_id=495187&checkin=2025-02-18&checkout=2025-02-19")
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/klook/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&item_id=495187&checkin=2025-02-18&checkout=2025-02-19")!
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/klook/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&item_id=495187&checkin=2025-02-18&checkout=2025-02-19"];

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/klook/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&item_id=495187&checkin=2025-02-18&checkout=2025-02-19";
  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/klook/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&item_id=495187&checkin=2025-02-18&checkout=2025-02-19");
         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/klook/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&item_id=495187&checkin=2025-02-18&checkout=2025-02-19", (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/klook/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&item_id=495187&checkin=2025-02-18&checkout=2025-02-19")
    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/klook/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&item_id=495187&checkin=2025-02-18&checkout=2025-02-19")?;
    let mut content = String::new();
    resp.read_to_string(&mut content)?;

    println!("{}", content);

    Ok(())
}

library(httr)
r <- GET("https://api-gw.onebound.cn/klook/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&item_id=495187&checkin=2025-02-18&checkout=2025-02-19")
content(r)
url = "https://api-gw.onebound.cn/klook/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&item_id=495187&checkin=2025-02-18&checkout=2025-02-19";
response = webread(url);
disp(response);
响应示例
{
      "item": {
        "channel": "desktop",
        "filter_category_list": [
          {
            "category_name": "优惠类型",
            "filter_list": [
              {
                "category": "HOT_DEAL",
                "code": "hot_price",
                "icon_url": "https://res.klook.com/image/upload/v1705549303/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_hotprice_48x48_3x.png",
                "name": "热门推荐价",
                "name_en": "Hot prices",
                "sort": 1
              },
              {
                "category": "HOT_DEAL",
                "code": "hotel_offer",
                "icon_url": "https://res.klook.com/image/upload/v1705550728/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_benefit_48x48_3x.png",
                "name": "礼遇优惠",
                "name_en": "Hotel offers",
                "sort": 3
              }
            ],
            "sort": 0
          },
          {
            "category_name": "酒店政策",
            "filter_list": [
              {
                "category": "HOTEL_POLICY",
                "code": "breakfast",
                "icon_url": null,
                "name": "含早餐",
                "name_en": "Breakfast included",
                "sort": 1
              }
            ],
            "sort": 1
          }
        ],
        "filter_code_list": [
          "hot_price",
          "hotel_offer",
          "breakfast"
        ],
        "hide_rate_addition_amount": false,
        "hit_detail_page_tolerance": false,
        "package_list": null,
        "package_tab_desc": "热门",
        "pay_later_tag": null,
        "recommend_occupancy": null,
        "report": {
          "buried_raw_id": "690447a4-a363-4388-84c2-2e22ec579044",
          "is_cc": false,
          "is_req_cc": true,
          "sde_type": [
            "priceable"
          ]
        },
        "room_rate_list": [
          {
            "extra_rate_list": [],
            "rate_list": [
              {
                "base_content_list": [
                  {
                    "bold": false,
                    "color": "#757575",
                    "content": "不含早餐",
                    "hover_list": null,
                    "icon": "https://res.klook.com/image/upload/v1704279528/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_nonbreakfast_mobile_42x42_3x.png",
                    "placeholder": null
                  },
                  {
                    "bold": null,
                    "color": "",
                    "content": "1张特大床",
                    "hover_list": null,
                    "icon": "https://res.klook.com/image/upload/v1639464805/UED%20Team%EF%BC%88for%20DE%20only%EF%BC%89/System%20Icon/Hotel/Rate%20Code/icon_furniture_appliancese_big_bed_xs.png",
                    "placeholder": null
                  },
                  {
                    "bold": null,
                    "color": null,
                    "content": "{0}此房间适合入住人数",
                    "hover_list": null,
                    "icon": "https://res.klook.com/image/upload/v1639464552/UED%20Team%EF%BC%88for%20DE%20only%EF%BC%89/System%20Icon/Hotel/Rate%20Code/icon_user_user_group_xs.png",
                    "placeholder": "客房可入住1名成人,"
                  }
                ],
                "channel_rule_ids": null,
                "combo_product": null,
                "combo_rate_count": null,
                "feature_tag_list": null,
                "feature_tags": null,
                "fencing_rule_ids": null,
                "filter_list": [
                  "hotel_offer"
                ],
                "from_cache": false,
                "hide": null,
                "is_stay_plus": false,
                "one_level": null,
                "ori_rate_name": null,
                "package_id": null,
                "package_name": null,
                "parity_v2": null,
                "pay_later_desc": null,
                "per_night_sale_rate": 539.3,
                "policy_content_list": [
                  {
                    "color": null,
                    "content_list": null,
                    "description": "预订后立即确认订单",
                    "icon_url": "https://res.klook.com/image/upload/v1669804345/UED%20Team%EF%BC%88for%20DE%20only%EF%BC%89/System%20Icon/Hotel/Public%20icon/icon_feedback_success_fill_xs.png",
                    "style_type": null,
                    "title": "立即确认"
                  },
                  {
                    "color": null,
                    "content_list": null,
                    "description": "订单一经确认,则不可修改或取消",
                    "icon_url": null,
                    "style_type": null,
                    "title": "不可退款"
                  }
                ],
                "pricing": {
                  "check_in_info": null,
                  "currency_symbol": "¥",
                  "discount_type": "promotion",
                  "format_price": "539.3",
                  "has_stock": true,
                  "original_price_desc": "¥ 555.4",
                  "price": "539.3",
                  "price_desc": "{format_price}起",
                  "price_info": {
                    "bg_color": "#FFF0E5",
                    "border_color": null,
                    "icon": "https://res.klook.com/image/upload/v1655206607/UED%20Team%EF%BC%88for%20DE%20only%EF%BC%89/System%20Icon/Hotel/Promotional%20information/icon_nav_chevron_right_xxxs.png",
                    "name": "可省 ¥ 16.1",
                    "price_detail": {
                      "currency_symbol": "¥",
                      "desc": "入住1间房1晚",
                      "gift": null,
                      "pay_online": {
                        "per_night_price": null,
                        "per_night_price_desc": null,
                        "taxes_desc": "含税",
                        "title": "在线支付",
                        "total_price": "¥ 539.3",
                        "total_price_desc": "合计"
                      },
                      "price_items": [
                        {
                          "content": "¥ 485.1",
                          "content_color": null,
                          "item_list": null,
                          "title": "1间房 x 1晚",
                          "type": "pretax_price"
                        },
                        {
                          "content": "¥ 70.3",
                          "content_color": null,
                          "item_list": null,
                          "title": "税杂费",
                          "type": "taxes_and_fee"
                        },
                        {
                          "content": "-¥ 16.1",
                          "content_color": "#FF5B00",
                          "item_list": [
                            {
                              "content": "-¥ 16.1",
                              "desc": null,
                              "title": "限时促销"
                            }
                          ],
                          "title": "优惠明细",
                          "type": "discount"
                        }
                      ],
                      "title": "价格明细"
                    },
                    "text_color": "#FF5B00"
                  },
                  "price_tag_list": [
                    {
                      "id": "savePrice",
                      "tag_text": "¥ 16.1",
                      "text": "可省",
                      "type": "vertical_promo_tag"
                    }
                  ],
                  "price_tags": null,
                  "reward_desc": "赚Klook积分回馈(约¥1.5)",
                  "tax_desc": "每晚房价含税",
                  "tip": {
                    "bg_color": null,
                    "bg_color_left": null,
                    "bg_color_right": null,
                    "bold": null,
                    "border_color": null,
                    "desc": null,
                    "discount_desc": null,
                    "hover_list": null,
                    "icon": null,
                    "id": null,
                    "max_line": null,
                    "name": "仅剩3间房了!",
                    "prefix": null,
                    "text_color": "#FF5B00",
                    "time_left": null,
                    "type": 1
                  },
                  "total_price": "539.3"
                },
                "promotion_tag_list": [
                  {
                    "icon_src": null,
                    "id": "-1",
                    "tag_color": "#F44622",
                    "text": "限时促销",
                    "type": "manual_tag"
                  }
                ],
                "promotion_tags": null,
                "rate_code_infos": [
                  {
                    "code": "1张特大床",
                    "desc": "1张特大床",
                    "tip": null,
                    "type": 1
                  },
                  {
                    "code": "no_breakfast",
                    "desc": "不含早餐",
                    "tip": null,
                    "type": 2
                  },
                  {
                    "code": "no_refundable",
                    "desc": "不可退款",
                    "tip": null,
                    "type": 3
                  },
                  {
                    "code": "1:false|2:false|3:101|4:0|5:0|5010821:",
                    "desc": "特别优惠",
                    "tip": null,
                    "type": 4
                  }
                ],
                "rate_contents": [
                  {
                    "bg_color": null,
                    "bg_color_left": null,
                    "bg_color_right": null,
                    "bold": false,
                    "border_color": null,
                    "desc": null,
                    "discount_desc": null,
                    "hover_list": null,
                    "icon": "https://res.klook.com/image/upload/v1704279528/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_nonbreakfast_mobile_42x42_3x.png",
                    "id": "meal",
                    "max_line": null,
                    "name": "不含早餐",
                    "prefix": null,
                    "text_color": "#757575",
                    "time_left": null,
                    "type": 1
                  },
                  {
                    "bg_color": null,
                    "bg_color_left": null,
                    "bg_color_right": null,
                    "bold": null,
                    "border_color": null,
                    "desc": null,
                    "discount_desc": null,
                    "hover_list": null,
                    "icon": "https://res.klook.com/image/upload/v1704279529/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_nonrefundable_mobile_42x42_3x.png",
                    "id": "cancelPolicy",
                    "max_line": 2,
                    "name": "不可退款",
                    "prefix": null,
                    "text_color": "#757575",
                    "time_left": null,
                    "type": 1
                  }
                ],
                "rate_debug_info": null,
                "rate_icon": "",
                "rate_id": "203934945",
                "rate_infos": [
                  {
                    "bg_color": null,
                    "icon_src": null,
                    "id": null,
                    "line_color": null,
                    "text": "不可退款",
                    "text_color": "#757575",
                    "type": "hotel_manual_tag"
                  }
                ],
                "rate_name": "1张特大床",
                "rate_plan_type": [
                  "HotelOffer"
                ],
                "rate_token": "eyJkayI6IiIsInJhdGVDb2RlS2V5IjoiMTpmYWxzZXwyOmZhbHNlfDM6MTAxfDQ6MHw1OjB8NTAxMDgyMToiLCJyYXRlQ29kZUxpc3QiOltdLCJyayI6IjJiMjFhOTkxLWEyODUtNDBjMy05ZjAyLTA2MjM5NWZhOTk3NCIsInJvb21JZCI6IjEyNDMzNzcxOTQxNTM4OTgwNzkiLCJydiI6IiIsInNlYXJjaFByb21vdGlvbiI6eyJmaWx0ZXJQcm9tb3Rpb25UeXBlU2V0IjpbIjIiXX0sInN1cHBsaWVyQWNjb3VudElkIjoiMTA0IiwidGFyZ2V0U3VwcGxpZXJJZFNldCI6WzFdLCJ0ayI6IiIsInRyYWNlSWQiOiIyYjRmNTY0OCIsInR2IjoiIn0",
                "rate_type": 1,
                "recommend_info": null,
                "report": {
                  "buried_raw_id": "690447a4-a363-4388-84c2-2e22ec579044",
                  "is_cc": false,
                  "is_req_cc": true,
                  "sde_type": [
                    "priceable"
                  ]
                },
                "reverse_filter_list": [],
                "sale_tip_desc": null,
                "secret_channel_rule_ids": null,
                "server_data": null,
                "source_rate_id": null,
                "special_offer": {
                  "content_list": [
                    {
                      "code": "5010821",
                      "desc": "Special Offer\n - Rate includes the following: \n·Accommodations as selected \n·4 soft drinks on first night stay (2 cans of soda, 1 can of soda water, 1 bottle of orange juice) \nFull details at check-in. Restrictions may apply.",
                      "icon_url": "https://res.klook.com/image/upload/v1724312833/UED_new/Hotel/Hotel_Experiential_stay_booking_2408/icon_Special_offer_black_4x.png",
                      "icon_white": "https://res.klook.com/image/upload/v1724312833/UED_new/Hotel/Hotel_Experiential_stay_booking_2408/icon_Special_offer_white_4x.png",
                      "image_list": null,
                      "important": true,
                      "name": "特别优惠",
                      "order_priority": 999,
                      "tip": null,
                      "type": 2
                    }
                  ],
                  "icon_url": "https://res.klook.com/image/upload/v1639723551/UED%20Team%EF%BC%88for%20DE%20only%EF%BC%89/System%20Icon/Hotel/Public%20icon/icon_shopping_gift_fill_xs.png",
                  "is_package": null,
                  "name": "套餐优惠内容",
                  "package_img": null,
                  "package_name": null
                },
                "special_price_info": null,
                "stay_plus_list": null,
                "stay_plus_rate_id": null,
                "stock_tag": {
                  "bg_color": null,
                  "icon_src": null,
                  "id": null,
                  "line_color": null,
                  "text": "仅剩3间房了!",
                  "text_color": "#FF5B00",
                  "type": "hotel_manual_tag"
                },
                "supplier_account_id": "104",
                "supplier_id": 1,
                "tax_desc": "每晚房价含税",
                "tip": null,
                "two_level": null
              },
              {
                "base_content_list": [
                  {
                    "bold": true,
                    "color": "#00828A",
                    "content": "含早餐",
                    "hover_list": null,
                    "icon": "https://res.klook.com/image/upload/v1704279528/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_freebreakfast_mobile_42x42_3x.png",
                    "placeholder": null
                  },
                  {
                    "bold": null,
                    "color": "",
                    "content": "1张特大床",
                    "hover_list": null,
                    "icon": "https://res.klook.com/image/upload/v1639464805/UED%20Team%EF%BC%88for%20DE%20only%EF%BC%89/System%20Icon/Hotel/Rate%20Code/icon_furniture_appliancese_big_bed_xs.png",
                    "placeholder": null
                  },
                  {
                    "bold": null,
                    "color": null,
                    "content": "{0}此房间适合入住人数",
                    "hover_list": null,
                    "icon": "https://res.klook.com/image/upload/v1639464552/UED%20Team%EF%BC%88for%20DE%20only%EF%BC%89/System%20Icon/Hotel/Rate%20Code/icon_user_user_group_xs.png",
                    "placeholder": "客房可入住1名成人,"
                  }
                ],
                "channel_rule_ids": null,
                "combo_product": null,
                "combo_rate_count": null,
                "feature_tag_list": null,
                "feature_tags": null,
                "fencing_rule_ids": null,
                "filter_list": [
                  "hot_price",
                  "breakfast",
                  "hotel_offer"
                ],
                "from_cache": false,
                "hide": null,
                "is_stay_plus": false,
                "one_level": null,
                "ori_rate_name": null,
                "package_id": null,
                "package_name": null,
                "parity_v2": null,
                "pay_later_desc": null,
                "per_night_sale_rate": 605.6,
                "policy_content_list": [
                  {
                    "color": null,
                    "content_list": null,
                    "description": "预订后立即确认订单",
                    "icon_url": "https://res.klook.com/image/upload/v1669804345/UED%20Team%EF%BC%88for%20DE%20only%EF%BC%89/System%20Icon/Hotel/Public%20icon/icon_feedback_success_fill_xs.png",
                    "style_type": null,
                    "title": "立即确认"
                  },
                  {
                    "color": null,
                    "content_list": null,
                    "description": "订单一经确认,则不可修改或取消",
                    "icon_url": null,
                    "style_type": null,
                    "title": "不可退款"
                  }
                ],
                "pricing": {
                  "check_in_info": null,
                  "currency_symbol": "¥",
                  "discount_type": "promotion",
                  "format_price": "605.6",
                  "has_stock": true,
                  "original_price_desc": null,
                  "price": "605.6",
                  "price_desc": "{format_price}起",
                  "price_info": {
                    "bg_color": null,
                    "border_color": null,
                    "icon": null,
                    "name": null,
                    "price_detail": {
                      "currency_symbol": "¥",
                      "desc": "入住1间房1晚",
                      "gift": null,
                      "pay_online": {
                        "per_night_price": null,
                        "per_night_price_desc": null,
                        "taxes_desc": "含税",
                        "title": "在线支付",
                        "total_price": "¥ 605.6",
                        "total_price_desc": "合计"
                      },
                      "price_items": [
                        {
                          "content": "¥ 526.6",
                          "content_color": null,
                          "item_list": null,
                          "title": "1间房 x 1晚",
                          "type": "pretax_price"
                        },
                        {
                          "content": "¥ 79.0",
                          "content_color": null,
                          "item_list": null,
                          "title": "税杂费",
                          "type": "taxes_and_fee"
                        }
                      ],
                      "title": "价格明细"
                    },
                    "text_color": null
                  },
                  "price_tag_list": [],
                  "price_tags": null,
                  "reward_desc": "赚Klook积分回馈(约¥1.8)",
                  "tax_desc": "每晚房价含税",
                  "tip": {
                    "bg_color": null,
                    "bg_color_left": null,
                    "bg_color_right": null,
                    "bold": null,
                    "border_color": null,
                    "desc": null,
                    "discount_desc": null,
                    "hover_list": null,
                    "icon": null,
                    "id": null,
                    "max_line": null,
                    "name": "仅剩3间房了!",
                    "prefix": null,
                    "text_color": "#FF5B00",
                    "time_left": null,
                    "type": 1
                  },
                  "total_price": "605.6"
                },
                "promotion_tag_list": null,
                "promotion_tags": null,
                "rate_code_infos": [
                  {
                    "code": "1张特大床",
                    "desc": "1张特大床",
                    "tip": null,
                    "type": 1
                  },
                  {
                    "code": "breakfast",
                    "desc": "含早餐",
                    "tip": null,
                    "type": 2
                  },
                  {
                    "code": "no_refundable",
                    "desc": "不可退款",
                    "tip": null,
                    "type": 3
                  },
                  {
                    "code": "1:true|2:false|3:101|4:0|5:0|5010821:",
                    "desc": "特别优惠",
                    "tip": null,
                    "type": 4
                  }
                ],
                "rate_contents": [
                  {
                    "bg_color": null,
                    "bg_color_left": null,
                    "bg_color_right": null,
                    "bold": false,
                    "border_color": null,
                    "desc": null,
                    "discount_desc": null,
                    "hover_list": null,
                    "icon": "https://res.klook.com/image/upload/v1704279528/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_freebreakfast_mobile_42x42_3x.png",
                    "id": "meal",
                    "max_line": null,
                    "name": "含早餐",
                    "prefix": null,
                    "text_color": "#00828A",
                    "time_left": null,
                    "type": 1
                  },
                  {
                    "bg_color": null,
                    "bg_color_left": null,
                    "bg_color_right": null,
                    "bold": null,
                    "border_color": null,
                    "desc": null,
                    "discount_desc": null,
                    "hover_list": null,
                    "icon": "https://res.klook.com/image/upload/v1704279529/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_nonrefundable_mobile_42x42_3x.png",
                    "id": "cancelPolicy",
                    "max_line": 2,
                    "name": "不可退款",
                    "prefix": null,
                    "text_color": "#757575",
                    "time_left": null,
                    "type": 1
                  }
                ],
                "rate_debug_info": null,
                "rate_icon": "",
                "rate_id": "389603621",
                "rate_infos": [
                  {
                    "bg_color": null,
                    "icon_src": null,
                    "id": null,
                    "line_color": null,
                    "text": "不可退款",
                    "text_color": "#757575",
                    "type": "hotel_manual_tag"
                  }
                ],
                "rate_name": "1张特大床",
                "rate_plan_type": [
                  "HotelOffer",
                  "HotPrice"
                ],
                "rate_token": "eyJkayI6IiIsInJhdGVDb2RlS2V5IjoiMTp0cnVlfDI6ZmFsc2V8MzoxMDF8NDowfDU6MHw1MDEwODIxOiIsInJhdGVDb2RlTGlzdCI6W10sInJrIjoiOWE0YjhhNGEtM2ZkNS00ZTc4LTgzN2QtMTZjZjljZTVkNTY1Iiwicm9vbUlkIjoiMTI0MzM3NzE5NDE1Mzg5ODA3OSIsInJ2IjoiIiwic2VhcmNoUHJvbW90aW9uIjp7ImZpbHRlclByb21vdGlvblR5cGVTZXQiOlsiMiJdfSwic3VwcGxpZXJBY2NvdW50SWQiOiIxMDQiLCJ0YXJnZXRTdXBwbGllcklkU2V0IjpbMV0sInRrIjoiIiwidHJhY2VJZCI6IjJiNGY1NjQ4IiwidHYiOiIifQ",
                "rate_type": 1,
                "recommend_info": null,
                "report": {
                  "buried_raw_id": "690447a4-a363-4388-84c2-2e22ec579044",
                  "is_cc": false,
                  "is_req_cc": true,
                  "sde_type": [
                    "priceable"
                  ]
                },
                "reverse_filter_list": [],
                "sale_tip_desc": null,
                "secret_channel_rule_ids": null,
                "server_data": null,
                "source_rate_id": null,
                "special_offer": {
                  "content_list": [
                    {
                      "code": "5010821",
                      "desc": "Special Offer\n - Rate includes the following: \n·Accommodations as selected \n·4 soft drinks on first night stay (2 cans of soda, 1 can soda water, 1 bottle of orange juice) \nFull details at check-in. Restrictions may apply.",
                      "icon_url": "https://res.klook.com/image/upload/v1724312833/UED_new/Hotel/Hotel_Experiential_stay_booking_2408/icon_Special_offer_black_4x.png",
                      "icon_white": "https://res.klook.com/image/upload/v1724312833/UED_new/Hotel/Hotel_Experiential_stay_booking_2408/icon_Special_offer_white_4x.png",
                      "image_list": null,
                      "important": true,
                      "name": "特别优惠",
                      "order_priority": 999,
                      "tip": null,
                      "type": 2
                    }
                  ],
                  "icon_url": "https://res.klook.com/image/upload/v1639723551/UED%20Team%EF%BC%88for%20DE%20only%EF%BC%89/System%20Icon/Hotel/Public%20icon/icon_shopping_gift_fill_xs.png",
                  "is_package": null,
                  "name": "套餐优惠内容",
                  "package_img": null,
                  "package_name": null
                },
                "special_price_info": null,
                "stay_plus_list": null,
                "stay_plus_rate_id": null,
                "stock_tag": {
                  "bg_color": null,
                  "icon_src": null,
                  "id": null,
                  "line_color": null,
                  "text": "仅剩3间房了!",
                  "text_color": "#FF5B00",
                  "type": "hotel_manual_tag"
                },
                "supplier_account_id": "104",
                "supplier_id": 1,
                "tax_desc": "每晚房价含税",
                "tip": null,
                "two_level": null
              }
            ],
            "room_info": {
              "facility_list": [
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "禁止吸烟",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "水壶",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "电视",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "空调",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "冰箱",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "迷你吧",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "电话",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "洗漱用品",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "淋浴",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "电吹风",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "保险箱",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "免费瓶装水",
                  "stress": 0,
                  "value": null
                }
              ],
              "popular_facility_list": [
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278058/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_square_mobile_48x48_3x.png",
                  "name": "22.0 m²",
                  "stress": null,
                  "value": null
                }
              ],
              "recommend_quantity": null,
              "room_desc": null,
              "room_id": "1243377194153898079",
              "room_image_count": 20,
              "room_image_list": [
                "https://i.travelapi.com/lodging/2000000/1170000/1167500/1167471/a1a48ef8_z.jpg",
                "https://res.klook.com/klook-hotel/image/upload/travelapi/2000000/1170000/1167500/1167471/55c088a7_z.jpg",
                "https://res.klook.com/klook-hotel/image/upload/travelapi/2000000/1170000/1167500/1167471/2935a4d8_z.jpg",
                "https://res.klook.com/klook-hotel/image/upload/s2pix8/hotelImages/2004/329641206/9382c974266238f6d6cdaf2fcceceffe.jpg",
                "https://i.travelapi.com/lodging/2000000/1170000/1167500/1167471/9eaceb1a_z.jpg",
                "https://i.travelapi.com/hotels/2000000/1170000/1167500/1167471/32c12651_z.jpg",
                "https://i.travelapi.com/hotels/2000000/1170000/1167500/1167471/416b4e67_z.jpg",
                "https://i.travelapi.com/hotels/2000000/1170000/1167500/1167471/54f808e7_z.jpg",
                "https://i.travelapi.com/hotels/2000000/1170000/1167500/1167471/bd929e6c_z.jpg",
                "https://i.travelapi.com/hotels/2000000/1170000/1167500/1167471/f76d1ab0_z.jpg",
                "https://i.travelapi.com/hotels/2000000/1170000/1167500/1167471/fc8b9635_z.jpg",
                "https://i.travelapi.com/lodging/2000000/1170000/1167500/1167471/219a8c81_z.jpg",
                "https://i.travelapi.com/lodging/2000000/1170000/1167500/1167471/2935a4d8_z.jpg",
                "https://i.travelapi.com/lodging/2000000/1170000/1167500/1167471/55c088a7_z.jpg",
                "https://i.travelapi.com/lodging/2000000/1170000/1167500/1167471/5814fb08_z.jpg",
                "https://i.travelapi.com/lodging/2000000/1170000/1167500/1167471/6b5122fb_z.jpg",
                "https://i.travelapi.com/lodging/2000000/1170000/1167500/1167471/93e19123_z.jpg",
                "https://i.travelapi.com/lodging/2000000/1170000/1167500/1167471/9eaceb1a_z.jpg",
                "https://i.travelapi.com/lodging/2000000/1170000/1167500/1167471/a1a48ef8_z.jpg",
                "https://res.klook.com/klook-hotel/image/upload/s2pix8/property/2004/910300924/12e27200e03466dc11deae149d46aa2d.jpeg"
              ],
              "room_image_text": null,
              "room_name": "高级大床间",
              "supplier_hotel_id": null,
              "supplier_id": null,
              "supplier_room_id": null
            }
          },
          {
            "extra_rate_list": [],
            "rate_list": [
              {
                "base_content_list": [
                  {
                    "bold": false,
                    "color": "#757575",
                    "content": "不含早餐",
                    "hover_list": null,
                    "icon": "https://res.klook.com/image/upload/v1704279528/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_nonbreakfast_mobile_42x42_3x.png",
                    "placeholder": null
                  },
                  {
                    "bold": null,
                    "color": "",
                    "content": "2张单人床",
                    "hover_list": null,
                    "icon": "https://res.klook.com/image/upload/v1639464805/UED%20Team%EF%BC%88for%20DE%20only%EF%BC%89/System%20Icon/Hotel/Rate%20Code/icon_furniture_appliancese_big_bed_xs.png",
                    "placeholder": null
                  },
                  {
                    "bold": null,
                    "color": null,
                    "content": "{0}此房间适合入住人数",
                    "hover_list": null,
                    "icon": "https://res.klook.com/image/upload/v1639464552/UED%20Team%EF%BC%88for%20DE%20only%EF%BC%89/System%20Icon/Hotel/Rate%20Code/icon_user_user_group_xs.png",
                    "placeholder": "客房可入住1名成人,"
                  }
                ],
                "channel_rule_ids": null,
                "combo_product": null,
                "combo_rate_count": null,
                "feature_tag_list": null,
                "feature_tags": null,
                "fencing_rule_ids": null,
                "filter_list": [
                  "hotel_offer"
                ],
                "from_cache": false,
                "hide": null,
                "is_stay_plus": false,
                "one_level": null,
                "ori_rate_name": null,
                "package_id": null,
                "package_name": null,
                "parity_v2": null,
                "pay_later_desc": null,
                "per_night_sale_rate": 539.3,
                "policy_content_list": [
                  {
                    "color": null,
                    "content_list": null,
                    "description": "预订后立即确认订单",
                    "icon_url": "https://res.klook.com/image/upload/v1669804345/UED%20Team%EF%BC%88for%20DE%20only%EF%BC%89/System%20Icon/Hotel/Public%20icon/icon_feedback_success_fill_xs.png",
                    "style_type": null,
                    "title": "立即确认"
                  },
                  {
                    "color": null,
                    "content_list": null,
                    "description": "订单一经确认,则不可修改或取消",
                    "icon_url": null,
                    "style_type": null,
                    "title": "不可退款"
                  }
                ],
                "pricing": {
                  "check_in_info": null,
                  "currency_symbol": "¥",
                  "discount_type": "promotion",
                  "format_price": "539.3",
                  "has_stock": true,
                  "original_price_desc": "¥ 555.4",
                  "price": "539.3",
                  "price_desc": "{format_price}起",
                  "price_info": {
                    "bg_color": "#FFF0E5",
                    "border_color": null,
                    "icon": "https://res.klook.com/image/upload/v1655206607/UED%20Team%EF%BC%88for%20DE%20only%EF%BC%89/System%20Icon/Hotel/Promotional%20information/icon_nav_chevron_right_xxxs.png",
                    "name": "可省 ¥ 16.1",
                    "price_detail": {
                      "currency_symbol": "¥",
                      "desc": "入住1间房1晚",
                      "gift": null,
                      "pay_online": {
                        "per_night_price": null,
                        "per_night_price_desc": null,
                        "taxes_desc": "含税",
                        "title": "在线支付",
                        "total_price": "¥ 539.3",
                        "total_price_desc": "合计"
                      },
                      "price_items": [
                        {
                          "content": "¥ 485.1",
                          "content_color": null,
                          "item_list": null,
                          "title": "1间房 x 1晚",
                          "type": "pretax_price"
                        },
                        {
                          "content": "¥ 70.3",
                          "content_color": null,
                          "item_list": null,
                          "title": "税杂费",
                          "type": "taxes_and_fee"
                        },
                        {
                          "content": "-¥ 16.1",
                          "content_color": "#FF5B00",
                          "item_list": [
                            {
                              "content": "-¥ 16.1",
                              "desc": null,
                              "title": "限时促销"
                            }
                          ],
                          "title": "优惠明细",
                          "type": "discount"
                        }
                      ],
                      "title": "价格明细"
                    },
                    "text_color": "#FF5B00"
                  },
                  "price_tag_list": [
                    {
                      "id": "savePrice",
                      "tag_text": "¥ 16.1",
                      "text": "可省",
                      "type": "vertical_promo_tag"
                    }
                  ],
                  "price_tags": null,
                  "reward_desc": "赚Klook积分回馈(约¥1.5)",
                  "tax_desc": "每晚房价含税",
                  "tip": null,
                  "total_price": "539.3"
                },
                "promotion_tag_list": [
                  {
                    "icon_src": null,
                    "id": "-1",
                    "tag_color": "#F44622",
                    "text": "限时促销",
                    "type": "manual_tag"
                  }
                ],
                "promotion_tags": null,
                "rate_code_infos": [
                  {
                    "code": "2张单人床",
                    "desc": "2张单人床",
                    "tip": null,
                    "type": 1
                  },
                  {
                    "code": "no_breakfast",
                    "desc": "不含早餐",
                    "tip": null,
                    "type": 2
                  },
                  {
                    "code": "no_refundable",
                    "desc": "不可退款",
                    "tip": null,
                    "type": 3
                  },
                  {
                    "code": "1:false|2:false|3:102|4:0|5:0|5010821:",
                    "desc": "特别优惠",
                    "tip": null,
                    "type": 4
                  }
                ],
                "rate_contents": [
                  {
                    "bg_color": null,
                    "bg_color_left": null,
                    "bg_color_right": null,
                    "bold": false,
                    "border_color": null,
                    "desc": null,
                    "discount_desc": null,
                    "hover_list": null,
                    "icon": "https://res.klook.com/image/upload/v1704279528/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_nonbreakfast_mobile_42x42_3x.png",
                    "id": "meal",
                    "max_line": null,
                    "name": "不含早餐",
                    "prefix": null,
                    "text_color": "#757575",
                    "time_left": null,
                    "type": 1
                  },
                  {
                    "bg_color": null,
                    "bg_color_left": null,
                    "bg_color_right": null,
                    "bold": null,
                    "border_color": null,
                    "desc": null,
                    "discount_desc": null,
                    "hover_list": null,
                    "icon": "https://res.klook.com/image/upload/v1704279529/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_nonrefundable_mobile_42x42_3x.png",
                    "id": "cancelPolicy",
                    "max_line": 2,
                    "name": "不可退款",
                    "prefix": null,
                    "text_color": "#757575",
                    "time_left": null,
                    "type": 1
                  }
                ],
                "rate_debug_info": null,
                "rate_icon": "",
                "rate_id": "205723816",
                "rate_infos": [
                  {
                    "bg_color": null,
                    "icon_src": null,
                    "id": null,
                    "line_color": null,
                    "text": "不可退款",
                    "text_color": "#757575",
                    "type": "hotel_manual_tag"
                  }
                ],
                "rate_name": "2张单人床",
                "rate_plan_type": [
                  "HotelOffer"
                ],
                "rate_token": "eyJkayI6IiIsInJhdGVDb2RlS2V5IjoiMTpmYWxzZXwyOmZhbHNlfDM6MTAyfDQ6MHw1OjB8NTAxMDgyMToiLCJyYXRlQ29kZUxpc3QiOltdLCJyayI6IjA0N2ZkYTQ5LTdmYTUtNGExMi1iYzE3LTY0ODdjNjkyZGExYiIsInJvb21JZCI6IjEyNDMzNzcxOTQyNzEzMzg1MDAiLCJydiI6IiIsInNlYXJjaFByb21vdGlvbiI6eyJmaWx0ZXJQcm9tb3Rpb25UeXBlU2V0IjpbIjIiXX0sInN1cHBsaWVyQWNjb3VudElkIjoiMTA0IiwidGFyZ2V0U3VwcGxpZXJJZFNldCI6WzFdLCJ0ayI6IiIsInRyYWNlSWQiOiIyYjRmNTY0OCIsInR2IjoiIn0",
                "rate_type": 1,
                "recommend_info": null,
                "report": {
                  "buried_raw_id": "690447a4-a363-4388-84c2-2e22ec579044",
                  "is_cc": false,
                  "is_req_cc": true,
                  "sde_type": [
                    "priceable"
                  ]
                },
                "reverse_filter_list": [],
                "sale_tip_desc": null,
                "secret_channel_rule_ids": null,
                "server_data": null,
                "source_rate_id": null,
                "special_offer": {
                  "content_list": [
                    {
                      "code": "5010821",
                      "desc": "Special Offer\n - Rate includes the following: \n·Accommodations as selected \n·4 soft drinks on first night stay (2 cans of soda, 1 can of soda water, 1 bottle of orange juice) \nFull details at check-in. Restrictions may apply.",
                      "icon_url": "https://res.klook.com/image/upload/v1724312833/UED_new/Hotel/Hotel_Experiential_stay_booking_2408/icon_Special_offer_black_4x.png",
                      "icon_white": "https://res.klook.com/image/upload/v1724312833/UED_new/Hotel/Hotel_Experiential_stay_booking_2408/icon_Special_offer_white_4x.png",
                      "image_list": null,
                      "important": true,
                      "name": "特别优惠",
                      "order_priority": 999,
                      "tip": null,
                      "type": 2
                    }
                  ],
                  "icon_url": "https://res.klook.com/image/upload/v1639723551/UED%20Team%EF%BC%88for%20DE%20only%EF%BC%89/System%20Icon/Hotel/Public%20icon/icon_shopping_gift_fill_xs.png",
                  "is_package": null,
                  "name": "套餐优惠内容",
                  "package_img": null,
                  "package_name": null
                },
                "special_price_info": null,
                "stay_plus_list": null,
                "stay_plus_rate_id": null,
                "stock_tag": null,
                "supplier_account_id": "104",
                "supplier_id": 1,
                "tax_desc": "每晚房价含税",
                "tip": null,
                "two_level": null
              },
              {
                "base_content_list": [
                  {
                    "bold": true,
                    "color": "#00828A",
                    "content": "含早餐",
                    "hover_list": null,
                    "icon": "https://res.klook.com/image/upload/v1704279528/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_freebreakfast_mobile_42x42_3x.png",
                    "placeholder": null
                  },
                  {
                    "bold": null,
                    "color": "",
                    "content": "2张单人床",
                    "hover_list": null,
                    "icon": "https://res.klook.com/image/upload/v1639464805/UED%20Team%EF%BC%88for%20DE%20only%EF%BC%89/System%20Icon/Hotel/Rate%20Code/icon_furniture_appliancese_big_bed_xs.png",
                    "placeholder": null
                  },
                  {
                    "bold": null,
                    "color": null,
                    "content": "{0}此房间适合入住人数",
                    "hover_list": null,
                    "icon": "https://res.klook.com/image/upload/v1639464552/UED%20Team%EF%BC%88for%20DE%20only%EF%BC%89/System%20Icon/Hotel/Rate%20Code/icon_user_user_group_xs.png",
                    "placeholder": "客房可入住1名成人,"
                  }
                ],
                "channel_rule_ids": null,
                "combo_product": null,
                "combo_rate_count": null,
                "feature_tag_list": null,
                "feature_tags": null,
                "fencing_rule_ids": null,
                "filter_list": [
                  "hot_price",
                  "breakfast",
                  "hotel_offer"
                ],
                "from_cache": false,
                "hide": null,
                "is_stay_plus": false,
                "one_level": null,
                "ori_rate_name": null,
                "package_id": null,
                "package_name": null,
                "parity_v2": null,
                "pay_later_desc": null,
                "per_night_sale_rate": 605.6,
                "policy_content_list": [
                  {
                    "color": null,
                    "content_list": null,
                    "description": "预订后立即确认订单",
                    "icon_url": "https://res.klook.com/image/upload/v1669804345/UED%20Team%EF%BC%88for%20DE%20only%EF%BC%89/System%20Icon/Hotel/Public%20icon/icon_feedback_success_fill_xs.png",
                    "style_type": null,
                    "title": "立即确认"
                  },
                  {
                    "color": null,
                    "content_list": null,
                    "description": "订单一经确认,则不可修改或取消",
                    "icon_url": null,
                    "style_type": null,
                    "title": "不可退款"
                  }
                ],
                "pricing": {
                  "check_in_info": null,
                  "currency_symbol": "¥",
                  "discount_type": "promotion",
                  "format_price": "605.6",
                  "has_stock": true,
                  "original_price_desc": null,
                  "price": "605.6",
                  "price_desc": "{format_price}起",
                  "price_info": {
                    "bg_color": null,
                    "border_color": null,
                    "icon": null,
                    "name": null,
                    "price_detail": {
                      "currency_symbol": "¥",
                      "desc": "入住1间房1晚",
                      "gift": null,
                      "pay_online": {
                        "per_night_price": null,
                        "per_night_price_desc": null,
                        "taxes_desc": "含税",
                        "title": "在线支付",
                        "total_price": "¥ 605.6",
                        "total_price_desc": "合计"
                      },
                      "price_items": [
                        {
                          "content": "¥ 526.6",
                          "content_color": null,
                          "item_list": null,
                          "title": "1间房 x 1晚",
                          "type": "pretax_price"
                        },
                        {
                          "content": "¥ 79.0",
                          "content_color": null,
                          "item_list": null,
                          "title": "税杂费",
                          "type": "taxes_and_fee"
                        }
                      ],
                      "title": "价格明细"
                    },
                    "text_color": null
                  },
                  "price_tag_list": [],
                  "price_tags": null,
                  "reward_desc": "赚Klook积分回馈(约¥1.8)",
                  "tax_desc": "每晚房价含税",
                  "tip": null,
                  "total_price": "605.6"
                },
                "promotion_tag_list": null,
                "promotion_tags": null,
                "rate_code_infos": [
                  {
                    "code": "2张单人床",
                    "desc": "2张单人床",
                    "tip": null,
                    "type": 1
                  },
                  {
                    "code": "breakfast",
                    "desc": "含早餐",
                    "tip": null,
                    "type": 2
                  },
                  {
                    "code": "no_refundable",
                    "desc": "不可退款",
                    "tip": null,
                    "type": 3
                  },
                  {
                    "code": "1:true|2:false|3:102|4:0|5:0|5010821:",
                    "desc": "特别优惠",
                    "tip": null,
                    "type": 4
                  }
                ],
                "rate_contents": [
                  {
                    "bg_color": null,
                    "bg_color_left": null,
                    "bg_color_right": null,
                    "bold": false,
                    "border_color": null,
                    "desc": null,
                    "discount_desc": null,
                    "hover_list": null,
                    "icon": "https://res.klook.com/image/upload/v1704279528/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_freebreakfast_mobile_42x42_3x.png",
                    "id": "meal",
                    "max_line": null,
                    "name": "含早餐",
                    "prefix": null,
                    "text_color": "#00828A",
                    "time_left": null,
                    "type": 1
                  },
                  {
                    "bg_color": null,
                    "bg_color_left": null,
                    "bg_color_right": null,
                    "bold": null,
                    "border_color": null,
                    "desc": null,
                    "discount_desc": null,
                    "hover_list": null,
                    "icon": "https://res.klook.com/image/upload/v1704279529/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_nonrefundable_mobile_42x42_3x.png",
                    "id": "cancelPolicy",
                    "max_line": 2,
                    "name": "不可退款",
                    "prefix": null,
                    "text_color": "#757575",
                    "time_left": null,
                    "type": 1
                  }
                ],
                "rate_debug_info": null,
                "rate_icon": "",
                "rate_id": "389603614",
                "rate_infos": [
                  {
                    "bg_color": null,
                    "icon_src": null,
                    "id": null,
                    "line_color": null,
                    "text": "不可退款",
                    "text_color": "#757575",
                    "type": "hotel_manual_tag"
                  }
                ],
                "rate_name": "2张单人床",
                "rate_plan_type": [
                  "HotelOffer",
                  "HotPrice"
                ],
                "rate_token": "eyJkayI6IiIsInJhdGVDb2RlS2V5IjoiMTp0cnVlfDI6ZmFsc2V8MzoxMDJ8NDowfDU6MHw1MDEwODIxOiIsInJhdGVDb2RlTGlzdCI6W10sInJrIjoiM2E1YzI2ZmQtYjMwZS00MGQyLWE2MWItOGNiYjIyYzE0ZjA4Iiwicm9vbUlkIjoiMTI0MzM3NzE5NDI3MTMzODUwMCIsInJ2IjoiIiwic2VhcmNoUHJvbW90aW9uIjp7ImZpbHRlclByb21vdGlvblR5cGVTZXQiOlsiMiJdfSwic3VwcGxpZXJBY2NvdW50SWQiOiIxMDQiLCJ0YXJnZXRTdXBwbGllcklkU2V0IjpbMV0sInRrIjoiIiwidHJhY2VJZCI6IjJiNGY1NjQ4IiwidHYiOiIifQ",
                "rate_type": 1,
                "recommend_info": null,
                "report": {
                  "buried_raw_id": "690447a4-a363-4388-84c2-2e22ec579044",
                  "is_cc": false,
                  "is_req_cc": true,
                  "sde_type": [
                    "priceable"
                  ]
                },
                "reverse_filter_list": [],
                "sale_tip_desc": null,
                "secret_channel_rule_ids": null,
                "server_data": null,
                "source_rate_id": null,
                "special_offer": {
                  "content_list": [
                    {
                      "code": "5010821",
                      "desc": "Special Offer\n - Rate includes the following: \n·Accommodations as selected \n·4 soft drinks on first night stay (2 cans of soda, 1 can of soda water, 1 bottle of orange juice) \nFull details at check-in. Restrictions may apply.",
                      "icon_url": "https://res.klook.com/image/upload/v1724312833/UED_new/Hotel/Hotel_Experiential_stay_booking_2408/icon_Special_offer_black_4x.png",
                      "icon_white": "https://res.klook.com/image/upload/v1724312833/UED_new/Hotel/Hotel_Experiential_stay_booking_2408/icon_Special_offer_white_4x.png",
                      "image_list": null,
                      "important": true,
                      "name": "特别优惠",
                      "order_priority": 999,
                      "tip": null,
                      "type": 2
                    }
                  ],
                  "icon_url": "https://res.klook.com/image/upload/v1639723551/UED%20Team%EF%BC%88for%20DE%20only%EF%BC%89/System%20Icon/Hotel/Public%20icon/icon_shopping_gift_fill_xs.png",
                  "is_package": null,
                  "name": "套餐优惠内容",
                  "package_img": null,
                  "package_name": null
                },
                "special_price_info": null,
                "stay_plus_list": null,
                "stay_plus_rate_id": null,
                "stock_tag": null,
                "supplier_account_id": "104",
                "supplier_id": 1,
                "tax_desc": "每晚房价含税",
                "tip": null,
                "two_level": null
              }
            ],
            "room_info": {
              "facility_list": [
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "禁止吸烟",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "水壶",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "电视",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "空调",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "冰箱",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "迷你吧",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "电话",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "洗漱用品",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "淋浴",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "电吹风",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "保险箱",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "免费瓶装水",
                  "stress": 0,
                  "value": null
                }
              ],
              "popular_facility_list": [
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278058/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_square_mobile_48x48_3x.png",
                  "name": "22.0 m²",
                  "stress": null,
                  "value": null
                }
              ],
              "recommend_quantity": null,
              "room_desc": null,
              "room_id": "1243377194271338500",
              "room_image_count": 29,
              "room_image_list": [
                "https://res.klook.com/klook-hotel/image/upload/travelapi/2000000/1170000/1167500/1167471/797ce483_z.jpg",
                "https://res.klook.com/klook-hotel/image/upload/s2pix8/hotelImages/2004/-1/cb8985c7d11e92ce50419d741363782e.jpg",
                "https://res.klook.com/klook-hotel/image/upload/travelapi/2000000/1170000/1167500/1167471/b63f66cf_z.jpg",
                "https://res.klook.com/klook-hotel/image/upload/s2pix8/hotelImages/2004/-1/a244cd8f7d4871e0c9b82c576a242b9e.jpg",
                "https://res.klook.com/klook-hotel/image/upload/s5hb/giata/bigger/09/093657/093657a_hb_ro_043.jpg",
                "https://res.klook.com/klook-hotel/image/upload/s5hb/giata/bigger/09/093657/093657a_hb_ro_042.jpg",
                "https://res.klook.com/klook-hotel/image/upload/s5hb/giata/bigger/09/093657/093657a_hb_ro_016.jpg",
                "https://i.travelapi.com/lodging/2000000/1170000/1167500/1167471/9800da5b_z.jpg",
                "https://i.travelapi.com/lodging/2000000/1170000/1167500/1167471/9eaceb1a_z.jpg",
                "https://res.klook.com/klook-hotel/image/upload/s2pix8/hotelImages/2004/-1/68ea1a57a92aefd17dd6e6de96e3d2b4.jpg",
                "https://res.klook.com/klook-hotel/image/upload/s2pix8/hotelImages/2004/-1/9ea250df7d7984abf9592a9bb911ec4e.jpg",
                "https://res.klook.com/klook-hotel/image/upload/s2pix8/hotelImages/2004/329643120/9382c974266238f6d6cdaf2fcceceffe.jpg",
                "https://q-xx.bstatic.com/xdata/images/hotel/840x460/556224506.jpg?k=3d150c20653b3a683a31fea1c8db913669235fac7927018f1e640bed5421002d&o=",
                "https://res.klook.com/klook-hotel/image/upload/s2pix8/hotelImages/2004/329643120/120cd520e673290c9fe4e12175ee86d6.jpg",
                "https://i.travelapi.com/hotels/2000000/1170000/1167500/1167471/416b4e67_z.jpg",
                "https://i.travelapi.com/hotels/2000000/1170000/1167500/1167471/bd929e6c_z.jpg",
                "https://i.travelapi.com/hotels/2000000/1170000/1167500/1167471/e67b5150_z.jpg",
                "https://i.travelapi.com/hotels/2000000/1170000/1167500/1167471/f76d1ab0_z.jpg",
                "https://i.travelapi.com/hotels/2000000/1170000/1167500/1167471/fc8b9635_z.jpg",
                "https://i.travelapi.com/lodging/2000000/1170000/1167500/1167471/219a8c81_z.jpg",
                "https://i.travelapi.com/lodging/2000000/1170000/1167500/1167471/6b5122fb_z.jpg",
                "https://i.travelapi.com/lodging/2000000/1170000/1167500/1167471/797ce483_z.jpg",
                "https://i.travelapi.com/lodging/2000000/1170000/1167500/1167471/93e19123_z.jpg",
                "https://i.travelapi.com/lodging/2000000/1170000/1167500/1167471/b63f66cf_z.jpg",
                "https://i.travelapi.com/lodging/2000000/1170000/1167500/1167471/5c50f931_z.jpg",
                "https://i.travelapi.com/lodging/2000000/1170000/1167500/1167471/9800da5b_z.jpg",
                "https://i.travelapi.com/lodging/2000000/1170000/1167500/1167471/9eaceb1a_z.jpg",
                "https://res.klook.com/klook-hotel/image/upload/s2pix8/property/2004/447350184/cb9c176461ed0bb1d90cb2d3fdf32e77.jpeg",
                "https://res.klook.com/klook-hotel/image/upload/s2pix8/property/2004/349280043/79e27ff4da719b3e7bd4771bc59b800e.jpeg"
              ],
              "room_image_text": null,
              "room_name": "高级双床间",
              "supplier_hotel_id": null,
              "supplier_id": null,
              "supplier_room_id": null
            }
          },
          {
            "extra_rate_list": [],
            "rate_list": [
              {
                "base_content_list": [
                  {
                    "bold": false,
                    "color": "#757575",
                    "content": "不含早餐",
                    "hover_list": null,
                    "icon": "https://res.klook.com/image/upload/v1704279528/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_nonbreakfast_mobile_42x42_3x.png",
                    "placeholder": null
                  },
                  {
                    "bold": null,
                    "color": "",
                    "content": "2张单人床 或 1张双人床",
                    "hover_list": null,
                    "icon": "https://res.klook.com/image/upload/v1639464805/UED%20Team%EF%BC%88for%20DE%20only%EF%BC%89/System%20Icon/Hotel/Rate%20Code/icon_furniture_appliancese_big_bed_xs.png",
                    "placeholder": null
                  },
                  {
                    "bold": null,
                    "color": null,
                    "content": "{0}此房间适合入住人数",
                    "hover_list": null,
                    "icon": "https://res.klook.com/image/upload/v1639464552/UED%20Team%EF%BC%88for%20DE%20only%EF%BC%89/System%20Icon/Hotel/Rate%20Code/icon_user_user_group_xs.png",
                    "placeholder": "客房可入住1名成人,"
                  }
                ],
                "channel_rule_ids": null,
                "combo_product": null,
                "combo_rate_count": null,
                "feature_tag_list": null,
                "feature_tags": null,
                "fencing_rule_ids": null,
                "filter_list": [],
                "from_cache": false,
                "hide": null,
                "is_stay_plus": false,
                "one_level": null,
                "ori_rate_name": null,
                "package_id": null,
                "package_name": null,
                "parity_v2": null,
                "pay_later_desc": null,
                "per_night_sale_rate": 629.4,
                "policy_content_list": [
                  {
                    "color": null,
                    "content_list": null,
                    "description": "预订后立即确认订单",
                    "icon_url": "https://res.klook.com/image/upload/v1669804345/UED%20Team%EF%BC%88for%20DE%20only%EF%BC%89/System%20Icon/Hotel/Public%20icon/icon_feedback_success_fill_xs.png",
                    "style_type": null,
                    "title": "立即确认"
                  },
                  {
                    "color": null,
                    "content_list": null,
                    "description": "订单一经确认,则不可修改或取消",
                    "icon_url": null,
                    "style_type": null,
                    "title": "不可退款"
                  }
                ],
                "pricing": {
                  "check_in_info": null,
                  "currency_symbol": "¥",
                  "discount_type": "promotion",
                  "format_price": "629.4",
                  "has_stock": true,
                  "original_price_desc": null,
                  "price": "629.4",
                  "price_desc": "{format_price}起",
                  "price_info": {
                    "bg_color": null,
                    "border_color": null,
                    "icon": null,
                    "name": null,
                    "price_detail": {
                      "currency_symbol": "¥",
                      "desc": "入住1间房1晚",
                      "gift": null,
                      "pay_online": {
                        "per_night_price": null,
                        "per_night_price_desc": null,
                        "taxes_desc": "含税",
                        "title": "在线支付",
                        "total_price": "¥ 629.4",
                        "total_price_desc": "合计"
                      },
                      "price_items": [
                        {
                          "content": "¥ 547.3",
                          "content_color": null,
                          "item_list": null,
                          "title": "1间房 x 1晚",
                          "type": "pretax_price"
                        },
                        {
                          "content": "¥ 82.1",
                          "content_color": null,
                          "item_list": null,
                          "title": "税杂费",
                          "type": "taxes_and_fee"
                        }
                      ],
                      "title": "价格明细"
                    },
                    "text_color": null
                  },
                  "price_tag_list": [],
                  "price_tags": null,
                  "reward_desc": "赚Klook积分回馈(约¥1.8)",
                  "tax_desc": "每晚房价含税",
                  "tip": null,
                  "total_price": "629.4"
                },
                "promotion_tag_list": null,
                "promotion_tags": null,
                "rate_code_infos": [
                  {
                    "code": "2张单人床 或 1张双人床",
                    "desc": "2张单人床 或 1张双人床",
                    "tip": null,
                    "type": 1
                  },
                  {
                    "code": "no_breakfast",
                    "desc": "不含早餐",
                    "tip": null,
                    "type": 2
                  },
                  {
                    "code": "no_refundable",
                    "desc": "不可退款",
                    "tip": null,
                    "type": 3
                  }
                ],
                "rate_contents": [
                  {
                    "bg_color": null,
                    "bg_color_left": null,
                    "bg_color_right": null,
                    "bold": false,
                    "border_color": null,
                    "desc": null,
                    "discount_desc": null,
                    "hover_list": null,
                    "icon": "https://res.klook.com/image/upload/v1704279528/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_nonbreakfast_mobile_42x42_3x.png",
                    "id": "meal",
                    "max_line": null,
                    "name": "不含早餐",
                    "prefix": null,
                    "text_color": "#757575",
                    "time_left": null,
                    "type": 1
                  },
                  {
                    "bg_color": null,
                    "bg_color_left": null,
                    "bg_color_right": null,
                    "bold": null,
                    "border_color": null,
                    "desc": null,
                    "discount_desc": null,
                    "hover_list": null,
                    "icon": "https://res.klook.com/image/upload/v1704279529/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_nonrefundable_mobile_42x42_3x.png",
                    "id": "cancelPolicy",
                    "max_line": 2,
                    "name": "不可退款",
                    "prefix": null,
                    "text_color": "#757575",
                    "time_left": null,
                    "type": 1
                  }
                ],
                "rate_debug_info": null,
                "rate_icon": "",
                "rate_id": "-6936060220904524294",
                "rate_infos": [
                  {
                    "bg_color": null,
                    "icon_src": null,
                    "id": null,
                    "line_color": null,
                    "text": "不可退款",
                    "text_color": "#757575",
                    "type": "hotel_manual_tag"
                  }
                ],
                "rate_name": "2张单人床 或 1张双人床",
                "rate_plan_type": [],
                "rate_token": "eyJkayI6IiIsInJhdGVDb2RlS2V5IjoiMTpmYWxzZXwyOmZhbHNlfDM6MTA1fDQ6MHw1OjAiLCJyYXRlQ29kZUxpc3QiOltdLCJyayI6IiIsInJvb21JZCI6IjE2MzgwODI5ODEwOTAxMTU1ODUiLCJydiI6IiIsInNlYXJjaFByb21vdGlvbiI6eyJmaWx0ZXJQcm9tb3Rpb25UeXBlU2V0IjpbIjIiXX0sInN1cHBsaWVyQWNjb3VudElkIjoiMzAxIiwidGFyZ2V0U3VwcGxpZXJJZFNldCI6WzNdLCJ0ayI6ImQvSFlmSmNWSSs0Qm9mWm5aNDZQQUZiTW5uL2NtY1Fja2NlYUlsWmk0YTMrSjZzcEdXLzQ4NFFMYXpDYkYrV1oiLCJ0cmFjZUlkIjoiMmI0ZjU2NDgiLCJ0diI6IndITGNkcFVSSWlCREpMSHNzYXpTQy80c1dnY3RWajc4cjcrWDE4dG9mVjdpS05pMmdwdVI4cVZSdG1vdlNzZ0ttUHRvZ0ptcEVPWHhaaGVnUkd6Y0llTVNuSDd2SWRHNXBDeUdnZ1hzMUk3ZzFDOXkwMUxpeEFCMVVWOExXZjNJIn0",
                "rate_type": 1,
                "recommend_info": null,
                "report": {
                  "buried_raw_id": "690447a4-a363-4388-84c2-2e22ec579044",
                  "is_cc": false,
                  "is_req_cc": true,
                  "sde_type": [
                    "priceable"
                  ]
                },
                "reverse_filter_list": [],
                "sale_tip_desc": null,
                "secret_channel_rule_ids": null,
                "server_data": null,
                "source_rate_id": null,
                "special_offer": null,
                "special_price_info": null,
                "stay_plus_list": null,
                "stay_plus_rate_id": null,
                "stock_tag": null,
                "supplier_account_id": "301",
                "supplier_id": 3,
                "tax_desc": "每晚房价含税",
                "tip": null,
                "two_level": null
              },
              {
                "base_content_list": [
                  {
                    "bold": true,
                    "color": "#00828A",
                    "content": "含早餐",
                    "hover_list": null,
                    "icon": "https://res.klook.com/image/upload/v1704279528/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_freebreakfast_mobile_42x42_3x.png",
                    "placeholder": null
                  },
                  {
                    "bold": null,
                    "color": "",
                    "content": "2张单人床 或 1张双人床",
                    "hover_list": null,
                    "icon": "https://res.klook.com/image/upload/v1639464805/UED%20Team%EF%BC%88for%20DE%20only%EF%BC%89/System%20Icon/Hotel/Rate%20Code/icon_furniture_appliancese_big_bed_xs.png",
                    "placeholder": null
                  },
                  {
                    "bold": null,
                    "color": null,
                    "content": "{0}此房间适合入住人数",
                    "hover_list": null,
                    "icon": "https://res.klook.com/image/upload/v1639464552/UED%20Team%EF%BC%88for%20DE%20only%EF%BC%89/System%20Icon/Hotel/Rate%20Code/icon_user_user_group_xs.png",
                    "placeholder": "客房可入住1名成人,"
                  }
                ],
                "channel_rule_ids": null,
                "combo_product": null,
                "combo_rate_count": null,
                "feature_tag_list": null,
                "feature_tags": null,
                "fencing_rule_ids": null,
                "filter_list": [
                  "breakfast"
                ],
                "from_cache": false,
                "hide": null,
                "is_stay_plus": false,
                "one_level": null,
                "ori_rate_name": null,
                "package_id": null,
                "package_name": null,
                "parity_v2": null,
                "pay_later_desc": null,
                "per_night_sale_rate": 687.4,
                "policy_content_list": [
                  {
                    "color": null,
                    "content_list": null,
                    "description": "预订后立即确认订单",
                    "icon_url": "https://res.klook.com/image/upload/v1669804345/UED%20Team%EF%BC%88for%20DE%20only%EF%BC%89/System%20Icon/Hotel/Public%20icon/icon_feedback_success_fill_xs.png",
                    "style_type": null,
                    "title": "立即确认"
                  },
                  {
                    "color": null,
                    "content_list": null,
                    "description": "订单一经确认,则不可修改或取消",
                    "icon_url": null,
                    "style_type": null,
                    "title": "不可退款"
                  }
                ],
                "pricing": {
                  "check_in_info": null,
                  "currency_symbol": "¥",
                  "discount_type": "promotion",
                  "format_price": "687.4",
                  "has_stock": true,
                  "original_price_desc": null,
                  "price": "687.4",
                  "price_desc": "{format_price}起",
                  "price_info": {
                    "bg_color": null,
                    "border_color": null,
                    "icon": null,
                    "name": null,
                    "price_detail": {
                      "currency_symbol": "¥",
                      "desc": "入住1间房1晚",
                      "gift": null,
                      "pay_online": {
                        "per_night_price": null,
                        "per_night_price_desc": null,
                        "taxes_desc": "含税",
                        "title": "在线支付",
                        "total_price": "¥ 687.4",
                        "total_price_desc": "合计"
                      },
                      "price_items": [
                        {
                          "content": "¥ 597.7",
                          "content_color": null,
                          "item_list": null,
                          "title": "1间房 x 1晚",
                          "type": "pretax_price"
                        },
                        {
                          "content": "¥ 89.7",
                          "content_color": null,
                          "item_list": null,
                          "title": "税杂费",
                          "type": "taxes_and_fee"
                        }
                      ],
                      "title": "价格明细"
                    },
                    "text_color": null
                  },
                  "price_tag_list": [],
                  "price_tags": null,
                  "reward_desc": "赚Klook积分回馈(约¥2.0)",
                  "tax_desc": "每晚房价含税",
                  "tip": null,
                  "total_price": "687.4"
                },
                "promotion_tag_list": null,
                "promotion_tags": null,
                "rate_code_infos": [
                  {
                    "code": "2张单人床 或 1张双人床",
                    "desc": "2张单人床 或 1张双人床",
                    "tip": null,
                    "type": 1
                  },
                  {
                    "code": "breakfast",
                    "desc": "含早餐",
                    "tip": null,
                    "type": 2
                  },
                  {
                    "code": "no_refundable",
                    "desc": "不可退款",
                    "tip": null,
                    "type": 3
                  }
                ],
                "rate_contents": [
                  {
                    "bg_color": null,
                    "bg_color_left": null,
                    "bg_color_right": null,
                    "bold": false,
                    "border_color": null,
                    "desc": null,
                    "discount_desc": null,
                    "hover_list": null,
                    "icon": "https://res.klook.com/image/upload/v1704279528/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_freebreakfast_mobile_42x42_3x.png",
                    "id": "meal",
                    "max_line": null,
                    "name": "含早餐",
                    "prefix": null,
                    "text_color": "#00828A",
                    "time_left": null,
                    "type": 1
                  },
                  {
                    "bg_color": null,
                    "bg_color_left": null,
                    "bg_color_right": null,
                    "bold": null,
                    "border_color": null,
                    "desc": null,
                    "discount_desc": null,
                    "hover_list": null,
                    "icon": "https://res.klook.com/image/upload/v1704279529/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_nonrefundable_mobile_42x42_3x.png",
                    "id": "cancelPolicy",
                    "max_line": 2,
                    "name": "不可退款",
                    "prefix": null,
                    "text_color": "#757575",
                    "time_left": null,
                    "type": 1
                  }
                ],
                "rate_debug_info": null,
                "rate_icon": "",
                "rate_id": "690667604446470067",
                "rate_infos": [
                  {
                    "bg_color": null,
                    "icon_src": null,
                    "id": null,
                    "line_color": null,
                    "text": "不可退款",
                    "text_color": "#757575",
                    "type": "hotel_manual_tag"
                  }
                ],
                "rate_name": "2张单人床 或 1张双人床",
                "rate_plan_type": [],
                "rate_token": "eyJkayI6IiIsInJhdGVDb2RlS2V5IjoiMTp0cnVlfDI6ZmFsc2V8MzoxMDV8NDowfDU6MCIsInJhdGVDb2RlTGlzdCI6W10sInJrIjoiIiwicm9vbUlkIjoiMTYzODA4Mjk4MTA5MDExNTU4NSIsInJ2IjoiIiwic2VhcmNoUHJvbW90aW9uIjp7ImZpbHRlclByb21vdGlvblR5cGVTZXQiOlsiMiJdfSwic3VwcGxpZXJBY2NvdW50SWQiOiIzMDEiLCJ0YXJnZXRTdXBwbGllcklkU2V0IjpbM10sInRrIjoiNTBGc3JkT1RWWDNGWHZwRCt3MEhmVWt3b0E1OFplemFYN3YxTXhzaFRsSCtKNnNwR1cvNDg0UUxhekNiRitXWiIsInRyYWNlSWQiOiIyYjRmNTY0OCIsInR2IjoieENsMXFTTUNrZXkrT2RuQkJMNElFbk00aXJySlJHeDlzSTg5R0tDc29tK0lRcEZFVXNFSGhTcTl2cmpNenJpRS9adFhRQTc1RW1RK0tSMGtWdlpYejZmS0dxQjh1MkpwUGRVbklISlFEZDJrd2tlTWtjUDBUbE5XcmNsazgwcTUifQ",
                "rate_type": 1,
                "recommend_info": null,
                "report": {
                  "buried_raw_id": "690447a4-a363-4388-84c2-2e22ec579044",
                  "is_cc": false,
                  "is_req_cc": true,
                  "sde_type": [
                    "priceable"
                  ]
                },
                "reverse_filter_list": [],
                "sale_tip_desc": null,
                "secret_channel_rule_ids": null,
                "server_data": null,
                "source_rate_id": null,
                "special_offer": null,
                "special_price_info": null,
                "stay_plus_list": null,
                "stay_plus_rate_id": null,
                "stock_tag": null,
                "supplier_account_id": "301",
                "supplier_id": 3,
                "tax_desc": "每晚房价含税",
                "tip": null,
                "two_level": null
              }
            ],
            "room_info": {
              "facility_list": [
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "浴室",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "淋浴",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "电吹风",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "电视",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "有线网络",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "酒吧",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "冰箱",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "熨斗 & 熨衣板",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "空调",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "暖气",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "保险箱",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "提供无障碍通道",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "WiFi",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "夜床服务",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "书桌",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "拖鞋",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "允许吸烟",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "卫星电视",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "有线电视",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "壁炉",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "客房服务频率(一次)",
                  "stress": 0,
                  "value": null
                }
              ],
              "popular_facility_list": [
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278058/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_square_mobile_48x48_3x.png",
                  "name": "22 m²",
                  "stress": null,
                  "value": null
                }
              ],
              "recommend_quantity": null,
              "room_desc": null,
              "room_id": "1638082981090115585",
              "room_image_count": 8,
              "room_image_list": [
                "https://res.klook.com/klook-hotel/image/upload/s2pix8/hotelImages/200/2004/2004_16062308460043996732.jpg",
                "https://res.klook.com/klook-hotel/image/upload/s2pix8/hotelImages/200/2004/2004_16062308590043997115.jpg",
                "https://res.klook.com/klook-hotel/image/upload/s2pix8/hotelImages/200/2004/2004_16062309000043997172.jpg",
                "https://res.klook.com/klook-hotel/image/upload/s2pix8/hotelImages/200/2004/2004_16062309000043997184.jpg",
                "https://res.klook.com/klook-hotel/image/upload/s5hb/giata/bigger/09/093657/093657a_hb_ro_037.jpg",
                "https://res.klook.com/klook-hotel/image/upload/s5hb/giata/bigger/09/093657/093657a_hb_ro_036.jpg",
                "https://res.klook.com/klook-hotel/image/upload/s5hb/giata/bigger/09/093657/093657a_hb_ro_035.jpg",
                "https://res.klook.com/klook-hotel/image/upload/s2pix8/hotelImages/200/2004/2004_16062308590043997130.jpg"
              ],
              "room_image_text": null,
              "room_name": "高级房(双人床或双床)",
              "supplier_hotel_id": null,
              "supplier_id": null,
              "supplier_room_id": null
            }
          },
          {
            "extra_rate_list": [],
            "rate_list": [
              {
                "base_content_list": [
                  {
                    "bold": false,
                    "color": "#757575",
                    "content": "不含早餐",
                    "hover_list": null,
                    "icon": "https://res.klook.com/image/upload/v1704279528/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_nonbreakfast_mobile_42x42_3x.png",
                    "placeholder": null
                  },
                  {
                    "bold": null,
                    "color": "",
                    "content": "2张单人床",
                    "hover_list": null,
                    "icon": "https://res.klook.com/image/upload/v1639464805/UED%20Team%EF%BC%88for%20DE%20only%EF%BC%89/System%20Icon/Hotel/Rate%20Code/icon_furniture_appliancese_big_bed_xs.png",
                    "placeholder": null
                  },
                  {
                    "bold": null,
                    "color": null,
                    "content": "{0}此房间适合入住人数",
                    "hover_list": null,
                    "icon": "https://res.klook.com/image/upload/v1639464552/UED%20Team%EF%BC%88for%20DE%20only%EF%BC%89/System%20Icon/Hotel/Rate%20Code/icon_user_user_group_xs.png",
                    "placeholder": "客房可入住1名成人,"
                  }
                ],
                "channel_rule_ids": null,
                "combo_product": null,
                "combo_rate_count": null,
                "feature_tag_list": null,
                "feature_tags": null,
                "fencing_rule_ids": null,
                "filter_list": [
                  "hotel_offer"
                ],
                "from_cache": false,
                "hide": null,
                "is_stay_plus": false,
                "one_level": null,
                "ori_rate_name": null,
                "package_id": null,
                "package_name": null,
                "parity_v2": null,
                "pay_later_desc": null,
                "per_night_sale_rate": 629.9,
                "policy_content_list": [
                  {
                    "color": null,
                    "content_list": null,
                    "description": "预订后立即确认订单",
                    "icon_url": "https://res.klook.com/image/upload/v1669804345/UED%20Team%EF%BC%88for%20DE%20only%EF%BC%89/System%20Icon/Hotel/Public%20icon/icon_feedback_success_fill_xs.png",
                    "style_type": null,
                    "title": "立即确认"
                  },
                  {
                    "color": null,
                    "content_list": null,
                    "description": "订单一经确认,则不可修改或取消",
                    "icon_url": null,
                    "style_type": null,
                    "title": "不可退款"
                  }
                ],
                "pricing": {
                  "check_in_info": null,
                  "currency_symbol": "¥",
                  "discount_type": "promotion",
                  "format_price": "629.9",
                  "has_stock": true,
                  "original_price_desc": "¥ 630.6",
                  "price": "629.9",
                  "price_desc": "{format_price}起",
                  "price_info": {
                    "bg_color": "#FFF0E5",
                    "border_color": null,
                    "icon": "https://res.klook.com/image/upload/v1655206607/UED%20Team%EF%BC%88for%20DE%20only%EF%BC%89/System%20Icon/Hotel/Promotional%20information/icon_nav_chevron_right_xxxs.png",
                    "name": "可省 ¥ 0.7",
                    "price_detail": {
                      "currency_symbol": "¥",
                      "desc": "入住1间房1晚",
                      "gift": null,
                      "pay_online": {
                        "per_night_price": null,
                        "per_night_price_desc": null,
                        "taxes_desc": "含税",
                        "title": "在线支付",
                        "total_price": "¥ 629.9",
                        "total_price_desc": "合计"
                      },
                      "price_items": [
                        {
                          "content": "¥ 548.4",
                          "content_color": null,
                          "item_list": null,
                          "title": "1间房 x 1晚",
                          "type": "pretax_price"
                        },
                        {
                          "content": "¥ 82.2",
                          "content_color": null,
                          "item_list": null,
                          "title": "税杂费",
                          "type": "taxes_and_fee"
                        },
                        {
                          "content": "-¥ 0.7",
                          "content_color": "#FF5B00",
                          "item_list": [
                            {
                              "content": "-¥ 0.7",
                              "desc": "入住即享优惠",
                              "title": "劲爆优惠"
                            }
                          ],
                          "title": "优惠明细",
                          "type": "discount"
                        }
                      ],
                      "title": "价格明细"
                    },
                    "text_color": "#FF5B00"
                  },
                  "price_tag_list": [
                    {
                      "id": "savePrice",
                      "tag_text": "¥ 0.7",
                      "text": "可省",
                      "type": "vertical_promo_tag"
                    }
                  ],
                  "price_tags": null,
                  "reward_desc": "赚Klook积分回馈(约¥1.8)",
                  "tax_desc": "每晚房价含税",
                  "tip": null,
                  "total_price": "629.9"
                },
                "promotion_tag_list": [
                  {
                    "icon_src": null,
                    "id": "7",
                    "tag_color": "#F44622",
                    "text": "劲爆优惠",
                    "type": "manual_tag"
                  }
                ],
                "promotion_tags": null,
                "rate_code_infos": [
                  {
                    "code": "2张单人床",
                    "desc": "2张单人床",
                    "tip": null,
                    "type": 1
                  },
                  {
                    "code": "no_breakfast",
                    "desc": "不含早餐",
                    "tip": null,
                    "type": 2
                  },
                  {
                    "code": "no_refundable",
                    "desc": "不可退款",
                    "tip": null,
                    "type": 3
                  },
                  {
                    "code": "1:false|2:false|3:102|4:0|5:0|5010821:",
                    "desc": "特别优惠",
                    "tip": null,
                    "type": 4
                  }
                ],
                "rate_contents": [
                  {
                    "bg_color": null,
                    "bg_color_left": null,
                    "bg_color_right": null,
                    "bold": false,
                    "border_color": null,
                    "desc": null,
                    "discount_desc": null,
                    "hover_list": null,
                    "icon": "https://res.klook.com/image/upload/v1704279528/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_nonbreakfast_mobile_42x42_3x.png",
                    "id": "meal",
                    "max_line": null,
                    "name": "不含早餐",
                    "prefix": null,
                    "text_color": "#757575",
                    "time_left": null,
                    "type": 1
                  },
                  {
                    "bg_color": null,
                    "bg_color_left": null,
                    "bg_color_right": null,
                    "bold": null,
                    "border_color": null,
                    "desc": null,
                    "discount_desc": null,
                    "hover_list": null,
                    "icon": "https://res.klook.com/image/upload/v1704279529/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_nonrefundable_mobile_42x42_3x.png",
                    "id": "cancelPolicy",
                    "max_line": 2,
                    "name": "不可退款",
                    "prefix": null,
                    "text_color": "#757575",
                    "time_left": null,
                    "type": 1
                  }
                ],
                "rate_debug_info": null,
                "rate_icon": "",
                "rate_id": "383041997",
                "rate_infos": [
                  {
                    "bg_color": null,
                    "icon_src": null,
                    "id": null,
                    "line_color": null,
                    "text": "不可退款",
                    "text_color": "#757575",
                    "type": "hotel_manual_tag"
                  }
                ],
                "rate_name": "2张单人床",
                "rate_plan_type": [
                  "HotelOffer"
                ],
                "rate_token": "eyJkayI6IiIsInJhdGVDb2RlS2V5IjoiMTpmYWxzZXwyOmZhbHNlfDM6MTAyfDQ6MHw1OjB8NTAxMDgyMToiLCJyYXRlQ29kZUxpc3QiOltdLCJyayI6ImFlMzRiNDRlLTA0NGUtNGJiMC1iOWYxLTQ3NWZlODE5MTU1MSIsInJvb21JZCI6IjEyNDMzNzcxOTQxMzcxMjA3NzgiLCJydiI6IiIsInNlYXJjaFByb21vdGlvbiI6eyJmaWx0ZXJQcm9tb3Rpb25UeXBlU2V0IjpbIjIiXX0sInN1cHBsaWVyQWNjb3VudElkIjoiMTA0IiwidGFyZ2V0U3VwcGxpZXJJZFNldCI6WzFdLCJ0ayI6IiIsInRyYWNlSWQiOiIyYjRmNTY0OCIsInR2IjoiIn0",
                "rate_type": 1,
                "recommend_info": null,
                "report": {
                  "buried_raw_id": "690447a4-a363-4388-84c2-2e22ec579044",
                  "is_cc": false,
                  "is_req_cc": true,
                  "sde_type": [
                    "priceable"
                  ]
                },
                "reverse_filter_list": [],
                "sale_tip_desc": null,
                "secret_channel_rule_ids": null,
                "server_data": null,
                "source_rate_id": null,
                "special_offer": {
                  "content_list": [
                    {
                      "code": "5010821",
                      "desc": "Special Offer\n - Rate includes the following: \n·Accommodations as selected \n·4 soft drinks per day (2 cans of soda, 1 can of soda water, 1 bottle of orange juice) \nFull details at check-in. Restrictions may apply.",
                      "icon_url": "https://res.klook.com/image/upload/v1724312833/UED_new/Hotel/Hotel_Experiential_stay_booking_2408/icon_Special_offer_black_4x.png",
                      "icon_white": "https://res.klook.com/image/upload/v1724312833/UED_new/Hotel/Hotel_Experiential_stay_booking_2408/icon_Special_offer_white_4x.png",
                      "image_list": null,
                      "important": true,
                      "name": "特别优惠",
                      "order_priority": 999,
                      "tip": null,
                      "type": 2
                    }
                  ],
                  "icon_url": "https://res.klook.com/image/upload/v1639723551/UED%20Team%EF%BC%88for%20DE%20only%EF%BC%89/System%20Icon/Hotel/Public%20icon/icon_shopping_gift_fill_xs.png",
                  "is_package": null,
                  "name": "套餐优惠内容",
                  "package_img": null,
                  "package_name": null
                },
                "special_price_info": null,
                "stay_plus_list": null,
                "stay_plus_rate_id": null,
                "stock_tag": null,
                "supplier_account_id": "104",
                "supplier_id": 1,
                "tax_desc": "每晚房价含税",
                "tip": null,
                "two_level": null
              },
              {
                "base_content_list": [
                  {
                    "bold": true,
                    "color": "#00828A",
                    "content": "含早餐",
                    "hover_list": null,
                    "icon": "https://res.klook.com/image/upload/v1704279528/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_freebreakfast_mobile_42x42_3x.png",
                    "placeholder": null
                  },
                  {
                    "bold": null,
                    "color": "",
                    "content": "2张单人床",
                    "hover_list": null,
                    "icon": "https://res.klook.com/image/upload/v1639464805/UED%20Team%EF%BC%88for%20DE%20only%EF%BC%89/System%20Icon/Hotel/Rate%20Code/icon_furniture_appliancese_big_bed_xs.png",
                    "placeholder": null
                  },
                  {
                    "bold": null,
                    "color": null,
                    "content": "{0}此房间适合入住人数",
                    "hover_list": null,
                    "icon": "https://res.klook.com/image/upload/v1639464552/UED%20Team%EF%BC%88for%20DE%20only%EF%BC%89/System%20Icon/Hotel/Rate%20Code/icon_user_user_group_xs.png",
                    "placeholder": "客房可入住1名成人,"
                  }
                ],
                "channel_rule_ids": null,
                "combo_product": null,
                "combo_rate_count": null,
                "feature_tag_list": null,
                "feature_tags": null,
                "fencing_rule_ids": null,
                "filter_list": [
                  "breakfast",
                  "hotel_offer"
                ],
                "from_cache": false,
                "hide": null,
                "is_stay_plus": false,
                "one_level": null,
                "ori_rate_name": null,
                "package_id": null,
                "package_name": null,
                "parity_v2": null,
                "pay_later_desc": null,
                "per_night_sale_rate": 680.7,
                "policy_content_list": [
                  {
                    "color": null,
                    "content_list": null,
                    "description": "预订后立即确认订单",
                    "icon_url": "https://res.klook.com/image/upload/v1669804345/UED%20Team%EF%BC%88for%20DE%20only%EF%BC%89/System%20Icon/Hotel/Public%20icon/icon_feedback_success_fill_xs.png",
                    "style_type": null,
                    "title": "立即确认"
                  },
                  {
                    "color": null,
                    "content_list": null,
                    "description": "订单一经确认,则不可修改或取消",
                    "icon_url": null,
                    "style_type": null,
                    "title": "不可退款"
                  }
                ],
                "pricing": {
                  "check_in_info": null,
                  "currency_symbol": "¥",
                  "discount_type": "promotion",
                  "format_price": "680.7",
                  "has_stock": true,
                  "original_price_desc": null,
                  "price": "680.7",
                  "price_desc": "{format_price}起",
                  "price_info": {
                    "bg_color": null,
                    "border_color": null,
                    "icon": null,
                    "name": null,
                    "price_detail": {
                      "currency_symbol": "¥",
                      "desc": "入住1间房1晚",
                      "gift": null,
                      "pay_online": {
                        "per_night_price": null,
                        "per_night_price_desc": null,
                        "taxes_desc": "含税",
                        "title": "在线支付",
                        "total_price": "¥ 680.7",
                        "total_price_desc": "合计"
                      },
                      "price_items": [
                        {
                          "content": "¥ 591.9",
                          "content_color": null,
                          "item_list": null,
                          "title": "1间房 x 1晚",
                          "type": "pretax_price"
                        },
                        {
                          "content": "¥ 88.8",
                          "content_color": null,
                          "item_list": null,
                          "title": "税杂费",
                          "type": "taxes_and_fee"
                        }
                      ],
                      "title": "价格明细"
                    },
                    "text_color": null
                  },
                  "price_tag_list": [],
                  "price_tags": null,
                  "reward_desc": "赚Klook积分回馈(约¥2.0)",
                  "tax_desc": "每晚房价含税",
                  "tip": null,
                  "total_price": "680.7"
                },
                "promotion_tag_list": null,
                "promotion_tags": null,
                "rate_code_infos": [
                  {
                    "code": "2张单人床",
                    "desc": "2张单人床",
                    "tip": null,
                    "type": 1
                  },
                  {
                    "code": "breakfast",
                    "desc": "含早餐",
                    "tip": null,
                    "type": 2
                  },
                  {
                    "code": "no_refundable",
                    "desc": "不可退款",
                    "tip": null,
                    "type": 3
                  },
                  {
                    "code": "1:true|2:false|3:102|4:0|5:0|5010821:",
                    "desc": "特别优惠",
                    "tip": null,
                    "type": 4
                  }
                ],
                "rate_contents": [
                  {
                    "bg_color": null,
                    "bg_color_left": null,
                    "bg_color_right": null,
                    "bold": false,
                    "border_color": null,
                    "desc": null,
                    "discount_desc": null,
                    "hover_list": null,
                    "icon": "https://res.klook.com/image/upload/v1704279528/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_freebreakfast_mobile_42x42_3x.png",
                    "id": "meal",
                    "max_line": null,
                    "name": "含早餐",
                    "prefix": null,
                    "text_color": "#00828A",
                    "time_left": null,
                    "type": 1
                  },
                  {
                    "bg_color": null,
                    "bg_color_left": null,
                    "bg_color_right": null,
                    "bold": null,
                    "border_color": null,
                    "desc": null,
                    "discount_desc": null,
                    "hover_list": null,
                    "icon": "https://res.klook.com/image/upload/v1704279529/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_nonrefundable_mobile_42x42_3x.png",
                    "id": "cancelPolicy",
                    "max_line": 2,
                    "name": "不可退款",
                    "prefix": null,
                    "text_color": "#757575",
                    "time_left": null,
                    "type": 1
                  }
                ],
                "rate_debug_info": null,
                "rate_icon": "",
                "rate_id": "389603636",
                "rate_infos": [
                  {
                    "bg_color": null,
                    "icon_src": null,
                    "id": null,
                    "line_color": null,
                    "text": "不可退款",
                    "text_color": "#757575",
                    "type": "hotel_manual_tag"
                  }
                ],
                "rate_name": "2张单人床",
                "rate_plan_type": [
                  "HotelOffer"
                ],
                "rate_token": "eyJkayI6IiIsInJhdGVDb2RlS2V5IjoiMTp0cnVlfDI6ZmFsc2V8MzoxMDJ8NDowfDU6MHw1MDEwODIxOiIsInJhdGVDb2RlTGlzdCI6W10sInJrIjoiM2E0MGQxNDEtNDFiNS00YjczLWFjZmYtMDE2YTI3NTg0YmQ0Iiwicm9vbUlkIjoiMTI0MzM3NzE5NDEzNzEyMDc3OCIsInJ2IjoiIiwic2VhcmNoUHJvbW90aW9uIjp7ImZpbHRlclByb21vdGlvblR5cGVTZXQiOlsiMiJdfSwic3VwcGxpZXJBY2NvdW50SWQiOiIxMDQiLCJ0YXJnZXRTdXBwbGllcklkU2V0IjpbMV0sInRrIjoiIiwidHJhY2VJZCI6IjJiNGY1NjQ4IiwidHYiOiIifQ",
                "rate_type": 1,
                "recommend_info": null,
                "report": {
                  "buried_raw_id": "690447a4-a363-4388-84c2-2e22ec579044",
                  "is_cc": false,
                  "is_req_cc": true,
                  "sde_type": [
                    "priceable"
                  ]
                },
                "reverse_filter_list": [],
                "sale_tip_desc": null,
                "secret_channel_rule_ids": null,
                "server_data": null,
                "source_rate_id": null,
                "special_offer": {
                  "content_list": [
                    {
                      "code": "5010821",
                      "desc": "Special Offer\n - Rate includes the following: \n·Accommodations as selected \n·4 soft drinks per day (2 cans of soda, 1 can of soda water, 1 bottle of orange juice) \nFull details at check-in. Restrictions may apply.",
                      "icon_url": "https://res.klook.com/image/upload/v1724312833/UED_new/Hotel/Hotel_Experiential_stay_booking_2408/icon_Special_offer_black_4x.png",
                      "icon_white": "https://res.klook.com/image/upload/v1724312833/UED_new/Hotel/Hotel_Experiential_stay_booking_2408/icon_Special_offer_white_4x.png",
                      "image_list": null,
                      "important": true,
                      "name": "特别优惠",
                      "order_priority": 999,
                      "tip": null,
                      "type": 2
                    }
                  ],
                  "icon_url": "https://res.klook.com/image/upload/v1639723551/UED%20Team%EF%BC%88for%20DE%20only%EF%BC%89/System%20Icon/Hotel/Public%20icon/icon_shopping_gift_fill_xs.png",
                  "is_package": null,
                  "name": "套餐优惠内容",
                  "package_img": null,
                  "package_name": null
                },
                "special_price_info": null,
                "stay_plus_list": null,
                "stay_plus_rate_id": null,
                "stock_tag": null,
                "supplier_account_id": "104",
                "supplier_id": 1,
                "tax_desc": "每晚房价含税",
                "tip": null,
                "two_level": null
              }
            ],
            "room_info": {
              "facility_list": [
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "禁止吸烟",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "水壶",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "电视",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "空调",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "冰箱",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "迷你吧",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "电话",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "洗漱用品",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "淋浴",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "电吹风",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "保险箱",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "免费瓶装水",
                  "stress": 0,
                  "value": null
                }
              ],
              "popular_facility_list": [
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278058/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_square_mobile_48x48_3x.png",
                  "name": "22.0 m²",
                  "stress": null,
                  "value": null
                }
              ],
              "recommend_quantity": null,
              "room_desc": null,
              "room_id": "1243377194137120778",
              "room_image_count": 6,
              "room_image_list": [
                "https://i.travelapi.com/lodging/2000000/1170000/1167500/1167471/b63f66cf_z.jpg",
                "https://res.klook.com/klook-hotel/image/upload/s2pix8/hotelImages/2004/-1/c75580d7ed1a06f24241a8425b2fb262.jpg",
                "https://res.klook.com/klook-hotel/image/upload/s2pix8/hotelImages/2004/339635947/9382c974266238f6d6cdaf2fcceceffe.jpg",
                "https://res.klook.com/klook-hotel/image/upload/travelapi/2000000/1170000/1167500/1167471/2935a4d8_z.jpg",
                "https://i.travelapi.com/lodging/2000000/1170000/1167500/1167471/859d656e_z.jpg",
                "https://i.travelapi.com/lodging/2000000/1170000/1167500/1167471/9eaceb1a_z.jpg"
              ],
              "room_image_text": null,
              "room_name": "商务双床间",
              "supplier_hotel_id": null,
              "supplier_id": null,
              "supplier_room_id": null
            }
          },
          {
            "extra_rate_list": [],
            "rate_list": [
              {
                "base_content_list": [
                  {
                    "bold": false,
                    "color": "#757575",
                    "content": "不含早餐",
                    "hover_list": null,
                    "icon": "https://res.klook.com/image/upload/v1704279528/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_nonbreakfast_mobile_42x42_3x.png",
                    "placeholder": null
                  },
                  {
                    "bold": null,
                    "color": "",
                    "content": "1张特大床",
                    "hover_list": null,
                    "icon": "https://res.klook.com/image/upload/v1639464805/UED%20Team%EF%BC%88for%20DE%20only%EF%BC%89/System%20Icon/Hotel/Rate%20Code/icon_furniture_appliancese_big_bed_xs.png",
                    "placeholder": null
                  },
                  {
                    "bold": null,
                    "color": null,
                    "content": "{0}此房间适合入住人数",
                    "hover_list": null,
                    "icon": "https://res.klook.com/image/upload/v1639464552/UED%20Team%EF%BC%88for%20DE%20only%EF%BC%89/System%20Icon/Hotel/Rate%20Code/icon_user_user_group_xs.png",
                    "placeholder": "客房可入住1名成人,"
                  }
                ],
                "channel_rule_ids": null,
                "combo_product": null,
                "combo_rate_count": null,
                "feature_tag_list": null,
                "feature_tags": null,
                "fencing_rule_ids": null,
                "filter_list": [
                  "hotel_offer"
                ],
                "from_cache": false,
                "hide": null,
                "is_stay_plus": false,
                "one_level": null,
                "ori_rate_name": null,
                "package_id": null,
                "package_name": null,
                "parity_v2": null,
                "pay_later_desc": null,
                "per_night_sale_rate": 629.9,
                "policy_content_list": [
                  {
                    "color": null,
                    "content_list": null,
                    "description": "预订后立即确认订单",
                    "icon_url": "https://res.klook.com/image/upload/v1669804345/UED%20Team%EF%BC%88for%20DE%20only%EF%BC%89/System%20Icon/Hotel/Public%20icon/icon_feedback_success_fill_xs.png",
                    "style_type": null,
                    "title": "立即确认"
                  },
                  {
                    "color": null,
                    "content_list": null,
                    "description": "订单一经确认,则不可修改或取消",
                    "icon_url": null,
                    "style_type": null,
                    "title": "不可退款"
                  }
                ],
                "pricing": {
                  "check_in_info": null,
                  "currency_symbol": "¥",
                  "discount_type": "promotion",
                  "format_price": "629.9",
                  "has_stock": true,
                  "original_price_desc": "¥ 630.6",
                  "price": "629.9",
                  "price_desc": "{format_price}起",
                  "price_info": {
                    "bg_color": "#FFF0E5",
                    "border_color": null,
                    "icon": "https://res.klook.com/image/upload/v1655206607/UED%20Team%EF%BC%88for%20DE%20only%EF%BC%89/System%20Icon/Hotel/Promotional%20information/icon_nav_chevron_right_xxxs.png",
                    "name": "可省 ¥ 0.7",
                    "price_detail": {
                      "currency_symbol": "¥",
                      "desc": "入住1间房1晚",
                      "gift": null,
                      "pay_online": {
                        "per_night_price": null,
                        "per_night_price_desc": null,
                        "taxes_desc": "含税",
                        "title": "在线支付",
                        "total_price": "¥ 629.9",
                        "total_price_desc": "合计"
                      },
                      "price_items": [
                        {
                          "content": "¥ 548.4",
                          "content_color": null,
                          "item_list": null,
                          "title": "1间房 x 1晚",
                          "type": "pretax_price"
                        },
                        {
                          "content": "¥ 82.2",
                          "content_color": null,
                          "item_list": null,
                          "title": "税杂费",
                          "type": "taxes_and_fee"
                        },
                        {
                          "content": "-¥ 0.7",
                          "content_color": "#FF5B00",
                          "item_list": [
                            {
                              "content": "-¥ 0.7",
                              "desc": "入住即享优惠",
                              "title": "劲爆优惠"
                            }
                          ],
                          "title": "优惠明细",
                          "type": "discount"
                        }
                      ],
                      "title": "价格明细"
                    },
                    "text_color": "#FF5B00"
                  },
                  "price_tag_list": [
                    {
                      "id": "savePrice",
                      "tag_text": "¥ 0.7",
                      "text": "可省",
                      "type": "vertical_promo_tag"
                    }
                  ],
                  "price_tags": null,
                  "reward_desc": "赚Klook积分回馈(约¥1.8)",
                  "tax_desc": "每晚房价含税",
                  "tip": {
                    "bg_color": null,
                    "bg_color_left": null,
                    "bg_color_right": null,
                    "bold": null,
                    "border_color": null,
                    "desc": null,
                    "discount_desc": null,
                    "hover_list": null,
                    "icon": null,
                    "id": null,
                    "max_line": null,
                    "name": "仅剩2间房了!",
                    "prefix": null,
                    "text_color": "#FF5B00",
                    "time_left": null,
                    "type": 1
                  },
                  "total_price": "629.9"
                },
                "promotion_tag_list": [
                  {
                    "icon_src": null,
                    "id": "7",
                    "tag_color": "#F44622",
                    "text": "劲爆优惠",
                    "type": "manual_tag"
                  }
                ],
                "promotion_tags": null,
                "rate_code_infos": [
                  {
                    "code": "1张特大床",
                    "desc": "1张特大床",
                    "tip": null,
                    "type": 1
                  },
                  {
                    "code": "no_breakfast",
                    "desc": "不含早餐",
                    "tip": null,
                    "type": 2
                  },
                  {
                    "code": "no_refundable",
                    "desc": "不可退款",
                    "tip": null,
                    "type": 3
                  },
                  {
                    "code": "1:false|2:false|3:101|4:0|5:0|5010821:",
                    "desc": "特别优惠",
                    "tip": null,
                    "type": 4
                  }
                ],
                "rate_contents": [
                  {
                    "bg_color": null,
                    "bg_color_left": null,
                    "bg_color_right": null,
                    "bold": false,
                    "border_color": null,
                    "desc": null,
                    "discount_desc": null,
                    "hover_list": null,
                    "icon": "https://res.klook.com/image/upload/v1704279528/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_nonbreakfast_mobile_42x42_3x.png",
                    "id": "meal",
                    "max_line": null,
                    "name": "不含早餐",
                    "prefix": null,
                    "text_color": "#757575",
                    "time_left": null,
                    "type": 1
                  },
                  {
                    "bg_color": null,
                    "bg_color_left": null,
                    "bg_color_right": null,
                    "bold": null,
                    "border_color": null,
                    "desc": null,
                    "discount_desc": null,
                    "hover_list": null,
                    "icon": "https://res.klook.com/image/upload/v1704279529/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_nonrefundable_mobile_42x42_3x.png",
                    "id": "cancelPolicy",
                    "max_line": 2,
                    "name": "不可退款",
                    "prefix": null,
                    "text_color": "#757575",
                    "time_left": null,
                    "type": 1
                  }
                ],
                "rate_debug_info": null,
                "rate_icon": "",
                "rate_id": "203934955",
                "rate_infos": [
                  {
                    "bg_color": null,
                    "icon_src": null,
                    "id": null,
                    "line_color": null,
                    "text": "不可退款",
                    "text_color": "#757575",
                    "type": "hotel_manual_tag"
                  }
                ],
                "rate_name": "1张特大床",
                "rate_plan_type": [
                  "HotelOffer"
                ],
                "rate_token": "eyJkayI6IiIsInJhdGVDb2RlS2V5IjoiMTpmYWxzZXwyOmZhbHNlfDM6MTAxfDQ6MHw1OjB8NTAxMDgyMToiLCJyYXRlQ29kZUxpc3QiOltdLCJyayI6ImE1ZDAxYjAwLWIxZWItNGM4Yy04OGE1LWUyZTE0MzQxYWVlMSIsInJvb21JZCI6IjE2MzgwODI1OTUwODI2MzczMTQiLCJydiI6IiIsInNlYXJjaFByb21vdGlvbiI6eyJmaWx0ZXJQcm9tb3Rpb25UeXBlU2V0IjpbIjIiXX0sInN1cHBsaWVyQWNjb3VudElkIjoiMTA0IiwidGFyZ2V0U3VwcGxpZXJJZFNldCI6WzFdLCJ0ayI6IiIsInRyYWNlSWQiOiIyYjRmNTY0OCIsInR2IjoiIn0",
                "rate_type": 1,
                "recommend_info": null,
                "report": {
                  "buried_raw_id": "690447a4-a363-4388-84c2-2e22ec579044",
                  "is_cc": false,
                  "is_req_cc": true,
                  "sde_type": [
                    "priceable"
                  ]
                },
                "reverse_filter_list": [],
                "sale_tip_desc": null,
                "secret_channel_rule_ids": null,
                "server_data": null,
                "source_rate_id": null,
                "special_offer": {
                  "content_list": [
                    {
                      "code": "5010821",
                      "desc": "Special Offer\n - Rate includes the following: \n·Accommodations as selected \n·4 soft drinks per day (2 cans of soda, 1 can of soda water, 1 bottle of orange juice) \nFull details at check-in. Restrictions may apply.",
                      "icon_url": "https://res.klook.com/image/upload/v1724312833/UED_new/Hotel/Hotel_Experiential_stay_booking_2408/icon_Special_offer_black_4x.png",
                      "icon_white": "https://res.klook.com/image/upload/v1724312833/UED_new/Hotel/Hotel_Experiential_stay_booking_2408/icon_Special_offer_white_4x.png",
                      "image_list": null,
                      "important": true,
                      "name": "特别优惠",
                      "order_priority": 999,
                      "tip": null,
                      "type": 2
                    }
                  ],
                  "icon_url": "https://res.klook.com/image/upload/v1639723551/UED%20Team%EF%BC%88for%20DE%20only%EF%BC%89/System%20Icon/Hotel/Public%20icon/icon_shopping_gift_fill_xs.png",
                  "is_package": null,
                  "name": "套餐优惠内容",
                  "package_img": null,
                  "package_name": null
                },
                "special_price_info": null,
                "stay_plus_list": null,
                "stay_plus_rate_id": null,
                "stock_tag": {
                  "bg_color": null,
                  "icon_src": null,
                  "id": null,
                  "line_color": null,
                  "text": "仅剩2间房了!",
                  "text_color": "#FF5B00",
                  "type": "hotel_manual_tag"
                },
                "supplier_account_id": "104",
                "supplier_id": 1,
                "tax_desc": "每晚房价含税",
                "tip": null,
                "two_level": null
              },
              {
                "base_content_list": [
                  {
                    "bold": true,
                    "color": "#00828A",
                    "content": "含早餐",
                    "hover_list": null,
                    "icon": "https://res.klook.com/image/upload/v1704279528/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_freebreakfast_mobile_42x42_3x.png",
                    "placeholder": null
                  },
                  {
                    "bold": null,
                    "color": "",
                    "content": "1张特大床",
                    "hover_list": null,
                    "icon": "https://res.klook.com/image/upload/v1639464805/UED%20Team%EF%BC%88for%20DE%20only%EF%BC%89/System%20Icon/Hotel/Rate%20Code/icon_furniture_appliancese_big_bed_xs.png",
                    "placeholder": null
                  },
                  {
                    "bold": null,
                    "color": null,
                    "content": "{0}此房间适合入住人数",
                    "hover_list": null,
                    "icon": "https://res.klook.com/image/upload/v1639464552/UED%20Team%EF%BC%88for%20DE%20only%EF%BC%89/System%20Icon/Hotel/Rate%20Code/icon_user_user_group_xs.png",
                    "placeholder": "客房可入住1名成人,"
                  }
                ],
                "channel_rule_ids": null,
                "combo_product": null,
                "combo_rate_count": null,
                "feature_tag_list": null,
                "feature_tags": null,
                "fencing_rule_ids": null,
                "filter_list": [
                  "breakfast",
                  "hotel_offer"
                ],
                "from_cache": false,
                "hide": null,
                "is_stay_plus": false,
                "one_level": null,
                "ori_rate_name": null,
                "package_id": null,
                "package_name": null,
                "parity_v2": null,
                "pay_later_desc": null,
                "per_night_sale_rate": 680.7,
                "policy_content_list": [
                  {
                    "color": null,
                    "content_list": null,
                    "description": "预订后立即确认订单",
                    "icon_url": "https://res.klook.com/image/upload/v1669804345/UED%20Team%EF%BC%88for%20DE%20only%EF%BC%89/System%20Icon/Hotel/Public%20icon/icon_feedback_success_fill_xs.png",
                    "style_type": null,
                    "title": "立即确认"
                  },
                  {
                    "color": null,
                    "content_list": null,
                    "description": "订单一经确认,则不可修改或取消",
                    "icon_url": null,
                    "style_type": null,
                    "title": "不可退款"
                  }
                ],
                "pricing": {
                  "check_in_info": null,
                  "currency_symbol": "¥",
                  "discount_type": "promotion",
                  "format_price": "680.7",
                  "has_stock": true,
                  "original_price_desc": null,
                  "price": "680.7",
                  "price_desc": "{format_price}起",
                  "price_info": {
                    "bg_color": null,
                    "border_color": null,
                    "icon": null,
                    "name": null,
                    "price_detail": {
                      "currency_symbol": "¥",
                      "desc": "入住1间房1晚",
                      "gift": null,
                      "pay_online": {
                        "per_night_price": null,
                        "per_night_price_desc": null,
                        "taxes_desc": "含税",
                        "title": "在线支付",
                        "total_price": "¥ 680.7",
                        "total_price_desc": "合计"
                      },
                      "price_items": [
                        {
                          "content": "¥ 591.9",
                          "content_color": null,
                          "item_list": null,
                          "title": "1间房 x 1晚",
                          "type": "pretax_price"
                        },
                        {
                          "content": "¥ 88.8",
                          "content_color": null,
                          "item_list": null,
                          "title": "税杂费",
                          "type": "taxes_and_fee"
                        }
                      ],
                      "title": "价格明细"
                    },
                    "text_color": null
                  },
                  "price_tag_list": [],
                  "price_tags": null,
                  "reward_desc": "赚Klook积分回馈(约¥2.0)",
                  "tax_desc": "每晚房价含税",
                  "tip": {
                    "bg_color": null,
                    "bg_color_left": null,
                    "bg_color_right": null,
                    "bold": null,
                    "border_color": null,
                    "desc": null,
                    "discount_desc": null,
                    "hover_list": null,
                    "icon": null,
                    "id": null,
                    "max_line": null,
                    "name": "仅剩2间房了!",
                    "prefix": null,
                    "text_color": "#FF5B00",
                    "time_left": null,
                    "type": 1
                  },
                  "total_price": "680.7"
                },
                "promotion_tag_list": null,
                "promotion_tags": null,
                "rate_code_infos": [
                  {
                    "code": "1张特大床",
                    "desc": "1张特大床",
                    "tip": null,
                    "type": 1
                  },
                  {
                    "code": "breakfast",
                    "desc": "含早餐",
                    "tip": null,
                    "type": 2
                  },
                  {
                    "code": "no_refundable",
                    "desc": "不可退款",
                    "tip": null,
                    "type": 3
                  },
                  {
                    "code": "1:true|2:false|3:101|4:0|5:0|5010821:",
                    "desc": "特别优惠",
                    "tip": null,
                    "type": 4
                  }
                ],
                "rate_contents": [
                  {
                    "bg_color": null,
                    "bg_color_left": null,
                    "bg_color_right": null,
                    "bold": false,
                    "border_color": null,
                    "desc": null,
                    "discount_desc": null,
                    "hover_list": null,
                    "icon": "https://res.klook.com/image/upload/v1704279528/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_freebreakfast_mobile_42x42_3x.png",
                    "id": "meal",
                    "max_line": null,
                    "name": "含早餐",
                    "prefix": null,
                    "text_color": "#00828A",
                    "time_left": null,
                    "type": 1
                  },
                  {
                    "bg_color": null,
                    "bg_color_left": null,
                    "bg_color_right": null,
                    "bold": null,
                    "border_color": null,
                    "desc": null,
                    "discount_desc": null,
                    "hover_list": null,
                    "icon": "https://res.klook.com/image/upload/v1704279529/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_nonrefundable_mobile_42x42_3x.png",
                    "id": "cancelPolicy",
                    "max_line": 2,
                    "name": "不可退款",
                    "prefix": null,
                    "text_color": "#757575",
                    "time_left": null,
                    "type": 1
                  }
                ],
                "rate_debug_info": null,
                "rate_icon": "",
                "rate_id": "389603625",
                "rate_infos": [
                  {
                    "bg_color": null,
                    "icon_src": null,
                    "id": null,
                    "line_color": null,
                    "text": "不可退款",
                    "text_color": "#757575",
                    "type": "hotel_manual_tag"
                  }
                ],
                "rate_name": "1张特大床",
                "rate_plan_type": [
                  "HotelOffer"
                ],
                "rate_token": "eyJkayI6IiIsInJhdGVDb2RlS2V5IjoiMTp0cnVlfDI6ZmFsc2V8MzoxMDF8NDowfDU6MHw1MDEwODIxOiIsInJhdGVDb2RlTGlzdCI6W10sInJrIjoiZWQ0ZmY0ZDQtNDRkZS00ZTVjLTgzMWUtZjkwOTE4Y2E2OGNlIiwicm9vbUlkIjoiMTYzODA4MjU5NTA4MjYzNzMxNCIsInJ2IjoiIiwic2VhcmNoUHJvbW90aW9uIjp7ImZpbHRlclByb21vdGlvblR5cGVTZXQiOlsiMiJdfSwic3VwcGxpZXJBY2NvdW50SWQiOiIxMDQiLCJ0YXJnZXRTdXBwbGllcklkU2V0IjpbMV0sInRrIjoiIiwidHJhY2VJZCI6IjJiNGY1NjQ4IiwidHYiOiIifQ",
                "rate_type": 1,
                "recommend_info": null,
                "report": {
                  "buried_raw_id": "690447a4-a363-4388-84c2-2e22ec579044",
                  "is_cc": false,
                  "is_req_cc": true,
                  "sde_type": [
                    "priceable"
                  ]
                },
                "reverse_filter_list": [],
                "sale_tip_desc": null,
                "secret_channel_rule_ids": null,
                "server_data": null,
                "source_rate_id": null,
                "special_offer": {
                  "content_list": [
                    {
                      "code": "5010821",
                      "desc": "Special Offer\n - Rate includes the following: \n·Accommodations as selected \n·4 soft drinks per day (2 cans of soda, 1 can of soda water, 1 bottle of orange juice) \nFull details at check-in. Restrictions may apply.",
                      "icon_url": "https://res.klook.com/image/upload/v1724312833/UED_new/Hotel/Hotel_Experiential_stay_booking_2408/icon_Special_offer_black_4x.png",
                      "icon_white": "https://res.klook.com/image/upload/v1724312833/UED_new/Hotel/Hotel_Experiential_stay_booking_2408/icon_Special_offer_white_4x.png",
                      "image_list": null,
                      "important": true,
                      "name": "特别优惠",
                      "order_priority": 999,
                      "tip": null,
                      "type": 2
                    }
                  ],
                  "icon_url": "https://res.klook.com/image/upload/v1639723551/UED%20Team%EF%BC%88for%20DE%20only%EF%BC%89/System%20Icon/Hotel/Public%20icon/icon_shopping_gift_fill_xs.png",
                  "is_package": null,
                  "name": "套餐优惠内容",
                  "package_img": null,
                  "package_name": null
                },
                "special_price_info": null,
                "stay_plus_list": null,
                "stay_plus_rate_id": null,
                "stock_tag": {
                  "bg_color": null,
                  "icon_src": null,
                  "id": null,
                  "line_color": null,
                  "text": "仅剩2间房了!",
                  "text_color": "#FF5B00",
                  "type": "hotel_manual_tag"
                },
                "supplier_account_id": "104",
                "supplier_id": 1,
                "tax_desc": "每晚房价含税",
                "tip": null,
                "two_level": null
              }
            ],
            "room_info": {
              "facility_list": [
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "禁止吸烟",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "水壶",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "电视",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "空调",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "冰箱",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "迷你吧",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "电话",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "洗漱用品",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "淋浴",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "电吹风",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "保险箱",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "免费瓶装水",
                  "stress": 0,
                  "value": null
                }
              ],
              "popular_facility_list": [
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278058/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_square_mobile_48x48_3x.png",
                  "name": "22.0 m²",
                  "stress": null,
                  "value": null
                }
              ],
              "recommend_quantity": null,
              "room_desc": null,
              "room_id": "1638082595082637314",
              "room_image_count": 19,
              "room_image_list": [
                "https://res.klook.com/klook-hotel/image/upload/s2pix8/hotelImages/2004/-1/3bc8527e96e1795981f2e6dbaaaee540.jpg",
                "https://i.travelapi.com/hotels/2000000/1170000/1167500/1167471/2935a4d8_z.jpg",
                "https://res.klook.com/klook-hotel/image/upload/s2pix8/hotelImages/2004/-1/a244cd8f7d4871e0c9b82c576a242b9e.jpg",
                "https://res.klook.com/klook-hotel/image/upload/s2pix8/hotelImages/2004/-1/9ea250df7d7984abf9592a9bb911ec4e.jpg",
                "https://res.klook.com/klook-hotel/image/upload/s2pix8/hotelImages/2004/-1/1f75210e90e684391c815d0f63c9e42c.jpg",
                "https://i.travelapi.com/lodging/2000000/1170000/1167500/1167471/a1a48ef8_z.jpg",
                "https://i.travelapi.com/lodging/2000000/1170000/1167500/1167471/39d2baff_z.jpg",
                "https://i.travelapi.com/lodging/2000000/1170000/1167500/1167471/9eaceb1a_z.jpg",
                "https://q-xx.bstatic.com/xdata/images/hotel/840x460/557247231.jpg?k=7afa1621e2b3976eb46f474ac1496b6d8c59293a2c080102be20c8538dd1bbc7&o=",
                "https://i.travelapi.com/hotels/2000000/1170000/1167500/1167471/32c12651_z.jpg",
                "https://i.travelapi.com/hotels/2000000/1170000/1167500/1167471/407bac9d_z.jpg",
                "https://i.travelapi.com/hotels/2000000/1170000/1167500/1167471/416b4e67_z.jpg",
                "https://i.travelapi.com/hotels/2000000/1170000/1167500/1167471/bd929e6c_z.jpg",
                "https://i.travelapi.com/hotels/2000000/1170000/1167500/1167471/f76d1ab0_z.jpg",
                "https://i.travelapi.com/hotels/2000000/1170000/1167500/1167471/fc8b9635_z.jpg",
                "https://i.travelapi.com/lodging/2000000/1170000/1167500/1167471/2935a4d8_z.jpg",
                "https://i.travelapi.com/lodging/2000000/1170000/1167500/1167471/6b5122fb_z.jpg",
                "https://i.travelapi.com/lodging/2000000/1170000/1167500/1167471/6f8cb371_z.jpg",
                "https://i.travelapi.com/lodging/2000000/1170000/1167500/1167471/93e19123_z.jpg"
              ],
              "room_image_text": null,
              "room_name": "商务大床间",
              "supplier_hotel_id": null,
              "supplier_id": null,
              "supplier_room_id": null
            }
          },
          {
            "extra_rate_list": [],
            "rate_list": [
              {
                "base_content_list": [
                  {
                    "bold": false,
                    "color": "#757575",
                    "content": "不含早餐",
                    "hover_list": null,
                    "icon": "https://res.klook.com/image/upload/v1704279528/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_nonbreakfast_mobile_42x42_3x.png",
                    "placeholder": null
                  },
                  {
                    "bold": null,
                    "color": "",
                    "content": "1张特大床",
                    "hover_list": null,
                    "icon": "https://res.klook.com/image/upload/v1639464805/UED%20Team%EF%BC%88for%20DE%20only%EF%BC%89/System%20Icon/Hotel/Rate%20Code/icon_furniture_appliancese_big_bed_xs.png",
                    "placeholder": null
                  },
                  {
                    "bold": null,
                    "color": null,
                    "content": "{0}此房间适合入住人数",
                    "hover_list": null,
                    "icon": "https://res.klook.com/image/upload/v1639464552/UED%20Team%EF%BC%88for%20DE%20only%EF%BC%89/System%20Icon/Hotel/Rate%20Code/icon_user_user_group_xs.png",
                    "placeholder": "客房可入住1名成人,"
                  }
                ],
                "channel_rule_ids": null,
                "combo_product": null,
                "combo_rate_count": null,
                "feature_tag_list": null,
                "feature_tags": null,
                "fencing_rule_ids": null,
                "filter_list": [
                  "hotel_offer"
                ],
                "from_cache": false,
                "hide": null,
                "is_stay_plus": false,
                "one_level": null,
                "ori_rate_name": null,
                "package_id": null,
                "package_name": null,
                "parity_v2": null,
                "pay_later_desc": null,
                "per_night_sale_rate": 763.6,
                "policy_content_list": [
                  {
                    "color": null,
                    "content_list": null,
                    "description": "预订后立即确认订单",
                    "icon_url": "https://res.klook.com/image/upload/v1669804345/UED%20Team%EF%BC%88for%20DE%20only%EF%BC%89/System%20Icon/Hotel/Public%20icon/icon_feedback_success_fill_xs.png",
                    "style_type": null,
                    "title": "立即确认"
                  },
                  {
                    "color": null,
                    "content_list": null,
                    "description": "订单一经确认,则不可修改或取消",
                    "icon_url": null,
                    "style_type": null,
                    "title": "不可退款"
                  }
                ],
                "pricing": {
                  "check_in_info": null,
                  "currency_symbol": "¥",
                  "discount_type": "promotion",
                  "format_price": "763.6",
                  "has_stock": true,
                  "original_price_desc": "¥ 764.3",
                  "price": "763.6",
                  "price_desc": "{format_price}起",
                  "price_info": {
                    "bg_color": "#FFF0E5",
                    "border_color": null,
                    "icon": "https://res.klook.com/image/upload/v1655206607/UED%20Team%EF%BC%88for%20DE%20only%EF%BC%89/System%20Icon/Hotel/Promotional%20information/icon_nav_chevron_right_xxxs.png",
                    "name": "可省 ¥ 0.7",
                    "price_detail": {
                      "currency_symbol": "¥",
                      "desc": "入住1间房1晚",
                      "gift": null,
                      "pay_online": {
                        "per_night_price": null,
                        "per_night_price_desc": null,
                        "taxes_desc": "含税",
                        "title": "在线支付",
                        "total_price": "¥ 763.6",
                        "total_price_desc": "合计"
                      },
                      "price_items": [
                        {
                          "content": "¥ 664.7",
                          "content_color": null,
                          "item_list": null,
                          "title": "1间房 x 1晚",
                          "type": "pretax_price"
                        },
                        {
                          "content": "¥ 99.6",
                          "content_color": null,
                          "item_list": null,
                          "title": "税杂费",
                          "type": "taxes_and_fee"
                        },
                        {
                          "content": "-¥ 0.7",
                          "content_color": "#FF5B00",
                          "item_list": [
                            {
                              "content": "-¥ 0.7",
                              "desc": "入住即享优惠",
                              "title": "劲爆优惠"
                            }
                          ],
                          "title": "优惠明细",
                          "type": "discount"
                        }
                      ],
                      "title": "价格明细"
                    },
                    "text_color": "#FF5B00"
                  },
                  "price_tag_list": [
                    {
                      "id": "savePrice",
                      "tag_text": "¥ 0.7",
                      "text": "可省",
                      "type": "vertical_promo_tag"
                    }
                  ],
                  "price_tags": null,
                  "reward_desc": "赚Klook积分回馈(约¥2.2)",
                  "tax_desc": "每晚房价含税",
                  "tip": null,
                  "total_price": "763.6"
                },
                "promotion_tag_list": [
                  {
                    "icon_src": null,
                    "id": "7",
                    "tag_color": "#F44622",
                    "text": "劲爆优惠",
                    "type": "manual_tag"
                  }
                ],
                "promotion_tags": null,
                "rate_code_infos": [
                  {
                    "code": "1张特大床",
                    "desc": "1张特大床",
                    "tip": null,
                    "type": 1
                  },
                  {
                    "code": "no_breakfast",
                    "desc": "不含早餐",
                    "tip": null,
                    "type": 2
                  },
                  {
                    "code": "no_refundable",
                    "desc": "不可退款",
                    "tip": null,
                    "type": 3
                  },
                  {
                    "code": "1:false|2:false|3:101|4:0|5:0|5010821:",
                    "desc": "特别优惠",
                    "tip": null,
                    "type": 4
                  }
                ],
                "rate_contents": [
                  {
                    "bg_color": null,
                    "bg_color_left": null,
                    "bg_color_right": null,
                    "bold": false,
                    "border_color": null,
                    "desc": null,
                    "discount_desc": null,
                    "hover_list": null,
                    "icon": "https://res.klook.com/image/upload/v1704279528/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_nonbreakfast_mobile_42x42_3x.png",
                    "id": "meal",
                    "max_line": null,
                    "name": "不含早餐",
                    "prefix": null,
                    "text_color": "#757575",
                    "time_left": null,
                    "type": 1
                  },
                  {
                    "bg_color": null,
                    "bg_color_left": null,
                    "bg_color_right": null,
                    "bold": null,
                    "border_color": null,
                    "desc": null,
                    "discount_desc": null,
                    "hover_list": null,
                    "icon": "https://res.klook.com/image/upload/v1704279529/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_nonrefundable_mobile_42x42_3x.png",
                    "id": "cancelPolicy",
                    "max_line": 2,
                    "name": "不可退款",
                    "prefix": null,
                    "text_color": "#757575",
                    "time_left": null,
                    "type": 1
                  }
                ],
                "rate_debug_info": null,
                "rate_icon": "",
                "rate_id": "203934958",
                "rate_infos": [
                  {
                    "bg_color": null,
                    "icon_src": null,
                    "id": null,
                    "line_color": null,
                    "text": "不可退款",
                    "text_color": "#757575",
                    "type": "hotel_manual_tag"
                  }
                ],
                "rate_name": "1张特大床",
                "rate_plan_type": [
                  "HotelOffer"
                ],
                "rate_token": "eyJkayI6IiIsInJhdGVDb2RlS2V5IjoiMTpmYWxzZXwyOmZhbHNlfDM6MTAxfDQ6MHw1OjB8NTAxMDgyMToiLCJyYXRlQ29kZUxpc3QiOltdLCJyayI6IjY3YzcyOGUwLTIwOGEtNDIzYi04MTcyLTI1MTgzNTlmM2VhZSIsInJvb21JZCI6IjEyNDMzNzcxOTQxNzQ4Njk1MTUiLCJydiI6IiIsInNlYXJjaFByb21vdGlvbiI6eyJmaWx0ZXJQcm9tb3Rpb25UeXBlU2V0IjpbIjIiXX0sInN1cHBsaWVyQWNjb3VudElkIjoiMTA0IiwidGFyZ2V0U3VwcGxpZXJJZFNldCI6WzFdLCJ0ayI6IiIsInRyYWNlSWQiOiIyYjRmNTY0OCIsInR2IjoiIn0",
                "rate_type": 1,
                "recommend_info": null,
                "report": {
                  "buried_raw_id": "690447a4-a363-4388-84c2-2e22ec579044",
                  "is_cc": false,
                  "is_req_cc": true,
                  "sde_type": [
                    "priceable"
                  ]
                },
                "reverse_filter_list": [],
                "sale_tip_desc": null,
                "secret_channel_rule_ids": null,
                "server_data": null,
                "source_rate_id": null,
                "special_offer": {
                  "content_list": [
                    {
                      "code": "5010821",
                      "desc": "Special Offer\n - Rate includes the following: \n·Accommodations as selected \n·4 soft drinks per day (2 cans of soda, 1 can of soda water, 1 bottle of orange juice) \nFull details at check-in. Restrictions may apply.",
                      "icon_url": "https://res.klook.com/image/upload/v1724312833/UED_new/Hotel/Hotel_Experiential_stay_booking_2408/icon_Special_offer_black_4x.png",
                      "icon_white": "https://res.klook.com/image/upload/v1724312833/UED_new/Hotel/Hotel_Experiential_stay_booking_2408/icon_Special_offer_white_4x.png",
                      "image_list": null,
                      "important": true,
                      "name": "特别优惠",
                      "order_priority": 999,
                      "tip": null,
                      "type": 2
                    }
                  ],
                  "icon_url": "https://res.klook.com/image/upload/v1639723551/UED%20Team%EF%BC%88for%20DE%20only%EF%BC%89/System%20Icon/Hotel/Public%20icon/icon_shopping_gift_fill_xs.png",
                  "is_package": null,
                  "name": "套餐优惠内容",
                  "package_img": null,
                  "package_name": null
                },
                "special_price_info": null,
                "stay_plus_list": null,
                "stay_plus_rate_id": null,
                "stock_tag": null,
                "supplier_account_id": "104",
                "supplier_id": 1,
                "tax_desc": "每晚房价含税",
                "tip": null,
                "two_level": null
              },
              {
                "base_content_list": [
                  {
                    "bold": true,
                    "color": "#00828A",
                    "content": "含早餐",
                    "hover_list": null,
                    "icon": "https://res.klook.com/image/upload/v1704279528/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_freebreakfast_mobile_42x42_3x.png",
                    "placeholder": null
                  },
                  {
                    "bold": null,
                    "color": "",
                    "content": "1张特大床",
                    "hover_list": null,
                    "icon": "https://res.klook.com/image/upload/v1639464805/UED%20Team%EF%BC%88for%20DE%20only%EF%BC%89/System%20Icon/Hotel/Rate%20Code/icon_furniture_appliancese_big_bed_xs.png",
                    "placeholder": null
                  },
                  {
                    "bold": null,
                    "color": null,
                    "content": "{0}此房间适合入住人数",
                    "hover_list": null,
                    "icon": "https://res.klook.com/image/upload/v1639464552/UED%20Team%EF%BC%88for%20DE%20only%EF%BC%89/System%20Icon/Hotel/Rate%20Code/icon_user_user_group_xs.png",
                    "placeholder": "客房可入住1名成人,"
                  }
                ],
                "channel_rule_ids": null,
                "combo_product": null,
                "combo_rate_count": null,
                "feature_tag_list": null,
                "feature_tags": null,
                "fencing_rule_ids": null,
                "filter_list": [
                  "breakfast",
                  "hotel_offer"
                ],
                "from_cache": false,
                "hide": null,
                "is_stay_plus": false,
                "one_level": null,
                "ori_rate_name": null,
                "package_id": null,
                "package_name": null,
                "parity_v2": null,
                "pay_later_desc": null,
                "per_night_sale_rate": 814.4,
                "policy_content_list": [
                  {
                    "color": null,
                    "content_list": null,
                    "description": "预订后立即确认订单",
                    "icon_url": "https://res.klook.com/image/upload/v1669804345/UED%20Team%EF%BC%88for%20DE%20only%EF%BC%89/System%20Icon/Hotel/Public%20icon/icon_feedback_success_fill_xs.png",
                    "style_type": null,
                    "title": "立即确认"
                  },
                  {
                    "color": null,
                    "content_list": null,
                    "description": "订单一经确认,则不可修改或取消",
                    "icon_url": null,
                    "style_type": null,
                    "title": "不可退款"
                  }
                ],
                "pricing": {
                  "check_in_info": null,
                  "currency_symbol": "¥",
                  "discount_type": "promotion",
                  "format_price": "814.4",
                  "has_stock": true,
                  "original_price_desc": null,
                  "price": "814.4",
                  "price_desc": "{format_price}起",
                  "price_info": {
                    "bg_color": null,
                    "border_color": null,
                    "icon": null,
                    "name": null,
                    "price_detail": {
                      "currency_symbol": "¥",
                      "desc": "入住1间房1晚",
                      "gift": null,
                      "pay_online": {
                        "per_night_price": null,
                        "per_night_price_desc": null,
                        "taxes_desc": "含税",
                        "title": "在线支付",
                        "total_price": "¥ 814.4",
                        "total_price_desc": "合计"
                      },
                      "price_items": [
                        {
                          "content": "¥ 708.2",
                          "content_color": null,
                          "item_list": null,
                          "title": "1间房 x 1晚",
                          "type": "pretax_price"
                        },
                        {
                          "content": "¥ 106.2",
                          "content_color": null,
                          "item_list": null,
                          "title": "税杂费",
                          "type": "taxes_and_fee"
                        }
                      ],
                      "title": "价格明细"
                    },
                    "text_color": null
                  },
                  "price_tag_list": [],
                  "price_tags": null,
                  "reward_desc": "赚Klook积分回馈(约¥2.3)",
                  "tax_desc": "每晚房价含税",
                  "tip": null,
                  "total_price": "814.4"
                },
                "promotion_tag_list": null,
                "promotion_tags": null,
                "rate_code_infos": [
                  {
                    "code": "1张特大床",
                    "desc": "1张特大床",
                    "tip": null,
                    "type": 1
                  },
                  {
                    "code": "breakfast",
                    "desc": "含早餐",
                    "tip": null,
                    "type": 2
                  },
                  {
                    "code": "no_refundable",
                    "desc": "不可退款",
                    "tip": null,
                    "type": 3
                  },
                  {
                    "code": "1:true|2:false|3:101|4:0|5:0|5010821:",
                    "desc": "特别优惠",
                    "tip": null,
                    "type": 4
                  }
                ],
                "rate_contents": [
                  {
                    "bg_color": null,
                    "bg_color_left": null,
                    "bg_color_right": null,
                    "bold": false,
                    "border_color": null,
                    "desc": null,
                    "discount_desc": null,
                    "hover_list": null,
                    "icon": "https://res.klook.com/image/upload/v1704279528/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_freebreakfast_mobile_42x42_3x.png",
                    "id": "meal",
                    "max_line": null,
                    "name": "含早餐",
                    "prefix": null,
                    "text_color": "#00828A",
                    "time_left": null,
                    "type": 1
                  },
                  {
                    "bg_color": null,
                    "bg_color_left": null,
                    "bg_color_right": null,
                    "bold": null,
                    "border_color": null,
                    "desc": null,
                    "discount_desc": null,
                    "hover_list": null,
                    "icon": "https://res.klook.com/image/upload/v1704279529/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_nonrefundable_mobile_42x42_3x.png",
                    "id": "cancelPolicy",
                    "max_line": 2,
                    "name": "不可退款",
                    "prefix": null,
                    "text_color": "#757575",
                    "time_left": null,
                    "type": 1
                  }
                ],
                "rate_debug_info": null,
                "rate_icon": "",
                "rate_id": "389603627",
                "rate_infos": [
                  {
                    "bg_color": null,
                    "icon_src": null,
                    "id": null,
                    "line_color": null,
                    "text": "不可退款",
                    "text_color": "#757575",
                    "type": "hotel_manual_tag"
                  }
                ],
                "rate_name": "1张特大床",
                "rate_plan_type": [
                  "HotelOffer"
                ],
                "rate_token": "eyJkayI6IiIsInJhdGVDb2RlS2V5IjoiMTp0cnVlfDI6ZmFsc2V8MzoxMDF8NDowfDU6MHw1MDEwODIxOiIsInJhdGVDb2RlTGlzdCI6W10sInJrIjoiNDlmYTJhNTItMWI2Yy00YjkwLWE4YjgtNTM0MzkyMDEyNjg1Iiwicm9vbUlkIjoiMTI0MzM3NzE5NDE3NDg2OTUxNSIsInJ2IjoiIiwic2VhcmNoUHJvbW90aW9uIjp7ImZpbHRlclByb21vdGlvblR5cGVTZXQiOlsiMiJdfSwic3VwcGxpZXJBY2NvdW50SWQiOiIxMDQiLCJ0YXJnZXRTdXBwbGllcklkU2V0IjpbMV0sInRrIjoiIiwidHJhY2VJZCI6IjJiNGY1NjQ4IiwidHYiOiIifQ",
                "rate_type": 1,
                "recommend_info": null,
                "report": {
                  "buried_raw_id": "690447a4-a363-4388-84c2-2e22ec579044",
                  "is_cc": false,
                  "is_req_cc": true,
                  "sde_type": [
                    "priceable"
                  ]
                },
                "reverse_filter_list": [],
                "sale_tip_desc": null,
                "secret_channel_rule_ids": null,
                "server_data": null,
                "source_rate_id": null,
                "special_offer": {
                  "content_list": [
                    {
                      "code": "5010821",
                      "desc": "Special Offer\n - Rate includes the following: \n·Accommodations as selected \n·4 soft drinks per day (2 cans of soda, 1 can of soda water, 1 bottle of orange juice) \nFull details at check-in. Restrictions may apply.",
                      "icon_url": "https://res.klook.com/image/upload/v1724312833/UED_new/Hotel/Hotel_Experiential_stay_booking_2408/icon_Special_offer_black_4x.png",
                      "icon_white": "https://res.klook.com/image/upload/v1724312833/UED_new/Hotel/Hotel_Experiential_stay_booking_2408/icon_Special_offer_white_4x.png",
                      "image_list": null,
                      "important": true,
                      "name": "特别优惠",
                      "order_priority": 999,
                      "tip": null,
                      "type": 2
                    }
                  ],
                  "icon_url": "https://res.klook.com/image/upload/v1639723551/UED%20Team%EF%BC%88for%20DE%20only%EF%BC%89/System%20Icon/Hotel/Public%20icon/icon_shopping_gift_fill_xs.png",
                  "is_package": null,
                  "name": "套餐优惠内容",
                  "package_img": null,
                  "package_name": null
                },
                "special_price_info": null,
                "stay_plus_list": null,
                "stay_plus_rate_id": null,
                "stock_tag": null,
                "supplier_account_id": "104",
                "supplier_id": 1,
                "tax_desc": "每晚房价含税",
                "tip": null,
                "two_level": null
              }
            ],
            "room_info": {
              "facility_list": [
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "禁止吸烟",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "水壶",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "电视",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "空调",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "冰箱",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "迷你吧",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "电话",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "洗漱用品",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "淋浴",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "电吹风",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "保险箱",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "免费瓶装水",
                  "stress": 0,
                  "value": null
                }
              ],
              "popular_facility_list": [
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278058/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_square_mobile_48x48_3x.png",
                  "name": "33.0 m²",
                  "stress": null,
                  "value": null
                }
              ],
              "recommend_quantity": null,
              "room_desc": null,
              "room_id": "1243377194174869515",
              "room_image_count": 28,
              "room_image_list": [
                "https://res.klook.com/klook-hotel/image/upload/travelapi/2000000/1170000/1167500/1167471/1a9cf192_z.jpg",
                "https://res.klook.com/klook-hotel/image/upload/travelapi/2000000/1170000/1167500/1167471/bf183686_z.jpg",
                "https://res.klook.com/klook-hotel/image/upload/s2pix8/hotelImages/2004/-1/19d14f0d4d5b31f79493bfcd0f91d621.jpg",
                "https://res.klook.com/klook-hotel/image/upload/s2pix8/hotelImages/2004/-1/c6b7ccebceb56ef1548876c8d5c2637b.jpg",
                "https://i.travelapi.com/lodging/2000000/1170000/1167500/1167471/416acd6c_z.jpg",
                "https://i.travelapi.com/lodging/2000000/1170000/1167500/1167471/9eaceb1a_z.jpg",
                "https://i.travelapi.com/hotels/2000000/1170000/1167500/1167471/0ed1834f_z.jpg",
                "https://i.travelapi.com/hotels/2000000/1170000/1167500/1167471/2c91e56a_z.jpg",
                "https://i.travelapi.com/hotels/2000000/1170000/1167500/1167471/3ce20146_z.jpg",
                "https://i.travelapi.com/hotels/2000000/1170000/1167500/1167471/407bac9d_z.jpg",
                "https://i.travelapi.com/hotels/2000000/1170000/1167500/1167471/416b4e67_z.jpg",
                "https://i.travelapi.com/hotels/2000000/1170000/1167500/1167471/bd929e6c_z.jpg",
                "https://i.travelapi.com/lodging/2000000/1170000/1167500/1167471/1a9cf192_z.jpg",
                "https://i.travelapi.com/lodging/2000000/1170000/1167500/1167471/219a8c81_z.jpg",
                "https://i.travelapi.com/lodging/2000000/1170000/1167500/1167471/6b5122fb_z.jpg",
                "https://i.travelapi.com/lodging/2000000/1170000/1167500/1167471/93e19123_z.jpg",
                "https://i.travelapi.com/lodging/2000000/1170000/1167500/1167471/bf183686_z.jpg",
                "https://i.travelapi.com/lodging/2000000/1170000/1167500/1167471/3eb56b45_z.jpg",
                "https://i.travelapi.com/lodging/2000000/1170000/1167500/1167471/416acd6c_z.jpg",
                "https://i.travelapi.com/lodging/2000000/1170000/1167500/1167471/9eaceb1a_z.jpg",
                "https://res.klook.com/klook-hotel/image/upload/s5hb/giata/bigger/09/093657/093657a_hb_ro_047.jpg",
                "https://res.klook.com/klook-hotel/image/upload/s5hb/giata/bigger/09/093657/093657a_hb_ro_046.jpg",
                "https://res.klook.com/klook-hotel/image/upload/s5hb/giata/bigger/09/093657/093657a_hb_ro_048.jpg",
                "https://res.klook.com/klook-hotel/image/upload/s5hb/giata/bigger/09/093657/093657a_hb_ro_045.jpg",
                "https://i.travelapi.com/lodging/2000000/1170000/1167500/1167471/9b47a003_z.jpg",
                "https://i.travelapi.com/lodging/2000000/1170000/1167500/1167471/7de31e76_z.jpg",
                "https://i.travelapi.com/lodging/2000000/1170000/1167500/1167471/7de31e76_z.jpg",
                "https://i.travelapi.com/lodging/2000000/1170000/1167500/1167471/9b47a003_z.jpg"
              ],
              "room_image_text": null,
              "room_name": "尊贵豪华间",
              "supplier_hotel_id": null,
              "supplier_id": null,
              "supplier_room_id": null
            }
          },
          {
            "extra_rate_list": [],
            "rate_list": [
              {
                "base_content_list": [
                  {
                    "bold": false,
                    "color": "#757575",
                    "content": "不含早餐",
                    "hover_list": null,
                    "icon": "https://res.klook.com/image/upload/v1704279528/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_nonbreakfast_mobile_42x42_3x.png",
                    "placeholder": null
                  },
                  {
                    "bold": null,
                    "color": "",
                    "content": "1张特大床",
                    "hover_list": null,
                    "icon": "https://res.klook.com/image/upload/v1639464805/UED%20Team%EF%BC%88for%20DE%20only%EF%BC%89/System%20Icon/Hotel/Rate%20Code/icon_furniture_appliancese_big_bed_xs.png",
                    "placeholder": null
                  },
                  {
                    "bold": null,
                    "color": null,
                    "content": "{0}此房间适合入住人数",
                    "hover_list": null,
                    "icon": "https://res.klook.com/image/upload/v1639464552/UED%20Team%EF%BC%88for%20DE%20only%EF%BC%89/System%20Icon/Hotel/Rate%20Code/icon_user_user_group_xs.png",
                    "placeholder": "客房可入住1名成人,"
                  }
                ],
                "channel_rule_ids": null,
                "combo_product": null,
                "combo_rate_count": null,
                "feature_tag_list": null,
                "feature_tags": null,
                "fencing_rule_ids": null,
                "filter_list": [
                  "hotel_offer"
                ],
                "from_cache": false,
                "hide": null,
                "is_stay_plus": false,
                "one_level": null,
                "ori_rate_name": null,
                "package_id": null,
                "package_name": null,
                "parity_v2": null,
                "pay_later_desc": null,
                "per_night_sale_rate": 905.5,
                "policy_content_list": [
                  {
                    "color": null,
                    "content_list": null,
                    "description": "预订后立即确认订单",
                    "icon_url": "https://res.klook.com/image/upload/v1669804345/UED%20Team%EF%BC%88for%20DE%20only%EF%BC%89/System%20Icon/Hotel/Public%20icon/icon_feedback_success_fill_xs.png",
                    "style_type": null,
                    "title": "立即确认"
                  },
                  {
                    "color": null,
                    "content_list": null,
                    "description": "订单一经确认,则不可修改或取消",
                    "icon_url": null,
                    "style_type": null,
                    "title": "不可退款"
                  }
                ],
                "pricing": {
                  "check_in_info": null,
                  "currency_symbol": "¥",
                  "discount_type": "promotion",
                  "format_price": "905.5",
                  "has_stock": true,
                  "original_price_desc": "¥ 906.2",
                  "price": "905.5",
                  "price_desc": "{format_price}起",
                  "price_info": {
                    "bg_color": "#FFF0E5",
                    "border_color": null,
                    "icon": "https://res.klook.com/image/upload/v1655206607/UED%20Team%EF%BC%88for%20DE%20only%EF%BC%89/System%20Icon/Hotel/Promotional%20information/icon_nav_chevron_right_xxxs.png",
                    "name": "可省 ¥ 0.7",
                    "price_detail": {
                      "currency_symbol": "¥",
                      "desc": "入住1间房1晚",
                      "gift": null,
                      "pay_online": {
                        "per_night_price": null,
                        "per_night_price_desc": null,
                        "taxes_desc": "含税",
                        "title": "在线支付",
                        "total_price": "¥ 905.5",
                        "total_price_desc": "合计"
                      },
                      "price_items": [
                        {
                          "content": "¥ 788.1",
                          "content_color": null,
                          "item_list": null,
                          "title": "1间房 x 1晚",
                          "type": "pretax_price"
                        },
                        {
                          "content": "¥ 118.1",
                          "content_color": null,
                          "item_list": null,
                          "title": "税杂费",
                          "type": "taxes_and_fee"
                        },
                        {
                          "content": "-¥ 0.7",
                          "content_color": "#FF5B00",
                          "item_list": [
                            {
                              "content": "-¥ 0.7",
                              "desc": null,
                              "title": "限时促销"
                            }
                          ],
                          "title": "优惠明细",
                          "type": "discount"
                        }
                      ],
                      "title": "价格明细"
                    },
                    "text_color": "#FF5B00"
                  },
                  "price_tag_list": [
                    {
                      "id": "savePrice",
                      "tag_text": "¥ 0.7",
                      "text": "可省",
                      "type": "vertical_promo_tag"
                    }
                  ],
                  "price_tags": null,
                  "reward_desc": "赚Klook积分回馈(约¥2.6)",
                  "tax_desc": "每晚房价含税",
                  "tip": {
                    "bg_color": null,
                    "bg_color_left": null,
                    "bg_color_right": null,
                    "bold": null,
                    "border_color": null,
                    "desc": null,
                    "discount_desc": null,
                    "hover_list": null,
                    "icon": null,
                    "id": null,
                    "max_line": null,
                    "name": "仅剩3间房了!",
                    "prefix": null,
                    "text_color": "#FF5B00",
                    "time_left": null,
                    "type": 1
                  },
                  "total_price": "905.5"
                },
                "promotion_tag_list": [
                  {
                    "icon_src": null,
                    "id": "-1",
                    "tag_color": "#F44622",
                    "text": "限时促销",
                    "type": "manual_tag"
                  }
                ],
                "promotion_tags": null,
                "rate_code_infos": [
                  {
                    "code": "1张特大床",
                    "desc": "1张特大床",
                    "tip": null,
                    "type": 1
                  },
                  {
                    "code": "no_breakfast",
                    "desc": "不含早餐",
                    "tip": null,
                    "type": 2
                  },
                  {
                    "code": "no_refundable",
                    "desc": "不可退款",
                    "tip": null,
                    "type": 3
                  },
                  {
                    "code": "1:false|2:false|3:101|4:0|5:0|5010821:",
                    "desc": "特别优惠",
                    "tip": null,
                    "type": 4
                  }
                ],
                "rate_contents": [
                  {
                    "bg_color": null,
                    "bg_color_left": null,
                    "bg_color_right": null,
                    "bold": false,
                    "border_color": null,
                    "desc": null,
                    "discount_desc": null,
                    "hover_list": null,
                    "icon": "https://res.klook.com/image/upload/v1704279528/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_nonbreakfast_mobile_42x42_3x.png",
                    "id": "meal",
                    "max_line": null,
                    "name": "不含早餐",
                    "prefix": null,
                    "text_color": "#757575",
                    "time_left": null,
                    "type": 1
                  },
                  {
                    "bg_color": null,
                    "bg_color_left": null,
                    "bg_color_right": null,
                    "bold": null,
                    "border_color": null,
                    "desc": null,
                    "discount_desc": null,
                    "hover_list": null,
                    "icon": "https://res.klook.com/image/upload/v1704279529/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_nonrefundable_mobile_42x42_3x.png",
                    "id": "cancelPolicy",
                    "max_line": 2,
                    "name": "不可退款",
                    "prefix": null,
                    "text_color": "#757575",
                    "time_left": null,
                    "type": 1
                  }
                ],
                "rate_debug_info": null,
                "rate_icon": "",
                "rate_id": "238039087",
                "rate_infos": [
                  {
                    "bg_color": null,
                    "icon_src": null,
                    "id": null,
                    "line_color": null,
                    "text": "不可退款",
                    "text_color": "#757575",
                    "type": "hotel_manual_tag"
                  }
                ],
                "rate_name": "1张特大床",
                "rate_plan_type": [
                  "HotelOffer"
                ],
                "rate_token": "eyJkayI6IiIsInJhdGVDb2RlS2V5IjoiMTpmYWxzZXwyOmZhbHNlfDM6MTAxfDQ6MHw1OjB8NTAxMDgyMToiLCJyYXRlQ29kZUxpc3QiOltdLCJyayI6IjM3Y2FlMjQ4LWIzOGUtNDBkZi04MGNhLTQ2MGZhN2YwMjMzNSIsInJvb21JZCI6IjEyNDMzNzcxOTQyMjkzOTU0NjEiLCJydiI6IiIsInNlYXJjaFByb21vdGlvbiI6eyJmaWx0ZXJQcm9tb3Rpb25UeXBlU2V0IjpbIjIiXX0sInN1cHBsaWVyQWNjb3VudElkIjoiMTA0IiwidGFyZ2V0U3VwcGxpZXJJZFNldCI6WzFdLCJ0ayI6IiIsInRyYWNlSWQiOiIyYjRmNTY0OCIsInR2IjoiIn0",
                "rate_type": 1,
                "recommend_info": null,
                "report": {
                  "buried_raw_id": "690447a4-a363-4388-84c2-2e22ec579044",
                  "is_cc": false,
                  "is_req_cc": true,
                  "sde_type": [
                    "priceable"
                  ]
                },
                "reverse_filter_list": [],
                "sale_tip_desc": null,
                "secret_channel_rule_ids": null,
                "server_data": null,
                "source_rate_id": null,
                "special_offer": {
                  "content_list": [
                    {
                      "code": "5010821",
                      "desc": "Special Offer\n - Rate includes the following: \n·Accommodations as selected \n·4 soft drinks per day (2 cans of soda, 1 can of soda water, 1 bottle of orange juice) \nFull details at check-in. Restrictions may apply.",
                      "icon_url": "https://res.klook.com/image/upload/v1724312833/UED_new/Hotel/Hotel_Experiential_stay_booking_2408/icon_Special_offer_black_4x.png",
                      "icon_white": "https://res.klook.com/image/upload/v1724312833/UED_new/Hotel/Hotel_Experiential_stay_booking_2408/icon_Special_offer_white_4x.png",
                      "image_list": null,
                      "important": true,
                      "name": "特别优惠",
                      "order_priority": 999,
                      "tip": null,
                      "type": 2
                    }
                  ],
                  "icon_url": "https://res.klook.com/image/upload/v1639723551/UED%20Team%EF%BC%88for%20DE%20only%EF%BC%89/System%20Icon/Hotel/Public%20icon/icon_shopping_gift_fill_xs.png",
                  "is_package": null,
                  "name": "套餐优惠内容",
                  "package_img": null,
                  "package_name": null
                },
                "special_price_info": null,
                "stay_plus_list": null,
                "stay_plus_rate_id": null,
                "stock_tag": {
                  "bg_color": null,
                  "icon_src": null,
                  "id": null,
                  "line_color": null,
                  "text": "仅剩3间房了!",
                  "text_color": "#FF5B00",
                  "type": "hotel_manual_tag"
                },
                "supplier_account_id": "104",
                "supplier_id": 1,
                "tax_desc": "每晚房价含税",
                "tip": null,
                "two_level": null
              },
              {
                "base_content_list": [
                  {
                    "bold": true,
                    "color": "#00828A",
                    "content": "含早餐",
                    "hover_list": null,
                    "icon": "https://res.klook.com/image/upload/v1704279528/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_freebreakfast_mobile_42x42_3x.png",
                    "placeholder": null
                  },
                  {
                    "bold": null,
                    "color": "",
                    "content": "1张特大床",
                    "hover_list": null,
                    "icon": "https://res.klook.com/image/upload/v1639464805/UED%20Team%EF%BC%88for%20DE%20only%EF%BC%89/System%20Icon/Hotel/Rate%20Code/icon_furniture_appliancese_big_bed_xs.png",
                    "placeholder": null
                  },
                  {
                    "bold": null,
                    "color": null,
                    "content": "{0}此房间适合入住人数",
                    "hover_list": null,
                    "icon": "https://res.klook.com/image/upload/v1639464552/UED%20Team%EF%BC%88for%20DE%20only%EF%BC%89/System%20Icon/Hotel/Rate%20Code/icon_user_user_group_xs.png",
                    "placeholder": "客房可入住1名成人,"
                  }
                ],
                "channel_rule_ids": null,
                "combo_product": null,
                "combo_rate_count": null,
                "feature_tag_list": null,
                "feature_tags": null,
                "fencing_rule_ids": null,
                "filter_list": [
                  "breakfast",
                  "hotel_offer"
                ],
                "from_cache": false,
                "hide": null,
                "is_stay_plus": false,
                "one_level": null,
                "ori_rate_name": null,
                "package_id": null,
                "package_name": null,
                "parity_v2": null,
                "pay_later_desc": null,
                "per_night_sale_rate": 956.4,
                "policy_content_list": [
                  {
                    "color": null,
                    "content_list": null,
                    "description": "预订后立即确认订单",
                    "icon_url": "https://res.klook.com/image/upload/v1669804345/UED%20Team%EF%BC%88for%20DE%20only%EF%BC%89/System%20Icon/Hotel/Public%20icon/icon_feedback_success_fill_xs.png",
                    "style_type": null,
                    "title": "立即确认"
                  },
                  {
                    "color": null,
                    "content_list": null,
                    "description": "订单一经确认,则不可修改或取消",
                    "icon_url": null,
                    "style_type": null,
                    "title": "不可退款"
                  }
                ],
                "pricing": {
                  "check_in_info": null,
                  "currency_symbol": "¥",
                  "discount_type": "promotion",
                  "format_price": "956.4",
                  "has_stock": true,
                  "original_price_desc": null,
                  "price": "956.4",
                  "price_desc": "{format_price}起",
                  "price_info": {
                    "bg_color": null,
                    "border_color": null,
                    "icon": null,
                    "name": null,
                    "price_detail": {
                      "currency_symbol": "¥",
                      "desc": "入住1间房1晚",
                      "gift": null,
                      "pay_online": {
                        "per_night_price": null,
                        "per_night_price_desc": null,
                        "taxes_desc": "含税",
                        "title": "在线支付",
                        "total_price": "¥ 956.4",
                        "total_price_desc": "合计"
                      },
                      "price_items": [
                        {
                          "content": "¥ 831.7",
                          "content_color": null,
                          "item_list": null,
                          "title": "1间房 x 1晚",
                          "type": "pretax_price"
                        },
                        {
                          "content": "¥ 124.7",
                          "content_color": null,
                          "item_list": null,
                          "title": "税杂费",
                          "type": "taxes_and_fee"
                        }
                      ],
                      "title": "价格明细"
                    },
                    "text_color": null
                  },
                  "price_tag_list": [],
                  "price_tags": null,
                  "reward_desc": "赚Klook积分回馈(约¥2.8)",
                  "tax_desc": "每晚房价含税",
                  "tip": {
                    "bg_color": null,
                    "bg_color_left": null,
                    "bg_color_right": null,
                    "bold": null,
                    "border_color": null,
                    "desc": null,
                    "discount_desc": null,
                    "hover_list": null,
                    "icon": null,
                    "id": null,
                    "max_line": null,
                    "name": "仅剩3间房了!",
                    "prefix": null,
                    "text_color": "#FF5B00",
                    "time_left": null,
                    "type": 1
                  },
                  "total_price": "956.4"
                },
                "promotion_tag_list": null,
                "promotion_tags": null,
                "rate_code_infos": [
                  {
                    "code": "1张特大床",
                    "desc": "1张特大床",
                    "tip": null,
                    "type": 1
                  },
                  {
                    "code": "breakfast",
                    "desc": "含早餐",
                    "tip": null,
                    "type": 2
                  },
                  {
                    "code": "no_refundable",
                    "desc": "不可退款",
                    "tip": null,
                    "type": 3
                  },
                  {
                    "code": "1:true|2:false|3:101|4:0|5:0|5010821:",
                    "desc": "特别优惠",
                    "tip": null,
                    "type": 4
                  }
                ],
                "rate_contents": [
                  {
                    "bg_color": null,
                    "bg_color_left": null,
                    "bg_color_right": null,
                    "bold": false,
                    "border_color": null,
                    "desc": null,
                    "discount_desc": null,
                    "hover_list": null,
                    "icon": "https://res.klook.com/image/upload/v1704279528/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_freebreakfast_mobile_42x42_3x.png",
                    "id": "meal",
                    "max_line": null,
                    "name": "含早餐",
                    "prefix": null,
                    "text_color": "#00828A",
                    "time_left": null,
                    "type": 1
                  },
                  {
                    "bg_color": null,
                    "bg_color_left": null,
                    "bg_color_right": null,
                    "bold": null,
                    "border_color": null,
                    "desc": null,
                    "discount_desc": null,
                    "hover_list": null,
                    "icon": "https://res.klook.com/image/upload/v1704279529/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_nonrefundable_mobile_42x42_3x.png",
                    "id": "cancelPolicy",
                    "max_line": 2,
                    "name": "不可退款",
                    "prefix": null,
                    "text_color": "#757575",
                    "time_left": null,
                    "type": 1
                  }
                ],
                "rate_debug_info": null,
                "rate_icon": "",
                "rate_id": "389603629",
                "rate_infos": [
                  {
                    "bg_color": null,
                    "icon_src": null,
                    "id": null,
                    "line_color": null,
                    "text": "不可退款",
                    "text_color": "#757575",
                    "type": "hotel_manual_tag"
                  }
                ],
                "rate_name": "1张特大床",
                "rate_plan_type": [
                  "HotelOffer"
                ],
                "rate_token": "eyJkayI6IiIsInJhdGVDb2RlS2V5IjoiMTp0cnVlfDI6ZmFsc2V8MzoxMDF8NDowfDU6MHw1MDEwODIxOiIsInJhdGVDb2RlTGlzdCI6W10sInJrIjoiMTNlZTIzYjktMmU4Zi00ZGJhLTljZjEtM2U2N2UyNTdhZTllIiwicm9vbUlkIjoiMTI0MzM3NzE5NDIyOTM5NTQ2MSIsInJ2IjoiIiwic2VhcmNoUHJvbW90aW9uIjp7ImZpbHRlclByb21vdGlvblR5cGVTZXQiOlsiMiJdfSwic3VwcGxpZXJBY2NvdW50SWQiOiIxMDQiLCJ0YXJnZXRTdXBwbGllcklkU2V0IjpbMV0sInRrIjoiIiwidHJhY2VJZCI6IjJiNGY1NjQ4IiwidHYiOiIifQ",
                "rate_type": 1,
                "recommend_info": null,
                "report": {
                  "buried_raw_id": "690447a4-a363-4388-84c2-2e22ec579044",
                  "is_cc": false,
                  "is_req_cc": true,
                  "sde_type": [
                    "priceable"
                  ]
                },
                "reverse_filter_list": [],
                "sale_tip_desc": null,
                "secret_channel_rule_ids": null,
                "server_data": null,
                "source_rate_id": null,
                "special_offer": {
                  "content_list": [
                    {
                      "code": "5010821",
                      "desc": "Special Offer\n - Rate includes the following: \n·Accommodations as selected \n·4 soft drinks per day (2 cans of soda, 1 can of soda water, 1 bottle of orange juice) \nFull details at check-in. Restrictions may apply.",
                      "icon_url": "https://res.klook.com/image/upload/v1724312833/UED_new/Hotel/Hotel_Experiential_stay_booking_2408/icon_Special_offer_black_4x.png",
                      "icon_white": "https://res.klook.com/image/upload/v1724312833/UED_new/Hotel/Hotel_Experiential_stay_booking_2408/icon_Special_offer_white_4x.png",
                      "image_list": null,
                      "important": true,
                      "name": "特别优惠",
                      "order_priority": 999,
                      "tip": null,
                      "type": 2
                    }
                  ],
                  "icon_url": "https://res.klook.com/image/upload/v1639723551/UED%20Team%EF%BC%88for%20DE%20only%EF%BC%89/System%20Icon/Hotel/Public%20icon/icon_shopping_gift_fill_xs.png",
                  "is_package": null,
                  "name": "套餐优惠内容",
                  "package_img": null,
                  "package_name": null
                },
                "special_price_info": null,
                "stay_plus_list": null,
                "stay_plus_rate_id": null,
                "stock_tag": {
                  "bg_color": null,
                  "icon_src": null,
                  "id": null,
                  "line_color": null,
                  "text": "仅剩3间房了!",
                  "text_color": "#FF5B00",
                  "type": "hotel_manual_tag"
                },
                "supplier_account_id": "104",
                "supplier_id": 1,
                "tax_desc": "每晚房价含税",
                "tip": null,
                "two_level": null
              }
            ],
            "room_info": {
              "facility_list": [
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "禁止吸烟",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "水壶",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "电视",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "空调",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "冰箱",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "迷你吧",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "电话",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "洗漱用品",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "淋浴",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "电吹风",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "保险箱",
                  "stress": 0,
                  "value": null
                },
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278311/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_roomfacility_48x48_3x.png",
                  "name": "免费瓶装水",
                  "stress": 0,
                  "value": null
                }
              ],
              "popular_facility_list": [
                {
                  "icon_url": "https://res.klook.com/image/upload/v1704278058/UED_new/Hotel/Hotel_%E9%9C%80%E6%B1%82%E8%BF%AD%E4%BB%A32401/icon_square_mobile_48x48_3x.png",
                  "name": "36.0 m²",
                  "stress": null,
                  "value": null
                }
              ],
              "recommend_quantity": null,
              "room_desc": null,
              "room_id": "1243377194229395461",
              "room_image_count": 28,
              "room_image_list": [
                "https://i.travelapi.com/lodging/2000000/1170000/1167500/1167471/583be9d1_z.jpg",
                "https://res.klook.com/klook-hotel/image/upload/s2pix8/hotelImages/2004/59442491/70df2efa045145a16a256aa2e65a86f5.jpg",
                "https://res.klook.com/klook-hotel/image/upload/s2pix8/hotelImages/2004/-1/a244cd8f7d4871e0c9b82c576a242b9e.jpg",
                "https://i.travelapi.com/hotels/2000000/1170000/1167500/1167471/2c91e56a_z.jpg",
                "https://i.travelapi.com/hotels/2000000/1170000/1167500/1167471/416b4e67_z.jpg",
                "https://i.travelapi.com/hotels/2000000/1170000/1167500/1167471/bd929e6c_z.jpg",
                "https://i.travelapi.com/lodging/2000000/1170000/1167500/1167471/6b5122fb_z.jpg",
                "https://i.travelapi.com/lodging/2000000/1170000/1167500/1167471/81f6d602_z.jpg",
                "https://i.travelapi.com/lodging/2000000/1170000/1167500/1167471/93e19123_z.jpg",
                "https://i.travelapi.com/lodging/2000000/1170000/1167500/1167471/a425e7e2_z.jpg",
                "https://i.travelapi.com/lodging/2000000/1170000/1167500/1167471/c81f6ba8_z.jpg",
                "https://i.travelapi.com/lodging/2000000/1170000/1167500/1167471/085715b0_z.jpg",
                "https://i.travelapi.com/lodging/2000000/1170000/1167500/1167471/1a5c7c5d_z.jpg",
                "https://i.travelapi.com/lodging/2000000/1170000/1167500/1167471/22d94611_z.jpg",
                "https://i.travelapi.com/lodging/2000000/1170000/1167500/1167471/3d0f9856_z.jpg",
                "https://i.travelapi.com/lodging/2000000/1170000/1167500/1167471/583be9d1_z.jpg",
                "https://i.travelapi.com/lodging/2000000/1170000/1167500/1167471/ba7614e6_z.jpg",
                "https://i.travelapi.com/lodging/2000000/1170000/1167500/1167471/c2328941_z.jpg",
                "https://i.travelapi.com/lodging/2000000/1170000/1167500/1167471/dd20b6ce_z.jpg",
                "https://res.klook.com/klook-hotel/image/upload/s2pix8/hotelImages/2004/-1/b37abd58fbd1ece1467303efa1b94452.jpg",
                "https://q-xx.bstatic.com/xdata/images/hotel/840x460/556222871.jpg?k=47dbc479c0b9f4d6225dc1e0d71a6094d8283559124917a2c21fe71bf5c21ce7&o=",
                "https://q-xx.bstatic.com/xdata/images/hotel/840x460/556222850.jpg?k=bb2aa22d9f99a58d2ab62303e369d2b80cdb084d569c31ef22e230f36585b205&o=",
                "https://res.klook.com/klook-hotel/image/upload/s2pix8/hotelImages/2004/59442491/7b36a88eee8a40e41313bd8ac480e41e.jpg",
                "https://i.travelapi.com/lodging/2000000/1170000/1167500/1167471/c2328941_z.jpg",
                "https://i.travelapi.com/lodging/2000000/1170000/1167500/1167471/085715b0_z.jpg",
                "https://i.travelapi.com/lodging/2000000/1170000/1167500/1167471/12fe7050_z.jpg",
                "https://res.klook.com/klook-hotel/image/upload/s2pix8/property/2004/204475349/5e9de55e7e6bcb25e51d92de31d80ebb.jpeg",
                "https://i.travelapi.com/lodging/2000000/1170000/1167500/1167471/12fe7050_z.jpg"
              ],
              "room_image_text": null,
              "room_name": "豪华套房",
              "supplier_hotel_id": null,
              "supplier_id": null,
              "supplier_room_id": null
            }
          }
        ],
        "search_id": "27f11812-0871-4f90-aa03-fb9acab2982c",
        "section_title": "选择房型",
        "show_package_tab_priority": false,
        "stay_bundle_lowest": null,
        "stay_plus": null,
        "stay_plus_guide": null,
        "stay_plus_introduce": null,
        "view_type": 2,
        "_ddf": "fra",
        "format_check": "ok"
      },
      "error": "",
      "secache": "8fa85cb71f1e391bb82b853c25dbbffd",
      "secache_time": 1739848404,
      "secache_date": "2025-02-18 11:13:24",
      "reason": "",
      "error_code": "0000",
      "cache": 0,
      "api_info": "today: max:15000 all[=++];expires:2031-01-01",
      "execution_time": "1.592",
      "server_time": "Beijing/2025-02-18 11:13:24",
      "client_ip": "127.0.0.1",
      "call_args": {
        "num_iid": "249548"
      },
      "api_type": "klook",
      "server_memory": "4.2MB",
      "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": "klook",
        "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(微信同号)