万邦抖音获取抖音商品原数据 API 返回值说明

item_get_app-获取抖音商品原数据 [查看演示] API测试工具 注册开通

douyin.item_get_app(Ver:1.0.0-2.0)

  • douyin.item_get_app-1.0.0-1.0.html
  • douyin.item_get_app-1.0.0-2.0.html
  • douyin.item_get_app-1.0.0-3.0.html
  • douyin.item_get_app-1.0.0-4.0.html
  • douyin.item_get_app-1.0.0-5.0.html
  • douyin.item_get_app-1.0.0-6.0.html
  • douyin.item_get_app-1.0.0-6.1.html
  • douyin.item_get_app-1.0.0-6.2.html
  • 公共参数

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

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

    请求参数:num_iid=3514453298386183303

    参数说明:num_iid:抖音商品ID

    响应参数

    Version: Date:

    名称 类型 必须 示例值 描述
    item
    Mix 0 获得某音商品详情原数据
    请求示例
    	
    -- 请求示例 url 默认请求参数已经URL编码处理
    curl -i "https://api-gw.onebound.cn/douyin/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=3514453298386183303"
    
    <?php
    
    // 请求示例 url 默认请求参数已经URL编码处理
    // 本示例代码未加密secret参数明文传输,若要加密请参考:https://open.onebound.cn/help/demo/sdk/demo-sign.php
    $method = "GET";
    $url = "https://api-gw.onebound.cn/douyin/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=3514453298386183303";
    $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" =>"douyin",
    	                "api_name" =>"item_get_app",
    	                "api_params"=>array (
      'num_iid' => '3514453298386183303',
    )
                    )
                );
     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/douyin/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=3514453298386183303";
    		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/douyin/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=3514453298386183303";
    	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/douyin/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=3514453298386183303"
    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/douyin/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=3514453298386183303", 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/douyin/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&', {
      method: 'POST',
      headers: {
        'Content-Type': 'application/json'
      },
      body: JSON.stringify({"num_iid":"3514453298386183303"})// 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":"douyin",
         "api_name" : "item_get_app",
         "api_params": {"num_iid":"3514453298386183303"}//num_iid=3514453298386183303,#具体参数请参考文档说明
         },
         function(e){
            document.querySelector("#api_data_box").innerHTML=JSON.stringify(e)
         }
    );
    </script>
    require "net/http"
    require "uri"
    url = URI("https://api-gw.onebound.cn/douyin/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=3514453298386183303")
    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/douyin/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=3514453298386183303")!
    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/douyin/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=3514453298386183303"];
    
    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/douyin/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=3514453298386183303";
      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/douyin/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=3514453298386183303");
             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/douyin/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=3514453298386183303", (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/douyin/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=3514453298386183303")
        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/douyin/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=3514453298386183303")?;
        let mut content = String::new();
        resp.read_to_string(&mut content)?;
    
        println!("{}", content);
    
        Ok(())
    }
    
    
    library(httr)
    r <- GET("https://api-gw.onebound.cn/douyin/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=3514453298386183303")
    content(r)
    url = "https://api-gw.onebound.cn/douyin/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=3514453298386183303";
    response = webread(url);
    disp(response);
    
    响应示例
    {
        "item":{
            "chunk_index":0,
            "extra":{
                "fatal_item_ids":[
    
                ],
                "logid":"202401161035333F0740DFDF651666A045",
                "now":1705372533000
            },
            "fallback_page":{
                "icon":null,
                "show":false,
                "status":0,
                "text":""
            },
            "log_pb":{
                "impr_id":"202401161035333F0740DFDF651666A045"
            },
            "page_style":{
                "comment_page_tag_max":0,
                "confirm_order_short_url":null,
                "confirm_order_style":1,
                "detail_page_stats_show":true,
                "detail_page_tag_max":3,
                "detail_page_tag_show":false
            },
            "promotion_v3":{
                "actions":{
                    "after_render_actions":{
                        "type":"Group"
                    }
                },
                "bottom_button":{
                    "component_id":"id_bottom_button",
                    "is_hide":false,
                    "slice_type":"PdpVO",
                    "track":[
    
                    ],
                    "ui":{
                        "container_type":"native"
                    },
                    "version":1,
                    "vo":{
                        "display":{
                            "left_items":{
                                "button_list":[
                                    {
                                        "action":{
                                            "id":"action_enter_shop"
                                        },
                                        "button_type":1,
                                        "content":{
                                            "font_style":{
                                                "font_size":10,
                                                "font_weight":400,
                                                "line":1,
                                                "text_color":"#99161823"
                                            },
                                            "text":"进店"
                                        },
                                        "icon":{
                                            "round_corner":0,
                                            "url_model":{
                                                "height":22,
                                                "uri":"http://p26-detailpage.byteimg.com/tos-cn-i-ojoqa5bfdv/ic_store_outlined.png~tplv-ojoqa5bfdv-image.image",
                                                "url_list":[
                                                    "http://p26-detailpage.byteimg.com/tos-cn-i-ojoqa5bfdv/ic_store_outlined.png~tplv-ojoqa5bfdv-image.image"
                                                ],
                                                "width":22
                                            }
                                        }
                                    },
                                    {
                                        "action":{
                                            "check_params":"{\"check_login\":true}",
                                            "id":"action_im"
                                        },
                                        "button_type":1,
                                        "content":{
                                            "font_style":{
                                                "font_size":10,
                                                "font_weight":400,
                                                "line":1,
                                                "text_color":"#99161823"
                                            },
                                            "text":"客服"
                                        },
                                        "icon":{
                                            "url_model":{
                                                "height":22,
                                                "uri":"https://lf3-static.bytednsdoc.com/obj/eden-cn/jpw_uvlnpw/ljhwZthlaukjlkulzlp/pigeon_icon/new/good_detail.png",
                                                "url_list":[
                                                    "https://lf3-static.bytednsdoc.com/obj/eden-cn/jpw_uvlnpw/ljhwZthlaukjlkulzlp/pigeon_icon/new/good_detail.png"
                                                ],
                                                "width":22
                                            }
                                        }
                                    },
                                    {
                                        "action":{
                                            "check_params":"{\"check_login\":true}",
                                            "id":"action_enter_cart",
                                            "ref_id":"ref_cart"
                                        },
                                        "button_type":1,
                                        "content":{
                                            "font_style":{
                                                "font_size":10,
                                                "font_weight":400,
                                                "line":1,
                                                "text_color":"#99161823"
                                            },
                                            "text":"购物车"
                                        },
                                        "icon":{
                                            "native_model":{
                                                "height":22,
                                                "resource_name":"resource_bottom_cart_icon",
                                                "type":null,
                                                "width":22
                                            }
                                        }
                                    }
                                ],
                                "scrollable":false,
                                "space":22
                            },
                            "right_buttons":[
                                {
                                    "action":{
                                        "check_params":"{\"check_login\":true}",
                                        "id":"action_sku",
                                        "meta":"{\"is_add_to_cart\":true}"
                                    },
                                    "background":{
                                        "background_color":"#0DFE2C55",
                                        "radius":{
                                            "bottom_left":8,
                                            "top_left":8
                                        }
                                    },
                                    "click_mask_color":"#0D000000",
                                    "main_title":{
                                        "content":{
                                            "font_style":{
                                                "font_size":15,
                                                "font_weight":500,
                                                "line":1,
                                                "text_color":"#FFFF3B52"
                                            },
                                            "text":"加入购物车"
                                        }
                                    },
                                    "weight":0.5
                                },
                                {
                                    "action":{
                                        "check_params":"{\"check_login\":true}",
                                        "id":"action_sku",
                                        "meta":"{\"is_add_to_cart\":false,\"ultimate_buy_ab\":\"\"}"
                                    },
                                    "background":{
                                        "gradient":{
                                            "colors":[
                                                "#FFFF6275",
                                                "#FFFF1C49"
                                            ],
                                            "end_position":{
                                                "x":1,
                                                "y":1
                                            },
                                            "locations":[
                                                0,
                                                1
                                            ],
                                            "start_position":{
                                                "x":0,
                                                "y":0
                                            }
                                        },
                                        "radius":{
                                            "bottom_right":8,
                                            "top_right":8
                                        }
                                    },
                                    "main_title":{
                                        "content":{
                                            "font_style":{
                                                "font_size":15,
                                                "font_weight":500,
                                                "line":1,
                                                "text_color":"#FFFFFFFF"
                                            },
                                            "text":"立即购买"
                                        }
                                    },
                                    "weight":0.5
                                }
                            ],
                            "right_buttons_small_mode":[
    
                            ],
                            "supermarket":null
                        },
                        "meta":{
                            "add_cart":{
                                "add_cart_animation_style":2,
                                "add_cart_cover":"https://p6-item.ecombdimg.com/img/ecom-shop-material/htbHynrj_m_31ae65933e75bad51cab0b76b17a41ca_sx_919553_www807-807~tplv-5mmsx3fupr-resize_q:1080:1080:q90.webp",
                                "add_cart_success_schema":"sslocal://webcast_lynxview?add_safe_area_height=0&use_real_screen_height=1&url=https%3A%2F%2Flf-webcast-sourcecdn-tos.bytegecko.com%2Fobj%2Fbyte-gurd-source%2Fwebcast%2Fecom%2Flynx%2Fecom_goods_detail_popup_panels%2Fapp%2Ftemplate.js%3Fsub_title%3D%25E6%2589%2593%25E5%25BC%2580%25E6%258A%2596%25E9%259F%25B3%2B-%2B%25E5%2595%2586%25E5%259F%258E%2B-%2B%25E8%25B4%25AD%25E7%2589%25A9%25E8%25BD%25A6%26poster_url%3Dhttp%253A%252F%252Fp26-item.ecombdimg.com%252Ftos-cn-i-5mmsx3fupr%252Fe2ce98bbe98bce71aef50070b6708470.webp~tplv-5mmsx3fupr-origin-test.image%26title%3D%25E4%25B8%258B%25E6%25AC%25A1%25E5%258E%25BB%25E5%2593%25AA%25E9%2587%258C%25E6%2589%25BE%25E3%2580%258C%25E8%25B4%25AD%25E7%2589%25A9%25E8%25BD%25A6%25E3%2580%258D&height=406&type=popup&gravity=bottom&top_level=1&mask_alpha=0.8",
                                "add_cart_track_meta":{
                                    "page_name":"product_detail"
                                },
                                "display_add_to_cart":true,
                                "set_cart_gray":false
                            },
                            "buy":{
                                "cash_rebate":"0",
                                "find_same_goods_url":"",
                                "good_title":"【拍1发4】梵贞蘑菇头气垫bb霜粉底遮瑕保湿亮肤防水不脱妆持久",
                                "h5_url":"sslocal://webcast_lynxview?type=fullscreen&enable_font_scale=1&hide_nav_bar=1&status_bar_color=black&status_bar_bg_color=white&web_bg_color=%23ffffff&top_level=1&add_safe_area_height=0&enable_pad_adapter=1&screen_size_adaptation=1&android_soft_input_mode=48&trans_status_bar=1&disable_bounce=1&hide_back_button=1&hide_bar=1&bounce_disable=1&disable_bounces=1&hide_back_close=1&url=https%3A%2F%2Flf-webcast-sourcecdn-tos.bytegecko.com%2Fobj%2Fbyte-gurd-source%2F10181%2Fgecko%2Fresource%2Fecommerce_buynow_aweme%2Fapp%2Ftemplate.js&new_source_type=product_detail&shape=0&origin_id=99514375927_3445486507249553176&alkey=1128_99514375927_0_3445486507249553176_010&ec_order_prefetch=1&c_biz_combo=8&id=3445486507249553176&shop_id=htbHynrj&origin_type=3002002002&group_id=0&mega_object=%7B%22entrance_info%22%3A%22%22%7D&schema_log_id=202401161035333F0740DFDF651666A045&source_page=product_detail_page&eztf_sdk_extra=%7B%22schema_log_id%22%3A%22202401161035333F0740DFDF651666A045%22%2C%22is_side_car%22%3A%221%22%2C%22source_page%22%3A%22product_detail_page%22%2C%22sdk_version%22%3A%22v0_2_22%22%2C%22caller_psm%22%3A%22ecom.product.pack%22%7D&api_migration_gray=1",
                                "has_sec_activity":false,
                                "icon":"https://p6.ecombdimg.com/img/temai/full_return.png~tplv-5mmsx3fupr-image.png",
                                "is_auction_product":false,
                                "is_deposit_pre_sale_product":false,
                                "is_insurance_product":false,
                                "is_member_sample_product":false,
                                "is_scarce_buy_product":false,
                                "joined_coupon_ids":"",
                                "order_status":1,
                                "order_url":"sslocal://webcast_lynxview?type=fullscreen&enable_font_scale=1&hide_nav_bar=1&status_bar_color=black&status_bar_bg_color=white&web_bg_color=%23ffffff&top_level=1&add_safe_area_height=0&enable_pad_adapter=1&screen_size_adaptation=1&android_soft_input_mode=48&trans_status_bar=1&disable_bounce=1&hide_back_button=1&hide_bar=1&bounce_disable=1&disable_bounces=1&hide_back_close=1&url=https%3A%2F%2Flf-webcast-sourcecdn-tos.bytegecko.com%2Fobj%2Fbyte-gurd-source%2F10181%2Fgecko%2Fresource%2Fecommerce_buynow_aweme%2Fapp%2Ftemplate.js&new_source_type=product_detail&shape=0&origin_id=99514375927_3445486507249553176&alkey=1128_99514375927_0_3445486507249553176_010&ec_order_prefetch=1&c_biz_combo=8&id=3445486507249553176&shop_id=htbHynrj&origin_type=3002002002&group_id=0&mega_object=%7B%22entrance_info%22%3A%22%22%7D&schema_log_id=202401161035333F0740DFDF651666A045&source_page=product_detail_page&eztf_sdk_extra=%7B%22schema_log_id%22%3A%22202401161035333F0740DFDF651666A045%22%2C%22is_side_car%22%3A%221%22%2C%22source_page%22%3A%22product_detail_page%22%2C%22sdk_version%22%3A%22v0_2_22%22%2C%22caller_psm%22%3A%22ecom.product.pack%22%7D&api_migration_gray=1",
                                "package_sale":"0",
                                "product_min_price":4990,
                                "shop_cover":"https://p3-item.ecombdimg.com/img/temai/16019303739199457ee6feb446444b379de58b8532fda26573~tplv-5mmsx3fupr-resize:111:111.webp",
                                "shop_name":"小班供应链",
                                "small_app_url":"sslocal://microapp?version=v2&app_id=tt7cca0a77e3e0cd15&scene=027002&version_type=current&start_page=pages%2Fproduct-pay%2Fproduct-pay%3Falkey%3D1128_99514375927_0_3445486507249553176_010%26c_biz_combo%3D8%26disable_activity%3D0%26new_source_type%3Dproduct_detail%26origin_id%3D99514375927_3445486507249553176%26origin_type%3D3002002002%26product_id%3D3445486507249553176&bdp_log=%7B%22launch_from%22%3A%22others_homepage%22%2C%22location%22%3A%22store_entrance%22%7D&bdpsum=edeee65",
                                "use_native_buy":false
                            },
                            "enter_cart":{
                                "cart_url":"sslocal://webcast_webview?type=fullscreen&url=https%3A%2F%2Flf-webcast-sourcecdn-tos.bytegecko.com%2Fobj%2Fbyte-gurd-source%2F10181%2Fgecko%2Fresource%2Fecom_cart_yata_h5%2Fhtml%2Ffull-cart%2Findex.html%3Fnew_source_type%3Dproduct_detail%26ecom_scene_id%3D1003%26__pia_manifest__%3D%257B%2522worker%2522%253Atrue%252C%2522page_name%2522%253A%2522full-cart%2522%252C%2522public_path%2522%253A%2522https%253A%252F%252Flf-webcast-sourcecdn-tos.bytegecko.com%252Fobj%252Fbyte-gurd-source%252F10181%252Fgecko%252Fresource%252Fecom_cart_yata_h5%252F%2522%257D&use_wk_falcon=1&use_pia=1&hide_nav_bar=1&status_bar_color=black&trans_status_bar=1&web_bg_color=%23FFFFFF&top_level=1&disable_input_scroll=1&disable_host_jsb_method=1&disable_thread_spread=1&warmup_pia_worker=1&loader_name=forest&enable_pad_adapter=1",
                                "first_count":0,
                                "track_params":"{\"page_name\":\"product_detail\"}"
                            },
                            "enter_shop":{
                                "enter_shop_log":{
                                    "store_group_type":"video",
                                    "store_source_method":null,
                                    "store_source_page":null
                                },
                                "is_store":true,
                                "shop_schema":"sslocal://goods/store?sec_shop_id=htbHynrj&url_maker=shop_sdk&pass_through_api=%7B%22ecom_scene_id%22%3A%221003%22%7D&pre_product_id=3445486507249553176"
                            },
                            "im":{
                                "im_url":"aweme://ecomcs_im/chat?selfId=61017281380&store_id=&store_name=&shop_tag=&theOtherId=htbHynrj&fromSource=1&fromOrder=&fromGoods=3445486507249553176&extraParams=&entrance_info=&marketing_channel=&request_additions=%7B%22enter_from%22%3A%22store_page%22%2C%22sec_author_id%22%3A%22MS4wLjABAAAA2I9NdgAKZrz9e0tLm1csyDMNqLESPDm34TdYYqXe8-I%22%2C%22author_id%22%3A%2299514375927%22%7D&live_room_id=0&enter_from=store_page&promotion_id=3445486507249553176&meta_params=&author_id=99514375927&channel_id=0&channel_type=0&promotion_id=3445486507249553176&item_id=0&origin_id=99514375927_3445486507249553176&origin_type=3002002002&alkey=1128_99514375927_0_3445486507249553176_010&c_biz_combo=8&fromGoods=3445486507249553176"
                            },
                            "sku":{
                                "cash_rebate":"0",
                                "first_image":{
                                    "height":1080,
                                    "uri":"ecom-shop-material/htbHynrj_m_31ae65933e75bad51cab0b76b17a41ca_sx_919553_www807-807",
                                    "url_list":[
                                        "https://p6-item.ecombdimg.com/img/ecom-shop-material/htbHynrj_m_31ae65933e75bad51cab0b76b17a41ca_sx_919553_www807-807~tplv-5mmsx3fupr-resize_q:1080:1080:q90.webp",
                                        "https://p26-item.ecombdimg.com/img/ecom-shop-material/htbHynrj_m_31ae65933e75bad51cab0b76b17a41ca_sx_919553_www807-807~tplv-5mmsx3fupr-resize_q:1080:1080:q90.webp"
                                    ],
                                    "width":1080
                                },
                                "goods_type":"",
                                "h5_url":"sslocal://webcast_lynxview?type=fullscreen&enable_font_scale=1&hide_nav_bar=1&status_bar_color=black&status_bar_bg_color=white&web_bg_color=%23ffffff&top_level=1&add_safe_area_height=0&enable_pad_adapter=1&screen_size_adaptation=1&android_soft_input_mode=48&trans_status_bar=1&disable_bounce=1&hide_back_button=1&hide_bar=1&bounce_disable=1&disable_bounces=1&hide_back_close=1&url=https%3A%2F%2Flf-webcast-sourcecdn-tos.bytegecko.com%2Fobj%2Fbyte-gurd-source%2F10181%2Fgecko%2Fresource%2Fecommerce_buynow_aweme%2Fapp%2Ftemplate.js&new_source_type=product_detail&shape=0&origin_id=99514375927_3445486507249553176&alkey=1128_99514375927_0_3445486507249553176_010&ec_order_prefetch=1&c_biz_combo=8&id=3445486507249553176&shop_id=htbHynrj&origin_type=3002002002&group_id=0&mega_object=%7B%22entrance_info%22%3A%22%22%7D&schema_log_id=202401161035333F0740DFDF651666A045&source_page=product_detail_page&eztf_sdk_extra=%7B%22schema_log_id%22%3A%22202401161035333F0740DFDF651666A045%22%2C%22is_side_car%22%3A%221%22%2C%22source_page%22%3A%22product_detail_page%22%2C%22sdk_version%22%3A%22v0_2_22%22%2C%22caller_psm%22%3A%22ecom.product.pack%22%7D&api_migration_gray=1",
                                "has_sec_activity":false,
                                "order_url":"sslocal://webcast_lynxview?type=fullscreen&enable_font_scale=1&hide_nav_bar=1&status_bar_color=black&status_bar_bg_color=white&web_bg_color=%23ffffff&top_level=1&add_safe_area_height=0&enable_pad_adapter=1&screen_size_adaptation=1&android_soft_input_mode=48&trans_status_bar=1&disable_bounce=1&hide_back_button=1&hide_bar=1&bounce_disable=1&disable_bounces=1&hide_back_close=1&url=https%3A%2F%2Flf-webcast-sourcecdn-tos.bytegecko.com%2Fobj%2Fbyte-gurd-source%2F10181%2Fgecko%2Fresource%2Fecommerce_buynow_aweme%2Fapp%2Ftemplate.js&new_source_type=product_detail&shape=0&origin_id=99514375927_3445486507249553176&alkey=1128_99514375927_0_3445486507249553176_010&ec_order_prefetch=1&c_biz_combo=8&id=3445486507249553176&shop_id=htbHynrj&origin_type=3002002002&group_id=0&mega_object=%7B%22entrance_info%22%3A%22%22%7D&schema_log_id=202401161035333F0740DFDF651666A045&source_page=product_detail_page&eztf_sdk_extra=%7B%22schema_log_id%22%3A%22202401161035333F0740DFDF651666A045%22%2C%22is_side_car%22%3A%221%22%2C%22source_page%22%3A%22product_detail_page%22%2C%22sdk_version%22%3A%22v0_2_22%22%2C%22caller_psm%22%3A%22ecom.product.pack%22%7D&api_migration_gray=1",
                                "product_type_verified":true,
                                "scroll_to_dou_installment":false,
                                "set_cart_gray":false,
                                "track_meta":{
                                    "discount_count":0,
                                    "price_type":"",
                                    "store_id":0
                                },
                                "use_native_buy":false
                            }
                        }
                    }
                },
                "components":[
                    {
                        "slice_id":"BaseInfoMaskGroup",
                        "slice_type":"Group",
                        "slices":[
                            {
                                "data":[
    
                                ],
                                "slice_id":"BaseInfoMask",
                                "slice_type":"Template",
                                "template":{
                                    "name":"base_info_mask",
                                    "type":"gecko",
                                    "url":"https://lf-webcast-sourcecdn-tos.bytegecko.com/obj/byte-gurd-source/10181/gecko/resource/ecom_pdp_card_template/base_info_mask/main.json"
                                },
                                "view_type":"base_info_mask"
                            }
                        ],
                        "style":{
                            "margin":[
                                "-20",
                                "0",
                                "0",
                                "0"
                            ],
                            "radius":[
                                12,
                                12,
                                0,
                                0
                            ]
                        },
                        "view_type":"BaseInfoMaskGroup"
                    },
                    {
                        "is_split":false,
                        "slice_id":"BaseInfoGroup",
                        "slice_type":"Group",
                        "slices":[
                            {
                                "data":{
                                    "coupon":{
                                        "aria_label":"",
                                        "is_ios":false,
                                        "margin":[
                                            "0",
                                            "0",
                                            "1",
                                            "12"
                                        ],
                                        "max_child":2
                                    },
                                    "price_list":[
                                        {
                                            "align_items":"flex-end",
                                            "align_self":"center",
                                            "aria_label":"49.9元",
                                            "left_price":{
                                                "decimal":".9",
                                                "decimal_font_style":{
                                                    "font_color":"#FFFF3B52",
                                                    "font_size":19,
                                                    "font_weight":600,
                                                    "line_height":1.07,
                                                    "small_mode_font_size":15,
                                                    "small_mode_line_height":1.07
                                                },
                                                "integer":"49",
                                                "integer_font_style":{
                                                    "font_color":"#FFFF3B52",
                                                    "font_size":24,
                                                    "font_weight":600,
                                                    "line_height":1,
                                                    "small_mode_font_size":20,
                                                    "small_mode_line_height":1.1
                                                }
                                            },
                                            "margin":[
                                                "0",
                                                "0",
                                                "0",
                                                "0"
                                            ],
                                            "need_strike":false,
                                            "symbol":"¥",
                                            "symbol_font_style":{
                                                "font_color":"#FFFF3B52",
                                                "font_size":14,
                                                "font_weight":600,
                                                "line_height":1.2
                                            },
                                            "symbol_margin":[
                                                "0",
                                                "0",
                                                "0",
                                                "0"
                                            ]
                                        }
                                    ]
                                },
                                "slice_id":"BaseInfoPrice",
                                "slice_type":"Template",
                                "template":{
                                    "name":"std_price",
                                    "type":"gecko",
                                    "url":"https://lf-webcast-sourcecdn-tos.bytegecko.com/obj/byte-gurd-source/10181/gecko/resource/ecom_pdp_card_template/std_price/main.json"
                                },
                                "view_type":"std_price"
                            },
                            {
                                "data":{
                                    "dynamic_height":8,
                                    "dynamic_height_factory":1,
                                    "offset":1,
                                    "static_height":8
                                },
                                "slice_id":"BaseInfoOffset",
                                "slice_type":"Template",
                                "template":{
                                    "name":"std_space_x",
                                    "type":"gecko",
                                    "url":"https://lf-webcast-sourcecdn-tos.bytegecko.com/obj/byte-gurd-source/10181/gecko/resource/ecom_pdp_card_template/std_space_x/main.json"
                                },
                                "view_type":"std_space_x"
                            },
                            {
                                "data":{
                                    "right_find_same_display":false,
                                    "title":"【拍1发4】梵贞蘑菇头气垫bb霜粉底遮瑕保湿亮肤防水不脱妆持久",
                                    "title_find_same_long_tap_action":{
                                        "actions":[
                                            {
                                                "fields":{
                                                    "event_name":"pd_title_long_press"
                                                },
                                                "type":"tracker"
                                            },
                                            {
                                                "fields":{
                                                    "menu_items":[
                                                        {
                                                            "fields":{
                                                                "text":"【拍1发4】梵贞蘑菇头气垫bb霜粉底遮瑕保湿亮肤防水不脱妆持久"
                                                            },
                                                            "menu_params":{
                                                                "text":"复制"
                                                            },
                                                            "type":"copyText"
                                                        },
                                                        {
                                                            "fields":{
                                                                "btm_fields":{
                                                                    "btm_code":"a1.b8094.c25937.d259250"
                                                                },
                                                                "schema":"aweme://search?enter_from=search_product_detail&enter_group_id=3445486507249553176&enter_method=ecom_title_search&extra=%7B%22productId%22%3A%223445486507249553176%22%7D&hideMiddlePage=1&keyword=%E3%80%90%E6%8B%8D1%E5%8F%914%E3%80%91%E6%A2%B5%E8%B4%9E%E8%98%91%E8%8F%87%E5%A4%B4%E6%B0%94%E5%9E%ABbb%E9%9C%9C%E7%B2%89%E5%BA%95%E9%81%AE%E7%91%95%E4%BF%9D%E6%B9%BF%E4%BA%AE%E8%82%A4%E9%98%B2%E6%B0%B4%E4%B8%8D%E8%84%B1%E5%A6%86%E6%8C%81%E4%B9%85&needBack2Origin=1&previousPage=search_product_detail&search_entrance_style=ecom_title_search&search_from=ecom_title_search&search_style=commodity_center&should_keep_one_commodity_tab=0&transitionType=1"
                                                            },
                                                            "menu_params":{
                                                                "icon":"https://p26-detailpage.byteimg.com/tos-cn-i-ojoqa5bfdv/GoodsDetailPopoverArrow.png~tplv-ojoqa5bfdv-image.image",
                                                                "icon_height":12,
                                                                "icon_position":"right",
                                                                "icon_width":12,
                                                                "space":2,
                                                                "text":"找同款"
                                                            },
                                                            "type":"openSchema"
                                                        }
                                                    ]
                                                },
                                                "type":"PDPPopoverMask"
                                            },
                                            {
                                                "fields":{
                                                    "event_name":"pd_find_similar_entrance_show",
                                                    "params":{
                                                        "entrance_location":"title_press"
                                                    }
                                                },
                                                "type":"tracker"
                                            },
                                            {
                                                "fields":{
                                                    "event_name":"pd_copy_show"
                                                },
                                                "type":"tracker"
                                            }
                                        ],
                                        "type":"Group"
                                    }
                                },
                                "slice_id":"std_title",
                                "slice_type":"Template",
                                "template":{
                                    "name":"std_title",
                                    "type":"gecko",
                                    "url":"https://lf-webcast-sourcecdn-tos.bytegecko.com/obj/byte-gurd-source/10181/gecko/resource/ecom_pdp_card_template/std_title/main.json"
                                },
                                "view_type":"std_title"
                            },
                            {
                                "data":{
                                    "static_height":8
                                },
                                "slice_id":"std_space_x_base_info_group_1",
                                "slice_type":"Template",
                                "template":{
                                    "name":"std_space_x",
                                    "type":"gecko",
                                    "url":"https://lf-webcast-sourcecdn-tos.bytegecko.com/obj/byte-gurd-source/10181/gecko/resource/ecom_pdp_card_template/std_space_x/main.json"
                                },
                                "view_type":"std_space_x"
                            },
                            {
                                "data":{
                                    "click_action_list_1":[
                                        null
                                    ],
                                    "list_1":[
                                        {
                                            "text":"已售 1.8万"
                                        }
                                    ]
                                },
                                "show_action":{
                                    "type":"Group"
                                },
                                "slice_id":"std_endorsement",
                                "slice_type":"Template",
                                "template":{
                                    "name":"std_endorsement",
                                    "type":"gecko",
                                    "url":"https://lf-webcast-sourcecdn-tos.bytegecko.com/obj/byte-gurd-source/10181/gecko/resource/ecom_pdp_card_template/std_endorsement/main.json"
                                },
                                "view_type":"std_endorsement"
                            }
                        ],
                        "style":{
                            "bg_img":"https://p26-detailpage.byteimg.com/tos-cn-i-ojoqa5bfdv/d0442097d7fdfd5ba4d555486719b4c9.png~tplv-ojoqa5bfdv-image.image",
                            "margin":[
                                "-12",
                                "0",
                                "4",
                                "0"
                            ],
                            "padding":[
                                "12",
                                "12",
                                "0",
                                "12"
                            ],
                            "radius":[
                                14,
                                14,
                                0,
                                0
                            ]
                        },
                        "view_type":"BaseInfoGroup"
                    },
                    {
                        "config":{
                            "need_refresh":true
                        },
                        "is_split":true,
                        "slice_id":"serviceGroup",
                        "slice_type":"Group",
                        "slices":[
                            {
                                "data":{
                                    "aria_label":"保障7天无理由退货过敏包退极速退款",
                                    "content_items":[
                                        {
                                            "tag_code":"unsupport_7days_refund_after_opening",
                                            "tag_type":"service_tag",
                                            "text":"7天无理由退货"
                                        },
                                        {
                                            "tag_code":"allergy_refund",
                                            "tag_type":"service_tag",
                                            "text":"过敏包退"
                                        },
                                        {
                                            "tag_code":"quick_refund",
                                            "tag_type":"service_tag",
                                            "text":"极速退款"
                                        }
                                    ],
                                    "content_items_with_dot":[
                                        {
                                            "tag_type":"101070",
                                            "text":"7天无理由退货"
                                        },
                                        {
                                            "font_color":"#73161823",
                                            "text":"ㆍ"
                                        },
                                        {
                                            "tag_type":"30",
                                            "text":"过敏包退"
                                        },
                                        {
                                            "font_color":"#73161823",
                                            "text":"ㆍ"
                                        },
                                        {
                                            "tag_type":"5",
                                            "text":"极速退款"
                                        }
                                    ],
                                    "guarantee_tap_action":{
                                        "actions":[
                                            {
                                                "fields":{
                                                    "btm_fields":{
                                                        "btm_code":"a1.b8094.c0581.d5511"
                                                    },
                                                    "init_data":{
                                                        "data":{
                                                            "services":[
                                                                {
                                                                    "child_privileges":[
    
                                                                    ],
                                                                    "content":"满足相应条件(一次性包装未破损)时,消费者可申请7天无理由退货",
                                                                    "icon":"https://p6.ecombdimg.com/img/temai/full_return.png~tplv-5mmsx3fupr-image.png",
                                                                    "service_type":101070,
                                                                    "tag_code":"unsupport_7days_refund_after_opening",
                                                                    "title":"7天无理由退货"
                                                                },
                                                                {
                                                                    "child_privileges":[
    
                                                                    ],
                                                                    "content":"签收60天内,由于使用该商品出现过敏,在提供有效凭证的情况下,商家提供退款/退货处理",
                                                                    "hybrid_schema":"https://mix.jinritemai.com/h5/page/6990232212746535205?allowMediaAutoPlay=1&hide_system_video_poster=1",
                                                                    "icon":"https://p6.ecombdimg.com/img/temai/detail_allergy_insurance.png~tplv-5mmsx3fupr-image.png",
                                                                    "service_type":30,
                                                                    "tag_code":"allergy_refund",
                                                                    "title":"过敏包退",
                                                                    "url":"https://mix.jinritemai.com/h5/page/6990232212746535205?allowMediaAutoPlay=1&hide_system_video_poster=1"
                                                                },
                                                                {
                                                                    "child_privileges":[
    
                                                                    ],
                                                                    "content":"满足相应条件时,待发货状态下,提交退款申请将免审核立即退款",
                                                                    "icon":"https://p3.ecombdimg.com/img/eden-cn/nupfupebo/services/QuickRefund.png~tplv-5mmsx3fupr-image.png",
                                                                    "service_type":5,
                                                                    "tag_code":"quick_refund",
                                                                    "title":"极速退款"
                                                                },
                                                                {
                                                                    "child_privileges":[
    
                                                                    ],
                                                                    "content":"点击查看平台公示专区",
                                                                    "service_type":10,
                                                                    "tag":"public_zone",
                                                                    "tag_code":"platform_announcement",
                                                                    "title":"本商品享受上述商家服务",
                                                                    "url":"https://mix.jinritemai.com/falcon/mix_page/index.html?__live_platform__=webcast&allowMediaAutoPlay=1&enter_from=others&hide_nav_bar=1&hide_system_video_poster=1&id=7117178766052294949&origin_type=others&should_full_screen=1&trans_status_bar=1&ttwebview_extension_mixrender=1"
                                                                }
                                                            ]
                                                        },
                                                        "is_luban":false,
                                                        "log_data":"{\"avl_discount\":\"0\"}"
                                                    },
                                                    "url":"sslocal://webcast_lynxview?url=https%3A%2F%2Flf-webcast-sourcecdn-tos.bytegecko.com%2Fobj%2Fbyte-gurd-source%2Fwebcast%2Fecom%2Flynx%2Fecom_goods_detail_popup_panels%2Fservice_panel_v3%2Ftemplate.js&type=popup&gravity=bottom&top_level=1&add_safe_area_height=0&enable_pad_adapter=1&height_percent=73&mask_alpha=0.5&use_real_screen_height=1&screen_size_adaptation=1"
                                                },
                                                "type":"HybridDialog"
                                            },
                                            {
                                                "fields":{
                                                    "btm_id":"a1.b8094.c0581.d5511",
                                                    "enter_page":true
                                                },
                                                "type":"BtmEnterPage"
                                            },
                                            {
                                                "fields":{
                                                    "btm_id":"a1.b8094.c0581.d5511",
                                                    "event_name":"click_product_service",
                                                    "params":{
                                                        "service_type":"101070,30,5"
                                                    }
                                                },
                                                "type":"tracker"
                                            }
                                        ],
                                        "type":"Group"
                                    }
                                },
                                "show_action":{
                                    "actions":[
                                        {
                                            "fields":{
                                                "event_name":"show_product_service",
                                                "params":{
                                                    "service_type":"101070,30,5"
                                                }
                                            },
                                            "type":"tracker"
                                        }
                                    ],
                                    "type":"Group"
                                },
                                "slice_id":"std_guarantee",
                                "slice_type":"Template",
                                "template":{
                                    "name":"std_guarantee",
                                    "type":"gecko",
                                    "url":"https://lf-webcast-sourcecdn-tos.bytegecko.com/obj/byte-gurd-source/10181/gecko/resource/ecom_pdp_card_template/std_guarantee/main.json"
                                },
                                "view_type":"std_guarantee"
                            },
                            {
                                "data":{
                                    "divider":{
                                        "background_color":"#FFF6F7FB",
                                        "height":0.5
                                    },
                                    "static_height":32
                                },
                                "slice_id":"std_space_x_service_group_0",
                                "slice_type":"Template",
                                "template":{
                                    "name":"std_space_x",
                                    "type":"gecko",
                                    "url":"https://lf-webcast-sourcecdn-tos.bytegecko.com/obj/byte-gurd-source/10181/gecko/resource/ecom_pdp_card_template/std_space_x/main.json"
                                },
                                "view_type":"std_space_x"
                            },
                            {
                                "data":{
                                    "click_action":{
                                        "actions":[
                                            {
                                                "fields":{
                                                    "event_name":"click_product_sku"
                                                },
                                                "type":"tracker"
                                            },
                                            {
                                                "fields":{
                                                    "action_type":4,
                                                    "btm_fields":{
                                                        "btm_code":"a1.b8094.c0581.d65103"
                                                    },
                                                    "extra":{
                                                        "is_custombuying":false,
                                                        "is_groupbuying":false,
                                                        "sku_from":"spec"
                                                    },
                                                    "scene_type":102
                                                },
                                                "type":"Sku"
                                            }
                                        ],
                                        "type":"Group"
                                    },
                                    "hint":"共6种颜色",
                                    "spec_items":[
                                        {
                                            "spec_id":"1727206324462606",
                                            "spec_name":"梵贞蘑菇气垫自然色4盒"
                                        },
                                        {
                                            "spec_id":"1727206324462622",
                                            "spec_name":"梵贞蘑菇气垫象牙白4盒"
                                        },
                                        {
                                            "spec_id":"1727206324462638",
                                            "spec_name":"梵贞蘑菇气垫自然色2盒+象牙白2盒"
                                        },
                                        {
                                            "spec_id":"1727206324462654",
                                            "spec_name":"梵贞蘑菇气垫象牙白2盒+自然色2盒"
                                        },
                                        {
                                            "spec_id":"1727206324463630",
                                            "spec_name":"梵贞蘑菇气垫自然色3盒+象牙白1盒"
                                        },
                                        {
                                            "spec_id":"1727206324463646",
                                            "spec_name":"梵贞蘑菇气垫象牙白3盒+自然色1盒"
                                        }
                                    ]
                                },
                                "show_action":{
                                    "actions":[
                                        {
                                            "fields":{
                                                "event_name":"show_product_sku"
                                            },
                                            "type":"tracker"
                                        }
                                    ],
                                    "type":"Group"
                                },
                                "slice_id":"SkuSpecifications",
                                "slice_type":"Template",
                                "template":{
                                    "name":"std_sku_select",
                                    "type":"gecko",
                                    "url":"https://lf-webcast-sourcecdn-tos.bytegecko.com/obj/byte-gurd-source/10181/gecko/resource/ecom_pdp_card_template/std_sku_select/main.json"
                                },
                                "view_type":"std_sku_select"
                            },
                            {
                                "data":{
                                    "divider":{
                                        "background_color":"#FFF6F7FB",
                                        "height":0.5
                                    },
                                    "static_height":32
                                },
                                "slice_id":"std_space_x_service_group_1",
                                "slice_type":"Template",
                                "template":{
                                    "name":"std_space_x",
                                    "type":"gecko",
                                    "url":"https://lf-webcast-sourcecdn-tos.bytegecko.com/obj/byte-gurd-source/10181/gecko/resource/ecom_pdp_card_template/std_space_x/main.json"
                                },
                                "view_type":"std_space_x"
                            },
                            {
                                "data":{
                                    "click_action_list":[
                                        null,
                                        {
                                            "actions":[
                                                {
                                                    "fields":{
                                                        "schema":"sslocal://webcast_lynxview?add_safe_area_height=0&height_percent=60&top_level=1&mask_alpha=0.5&use_real_screen_height=1&url=https%3A%2F%2Flf-webcast-sourcecdn-tos.bytegecko.com%2Fobj%2Fbyte-gurd-source%2Fwebcast%2Fecom%2Flynx%2Fecom_goods_detail_popup_panels%2Flogistics_timeliness_popup%2Ftemplate.js%3Ftitle%3D%25E7%2589%25A9%25E6%25B5%2581%25E6%2597%25B6%25E6%2595%2588%25E8%25AF%25B4%25E6%2598%258E%26infos%3D%255B%257B%2522main_text%2522%253A%2522%25E9%25A2%2584%25E8%25AE%25A110%25E5%25B0%258F%25E6%2597%25B6%25E5%2586%2585%25E5%258F%2591%25E8%25B4%25A7%2522%252C%2522sub_text%2522%253A%2522%25E6%25A0%25B9%25E6%258D%25AE%25E8%25AF%25A5%25E5%2595%2586%25E5%2593%2581%25E8%25BF%25917%25E5%25A4%25A9%25E5%258F%2591%25E8%25B4%25A7%25E6%2583%2585%25E5%2586%25B5%25E6%258E%25A8%25E6%25B5%258B%25EF%25BC%258C%25E8%25AF%25A5%25E5%2595%2586%25E5%2593%2581%25E9%25A2%2584%25E8%25AE%25A110%25E5%25B0%258F%25E6%2597%25B6%25E5%2586%2585%25E5%25AE%258C%25E6%2588%2590%25E5%258F%2591%25E8%25B4%25A7%25EF%25BC%258C%25E5%2585%25B7%25E4%25BD%2593%25E4%25BB%25A5%25E5%2595%2586%25E5%25AE%25B6%25E5%25AE%259E%25E9%2599%2585%25E5%258F%2591%25E8%25B4%25A7%25E6%2597%25B6%25E9%2597%25B4%25E4%25B8%25BA%25E5%2587%2586%25E3%2580%2582%255Cn%25E8%25AE%25A2%25E5%258D%2595%25E6%2594%25AF%25E4%25BB%2598%25E6%2588%2590%25E5%258A%259F%25E5%2590%258E%25E8%258B%25A5%25E6%259C%25AA%25E5%259C%25A848%25E5%25B0%258F%25E6%2597%25B6%25E5%2586%2585%25E5%258F%2591%25E8%25B4%25A7%25EF%25BC%258C%25E6%25B6%2588%25E8%25B4%25B9%25E8%2580%2585%25E5%25B0%2586%25E5%25BE%2597%25E5%2588%25B0%25E8%25B5%2594%25E4%25BB%2598%25EF%25BC%2588%25E7%2589%25B9%25E6%25AE%258A%25E5%2595%2586%25E5%2593%2581%25E3%2580%2581%25E5%25A4%25A7%25E4%25BF%2583%25E6%25B4%25BB%25E5%258A%25A8%25E5%258F%258A%25E4%25B8%258D%25E5%258F%25AF%25E6%258A%2597%25E5%258A%259B%25E5%259B%25A0%25E7%25B4%25A0%25E9%2599%25A4%25E5%25A4%2596%25EF%25BC%2589%25E3%2580%2582%2522%257D%252C%257B%2522main_text%2522%253A%2522%25E6%2599%259A%25E5%258F%2591%25E5%258D%25B3%25E8%25B5%2594%2522%252C%2522sub_text%2522%253A%2522%25E8%258B%25A5%25E5%258F%2591%25E8%25B4%25A7%25E8%25B6%2585%25E6%2597%25B6%25E6%2588%2596%25E7%2589%25A9%25E6%25B5%2581%25E5%25BC%2582%25E5%25B8%25B8%25EF%25BC%258C%25E5%25B0%2586%25E4%25B8%25BA%25E4%25BD%25A0%25E8%25A1%25A5%25E8%25B4%25B4%25E8%2587%25B3%25E5%25B0%25913%25E5%2585%2583%25E6%2597%25A0%25E9%2597%25A8%25E6%25A7%259B%25E4%25BC%2598%25E6%2583%25A0%25E5%2588%25B8%25EF%25BC%2588%25E7%2589%25B9%25E6%25AE%258A%25E5%2595%2586%25E5%2593%2581%25E3%2580%2581%25E5%25A4%25A7%25E4%25BF%2583%25E6%25B4%25BB%25E5%258A%25A8%25E5%258F%258A%25E4%25B8%258D%25E5%258F%25AF%25E6%258A%2597%25E5%258A%259B%25E5%259B%25A0%25E7%25B4%25A0%25E9%2599%25A4%25E5%25A4%2596%25EF%25BC%2589%2522%257D%255D&type=popup&gravity=bottom"
                                                    },
                                                    "type":"openSchema"
                                                },
                                                {
                                                    "fields":{
                                                        "event_name":"click_logistics_module",
                                                        "params":{
                                                            "CurrentTime":"1705372533",
                                                            "DescTemplateId":"0",
                                                            "PageGroupId":"0",
                                                            "PostFeeText":"免运费",
                                                            "PredReceiptTime":"0",
                                                            "PredShipTime":"1705408533",
                                                            "ProductPredDesc":"预计10小时内",
                                                            "PromiseReceiptTime":"0",
                                                            "PromiseShipTime":"1705545333",
                                                            "SendFromText":"广东省广州市",
                                                            "ShipTimeType":"2",
                                                            "TagMap":"spot_goods",
                                                            "icon_name":"",
                                                            "information_richness":"1",
                                                            "is_compensated_late":"0",
                                                            "is_ill":"0",
                                                            "is_time":"0",
                                                            "shipping_city_code":"440100",
                                                            "shipping_city_name":"广州市",
                                                            "shipping_province_code":"440100",
                                                            "shipping_province_name":"广东省",
                                                            "tagCodes":"[\"\",\"delay_send_pay_money\"]",
                                                            "text_type":"48小时内"
                                                        }
                                                    },
                                                    "type":"tracker"
                                                }
                                            ],
                                            "type":"Group"
                                        }
                                    ],
                                    "line_list":[
                                        {
                                            "aria_label":null,
                                            "content":[
                                                {
                                                    "font_color":"#161823",
                                                    "text":"发货 广东省广州市"
                                                },
                                                {
                                                    "font_color":"#1F161823",
                                                    "text":"|"
                                                },
                                                {
                                                    "font_color":"#161823",
                                                    "text":"免运费"
                                                }
                                            ],
                                            "header":"物流"
                                        },
                                        {
                                            "aria_label":null,
                                            "content":[
                                                {
                                                    "font_color":"#161823",
                                                    "text":"预计10小时内发货"
                                                }
                                            ],
                                            "icon":[
    
                                            ]
                                        }
                                    ]
                                },
                                "show_action":{
                                    "actions":[
                                        {
                                            "fields":{
                                                "event_name":"show_logistics_module",
                                                "params":{
                                                    "CurrentTime":"1705372533",
                                                    "DescTemplateId":"0",
                                                    "PageGroupId":"0",
                                                    "PostFeeText":"免运费",
                                                    "PredReceiptTime":"0",
                                                    "PredShipTime":"1705408533",
                                                    "ProductPredDesc":"预计10小时内",
                                                    "PromiseReceiptTime":"0",
                                                    "PromiseShipTime":"1705545333",
                                                    "SendFromText":"广东省广州市",
                                                    "ShipTimeType":"2",
                                                    "TagMap":"spot_goods",
                                                    "icon_name":"",
                                                    "information_richness":"1",
                                                    "is_compensated_late":"0",
                                                    "is_ill":"0",
                                                    "is_time":"0",
                                                    "shipping_city_code":"440100",
                                                    "shipping_city_name":"广州市",
                                                    "shipping_province_code":"440100",
                                                    "shipping_province_name":"广东省",
                                                    "tagCodes":"[\"\",\"delay_send_pay_money\"]",
                                                    "text_type":"48小时内"
                                                }
                                            },
                                            "type":"tracker"
                                        }
                                    ],
                                    "type":"Group"
                                },
                                "slice_id":"std_logistics_v2",
                                "slice_type":"Template",
                                "template":{
                                    "name":"std_logistics_v2",
                                    "type":"gecko",
                                    "url":"https://lf-webcast-sourcecdn-tos.bytegecko.com/obj/byte-gurd-source/10181/gecko/resource/ecom_pdp_card_template/std_logistics_v2/main.json"
                                },
                                "view_type":"std_logistics_v2"
                            },
                            {
                                "data":{
                                    "divider":{
                                        "background_color":"#FFF6F7FB",
                                        "height":0.5
                                    },
                                    "static_height":32
                                },
                                "slice_id":"std_space_x_service_group_2",
                                "slice_type":"Template",
                                "template":{
                                    "name":"std_space_x",
                                    "type":"gecko",
                                    "url":"https://lf-webcast-sourcecdn-tos.bytegecko.com/obj/byte-gurd-source/10181/gecko/resource/ecom_pdp_card_template/std_space_x/main.json"
                                },
                                "view_type":"std_space_x"
                            },
                            {
                                "data":{
                                    "aria_label":"保质期适合肤质备案/批准文号生产企业地址注册人/备案人的名称产品名称产品色号产品净含量生产企业名称颜色质地生产许可证编号条形码使用方法产品执行的标准编号功效规格类型产地注册人/备案人的地址是否为特殊用途化妆品主成分",
                                    "click_action":{
                                        "actions":[
                                            {
                                                "fields":{
                                                    "btm_fields":[
    
                                                    ],
                                                    "init_data":{
                                                        "shopping_guide_attr":[
                                                            {
                                                                "tag_code":"保质期",
                                                                "tag_type":"pro_param",
                                                                "text":"保质期"
                                                            },
                                                            {
                                                                "tag_code":"适合肤质",
                                                                "tag_type":"pro_param",
                                                                "text":"适合肤质"
                                                            },
                                                            {
                                                                "tag_code":"备案/批准文号",
                                                                "tag_type":"pro_param",
                                                                "text":"备案/批准文号"
                                                            },
                                                            {
                                                                "tag_code":"生产企业地址",
                                                                "tag_type":"pro_param",
                                                                "text":"生产企业地址"
                                                            },
                                                            {
                                                                "tag_code":"注册人/备案人的名称",
                                                                "tag_type":"pro_param",
                                                                "text":"注册人/备案人的名称"
                                                            },
                                                            {
                                                                "tag_code":"产品名称",
                                                                "tag_type":"pro_param",
                                                                "text":"产品名称"
                                                            },
                                                            {
                                                                "tag_code":"产品色号",
                                                                "tag_type":"pro_param",
                                                                "text":"产品色号"
                                                            },
                                                            {
                                                                "tag_code":"产品净含量",
                                                                "tag_type":"pro_param",
                                                                "text":"产品净含量"
                                                            },
                                                            {
                                                                "tag_code":"生产企业名称",
                                                                "tag_type":"pro_param",
                                                                "text":"生产企业名称"
                                                            },
                                                            {
                                                                "tag_code":"颜色",
                                                                "tag_type":"pro_param",
                                                                "text":"颜色"
                                                            },
                                                            {
                                                                "tag_code":"质地",
                                                                "tag_type":"pro_param",
                                                                "text":"质地"
                                                            },
                                                            {
                                                                "tag_code":"生产许可证编号",
                                                                "tag_type":"pro_param",
                                                                "text":"生产许可证编号"
                                                            },
                                                            {
                                                                "tag_code":"条形码",
                                                                "tag_type":"pro_param",
                                                                "text":"条形码"
                                                            },
                                                            {
                                                                "tag_code":"使用方法",
                                                                "tag_type":"pro_param",
                                                                "text":"使用方法"
                                                            },
                                                            {
                                                                "tag_code":"产品执行的标准编号",
                                                                "tag_type":"pro_param",
                                                                "text":"产品执行的标准编号"
                                                            },
                                                            {
                                                                "tag_code":"功效",
                                                                "tag_type":"pro_param",
                                                                "text":"功效"
                                                            },
                                                            {
                                                                "tag_code":"规格类型",
                                                                "tag_type":"pro_param",
                                                                "text":"规格类型"
                                                            },
                                                            {
                                                                "tag_code":"产地",
                                                                "tag_type":"pro_param",
                                                                "text":"产地"
                                                            },
                                                            {
                                                                "tag_code":"注册人/备案人的地址",
                                                                "tag_type":"pro_param",
                                                                "text":"注册人/备案人的地址"
                                                            },
                                                            {
                                                                "tag_code":"是否为特殊用途化妆品",
                                                                "tag_type":"pro_param",
                                                                "text":"是否为特殊用途化妆品"
                                                            },
                                                            {
                                                                "tag_code":"主成分",
                                                                "tag_type":"pro_param",
                                                                "text":"主成分"
                                                            }
                                                        ]
                                                    },
                                                    "url":"sslocal://webcast_lynxview?type=popup&url=https%3A%2F%2Flf-webcast-sourcecdn-tos.bytegecko.com%2Fobj%2Fbyte-gurd-source%2F10181%2Fgecko%2Fresource%2Fecommerce_extensions_aweme%2Fextensions%2Fspecifications%2Ftemplate.js&gravity=bottom&height_percent=73&top_level=1&mask_alpha=0.56&add_safe_area_height=0&use_real_screen_height=1&feature_page_source=canshu&promotion_id=3445486507249553176&product_id=3445486507249553176"
                                                },
                                                "type":"HybridDialog"
                                            },
                                            {
                                                "fields":{
                                                    "event_name":"daogou_feature_click",
                                                    "params":{
                                                        "feature_type":"pro_param",
                                                        "name":"保质期,适合肤质,备案/批准文号,生产企业地址,注册人/备案人的名称,产品名称,产品色号,产品净含量,生产企业名称,颜色,质地,生产许可证编号,条形码,使用方法,产品执行的标准编号,功效,规格类型,产地,注册人/备案人的地址,是否为特殊用途化妆品,主成分"
                                                    }
                                                },
                                                "type":"tracker"
                                            }
                                        ],
                                        "type":"Group"
                                    },
                                    "content_list":[
                                        {
                                            "tag_code":"保质期",
                                            "tag_type":"pro_param",
                                            "text":"保质期"
                                        },
                                        {
                                            "tag_code":"适合肤质",
                                            "tag_type":"pro_param",
                                            "text":"适合肤质"
                                        },
                                        {
                                            "tag_code":"备案/批准文号",
                                            "tag_type":"pro_param",
                                            "text":"备案/批准文号"
                                        },
                                        {
                                            "tag_code":"生产企业地址",
                                            "tag_type":"pro_param",
                                            "text":"生产企业地址"
                                        },
                                        {
                                            "tag_code":"注册人/备案人的名称",
                                            "tag_type":"pro_param",
                                            "text":"注册人/备案人的名称"
                                        },
                                        {
                                            "tag_code":"产品名称",
                                            "tag_type":"pro_param",
                                            "text":"产品名称"
                                        },
                                        {
                                            "tag_code":"产品色号",
                                            "tag_type":"pro_param",
                                            "text":"产品色号"
                                        },
                                        {
                                            "tag_code":"产品净含量",
                                            "tag_type":"pro_param",
                                            "text":"产品净含量"
                                        },
                                        {
                                            "tag_code":"生产企业名称",
                                            "tag_type":"pro_param",
                                            "text":"生产企业名称"
                                        },
                                        {
                                            "tag_code":"颜色",
                                            "tag_type":"pro_param",
                                            "text":"颜色"
                                        },
                                        {
                                            "tag_code":"质地",
                                            "tag_type":"pro_param",
                                            "text":"质地"
                                        },
                                        {
                                            "tag_code":"生产许可证编号",
                                            "tag_type":"pro_param",
                                            "text":"生产许可证编号"
                                        },
                                        {
                                            "tag_code":"条形码",
                                            "tag_type":"pro_param",
                                            "text":"条形码"
                                        },
                                        {
                                            "tag_code":"使用方法",
                                            "tag_type":"pro_param",
                                            "text":"使用方法"
                                        },
                                        {
                                            "tag_code":"产品执行的标准编号",
                                            "tag_type":"pro_param",
                                            "text":"产品执行的标准编号"
                                        },
                                        {
                                            "tag_code":"功效",
                                            "tag_type":"pro_param",
                                            "text":"功效"
                                        },
                                        {
                                            "tag_code":"规格类型",
                                            "tag_type":"pro_param",
                                            "text":"规格类型"
                                        },
                                        {
                                            "tag_code":"产地",
                                            "tag_type":"pro_param",
                                            "text":"产地"
                                        },
                                        {
                                            "tag_code":"注册人/备案人的地址",
                                            "tag_type":"pro_param",
                                            "text":"注册人/备案人的地址"
                                        },
                                        {
                                            "tag_code":"是否为特殊用途化妆品",
                                            "tag_type":"pro_param",
                                            "text":"是否为特殊用途化妆品"
                                        },
                                        {
                                            "tag_code":"主成分",
                                            "tag_type":"pro_param",
                                            "text":"主成分"
                                        }
                                    ],
                                    "content_list_with_dot":[
                                        {
                                            "font_color":"#FF161823",
                                            "text":"保质期"
                                        },
                                        {
                                            "font_color":"#73161823",
                                            "text":"ㆍ"
                                        },
                                        {
                                            "font_color":"#FF161823",
                                            "text":"适合肤质"
                                        },
                                        {
                                            "font_color":"#73161823",
                                            "text":"ㆍ"
                                        },
                                        {
                                            "font_color":"#FF161823",
                                            "text":"备案/批准文号"
                                        },
                                        {
                                            "font_color":"#73161823",
                                            "text":"ㆍ"
                                        },
                                        {
                                            "font_color":"#FF161823",
                                            "text":"生产企业地址"
                                        },
                                        {
                                            "font_color":"#73161823",
                                            "text":"ㆍ"
                                        },
                                        {
                                            "font_color":"#FF161823",
                                            "text":"注册人/备案人的名称"
                                        },
                                        {
                                            "font_color":"#73161823",
                                            "text":"ㆍ"
                                        },
                                        {
                                            "font_color":"#FF161823",
                                            "text":"产品名称"
                                        },
                                        {
                                            "font_color":"#73161823",
                                            "text":"ㆍ"
                                        },
                                        {
                                            "font_color":"#FF161823",
                                            "text":"产品色号"
                                        },
                                        {
                                            "font_color":"#73161823",
                                            "text":"ㆍ"
                                        },
                                        {
                                            "font_color":"#FF161823",
                                            "text":"产品净含量"
                                        },
                                        {
                                            "font_color":"#73161823",
                                            "text":"ㆍ"
                                        },
                                        {
                                            "font_color":"#FF161823",
                                            "text":"生产企业名称"
                                        },
                                        {
                                            "font_color":"#73161823",
                                            "text":"ㆍ"
                                        },
                                        {
                                            "font_color":"#FF161823",
                                            "text":"颜色"
                                        },
                                        {
                                            "font_color":"#73161823",
                                            "text":"ㆍ"
                                        },
                                        {
                                            "font_color":"#FF161823",
                                            "text":"质地"
                                        },
                                        {
                                            "font_color":"#73161823",
                                            "text":"ㆍ"
                                        },
                                        {
                                            "font_color":"#FF161823",
                                            "text":"生产许可证编号"
                                        },
                                        {
                                            "font_color":"#73161823",
                                            "text":"ㆍ"
                                        },
                                        {
                                            "font_color":"#FF161823",
                                            "text":"条形码"
                                        },
                                        {
                                            "font_color":"#73161823",
                                            "text":"ㆍ"
                                        },
                                        {
                                            "font_color":"#FF161823",
                                            "text":"使用方法"
                                        },
                                        {
                                            "font_color":"#73161823",
                                            "text":"ㆍ"
                                        },
                                        {
                                            "font_color":"#FF161823",
                                            "text":"产品执行的标准编号"
                                        },
                                        {
                                            "font_color":"#73161823",
                                            "text":"ㆍ"
                                        },
                                        {
                                            "font_color":"#FF161823",
                                            "text":"功效"
                                        },
                                        {
                                            "font_color":"#73161823",
                                            "text":"ㆍ"
                                        },
                                        {
                                            "font_color":"#FF161823",
                                            "text":"规格类型"
                                        },
                                        {
                                            "font_color":"#73161823",
                                            "text":"ㆍ"
                                        },
                                        {
                                            "font_color":"#FF161823",
                                            "text":"产地"
                                        },
                                        {
                                            "font_color":"#73161823",
                                            "text":"ㆍ"
                                        },
                                        {
                                            "font_color":"#FF161823",
                                            "text":"注册人/备案人的地址"
                                        },
                                        {
                                            "font_color":"#73161823",
                                            "text":"ㆍ"
                                        },
                                        {
                                            "font_color":"#FF161823",
                                            "text":"是否为特殊用途化妆品"
                                        },
                                        {
                                            "font_color":"#73161823",
                                            "text":"ㆍ"
                                        },
                                        {
                                            "font_color":"#FF161823",
                                            "text":"主成分"
                                        }
                                    ],
                                    "header_text":"参数"
                                },
                                "show_action":{
                                    "actions":[
                                        {
                                            "fields":{
                                                "event_name":"daogou_feature_show",
                                                "params":{
                                                    "feature_type":"pro_param",
                                                    "name":"保质期,适合肤质,备案/批准文号,生产企业地址,注册人/备案人的名称,产品名称,产品色号,产品净含量,生产企业名称,颜色,质地,生产许可证编号,条形码,使用方法,产品执行的标准编号,功效,规格类型,产地,注册人/备案人的地址,是否为特殊用途化妆品,主成分"
                                                }
                                            },
                                            "type":"tracker"
                                        }
                                    ],
                                    "type":"Group"
                                },
                                "slice_id":"product_properties_v2",
                                "slice_type":"Template",
                                "template":{
                                    "name":"product_properties_v2",
                                    "type":"gecko",
                                    "url":"https://lf-webcast-sourcecdn-tos.bytegecko.com/obj/byte-gurd-source/10181/gecko/resource/ecom_pdp_card_template/product_properties_v2/main.json"
                                },
                                "view_type":"product_properties_v2"
                            }
                        ],
                        "style":{
                            "bg_color":"#FFFFFFFF",
                            "margin":[
                                "12",
                                "8",
                                "0",
                                "8"
                            ],
                            "padding":[
                                "16",
                                "12",
                                "16",
                                "12"
                            ],
                            "radius":[
                                12,
                                12,
                                12,
                                12
                            ]
                        },
                        "view_type":"serviceGroup"
                    },
                    {
                        "config":{
                            "ban_refresh":true,
                            "need_refresh":true
                        },
                        "is_split":true,
                        "slice_id":"pdp_ugc_group",
                        "slice_type":"Group",
                        "slices":[
                            {
                                "config":{
                                    "scroll_amount":40,
                                    "scroll_id":"id_comments"
                                },
                                "data":{
                                    "title_arrow":{
                                        "src":"https://p26-detailpage.byteimg.com/tos-cn-i-ojoqa5bfdv/%E7%AE%AD%E5%A4%B4icon%E7%81%B0%E8%89%B2.png~tplv-ojoqa5bfdv-image.image"
                                    },
                                    "title_before_icon_text":{
                                        "display":"none"
                                    },
                                    "title_click_action":{
                                        "actions":[
                                            {
                                                "fields":{
                                                    "btm_fields":{
                                                        "btm_code":"a1.b8094.c3710.d1831"
                                                    },
                                                    "extra_params":{
                                                        "top_comment_ids":"1288028751527117094,8506881413637882151"
                                                    },
                                                    "tag_info":{
                                                        "id":"1"
                                                    }
                                                },
                                                "type":"PDPJumpToProductCommentPage"
                                            },
                                            {
                                                "fields":{
                                                    "btm_id":"a1.b8094.c3710.d1831",
                                                    "event_name":"click_comment_card",
                                                    "params":{
                                                        "comment_entrance":"comment_detail",
                                                        "comment_module":"product_comment",
                                                        "comment_num":"844",
                                                        "key_word_num":6,
                                                        "positive_comment_ratio":"",
                                                        "with_same_comment":0
                                                    }
                                                },
                                                "type":"tracker"
                                            },
                                            {
                                                "fields":{
                                                    "page":"product_detail",
                                                    "post_action":"product_detail_click_comment",
                                                    "type":0
                                                },
                                                "type":"IESECUserTrackerServiceTrack"
                                            }
                                        ],
                                        "type":"Group"
                                    },
                                    "title_left_count":{
                                        "display":"flex"
                                    },
                                    "title_left_count_num":{
                                        "text":"844"
                                    },
                                    "title_left_text":{
                                        "text":"商品评价"
                                    },
                                    "title_show_action":{
                                        "actions":[
                                            {
                                                "fields":{
                                                    "event_name":"show_comment_card",
                                                    "id":"show_comment_card_product",
                                                    "params":{
                                                        "comment_entrance":"comment_detail",
                                                        "comment_module":"product_comment",
                                                        "comment_num":"844",
                                                        "key_word_num":6,
                                                        "positive_comment_ratio":"",
                                                        "with_same_comment":0
                                                    }
                                                },
                                                "type":"tracker"
                                            },
                                            {
                                                "fields":{
                                                    "event_name":"product_detail_ad",
                                                    "params":[
    
                                                    ]
                                                },
                                                "type":"tracker"
                                            }
                                        ],
                                        "type":"Group"
                                    }
                                },
                                "show_action":{
                                    "actions":[
                                        {
                                            "fields":{
                                                "event_name":"show_comment_card",
                                                "id":"show_comment_card_product",
                                                "params":{
                                                    "comment_entrance":"comment_detail",
                                                    "comment_module":"product_comment",
                                                    "comment_num":"844",
                                                    "key_word_num":6,
                                                    "positive_comment_ratio":"",
                                                    "with_same_comment":0
                                                }
                                            },
                                            "type":"tracker"
                                        },
                                        {
                                            "fields":{
                                                "event_name":"product_detail_ad",
                                                "params":[
    
                                                ]
                                            },
                                            "type":"tracker"
                                        }
                                    ],
                                    "type":"Group"
                                },
                                "slice_id":"ProductCommentTitle",
                                "slice_type":"Template",
                                "template":{
                                    "name":"general_title",
                                    "type":"gecko",
                                    "url":"https://lf-webcast-sourcecdn-tos.bytegecko.com/obj/byte-gurd-source/10181/gecko/resource/ecom_pdp_card_template/general_title/main.json"
                                },
                                "view_type":"general_title"
                            },
                            {
                                "data":{
                                    "tags":{
                                        "padding":[
                                            16,
                                            0,
                                            0,
                                            0
                                        ]
                                    },
                                    "tags_arr":[
                                        {
                                            "tag_bg_color":"#0DFE496A",
                                            "tag_click_action":{
                                                "actions":[
                                                    {
                                                        "fields":{
                                                            "btm_fields":{
                                                                "btm_code":"a1.b8094.c3710.d1831"
                                                            },
                                                            "extra_params":{
                                                                "top_comment_ids":"1288028751527117094,8506881413637882151"
                                                            },
                                                            "tag_info":{
                                                                "count_number":"88",
                                                                "id":"10001",
                                                                "sentiment":"1",
                                                                "tag_name":"回头客"
                                                            }
                                                        },
                                                        "type":"PDPJumpToProductCommentPage"
                                                    },
                                                    {
                                                        "fields":{
                                                            "event_name":"comment_key_word_click",
                                                            "params":{
                                                                "comment_module":"product_comment",
                                                                "comment_num":844,
                                                                "if_positive":"1",
                                                                "page_name":"product_detail",
                                                                "with_same_comment":0,
                                                                "word_name":"回头客",
                                                                "word_order":"0"
                                                            }
                                                        },
                                                        "type":"tracker"
                                                    },
                                                    {
                                                        "fields":{
                                                            "page":"product_detail",
                                                            "post_action":"product_detail_click_comment",
                                                            "type":0
                                                        },
                                                        "type":"IESECUserTrackerServiceTrack"
                                                    }
                                                ],
                                                "type":"Group"
                                            },
                                            "tag_count_margin":[
                                                0,
                                                0,
                                                0,
                                                5
                                            ],
                                            "tag_count_text":"88",
                                            "tag_icon_display":"none",
                                            "tag_justify_content":"",
                                            "tag_margin":[
                                                0
                                            ],
                                            "tag_show_action":{
                                                "actions":[
                                                    {
                                                        "fields":{
                                                            "event_name":"comment_key_word_show",
                                                            "once":"comment_key_word_showproduct_comment0",
                                                            "params":{
                                                                "comment_module":"product_comment",
                                                                "comment_num":844,
                                                                "if_positive":"1",
                                                                "page_name":"product_detail",
                                                                "user_comment_level":"15",
                                                                "with_same_comment":0,
                                                                "word_name":"回头客",
                                                                "word_order":"0"
                                                            }
                                                        },
                                                        "type":"tracker"
                                                    }
                                                ],
                                                "type":"Group"
                                            },
                                            "tag_title_margin":[
                                                0
                                            ],
                                            "tag_title_text":"回头客"
                                        },
                                        {
                                            "tag_bg_color":"#0DFE496A",
                                            "tag_click_action":{
                                                "actions":[
                                                    {
                                                        "fields":{
                                                            "btm_fields":{
                                                                "btm_code":"a1.b8094.c3710.d1831"
                                                            },
                                                            "extra_params":{
                                                                "top_comment_ids":"1288028751527117094,8506881413637882151"
                                                            },
                                                            "tag_info":{
                                                                "count_number":"66",
                                                                "id":"91",
                                                                "sentiment":"1",
                                                                "tag_name":"效果很好"
                                                            }
                                                        },
                                                        "type":"PDPJumpToProductCommentPage"
                                                    },
                                                    {
                                                        "fields":{
                                                            "event_name":"comment_key_word_click",
                                                            "params":{
                                                                "comment_module":"product_comment",
                                                                "comment_num":844,
                                                                "if_positive":"1",
                                                                "page_name":"product_detail",
                                                                "with_same_comment":0,
                                                                "word_name":"效果很好",
                                                                "word_order":"1"
                                                            }
                                                        },
                                                        "type":"tracker"
                                                    },
                                                    {
                                                        "fields":{
                                                            "page":"product_detail",
                                                            "post_action":"product_detail_click_comment",
                                                            "type":0
                                                        },
                                                        "type":"IESECUserTrackerServiceTrack"
                                                    }
                                                ],
                                                "type":"Group"
                                            },
                                            "tag_count_margin":[
                                                0,
                                                0,
                                                0,
                                                5
                                            ],
                                            "tag_count_text":"66",
                                            "tag_icon_display":"none",
                                            "tag_justify_content":"",
                                            "tag_margin":[
                                                0,
                                                0,
                                                0,
                                                8
                                            ],
                                            "tag_show_action":{
                                                "actions":[
                                                    {
                                                        "fields":{
                                                            "event_name":"comment_key_word_show",
                                                            "once":"comment_key_word_showproduct_comment1",
                                                            "params":{
                                                                "comment_module":"product_comment",
                                                                "comment_num":844,
                                                                "if_positive":"1",
                                                                "page_name":"product_detail",
                                                                "user_comment_level":"15",
                                                                "with_same_comment":0,
                                                                "word_name":"效果很好",
                                                                "word_order":"1"
                                                            }
                                                        },
                                                        "type":"tracker"
                                                    }
                                                ],
                                                "type":"Group"
                                            },
                                            "tag_title_margin":[
                                                0
                                            ],
                                            "tag_title_text":"效果很好"
                                        },
                                        {
                                            "tag_bg_color":"#0DFE496A",
                                            "tag_click_action":{
                                                "actions":[
                                                    {
                                                        "fields":{
                                                            "btm_fields":{
                                                                "btm_code":"a1.b8094.c3710.d1831"
                                                            },
                                                            "extra_params":{
                                                                "top_comment_ids":"1288028751527117094,8506881413637882151"
                                                            },
                                                            "tag_info":{
                                                                "count_number":"31",
                                                                "id":"23",
                                                                "sentiment":"1",
                                                                "tag_name":"很实用"
                                                            }
                                                        },
                                                        "type":"PDPJumpToProductCommentPage"
                                                    },
                                                    {
                                                        "fields":{
                                                            "event_name":"comment_key_word_click",
                                                            "params":{
                                                                "comment_module":"product_comment",
                                                                "comment_num":844,
                                                                "if_positive":"1",
                                                                "page_name":"product_detail",
                                                                "with_same_comment":0,
                                                                "word_name":"很实用",
                                                                "word_order":"2"
                                                            }
                                                        },
                                                        "type":"tracker"
                                                    },
                                                    {
                                                        "fields":{
                                                            "page":"product_detail",
                                                            "post_action":"product_detail_click_comment",
                                                            "type":0
                                                        },
                                                        "type":"IESECUserTrackerServiceTrack"
                                                    }
                                                ],
                                                "type":"Group"
                                            },
                                            "tag_count_margin":[
                                                0,
                                                0,
                                                0,
                                                5
                                            ],
                                            "tag_count_text":"31",
                                            "tag_icon_display":"none",
                                            "tag_justify_content":"",
                                            "tag_margin":[
                                                0,
                                                0,
                                                0,
                                                8
                                            ],
                                            "tag_show_action":{
                                                "actions":[
                                                    {
                                                        "fields":{
                                                            "event_name":"comment_key_word_show",
                                                            "once":"comment_key_word_showproduct_comment2",
                                                            "params":{
                                                                "comment_module":"product_comment",
                                                                "comment_num":844,
                                                                "if_positive":"1",
                                                                "page_name":"product_detail",
                                                                "user_comment_level":"15",
                                                                "with_same_comment":0,
                                                                "word_name":"很实用",
                                                                "word_order":"2"
                                                            }
                                                        },
                                                        "type":"tracker"
                                                    }
                                                ],
                                                "type":"Group"
                                            },
                                            "tag_title_margin":[
                                                0
                                            ],
                                            "tag_title_text":"很实用"
                                        },
                                        {
                                            "tag_bg_color":"#0DFE496A",
                                            "tag_click_action":{
                                                "actions":[
                                                    {
                                                        "fields":{
                                                            "btm_fields":{
                                                                "btm_code":"a1.b8094.c3710.d1831"
                                                            },
                                                            "extra_params":{
                                                                "top_comment_ids":"1288028751527117094,8506881413637882151"
                                                            },
                                                            "tag_info":{
                                                                "count_number":"23",
                                                                "id":"14",
                                                                "sentiment":"1",
                                                                "tag_name":"物美价廉"
                                                            }
                                                        },
                                                        "type":"PDPJumpToProductCommentPage"
                                                    },
                                                    {
                                                        "fields":{
                                                            "event_name":"comment_key_word_click",
                                                            "params":{
                                                                "comment_module":"product_comment",
                                                                "comment_num":844,
                                                                "if_positive":"1",
                                                                "page_name":"product_detail",
                                                                "with_same_comment":0,
                                                                "word_name":"物美价廉",
                                                                "word_order":"3"
                                                            }
                                                        },
                                                        "type":"tracker"
                                                    },
                                                    {
                                                        "fields":{
                                                            "page":"product_detail",
                                                            "post_action":"product_detail_click_comment",
                                                            "type":0
                                                        },
                                                        "type":"IESECUserTrackerServiceTrack"
                                                    }
                                                ],
                                                "type":"Group"
                                            },
                                            "tag_count_margin":[
                                                0,
                                                0,
                                                0,
                                                5
                                            ],
                                            "tag_count_text":"23",
                                            "tag_icon_display":"none",
                                            "tag_justify_content":"",
                                            "tag_margin":[
                                                0,
                                                0,
                                                0,
                                                8
                                            ],
                                            "tag_show_action":{
                                                "actions":[
                                                    {
                                                        "fields":{
                                                            "event_name":"comment_key_word_show",
                                                            "once":"comment_key_word_showproduct_comment3",
                                                            "params":{
                                                                "comment_module":"product_comment",
                                                                "comment_num":844,
                                                                "if_positive":"1",
                                                                "page_name":"product_detail",
                                                                "user_comment_level":"15",
                                                                "with_same_comment":0,
                                                                "word_name":"物美价廉",
                                                                "word_order":"3"
                                                            }
                                                        },
                                                        "type":"tracker"
                                                    }
                                                ],
                                                "type":"Group"
                                            },
                                            "tag_title_margin":[
                                                0
                                            ],
                                            "tag_title_text":"物美价廉"
                                        },
                                        {
                                            "tag_bg_color":"#0DFE496A",
                                            "tag_click_action":{
                                                "actions":[
                                                    {
                                                        "fields":{
                                                            "btm_fields":{
                                                                "btm_code":"a1.b8094.c3710.d1831"
                                                            },
                                                            "extra_params":{
                                                                "top_comment_ids":"1288028751527117094,8506881413637882151"
                                                            },
                                                            "tag_info":{
                                                                "count_number":"15",
                                                                "id":"12",
                                                                "sentiment":"1",
                                                                "tag_name":"推荐"
                                                            }
                                                        },
                                                        "type":"PDPJumpToProductCommentPage"
                                                    },
                                                    {
                                                        "fields":{
                                                            "event_name":"comment_key_word_click",
                                                            "params":{
                                                                "comment_module":"product_comment",
                                                                "comment_num":844,
                                                                "if_positive":"1",
                                                                "page_name":"product_detail",
                                                                "with_same_comment":0,
                                                                "word_name":"推荐",
                                                                "word_order":"4"
                                                            }
                                                        },
                                                        "type":"tracker"
                                                    },
                                                    {
                                                        "fields":{
                                                            "page":"product_detail",
                                                            "post_action":"product_detail_click_comment",
                                                            "type":0
                                                        },
                                                        "type":"IESECUserTrackerServiceTrack"
                                                    }
                                                ],
                                                "type":"Group"
                                            },
                                            "tag_count_margin":[
                                                0,
                                                0,
                                                0,
                                                5
                                            ],
                                            "tag_count_text":"15",
                                            "tag_icon_display":"none",
                                            "tag_justify_content":"",
                                            "tag_margin":[
                                                0,
                                                0,
                                                0,
                                                8
                                            ],
                                            "tag_show_action":{
                                                "actions":[
                                                    {
                                                        "fields":{
                                                            "event_name":"comment_key_word_show",
                                                            "once":"comment_key_word_showproduct_comment4",
                                                            "params":{
                                                                "comment_module":"product_comment",
                                                                "comment_num":844,
                                                                "if_positive":"1",
                                                                "page_name":"product_detail",
                                                                "user_comment_level":"15",
                                                                "with_same_comment":0,
                                                                "word_name":"推荐",
                                                                "word_order":"4"
                                                            }
                                                        },
                                                        "type":"tracker"
                                                    }
                                                ],
                                                "type":"Group"
                                            },
                                            "tag_title_margin":[
                                                0
                                            ],
                                            "tag_title_text":"推荐"
                                        },
                                        {
                                            "tag_bg_color":"#0DFE496A",
                                            "tag_click_action":{
                                                "actions":[
                                                    {
                                                        "fields":{
                                                            "btm_fields":{
                                                                "btm_code":"a1.b8094.c3710.d1831"
                                                            },
                                                            "extra_params":{
                                                                "top_comment_ids":"1288028751527117094,8506881413637882151"
                                                            },
                                                            "tag_info":{
                                                                "count_number":"13",
                                                                "id":"2",
                                                                "sentiment":"1",
                                                                "tag_name":"质量很好"
                                                            }
                                                        },
                                                        "type":"PDPJumpToProductCommentPage"
                                                    },
                                                    {
                                                        "fields":{
                                                            "event_name":"comment_key_word_click",
                                                            "params":{
                                                                "comment_module":"product_comment",
                                                                "comment_num":844,
                                                                "if_positive":"1",
                                                                "page_name":"product_detail",
                                                                "with_same_comment":0,
                                                                "word_name":"质量很好",
                                                                "word_order":"5"
                                                            }
                                                        },
                                                        "type":"tracker"
                                                    },
                                                    {
                                                        "fields":{
                                                            "page":"product_detail",
                                                            "post_action":"product_detail_click_comment",
                                                            "type":0
                                                        },
                                                        "type":"IESECUserTrackerServiceTrack"
                                                    }
                                                ],
                                                "type":"Group"
                                            },
                                            "tag_count_margin":[
                                                0,
                                                0,
                                                0,
                                                5
                                            ],
                                            "tag_count_text":"13",
                                            "tag_icon_display":"none",
                                            "tag_justify_content":"",
                                            "tag_margin":[
                                                0,
                                                0,
                                                0,
                                                8
                                            ],
                                            "tag_show_action":{
                                                "actions":[
                                                    {
                                                        "fields":{
                                                            "event_name":"comment_key_word_show",
                                                            "once":"comment_key_word_showproduct_comment5",
                                                            "params":{
                                                                "comment_module":"product_comment",
                                                                "comment_num":844,
                                                                "if_positive":"1",
                                                                "page_name":"product_detail",
                                                                "user_comment_level":"15",
                                                                "with_same_comment":0,
                                                                "word_name":"质量很好",
                                                                "word_order":"5"
                                                            }
                                                        },
                                                        "type":"tracker"
                                                    }
                                                ],
                                                "type":"Group"
                                            },
                                            "tag_title_margin":[
                                                0
                                            ],
                                            "tag_title_text":"质量很好"
                                        }
                                    ],
                                    "tags_show_action":{
                                        "type":"Group"
                                    }
                                },
                                "show_action":{
                                    "type":"Group"
                                },
                                "slice_id":"ProductCommentTags",
                                "slice_type":"Template",
                                "template":{
                                    "name":"ugc_tags_flex_width",
                                    "type":"gecko",
                                    "url":"https://lf-webcast-sourcecdn-tos.bytegecko.com/obj/byte-gurd-source/10181/gecko/resource/ecom_pdp_card_template/ugc_tags_flex_width/main.json"
                                },
                                "view_type":"ugc_tags_flex_width"
                            },
                            {
                                "data":{
                                    "comments":[
                                        {
                                            "comment":{
                                                "padding":[
                                                    16,
                                                    0,
                                                    0,
                                                    0
                                                ]
                                            },
                                            "comment_click_action":{
                                                "actions":[
                                                    {
                                                        "fields":{
                                                            "btm_fields":{
                                                                "btm_code":"a1.b8094.c3710.d1831"
                                                            },
                                                            "extra_params":{
                                                                "top_comment_ids":"1288028751527117094,8506881413637882151"
                                                            },
                                                            "tag_info":{
                                                                "id":"1"
                                                            }
                                                        },
                                                        "type":"PDPJumpToProductCommentPage"
                                                    },
                                                    {
                                                        "fields":{
                                                            "btm_id":"a1.b8094.c3710.d1831",
                                                            "event_name":"click_comment_card",
                                                            "params":{
                                                                "comment_entrance":"comment_region",
                                                                "comment_module":"product_comment",
                                                                "comment_num":844,
                                                                "key_word_num":6
                                                            }
                                                        },
                                                        "type":"tracker"
                                                    },
                                                    {
                                                        "fields":{
                                                            "event_name":"single_comment_click",
                                                            "id":"single_comment_click1288028751527117094",
                                                            "params":{
                                                                "click_area":"blank",
                                                                "comment_entrance":"comment_region",
                                                                "comment_id":1288028751527117094,
                                                                "comment_module":"product_comment",
                                                                "comment_rank":1,
                                                                "picture_num":3,
                                                                "show_selected_comment":1,
                                                                "sku_info":"梵贞蘑菇气垫自然色2盒+象牙白2盒",
                                                                "user_comment_level":"15",
                                                                "video_num":0
                                                            }
                                                        },
                                                        "type":"tracker"
                                                    }
                                                ],
                                                "type":"Group"
                                            },
                                            "comment_medias":{
                                                "margin":[
                                                    28,
                                                    0,
                                                    0,
                                                    16
                                                ],
                                                "padding":[
                                                    8,
                                                    0,
                                                    0,
                                                    0
                                                ]
                                            },
                                            "comment_medias_arr":[
                                                {
                                                    "media_click_action":{
                                                        "actions":[
                                                            {
                                                                "fields":{
                                                                    "comment_id":1288028751527117094,
                                                                    "comment_rank":15,
                                                                    "image_index":0,
                                                                    "image_url_array":[
                                                                        "https://p6-sign.douyinpic.com/douyin-user-image-file/548470f550c21a99fa37ba930a5c1f7c~tplv-shrink:3240:3240.webp?x-expires=1706018400&x-signature=%2FWNMKO%2BfuKzizI3ksjiBjE5CVw8%3D&from=3630503595",
                                                                        "https://p3-sign.douyinpic.com/douyin-user-image-file/00ecdbd534d3e6a27f8faf700abd0c4c~tplv-shrink:3240:3240.webp?x-expires=1706018400&x-signature=%2FFvz%2Bi59NdXnW0Rh0DruwAj0vU0%3D&from=3630503595",
                                                                        "https://p3-sign.douyinpic.com/douyin-user-image-file/f277ecf72d98196ca94794e3be73a1a1~tplv-shrink:3240:3240.webp?x-expires=1706018400&x-signature=enjhPrziDqYyKfPWj2jdV09ccDM%3D&from=3630503595"
                                                                    ],
                                                                    "media_type":"image",
                                                                    "show_selected_comment":false,
                                                                    "video":[
    
                                                                    ]
                                                                },
                                                                "type":"PDPOpenCommentItemPreview"
                                                            },
                                                            {
                                                                "fields":{
                                                                    "event_name":"comment_content_click",
                                                                    "params":{
                                                                        "comment_module":"product_comment",
                                                                        "comment_rank":15,
                                                                        "content_type":"picture",
                                                                        "page_name":"product_detail",
                                                                        "picture_num":3,
                                                                        "show_selected_comment":1,
                                                                        "user_comment_level":"15",
                                                                        "video_num":0
                                                                    }
                                                                },
                                                                "type":"tracker"
                                                            }
                                                        ],
                                                        "type":"Group"
                                                    },
                                                    "media_image_src":"https://p9-sign.douyinpic.com/douyin-user-image-file/548470f550c21a99fa37ba930a5c1f7c~tplv-shrink:507:507.webp?x-expires=1706018400&x-signature=zXY15679X1X5c4W4CFXIL60MWAI%3D&from=3630503595",
                                                    "media_margin":[
                                                        0
                                                    ],
                                                    "media_tag_display":"none",
                                                    "media_width":"32.5%"
                                                },
                                                {
                                                    "media_click_action":{
                                                        "actions":[
                                                            {
                                                                "fields":{
                                                                    "comment_id":1288028751527117094,
                                                                    "comment_rank":15,
                                                                    "image_index":1,
                                                                    "image_url_array":[
                                                                        "https://p6-sign.douyinpic.com/douyin-user-image-file/548470f550c21a99fa37ba930a5c1f7c~tplv-shrink:3240:3240.webp?x-expires=1706018400&x-signature=%2FWNMKO%2BfuKzizI3ksjiBjE5CVw8%3D&from=3630503595",
                                                                        "https://p3-sign.douyinpic.com/douyin-user-image-file/00ecdbd534d3e6a27f8faf700abd0c4c~tplv-shrink:3240:3240.webp?x-expires=1706018400&x-signature=%2FFvz%2Bi59NdXnW0Rh0DruwAj0vU0%3D&from=3630503595",
                                                                        "https://p3-sign.douyinpic.com/douyin-user-image-file/f277ecf72d98196ca94794e3be73a1a1~tplv-shrink:3240:3240.webp?x-expires=1706018400&x-signature=enjhPrziDqYyKfPWj2jdV09ccDM%3D&from=3630503595"
                                                                    ],
                                                                    "media_type":"image",
                                                                    "show_selected_comment":false,
                                                                    "video":[
    
                                                                    ]
                                                                },
                                                                "type":"PDPOpenCommentItemPreview"
                                                            },
                                                            {
                                                                "fields":{
                                                                    "event_name":"comment_content_click",
                                                                    "params":{
                                                                        "comment_module":"product_comment",
                                                                        "comment_rank":15,
                                                                        "content_type":"picture",
                                                                        "page_name":"product_detail",
                                                                        "picture_num":3,
                                                                        "show_selected_comment":1,
                                                                        "user_comment_level":"15",
                                                                        "video_num":0
                                                                    }
                                                                },
                                                                "type":"tracker"
                                                            }
                                                        ],
                                                        "type":"Group"
                                                    },
                                                    "media_image_src":"https://p26-sign.douyinpic.com/douyin-user-image-file/00ecdbd534d3e6a27f8faf700abd0c4c~tplv-shrink:507:507.webp?x-expires=1706018400&x-signature=YUa8HNtSowfBjnGxYgirZDcAiBM%3D&from=3630503595",
                                                    "media_margin":[
                                                        "0",
                                                        "0",
                                                        "0",
                                                        "1.2%"
                                                    ],
                                                    "media_tag_display":"none",
                                                    "media_width":"32.5%"
                                                },
                                                {
                                                    "media_click_action":{
                                                        "actions":[
                                                            {
                                                                "fields":{
                                                                    "comment_id":1288028751527117094,
                                                                    "comment_rank":15,
                                                                    "image_index":2,
                                                                    "image_url_array":[
                                                                        "https://p6-sign.douyinpic.com/douyin-user-image-file/548470f550c21a99fa37ba930a5c1f7c~tplv-shrink:3240:3240.webp?x-expires=1706018400&x-signature=%2FWNMKO%2BfuKzizI3ksjiBjE5CVw8%3D&from=3630503595",
                                                                        "https://p3-sign.douyinpic.com/douyin-user-image-file/00ecdbd534d3e6a27f8faf700abd0c4c~tplv-shrink:3240:3240.webp?x-expires=1706018400&x-signature=%2FFvz%2Bi59NdXnW0Rh0DruwAj0vU0%3D&from=3630503595",
                                                                        "https://p3-sign.douyinpic.com/douyin-user-image-file/f277ecf72d98196ca94794e3be73a1a1~tplv-shrink:3240:3240.webp?x-expires=1706018400&x-signature=enjhPrziDqYyKfPWj2jdV09ccDM%3D&from=3630503595"
                                                                    ],
                                                                    "media_type":"image",
                                                                    "show_selected_comment":false,
                                                                    "video":[
    
                                                                    ]
                                                                },
                                                                "type":"PDPOpenCommentItemPreview"
                                                            },
                                                            {
                                                                "fields":{
                                                                    "event_name":"comment_content_click",
                                                                    "params":{
                                                                        "comment_module":"product_comment",
                                                                        "comment_rank":15,
                                                                        "content_type":"picture",
                                                                        "page_name":"product_detail",
                                                                        "picture_num":3,
                                                                        "show_selected_comment":1,
                                                                        "user_comment_level":"15",
                                                                        "video_num":0
                                                                    }
                                                                },
                                                                "type":"tracker"
                                                            }
                                                        ],
                                                        "type":"Group"
                                                    },
                                                    "media_image_src":"https://p26-sign.douyinpic.com/douyin-user-image-file/f277ecf72d98196ca94794e3be73a1a1~tplv-shrink:507:507.webp?x-expires=1706018400&x-signature=xBfG75q9szJ1C4GE0%2F%2Br7SMxAaI%3D&from=3630503595",
                                                    "media_margin":[
                                                        "0",
                                                        "0",
                                                        "0",
                                                        "1.2%"
                                                    ],
                                                    "media_tag_display":"none",
                                                    "media_width":"32.5%"
                                                }
                                            ],
                                            "comment_show_action":{
                                                "actions":[
                                                    {
                                                        "fields":{
                                                            "event_name":"single_comment_show",
                                                            "id":"single_comment_show1288028751527117094",
                                                            "params":{
                                                                "comment_entrance":"comment_region",
                                                                "comment_id":1288028751527117094,
                                                                "comment_module":"product_comment",
                                                                "comment_rank":15,
                                                                "page_name":"product_detail",
                                                                "picture_num":3,
                                                                "show_selected_comment":1,
                                                                "sku_info":"梵贞蘑菇气垫自然色2盒+象牙白2盒",
                                                                "video_num":0,
                                                                "with_same_comment":0
                                                            }
                                                        },
                                                        "type":"tracker"
                                                    }
                                                ],
                                                "type":"Group"
                                            },
                                            "comment_sku_text":{
                                                "text":"梵贞蘑菇气垫自然色2盒+象牙白2盒"
                                            },
                                            "comment_text":{
                                                "text":"很好很好,非常满意,物美价廉,以后还会回购"
                                            },
                                            "comment_user_avatar":{
                                                "height":20,
                                                "radius":[
                                                    10
                                                ],
                                                "src":"https://p3.douyinpic.com/aweme/720x720/f7a8000e9395b05dfbe0.jpeg?from=4010531038",
                                                "width":20
                                            },
                                            "comment_user_name":{
                                                "font_color":"#73161823",
                                                "font_weight":400,
                                                "text":"₩**4"
                                            },
                                            "comment_user_tag":{
                                                "display":"none"
                                            },
                                            "comment_user_tag_icon1":{
                                                "display":"none"
                                            },
                                            "comment_user_tag_icon2":{
                                                "display":"none"
                                            },
                                            "comment_user_tag_icon3":{
                                                "display":"none"
                                            },
                                            "comment_user_tag_text":{
                                                "display":"none"
                                            }
                                        },
                                        {
                                            "comment":{
                                                "padding":[
                                                    16,
                                                    0,
                                                    0,
                                                    0
                                                ]
                                            },
                                            "comment_click_action":{
                                                "actions":[
                                                    {
                                                        "fields":{
                                                            "btm_fields":{
                                                                "btm_code":"a1.b8094.c3710.d1831"
                                                            },
                                                            "extra_params":{
                                                                "top_comment_ids":"1288028751527117094,8506881413637882151"
                                                            },
                                                            "tag_info":{
                                                                "id":"1"
                                                            }
                                                        },
                                                        "type":"PDPJumpToProductCommentPage"
                                                    },
                                                    {
                                                        "fields":{
                                                            "btm_id":"a1.b8094.c3710.d1831",
                                                            "event_name":"click_comment_card",
                                                            "params":{
                                                                "comment_entrance":"comment_region",
                                                                "comment_module":"product_comment",
                                                                "comment_num":844,
                                                                "key_word_num":6
                                                            }
                                                        },
                                                        "type":"tracker"
                                                    },
                                                    {
                                                        "fields":{
                                                            "event_name":"single_comment_click",
                                                            "id":"single_comment_click8506881413637882151",
                                                            "params":{
                                                                "click_area":"blank",
                                                                "comment_entrance":"comment_region",
                                                                "comment_id":8506881413637882151,
                                                                "comment_module":"product_comment",
                                                                "comment_rank":1,
                                                                "picture_num":3,
                                                                "show_selected_comment":1,
                                                                "sku_info":"梵贞蘑菇气垫象牙白4盒",
                                                                "user_comment_level":"15",
                                                                "video_num":0
                                                            }
                                                        },
                                                        "type":"tracker"
                                                    }
                                                ],
                                                "type":"Group"
                                            },
                                            "comment_medias":{
                                                "margin":[
                                                    28,
                                                    0,
                                                    0,
                                                    16
                                                ],
                                                "padding":[
                                                    8,
                                                    0,
                                                    0,
                                                    0
                                                ]
                                            },
                                            "comment_medias_arr":[
                                                {
                                                    "media_click_action":{
                                                        "actions":[
                                                            {
                                                                "fields":{
                                                                    "comment_id":8506881413637882151,
                                                                    "comment_rank":15,
                                                                    "image_index":0,
                                                                    "image_url_array":[
                                                                        "https://p3-sign.douyinpic.com/douyin-user-image-file/c3b3154881a3529fdb3e974360d221e3~tplv-shrink:3240:3240.webp?x-expires=1706018400&x-signature=XyuGzb6hIWpHnPH8ibuSJBR7Jvs%3D&from=3630503595",
                                                                        "https://p3-sign.douyinpic.com/douyin-user-image-file/6e3101103ce48beda530014465c3e5a3~tplv-shrink:3240:3240.webp?x-expires=1706018400&x-signature=4JEnWh1cg7ZM2l5KINknD05m97c%3D&from=3630503595",
                                                                        "https://p3-sign.douyinpic.com/douyin-user-image-file/8886f7bbeb08a9b32fef8328a6142946~tplv-shrink:3240:3240.webp?x-expires=1706018400&x-signature=%2Ffh6THI724WalcPTAp4YLx6IRRQ%3D&from=3630503595"
                                                                    ],
                                                                    "media_type":"image",
                                                                    "show_selected_comment":false,
                                                                    "video":[
    
                                                                    ]
                                                                },
                                                                "type":"PDPOpenCommentItemPreview"
                                                            },
                                                            {
                                                                "fields":{
                                                                    "event_name":"comment_content_click",
                                                                    "params":{
                                                                        "comment_module":"product_comment",
                                                                        "comment_rank":15,
                                                                        "content_type":"picture",
                                                                        "page_name":"product_detail",
                                                                        "picture_num":3,
                                                                        "show_selected_comment":1,
                                                                        "user_comment_level":"15",
                                                                        "video_num":0
                                                                    }
                                                                },
                                                                "type":"tracker"
                                                            }
                                                        ],
                                                        "type":"Group"
                                                    },
                                                    "media_image_src":"https://p6-sign.douyinpic.com/douyin-user-image-file/c3b3154881a3529fdb3e974360d221e3~tplv-shrink:507:507.webp?x-expires=1706018400&x-signature=ftfVOOD4Fa3ndXRQiIuiU8vMvO0%3D&from=3630503595",
                                                    "media_margin":[
                                                        0
                                                    ],
                                                    "media_tag_display":"none",
                                                    "media_width":"32.5%"
                                                },
                                                {
                                                    "media_click_action":{
                                                        "actions":[
                                                            {
                                                                "fields":{
                                                                    "comment_id":8506881413637882151,
                                                                    "comment_rank":15,
                                                                    "image_index":1,
                                                                    "image_url_array":[
                                                                        "https://p3-sign.douyinpic.com/douyin-user-image-file/c3b3154881a3529fdb3e974360d221e3~tplv-shrink:3240:3240.webp?x-expires=1706018400&x-signature=XyuGzb6hIWpHnPH8ibuSJBR7Jvs%3D&from=3630503595",
                                                                        "https://p3-sign.douyinpic.com/douyin-user-image-file/6e3101103ce48beda530014465c3e5a3~tplv-shrink:3240:3240.webp?x-expires=1706018400&x-signature=4JEnWh1cg7ZM2l5KINknD05m97c%3D&from=3630503595",
                                                                        "https://p3-sign.douyinpic.com/douyin-user-image-file/8886f7bbeb08a9b32fef8328a6142946~tplv-shrink:3240:3240.webp?x-expires=1706018400&x-signature=%2Ffh6THI724WalcPTAp4YLx6IRRQ%3D&from=3630503595"
                                                                    ],
                                                                    "media_type":"image",
                                                                    "show_selected_comment":false,
                                                                    "video":[
    
                                                                    ]
                                                                },
                                                                "type":"PDPOpenCommentItemPreview"
                                                            },
                                                            {
                                                                "fields":{
                                                                    "event_name":"comment_content_click",
                                                                    "params":{
                                                                        "comment_module":"product_comment",
                                                                        "comment_rank":15,
                                                                        "content_type":"picture",
                                                                        "page_name":"product_detail",
                                                                        "picture_num":3,
                                                                        "show_selected_comment":1,
                                                                        "user_comment_level":"15",
                                                                        "video_num":0
                                                                    }
                                                                },
                                                                "type":"tracker"
                                                            }
                                                        ],
                                                        "type":"Group"
                                                    },
                                                    "media_image_src":"https://p3-sign.douyinpic.com/douyin-user-image-file/6e3101103ce48beda530014465c3e5a3~tplv-shrink:507:507.webp?x-expires=1706018400&x-signature=I3CsgOZtbTxkyPnp4gl8vPlm%2Bso%3D&from=3630503595",
                                                    "media_margin":[
                                                        "0",
                                                        "0",
                                                        "0",
                                                        "1.2%"
                                                    ],
                                                    "media_tag_display":"none",
                                                    "media_width":"32.5%"
                                                },
                                                {
                                                    "media_click_action":{
                                                        "actions":[
                                                            {
                                                                "fields":{
                                                                    "comment_id":8506881413637882151,
                                                                    "comment_rank":15,
                                                                    "image_index":2,
                                                                    "image_url_array":[
                                                                        "https://p3-sign.douyinpic.com/douyin-user-image-file/c3b3154881a3529fdb3e974360d221e3~tplv-shrink:3240:3240.webp?x-expires=1706018400&x-signature=XyuGzb6hIWpHnPH8ibuSJBR7Jvs%3D&from=3630503595",
                                                                        "https://p3-sign.douyinpic.com/douyin-user-image-file/6e3101103ce48beda530014465c3e5a3~tplv-shrink:3240:3240.webp?x-expires=1706018400&x-signature=4JEnWh1cg7ZM2l5KINknD05m97c%3D&from=3630503595",
                                                                        "https://p3-sign.douyinpic.com/douyin-user-image-file/8886f7bbeb08a9b32fef8328a6142946~tplv-shrink:3240:3240.webp?x-expires=1706018400&x-signature=%2Ffh6THI724WalcPTAp4YLx6IRRQ%3D&from=3630503595"
                                                                    ],
                                                                    "media_type":"image",
                                                                    "show_selected_comment":false,
                                                                    "video":[
    
                                                                    ]
                                                                },
                                                                "type":"PDPOpenCommentItemPreview"
                                                            },
                                                            {
                                                                "fields":{
                                                                    "event_name":"comment_content_click",
                                                                    "params":{
                                                                        "comment_module":"product_comment",
                                                                        "comment_rank":15,
                                                                        "content_type":"picture",
                                                                        "page_name":"product_detail",
                                                                        "picture_num":3,
                                                                        "show_selected_comment":1,
                                                                        "user_comment_level":"15",
                                                                        "video_num":0
                                                                    }
                                                                },
                                                                "type":"tracker"
                                                            }
                                                        ],
                                                        "type":"Group"
                                                    },
                                                    "media_image_src":"https://p26-sign.douyinpic.com/douyin-user-image-file/8886f7bbeb08a9b32fef8328a6142946~tplv-shrink:507:507.webp?x-expires=1706018400&x-signature=rOf2Sgj3iGN9ppG9toEmlcGn8LU%3D&from=3630503595",
                                                    "media_margin":[
                                                        "0",
                                                        "0",
                                                        "0",
                                                        "1.2%"
                                                    ],
                                                    "media_tag_display":"none",
                                                    "media_width":"32.5%"
                                                }
                                            ],
                                            "comment_show_action":{
                                                "actions":[
                                                    {
                                                        "fields":{
                                                            "event_name":"single_comment_show",
                                                            "id":"single_comment_show8506881413637882151",
                                                            "params":{
                                                                "comment_entrance":"comment_region",
                                                                "comment_id":8506881413637882151,
                                                                "comment_module":"product_comment",
                                                                "comment_rank":15,
                                                                "page_name":"product_detail",
                                                                "picture_num":3,
                                                                "show_selected_comment":1,
                                                                "sku_info":"梵贞蘑菇气垫象牙白4盒",
                                                                "video_num":0,
                                                                "with_same_comment":0
                                                            }
                                                        },
                                                        "type":"tracker"
                                                    },
                                                    {
                                                        "fields":{
                                                            "event_name":"product_comment_tag_show",
                                                            "id":"product_comment_tag_show85068814136378821511",
                                                            "params":{
                                                                "comment_id":8506881413637882151,
                                                                "comment_module":"product_comment",
                                                                "comment_rank":15,
                                                                "page_name":"product_detail",
                                                                "tag_type":1
                                                            }
                                                        },
                                                        "type":"tracker"
                                                    }
                                                ],
                                                "type":"Group"
                                            },
                                            "comment_sku_text":{
                                                "text":"梵贞蘑菇气垫象牙白4盒"
                                            },
                                            "comment_text":{
                                                "text":"已经多次购买了,每次都是四盒,买来分给女儿妈妈我们一起用,一如既往的好,保湿效果也很好。"
                                            },
                                            "comment_user_avatar":{
                                                "height":20,
                                                "radius":[
                                                    10
                                                ],
                                                "src":"https://p11.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_14d0917851e8464daf18b7584b91f6a7.jpeg?from=4010531038",
                                                "width":20
                                            },
                                            "comment_user_name":{
                                                "font_color":"#73161823",
                                                "font_weight":400,
                                                "text":"a**p"
                                            },
                                            "comment_user_tag":{
                                                "display":"flex"
                                            },
                                            "comment_user_tag_icon1":{
                                                "display":"flex",
                                                "height":16,
                                                "src":"https://p26-detailpage.byteimg.com/tos-cn-i-ojoqa5bfdv/61d0c9630feceaae29c307e73a5fe631.png~tplv-ojoqa5bfdv-image.image",
                                                "width":38
                                            },
                                            "comment_user_tag_icon2":{
                                                "display":"none"
                                            },
                                            "comment_user_tag_icon3":{
                                                "display":"none"
                                            },
                                            "comment_user_tag_text":{
                                                "display":"none"
                                            }
                                        }
                                    ]
                                },
                                "show_action":{
                                    "actions":[
                                        {
                                            "actions":[
                                                {
                                                    "fields":{
                                                        "event_name":"single_comment_show",
                                                        "id":"single_comment_show1288028751527117094",
                                                        "params":{
                                                            "comment_entrance":"comment_region",
                                                            "comment_id":1288028751527117094,
                                                            "comment_module":"product_comment",
                                                            "comment_rank":15,
                                                            "page_name":"product_detail",
                                                            "picture_num":3,
                                                            "show_selected_comment":1,
                                                            "sku_info":"梵贞蘑菇气垫自然色2盒+象牙白2盒",
                                                            "video_num":0,
                                                            "with_same_comment":0
                                                        }
                                                    },
                                                    "type":"tracker"
                                                }
                                            ],
                                            "type":"Group"
                                        },
                                        {
                                            "actions":[
                                                {
                                                    "fields":{
                                                        "event_name":"single_comment_show",
                                                        "id":"single_comment_show8506881413637882151",
                                                        "params":{
                                                            "comment_entrance":"comment_region",
                                                            "comment_id":8506881413637882151,
                                                            "comment_module":"product_comment",
                                                            "comment_rank":15,
                                                            "page_name":"product_detail",
                                                            "picture_num":3,
                                                            "show_selected_comment":1,
                                                            "sku_info":"梵贞蘑菇气垫象牙白4盒",
                                                            "video_num":0,
                                                            "with_same_comment":0
                                                        }
                                                    },
                                                    "type":"tracker"
                                                },
                                                {
                                                    "fields":{
                                                        "event_name":"product_comment_tag_show",
                                                        "id":"product_comment_tag_show85068814136378821511",
                                                        "params":{
                                                            "comment_id":8506881413637882151,
                                                            "comment_module":"product_comment",
                                                            "comment_rank":15,
                                                            "page_name":"product_detail",
                                                            "tag_type":1
                                                        }
                                                    },
                                                    "type":"tracker"
                                                }
                                            ],
                                            "type":"Group"
                                        }
                                    ],
                                    "type":"Group"
                                },
                                "slice_id":"std_comment_content",
                                "slice_type":"Template",
                                "template":{
                                    "name":"std_comment_content_horizontal",
                                    "type":"gecko",
                                    "url":"https://lf-webcast-sourcecdn-tos.bytegecko.com/obj/byte-gurd-source/10181/gecko/resource/ecom_pdp_card_template/std_comment_content_horizontal/main.json"
                                },
                                "view_type":"std_comment_content_horizontal"
                            },
                            {
                                "data":{
                                    "divider":{
                                        "background_color":"#FFF6F7FB",
                                        "height":0.5
                                    },
                                    "static_height":32
                                },
                                "slice_id":"std_space_x_comment_group_0",
                                "slice_type":"Template",
                                "template":{
                                    "name":"std_space_x",
                                    "type":"gecko",
                                    "url":"https://lf-webcast-sourcecdn-tos.bytegecko.com/obj/byte-gurd-source/10181/gecko/resource/ecom_pdp_card_template/std_space_x/main.json"
                                },
                                "view_type":"std_space_x"
                            },
                            {
                                "data":{
                                    "title_arrow":{
                                        "src":"https://p26-item.ecombdimg.com/tos-cn-i-5mmsx3fupr/03017492f59911fc27b31bf6a42568ce.png~tplv-5mmsx3fupr-origin-png.png"
                                    },
                                    "title_before_icon_text":{
                                        "display":"none"
                                    },
                                    "title_click_action":{
                                        "actions":[
                                            {
                                                "fields":{
                                                    "extra_track_params":{
                                                        "comment_entrance":"product_detail",
                                                        "comment_module":"selected_comment"
                                                    },
                                                    "product_id":"3445486507249553176",
                                                    "title":"买家秀"
                                                },
                                                "type":"PDPJumpToBuyerShowWaterfallPage"
                                            },
                                            {
                                                "fields":{
                                                    "event_name":"click_comment_card",
                                                    "params":{
                                                        "comment_entrance":"comment_detail",
                                                        "comment_module":"selected_comment",
                                                        "comment_num":"844",
                                                        "key_word_num":0
                                                    }
                                                },
                                                "type":"tracker"
                                            }
                                        ],
                                        "type":"Group"
                                    },
                                    "title_left_count":{
                                        "display":"flex"
                                    },
                                    "title_left_count_num":{
                                        "text":"31"
                                    },
                                    "title_left_text":{
                                        "text":"买家秀"
                                    },
                                    "title_show_action":{
                                        "actions":[
                                            {
                                                "fields":{
                                                    "event_name":"show_comment_card",
                                                    "id":"show_comment_card_buyer",
                                                    "params":{
                                                        "comment_entrance":"comment_detail",
                                                        "comment_module":"selected_comment",
                                                        "comment_num":"844",
                                                        "key_word_num":0
                                                    }
                                                },
                                                "type":"tracker"
                                            }
                                        ],
                                        "type":"Group"
                                    }
                                },
                                "slice_id":"BuyerShowTitle",
                                "slice_type":"Template",
                                "template":{
                                    "name":"general_title",
                                    "type":"gecko",
                                    "url":"https://lf-webcast-sourcecdn-tos.bytegecko.com/obj/byte-gurd-source/10181/gecko/resource/ecom_pdp_card_template/general_title/main.json"
                                },
                                "view_type":"general_title"
                            },
                            {
                                "data":{
                                    "medias":{
                                        "padding":[
                                            16,
                                            0,
                                            0,
                                            0
                                        ]
                                    },
                                    "medias_arr":[
                                        {
                                            "media_click_action":{
                                                "actions":[
                                                    {
                                                        "fields":{
                                                            "schema":"sslocal://ec_comment_detail?product_id=3445486507249553176&comment_id=1288028751527117094&comment_cursor=0&comment_entrance=product_detail"
                                                        },
                                                        "type":"openSchema"
                                                    },
                                                    {
                                                        "fields":{
                                                            "event_name":"click_comment_card",
                                                            "params":{
                                                                "click_area":"pic",
                                                                "comment_entrance":"comment_region",
                                                                "comment_module":"selected_comment",
                                                                "comment_num":31,
                                                                "page_name":"product_detail"
                                                            }
                                                        },
                                                        "type":"tracker"
                                                    }
                                                ],
                                                "type":"Group"
                                            },
                                            "media_image_src":"https://p3-ecom-commentpic-sign.byteimg.com/douyin-user-image-file/548470f550c21a99fa37ba930a5c1f7c~tplv-fceoirpogb-re_cp:240:0:q100.jpeg?lk3s=e100c300&x-expires=1705977333&x-signature=u92TbWYwTz9Hc4BMEbtlR%2FS%2FEH0%3D",
                                            "media_margin":[
                                                0
                                            ],
                                            "media_tag_display":"none",
                                            "media_width":"24.1%"
                                        },
                                        {
                                            "media_click_action":{
                                                "actions":[
                                                    {
                                                        "fields":{
                                                            "schema":"sslocal://ec_comment_detail?product_id=3445486507249553176&comment_id=8506881413637882151&comment_cursor=1&comment_entrance=product_detail"
                                                        },
                                                        "type":"openSchema"
                                                    },
                                                    {
                                                        "fields":{
                                                            "event_name":"click_comment_card",
                                                            "params":{
                                                                "click_area":"pic",
                                                                "comment_entrance":"comment_region",
                                                                "comment_module":"selected_comment",
                                                                "comment_num":31,
                                                                "page_name":"product_detail"
                                                            }
                                                        },
                                                        "type":"tracker"
                                                    }
                                                ],
                                                "type":"Group"
                                            },
                                            "media_image_src":"https://p3-ecom-commentpic-sign.byteimg.com/douyin-user-image-file/c3b3154881a3529fdb3e974360d221e3~tplv-fceoirpogb-re_cp:240:0:q100.jpeg?lk3s=e100c300&x-expires=1705977333&x-signature=pSoqyLsKYsrshaaUovPKJTKMLlo%3D",
                                            "media_margin":[
                                                "0",
                                                "0",
                                                "0",
                                                "1.2%"
                                            ],
                                            "media_tag_display":"none",
                                            "media_width":"24.1%"
                                        },
                                        {
                                            "media_click_action":{
                                                "actions":[
                                                    {
                                                        "fields":{
                                                            "schema":"sslocal://ec_comment_detail?product_id=3445486507249553176&comment_id=3920345351491633423&comment_cursor=2&comment_entrance=product_detail"
                                                        },
                                                        "type":"openSchema"
                                                    },
                                                    {
                                                        "fields":{
                                                            "event_name":"click_comment_card",
                                                            "params":{
                                                                "click_area":"pic",
                                                                "comment_entrance":"comment_region",
                                                                "comment_module":"selected_comment",
                                                                "comment_num":31,
                                                                "page_name":"product_detail"
                                                            }
                                                        },
                                                        "type":"tracker"
                                                    }
                                                ],
                                                "type":"Group"
                                            },
                                            "media_image_src":"https://p9-ecom-commentpic-sign.byteimg.com/douyin-user-image-file/41bd379fb98f4ef5e89d2b2adfd4b9d1~tplv-fceoirpogb-re_cp:240:0:q100.jpeg?lk3s=e100c300&x-expires=1705977333&x-signature=ZsvBZPpA%2FkzMcXQh8A6k8%2FImjqo%3D",
                                            "media_margin":[
                                                "0",
                                                "0",
                                                "0",
                                                "1.2%"
                                            ],
                                            "media_tag_display":"none",
                                            "media_width":"24.1%"
                                        },
                                        {
                                            "media_click_action":{
                                                "actions":[
                                                    {
                                                        "fields":{
                                                            "schema":"sslocal://ec_comment_detail?product_id=3445486507249553176&comment_id=7201058249809019173&comment_cursor=3&comment_entrance=product_detail"
                                                        },
                                                        "type":"openSchema"
                                                    },
                                                    {
                                                        "fields":{
                                                            "event_name":"click_comment_card",
                                                            "params":{
                                                                "click_area":"pic",
                                                                "comment_entrance":"comment_region",
                                                                "comment_module":"selected_comment",
                                                                "comment_num":31,
                                                                "page_name":"product_detail"
                                                            }
                                                        },
                                                        "type":"tracker"
                                                    }
                                                ],
                                                "type":"Group"
                                            },
                                            "media_image_src":"https://p9-ecom-commentpic-sign.byteimg.com/douyin-user-image-file/096ec91d992c7f5cf5916b43e6138ecb~tplv-fceoirpogb-re_cp:240:0:q100.jpeg?lk3s=e100c300&x-expires=1705977333&x-signature=EEdnhZXE8FCT1zIEmS1MdNjPw%2FU%3D",
                                            "media_margin":[
                                                "0",
                                                "0",
                                                "0",
                                                "1.2%"
                                            ],
                                            "media_tag_display":"none",
                                            "media_width":"24.1%"
                                        },
                                        {
                                            "media_click_action":{
                                                "actions":[
                                                    {
                                                        "fields":{
                                                            "schema":"sslocal://ec_comment_detail?product_id=3445486507249553176&comment_id=1574244823274488091&comment_cursor=4&comment_entrance=product_detail"
                                                        },
                                                        "type":"openSchema"
                                                    },
                                                    {
                                                        "fields":{
                                                            "event_name":"click_comment_card",
                                                            "params":{
                                                                "click_area":"pic",
                                                                "comment_entrance":"comment_region",
                                                                "comment_module":"selected_comment",
                                                                "comment_num":31,
                                                                "page_name":"product_detail"
                                                            }
                                                        },
                                                        "type":"tracker"
                                                    }
                                                ],
                                                "type":"Group"
                                            },
                                            "media_image_src":"https://p3-ecom-commentpic-sign.byteimg.com/douyin-user-image-file/2b839b392041d4dcba25c7a52b89baef~tplv-fceoirpogb-re_cp:240:0:q100.jpeg?lk3s=e100c300&x-expires=1705977333&x-signature=zDS%2F4zxE%2BGPdBG7cwOf79KQF77Q%3D",
                                            "media_margin":[
                                                "0",
                                                "0",
                                                "0",
                                                "1.2%"
                                            ],
                                            "media_tag_display":"none",
                                            "media_width":"24.1%"
                                        }
                                    ],
                                    "medias_show_action":{
                                        "actions":[
                                            {
                                                "fields":{
                                                    "event_name":"single_comment_show",
                                                    "id":"single_comment_show0",
                                                    "once":"single_comment_show0",
                                                    "params":{
                                                        "comment_entrance":"comment_region",
                                                        "comment_id":1288028751527117094,
                                                        "comment_module":"selected_comment",
                                                        "comment_rank":1,
                                                        "page_name":"product_detail"
                                                    }
                                                },
                                                "type":"tracker"
                                            },
                                            {
                                                "fields":{
                                                    "event_name":"single_comment_show",
                                                    "id":"single_comment_show1",
                                                    "once":"single_comment_show1",
                                                    "params":{
                                                        "comment_entrance":"comment_region",
                                                        "comment_id":8506881413637882151,
                                                        "comment_module":"selected_comment",
                                                        "comment_rank":2,
                                                        "page_name":"product_detail"
                                                    }
                                                },
                                                "type":"tracker"
                                            },
                                            {
                                                "fields":{
                                                    "event_name":"single_comment_show",
                                                    "id":"single_comment_show2",
                                                    "once":"single_comment_show2",
                                                    "params":{
                                                        "comment_entrance":"comment_region",
                                                        "comment_id":3920345351491633423,
                                                        "comment_module":"selected_comment",
                                                        "comment_rank":3,
                                                        "page_name":"product_detail"
                                                    }
                                                },
                                                "type":"tracker"
                                            },
                                            {
                                                "fields":{
                                                    "event_name":"single_comment_show",
                                                    "id":"single_comment_show3",
                                                    "once":"single_comment_show3",
                                                    "params":{
                                                        "comment_entrance":"comment_region",
                                                        "comment_id":7201058249809019173,
                                                        "comment_module":"selected_comment",
                                                        "comment_rank":4,
                                                        "page_name":"product_detail"
                                                    }
                                                },
                                                "type":"tracker"
                                            },
                                            {
                                                "fields":{
                                                    "event_name":"single_comment_show",
                                                    "id":"single_comment_show4",
                                                    "once":"single_comment_show4",
                                                    "params":{
                                                        "comment_entrance":"comment_region",
                                                        "comment_id":1574244823274488091,
                                                        "comment_module":"selected_comment",
                                                        "comment_rank":5,
                                                        "page_name":"product_detail"
                                                    }
                                                },
                                                "type":"tracker"
                                            }
                                        ],
                                        "type":"Group"
                                    }
                                },
                                "show_action":{
                                    "actions":[
                                        {
                                            "fields":{
                                                "event_name":"single_comment_show",
                                                "id":"single_comment_show0",
                                                "once":"single_comment_show0",
                                                "params":{
                                                    "comment_entrance":"comment_region",
                                                    "comment_id":1288028751527117094,
                                                    "comment_module":"selected_comment",
                                                    "comment_rank":1,
                                                    "page_name":"product_detail"
                                                }
                                            },
                                            "type":"tracker"
                                        },
                                        {
                                            "fields":{
                                                "event_name":"single_comment_show",
                                                "id":"single_comment_show1",
                                                "once":"single_comment_show1",
                                                "params":{
                                                    "comment_entrance":"comment_region",
                                                    "comment_id":8506881413637882151,
                                                    "comment_module":"selected_comment",
                                                    "comment_rank":2,
                                                    "page_name":"product_detail"
                                                }
                                            },
                                            "type":"tracker"
                                        },
                                        {
                                            "fields":{
                                                "event_name":"single_comment_show",
                                                "id":"single_comment_show2",
                                                "once":"single_comment_show2",
                                                "params":{
                                                    "comment_entrance":"comment_region",
                                                    "comment_id":3920345351491633423,
                                                    "comment_module":"selected_comment",
                                                    "comment_rank":3,
                                                    "page_name":"product_detail"
                                                }
                                            },
                                            "type":"tracker"
                                        },
                                        {
                                            "fields":{
                                                "event_name":"single_comment_show",
                                                "id":"single_comment_show3",
                                                "once":"single_comment_show3",
                                                "params":{
                                                    "comment_entrance":"comment_region",
                                                    "comment_id":7201058249809019173,
                                                    "comment_module":"selected_comment",
                                                    "comment_rank":4,
                                                    "page_name":"product_detail"
                                                }
                                            },
                                            "type":"tracker"
                                        },
                                        {
                                            "fields":{
                                                "event_name":"single_comment_show",
                                                "id":"single_comment_show4",
                                                "once":"single_comment_show4",
                                                "params":{
                                                    "comment_entrance":"comment_region",
                                                    "comment_id":1574244823274488091,
                                                    "comment_module":"selected_comment",
                                                    "comment_rank":5,
                                                    "page_name":"product_detail"
                                                }
                                            },
                                            "type":"tracker"
                                        }
                                    ],
                                    "type":"Group"
                                },
                                "slice_id":"BuyerShowContent",
                                "slice_type":"Template",
                                "template":{
                                    "name":"general_medias",
                                    "type":"gecko",
                                    "url":"https://lf-webcast-sourcecdn-tos.bytegecko.com/obj/byte-gurd-source/10181/gecko/resource/ecom_pdp_card_template/general_medias/main.json"
                                },
                                "view_type":"general_medias"
                            }
                        ],
                        "style":{
                            "bg_color":"#FFFFFFFF",
                            "margin":[
                                "12",
                                "8",
                                "0",
                                "8"
                            ],
                            "padding":[
                                "16",
                                "12",
                                "16",
                                "12"
                            ],
                            "radius":[
                                12,
                                12,
                                12,
                                12
                            ]
                        },
                        "view_type":"ugc_group"
                    },
                    {
                        "config":{
                            "need_refresh":true
                        },
                        "is_split":true,
                        "slice_id":"pdp_shop_group",
                        "slice_type":"Group",
                        "slices":[
                            {
                                "data":{
                                    "basic":{
                                        "button":{
                                            "bg_color":"#FFFF3B52",
                                            "content":"进店",
                                            "font_color":"#FFFFFFFF",
                                            "font_size":13,
                                            "font_weight":500
                                        },
                                        "content_description":{
                                            "description":"小班供应链店铺口碑 4.60分|粉丝 2582"
                                        },
                                        "fans_and_sales":[
                                            {
                                                "content":"店铺口碑 4.60分",
                                                "font_color":"#57161823",
                                                "font_size":12,
                                                "font_weight":400
                                            },
                                            {
                                                "content":"|",
                                                "font_color":"#57161823",
                                                "font_size":12,
                                                "font_weight":400
                                            },
                                            {
                                                "content":"粉丝 2582",
                                                "font_color":"#57161823",
                                                "font_size":12,
                                                "font_weight":400
                                            }
                                        ],
                                        "reputation":{
                                            "icons":[
                                                {
                                                    "height":14,
                                                    "src":"https://lf3-static.bytednsdoc.com/obj/eden-cn/wvoz_j_tvjl/ljhwZthlaukjlkulzlp/xzg/3title.png",
                                                    "width":48
                                                },
                                                {
                                                    "height":8,
                                                    "src":"http://p26-detailpage.byteimg.com/tos-cn-i-ojoqa5bfdv/b4dbe89d4ba04f5d20fc5f8bdf136124.png~tplv-ojoqa5bfdv-image.image",
                                                    "width":4
                                                },
                                                {
                                                    "height":16,
                                                    "src":"https://lf3-static.bytednsdoc.com/obj/eden-cn/wvoz_j_tvjl/ljhwZthlaukjlkulzlp/icon_level_3_90.png",
                                                    "width":16
                                                },
                                                {
                                                    "height":16,
                                                    "src":"https://lf3-static.bytednsdoc.com/obj/eden-cn/wvoz_j_tvjl/ljhwZthlaukjlkulzlp/icon_level_3_90.png",
                                                    "width":16
                                                },
                                                {
                                                    "height":16,
                                                    "src":"https://lf3-static.bytednsdoc.com/obj/eden-cn/wvoz_j_tvjl/ljhwZthlaukjlkulzlp/icon_level_3_90.png",
                                                    "width":16
                                                },
                                                {
                                                    "height":16,
                                                    "src":"https://lf3-static.bytednsdoc.com/obj/eden-cn/wvoz_j_tvjl/ljhwZthlaukjlkulzlp/icon_level_3_90.png",
                                                    "width":16
                                                },
                                                {
                                                    "height":16,
                                                    "src":"https://lf3-static.bytednsdoc.com/obj/eden-cn/wvoz_j_tvjl/ljhwZthlaukjlkulzlp/xzg/gold_icon_1.png",
                                                    "width":16
                                                }
                                            ]
                                        },
                                        "shop_avatar":{
                                            "height":111,
                                            "src":"https://p3-item.ecombdimg.com/img/temai/16019303739199457ee6feb446444b379de58b8532fda26573~tplv-5mmsx3fupr-resize:111:111.webp",
                                            "width":111
                                        },
                                        "shop_name":{
                                            "content":"小班供应链",
                                            "font_color":"#FF161823",
                                            "font_size":16,
                                            "font_weight":500
                                        }
                                    },
                                    "click_reputation":{
                                        "actions":[
                                            {
                                                "fields":{
                                                    "btm_fields":[
    
                                                    ],
                                                    "url":"sslocal://webcast_webview?animation_type=present&enable_latch=1&gravity=bottom&height_percent=75&hide_nav_bar=1&hide_status_bar=0&is_from_live_indicator=0&mask_alpha=0.5&open_animate=0&radius=12&status_bar_color=black&top_level=1&trans_status_bar=1&type=popup&use_player_bottom_height=1&web_bg_color=%23ffffff&width_percent=100&up_full_screen=1&up_height_percent=75&up_offset_height=400&up_trans_status_bar=1&close_icon_position=-1&url=https%3A%2F%2Flf-webcast-sourcecdn-tos.bytegecko.com%2Fobj%2Fbyte-gurd-source%2F10181%2Fgecko%2Fresource%2Fecommerce_shop_detail_web%2Fxzg_rule.html%3Fsec_shop_id%3DhtbHynrj%26shop_id%3D9303912%26entrance_location%3D102"
                                                },
                                                "type":"HybridDialog"
                                            },
                                            {
                                                "fields":{
                                                    "event_name":"shop_level_info_explain_page_click",
                                                    "params":{
                                                        "entrance_location":"102",
                                                        "shop_id":"9303912",
                                                        "store_type":"shop"
                                                    }
                                                },
                                                "type":"tracker"
                                            }
                                        ],
                                        "type":"Group"
                                    },
                                    "click_store_list":[
                                        {
                                            "actions":[
                                                {
                                                    "fields":{
                                                        "btm_id":"a1.b8094.c4307.d3324",
                                                        "enter_page":true
                                                    },
                                                    "type":"BtmEnterPage"
                                                },
                                                {
                                                    "fields":{
                                                        "btm_fields":{
                                                            "btm_code":"a1.b8094.c4307.d3324"
                                                        },
                                                        "schema":"sslocal://goods/store?enter_store_page_params=%7B%22shop_id%22%3A%229303912%22%2C%22page_type%22%3A%22full_screen%22%2C%22enter_from%22%3A%22product_detail_card%22%2C%22entrance_location%22%3A%22product_detail_card%22%2C%22brand_verified%22%3A%220%22%2C%22commodity_id%22%3A%223445486507249553176%22%2C%22commodity_type%22%3A6%2C%22product_id%22%3A%223445486507249553176%22%7D&entrance_location=product_detail_card&pass_through_api=%7B%22ecom_scene_id%22%3A%221003%22%7D&pre_product_id=3445486507249553176&pre_room_id=&sec_shop_id=htbHynrj&source_product_id=3445486507249553176&store_group_type=video&store_source_method=%25%21s%28%3Cnil%3E%29&store_source_page=%25%21s%28%3Cnil%3E%29&url_maker=shop_sdk"
                                                    },
                                                    "type":"openSchema"
                                                },
                                                {
                                                    "fields":{
                                                        "btm_id":"a1.b8094.c4307.d3324",
                                                        "event_name":"click_store_entrance",
                                                        "params":{
                                                            "click_area":"101",
                                                            "enter_from":"product_detail_card",
                                                            "entrance_location":"product_detail_card",
                                                            "is_exist_follow":"0",
                                                            "is_new_product":"0",
                                                            "live_preview_style":"0",
                                                            "pre_product_id":"3445486507249553176",
                                                            "store_group_type":"video",
                                                            "store_type":"shop"
                                                        }
                                                    },
                                                    "type":"tracker"
                                                }
                                            ],
                                            "type":"Group"
                                        },
                                        {
                                            "actions":[
                                                {
                                                    "fields":{
                                                        "btm_id":"a1.b8094.c4307.d3324",
                                                        "enter_page":true
                                                    },
                                                    "type":"BtmEnterPage"
                                                },
                                                {
                                                    "fields":{
                                                        "btm_fields":{
                                                            "btm_code":"a1.b8094.c4307.d3324"
                                                        },
                                                        "schema":"sslocal://goods/store?enter_store_page_params=%7B%22product_id%22%3A%223445486507249553176%22%2C%22shop_id%22%3A%229303912%22%2C%22page_type%22%3A%22full_screen%22%2C%22enter_from%22%3A%22product_detail_card%22%2C%22entrance_location%22%3A%22product_detail_card%22%2C%22brand_verified%22%3A%220%22%2C%22commodity_id%22%3A%223445486507249553176%22%2C%22commodity_type%22%3A6%7D&entrance_location=product_detail_card&pass_through_api=%7B%22ecom_scene_id%22%3A%221003%22%7D&pre_product_id=3445486507249553176&pre_room_id=&sec_shop_id=htbHynrj&source_product_id=3445486507249553176&store_group_type=video&store_source_method=%25%21s%28%3Cnil%3E%29&store_source_page=%25%21s%28%3Cnil%3E%29&url_maker=shop_sdk"
                                                    },
                                                    "type":"openSchema"
                                                },
                                                {
                                                    "fields":{
                                                        "btm_id":"a1.b8094.c4307.d3324",
                                                        "event_name":"click_store_entrance",
                                                        "params":{
                                                            "click_area":"102",
                                                            "enter_from":"product_detail_card",
                                                            "entrance_location":"product_detail_card",
                                                            "is_exist_follow":"0",
                                                            "is_new_product":"0",
                                                            "live_preview_style":"0",
                                                            "pre_product_id":"3445486507249553176",
                                                            "store_group_type":"video",
                                                            "store_type":"shop"
                                                        }
                                                    },
                                                    "type":"tracker"
                                                }
                                            ],
                                            "type":"Group"
                                        },
                                        {
                                            "actions":[
                                                {
                                                    "fields":{
                                                        "btm_id":"a1.b8094.c4307.d3324",
                                                        "enter_page":true
                                                    },
                                                    "type":"BtmEnterPage"
                                                },
                                                {
                                                    "fields":{
                                                        "btm_fields":{
                                                            "btm_code":"a1.b8094.c4307.d3324"
                                                        },
                                                        "schema":"sslocal://goods/store?enter_store_page_params=%7B%22product_id%22%3A%223445486507249553176%22%2C%22shop_id%22%3A%229303912%22%2C%22page_type%22%3A%22full_screen%22%2C%22enter_from%22%3A%22product_detail_card%22%2C%22entrance_location%22%3A%22product_detail_card%22%2C%22brand_verified%22%3A%220%22%2C%22commodity_id%22%3A%223445486507249553176%22%2C%22commodity_type%22%3A6%7D&entrance_location=product_detail_card&pass_through_api=%7B%22ecom_scene_id%22%3A%221003%22%7D&pre_product_id=3445486507249553176&pre_room_id=&sec_shop_id=htbHynrj&source_product_id=3445486507249553176&store_group_type=video&store_source_method=%25%21s%28%3Cnil%3E%29&store_source_page=%25%21s%28%3Cnil%3E%29&url_maker=shop_sdk"
                                                    },
                                                    "type":"openSchema"
                                                },
                                                {
                                                    "fields":{
                                                        "btm_id":"a1.b8094.c4307.d3324",
                                                        "event_name":"click_store_entrance",
                                                        "params":{
                                                            "click_area":"104",
                                                            "enter_from":"product_detail_card",
                                                            "entrance_location":"product_detail_card",
                                                            "is_exist_follow":"0",
                                                            "is_new_product":"0",
                                                            "live_preview_style":"0",
                                                            "pre_product_id":"3445486507249553176",
                                                            "store_group_type":"video",
                                                            "store_type":"shop"
                                                        }
                                                    },
                                                    "type":"tracker"
                                                }
                                            ],
                                            "type":"Group"
                                        },
                                        {
                                            "actions":[
                                                {
                                                    "fields":{
                                                        "btm_id":"a1.b8094.c4307.d3324",
                                                        "enter_page":true
                                                    },
                                                    "type":"BtmEnterPage"
                                                },
                                                {
                                                    "fields":{
                                                        "btm_fields":{
                                                            "btm_code":"a1.b8094.c4307.d3324"
                                                        },
                                                        "schema":"sslocal://goods/store?enter_store_page_params=%7B%22product_id%22%3A%223445486507249553176%22%2C%22shop_id%22%3A%229303912%22%2C%22page_type%22%3A%22full_screen%22%2C%22enter_from%22%3A%22product_detail_card%22%2C%22entrance_location%22%3A%22product_detail_card%22%2C%22brand_verified%22%3A%220%22%2C%22commodity_id%22%3A%223445486507249553176%22%2C%22commodity_type%22%3A6%7D&entrance_location=product_detail_card&pass_through_api=%7B%22ecom_scene_id%22%3A%221003%22%7D&pre_product_id=3445486507249553176&pre_room_id=&sec_shop_id=htbHynrj&source_product_id=3445486507249553176&store_group_type=video&store_source_method=%25%21s%28%3Cnil%3E%29&store_source_page=%25%21s%28%3Cnil%3E%29&url_maker=shop_sdk"
                                                    },
                                                    "type":"openSchema"
                                                },
                                                {
                                                    "fields":{
                                                        "btm_id":"a1.b8094.c4307.d3324",
                                                        "event_name":"click_store_entrance",
                                                        "params":{
                                                            "click_area":"103",
                                                            "enter_from":"product_detail_card",
                                                            "entrance_location":"product_detail_card",
                                                            "is_exist_follow":"0",
                                                            "is_new_product":"0",
                                                            "live_preview_style":"0",
                                                            "pre_product_id":"3445486507249553176",
                                                            "store_group_type":"video",
                                                            "store_type":"shop"
                                                        }
                                                    },
                                                    "type":"tracker"
                                                }
                                            ],
                                            "type":"Group"
                                        }
                                    ],
                                    "live_info":{
                                        "room_id":"0"
                                    },
                                    "show_reputation":true
                                },
                                "show_action":{
                                    "actions":[
                                        {
                                            "fields":{
                                                "event_name":"author_sell_score_show",
                                                "params":{
                                                    "score":"4.60",
                                                    "subject":"user"
                                                }
                                            },
                                            "type":"tracker"
                                        },
                                        {
                                            "fields":{
                                                "event_name":"shop_level_info_explain_page_show",
                                                "params":{
                                                    "entrance_location":"102",
                                                    "shop_id":"9303912",
                                                    "store_type":"store"
                                                }
                                            },
                                            "type":"tracker"
                                        },
                                        {
                                            "fields":{
                                                "btm_id":"a1.b8094.c4307.d3324",
                                                "event_name":"show_store_entrance",
                                                "params":{
                                                    "entrance_location":"product_detail_card",
                                                    "is_exist_follow":"0",
                                                    "is_new_product":"0",
                                                    "live_preview_style":"0",
                                                    "pre_product_id":"3445486507249553176",
                                                    "store_group_type":"video",
                                                    "store_type":"shop"
                                                }
                                            },
                                            "type":"tracker"
                                        }
                                    ],
                                    "type":"Group"
                                },
                                "slice_id":"shop_basic_info",
                                "slice_type":"Template",
                                "template":{
                                    "name":"shop_basic_info",
                                    "type":"gecko",
                                    "url":"https://lf-webcast-sourcecdn-tos.bytegecko.com/obj/byte-gurd-source/10181/gecko/resource/ecom_pdp_card_template/shop_basic_info/main.json"
                                },
                                "view_type":"shop_basic_info"
                            },
                            {
                                "data":{
                                    "content_description":"商品质量平均好评率87%物流速度平均17小时发货客服表现回复速度一般",
                                    "jump_shop_click":{
                                        "actions":[
                                            {
                                                "fields":{
                                                    "btm_id":"a1.b8094.c4307.d3324",
                                                    "enter_page":true
                                                },
                                                "type":"BtmEnterPage"
                                            },
                                            {
                                                "fields":{
                                                    "btm_fields":{
                                                        "btm_code":"a1.b8094.c4307.d3324"
                                                    },
                                                    "schema":"sslocal://goods/store?enter_store_page_params=%7B%22enter_from%22%3A%22product_detail_card%22%2C%22entrance_location%22%3A%22product_detail_card%22%2C%22brand_verified%22%3A%220%22%2C%22commodity_id%22%3A%223445486507249553176%22%2C%22commodity_type%22%3A6%2C%22product_id%22%3A%223445486507249553176%22%2C%22shop_id%22%3A%229303912%22%2C%22page_type%22%3A%22full_screen%22%7D&entrance_location=product_detail_card&pass_through_api=%7B%22ecom_scene_id%22%3A%221003%22%7D&pre_product_id=3445486507249553176&pre_room_id=&sec_shop_id=htbHynrj&source_product_id=3445486507249553176&store_group_type=video&store_source_method=%25%21s%28%3Cnil%3E%29&store_source_page=%25%21s%28%3Cnil%3E%29&url_maker=shop_sdk"
                                                },
                                                "type":"openSchema"
                                            },
                                            {
                                                "fields":{
                                                    "btm_id":"a1.b8094.c4307.d3324",
                                                    "event_name":"click_store_entrance",
                                                    "params":{
                                                        "click_area":"103",
                                                        "enter_from":"product_detail_card",
                                                        "entrance_location":"product_detail_card",
                                                        "is_exist_follow":"0",
                                                        "is_new_product":"0",
                                                        "pre_product_id":"3445486507249553176",
                                                        "store_group_type":"video",
                                                        "store_type":"shop"
                                                    }
                                                },
                                                "type":"tracker"
                                            }
                                        ],
                                        "type":"Group"
                                    },
                                    "regular_info":[
                                        {
                                            "description":"平均好评率87%",
                                            "title":"商品质量"
                                        },
                                        {
                                            "description":"平均17小时发货",
                                            "icon":"https://lf3-static.bytednsdoc.com/obj/eden-cn/nmeh7nulmuhknuhog/ic_basic_like_filled.png",
                                            "title":"物流速度"
                                        },
                                        {
                                            "description":"回复速度一般",
                                            "title":"客服表现"
                                        }
                                    ]
                                },
                                "slice_id":"shop_regular_info",
                                "slice_type":"Template",
                                "template":{
                                    "name":"shop_regular_info",
                                    "type":"gecko",
                                    "url":"https://lf-webcast-sourcecdn-tos.bytegecko.com/obj/byte-gurd-source/10181/gecko/resource/ecom_pdp_card_template/shop_regular_info/main.json"
                                },
                                "view_type":"shop_regular_info"
                            },
                            {
                                "data":{
                                    "click_goods_jump_shop":false,
                                    "guidance_text":"左\n滑\n查\n看\n全\n部",
                                    "jump_shop_click":{
                                        "actions":[
                                            {
                                                "fields":{
                                                    "btm_id":"a1.b8094.c4307.d3324",
                                                    "enter_page":true
                                                },
                                                "type":"BtmEnterPage"
                                            },
                                            {
                                                "fields":{
                                                    "btm_fields":{
                                                        "btm_code":"a1.b8094.c4307.d3324"
                                                    },
                                                    "schema":"sslocal://goods/store?enter_store_page_params=%7B%22brand_verified%22%3A%220%22%2C%22commodity_id%22%3A%223445486507249553176%22%2C%22commodity_type%22%3A6%2C%22product_id%22%3A%223445486507249553176%22%2C%22shop_id%22%3A%229303912%22%2C%22page_type%22%3A%22full_screen%22%2C%22enter_from%22%3A%22product_detail_card%22%2C%22entrance_location%22%3A%22%22%7D&entrance_location=&pass_through_api=%7B%22ecom_scene_id%22%3A%221003%22%7D&pre_product_id=3445486507249553176&pre_room_id=&sec_shop_id=htbHynrj&source_product_id=3445486507249553176&store_group_type=video&store_source_method=%25%21s%28%3Cnil%3E%29&store_source_page=%25%21s%28%3Cnil%3E%29&tab_id=3&url_maker=shop_sdk"
                                                },
                                                "type":"openSchema"
                                            },
                                            {
                                                "fields":{
                                                    "btm_id":"a1.b8094.c4307.d3324",
                                                    "event_name":"click_store_entrance",
                                                    "params":{
                                                        "entrance_location":"product_detail_card",
                                                        "is_exist_follow":"0",
                                                        "is_new_product":"0",
                                                        "pre_product_id":"3445486507249553176",
                                                        "store_group_type":"video",
                                                        "store_type":"shop"
                                                    }
                                                },
                                                "type":"tracker"
                                            }
                                        ],
                                        "type":"Group"
                                    },
                                    "min_height":"0",
                                    "show_divider":true,
                                    "title_lines":0,
                                    "track_params":{
                                        "enter_from":"product_detail_card",
                                        "is_exist_follow":"0",
                                        "is_new_product":"0",
                                        "pre_product_id":"3445486507249553176",
                                        "store_group_type":"video",
                                        "store_type":"shop"
                                    }
                                },
                                "slice_id":"shop_recommend",
                                "slice_type":"Template",
                                "template":{
                                    "name":"shop_recommend",
                                    "type":"gecko",
                                    "url":"https://lf-webcast-sourcecdn-tos.bytegecko.com/obj/byte-gurd-source/10181/gecko/resource/ecom_pdp_card_template/shop_recommend/main.json"
                                },
                                "view_type":"shop_recommend"
                            }
                        ],
                        "style":{
                            "bg_color":"#FFFFFFFF",
                            "margin":[
                                "12",
                                "8",
                                "0",
                                "8"
                            ],
                            "padding":[
                                "0",
                                "12",
                                "0",
                                "12"
                            ],
                            "radius":[
                                12,
                                12,
                                12,
                                12
                            ]
                        },
                        "view_type":"shop_group"
                    },
                    {
                        "component_id":"id_above_pd",
                        "is_hide":false,
                        "slice_type":"PdpVO",
                        "track":[
    
                        ],
                        "ui":{
                            "container_type":"lynx",
                            "resource_addr":"sslocal://webcast_lynxview?url=https%3A%2F%2Flf-webcast-sourcecdn-tos.bytegecko.com%2Fobj%2Fbyte-gurd-source%2Fwebcast%2Fecom%2Flynx%2Ffe_reactlynx_ecom_goods_detail_component%2Fsimilar%2Ftemplate.js"
                        },
                        "version":1,
                        "vo":{
                            "meta":{
                                "background_image":"https://p3-piu.byteimg.com/tos-cn-i-8jisjyls3a/629c2a03f3794891a829c22b5d8f86cd~tplv-8jisjyls3a-3:0:0:q75.png",
                                "ecom_scene_id":"1003",
                                "height_percent":0.2346,
                                "jump_url":"sslocal://mall/xtab?enter_from=product_detail_similar&enable_redirect_with_params=1&force_refresh=1&recovery_title=%E5%9B%9E%E5%88%B0%E4%B8%8A%E4%B8%80%E9%A1%B5&need_recovery=1§ion_id=category_tab_section&traffic_from=product_detail_similar&recovery_target=iesec_product_detail&force_full_stack=1",
                                "product_id":3445486507249553176,
                                "radius":8,
                                "tracker":{
                                    "click":{
                                        "btm_id":"a1.b8094.c42092.d366957",
                                        "tracker_name":"banner_click",
                                        "tracker_params":{
                                            "location":2,
                                            "page_name":"product_detail",
                                            "resource_id":21,
                                            "title_name":"去首页商城\n看更多相似好物"
                                        }
                                    },
                                    "show":{
                                        "btm_id":"a1.b8094.c42092.d366957",
                                        "duplicate_key":"banner_show_21_2",
                                        "tracker_name":"banner_show",
                                        "tracker_params":{
                                            "location":2,
                                            "page_name":"product_detail",
                                            "resource_id":21,
                                            "title_name":"去首页商城\n看更多相似好物"
                                        }
                                    }
                                }
                            }
                        }
                    }
                ],
                "control":{
                    "detail_control":true,
                    "gul_control":true,
                    "long_connection_enabled":false,
                    "search_words_control":true,
                    "shop_recommends_control":true
                },
                "half_strand":null,
                "header_v2":{
                    "action_meta":{
                        "normal_cell":5
                    },
                    "cells":[
                        {
                            "click_action":{
                                "actions":[
                                    {
                                        "fields":{
                                            "event_name":"pdp_header_module_click",
                                            "event_params":{
                                                "main_video_type":"",
                                                "module_name":"main_video"
                                            }
                                        },
                                        "type":"HeadTrack"
                                    },
                                    {
                                        "fields":{
                                            "index":0
                                        },
                                        "type":"HeadPreview"
                                    }
                                ],
                                "type":"Group"
                            },
                            "media":{
                                "support_auto_play":true,
                                "support_nav_blur":true,
                                "support_preview":true,
                                "video":{
                                    "auto_play":null,
                                    "back_up_url":"https://v5-g.douyinvod.com/f46b9830a8c97cd6f8771dd9907015d3/65a5f99e/video/tos/cn/tos-cn-ve-15c001-alinc2/d7f522acdbef4bdf9e846261e2d560fa/?a=1128&ch=0&cr=7&dr=2&er=0&cd=0%7C0%7C0%7C1&br=1396&bt=1396&cs=0&ds=3&ft=~iiRCzzKhWH6BFNR2DLo0PD1&mime_type=video_mp4&qs=13&rc=anNtO3c5cm1vbjQzNGY1M0BpanNtO3c5cm1vbjQzNGY1M0AyXzFtMmRjLi5gLS1kNDBzYSMyXzFtMmRjLi5gLS1kNDBzcw%3D%3D&btag=10e00055000&dy_q=1705372533&l=202401161035333F0740DFDF651666A045",
                                    "duration":25798,
                                    "extra_info":{
                                        "head_video":{
                                            "float_track_meta":{
                                                "video_type":"main_video_window"
                                            },
                                            "track_meta":{
                                                "video_type":"main_video"
                                            },
                                            "video_type":0
                                        }
                                    },
                                    "height":1280,
                                    "item_id":null,
                                    "main_url":"https://v26.douyinvod.com/400d239ae66fba2435c6efc3612577b9/65a5f99e/video/tos/cn/tos-cn-ve-15c001-alinc2/d7f522acdbef4bdf9e846261e2d560fa/?a=1128&ch=0&cr=7&dr=2&er=0&cd=0%7C0%7C0%7C1&br=1396&bt=1396&cs=0&ds=3&ft=~iiRCzzKhWH6BFNR2DLo0PD1&mime_type=video_mp4&qs=13&rc=anNtO3c5cm1vbjQzNGY1M0BpanNtO3c5cm1vbjQzNGY1M0AyXzFtMmRjLi5gLS1kNDBzYSMyXzFtMmRjLi5gLS1kNDBzcw%3D%3D&btag=10e00050000&cc=2a&dy_q=1705372533&l=202401161035333F0740DFDF651666A045",
                                    "poster_image":{
                                        "url_model":{
                                            "height":1080,
                                            "uri":"ecom-shop-material/htbHynrj_m_31ae65933e75bad51cab0b76b17a41ca_sx_919553_www807-807",
                                            "url_list":[
                                                "https://p6-item.ecombdimg.com/img/ecom-shop-material/htbHynrj_m_31ae65933e75bad51cab0b76b17a41ca_sx_919553_www807-807~tplv-5mmsx3fupr-resize_q:1080:1080:q90.webp",
                                                "https://p26-item.ecombdimg.com/img/ecom-shop-material/htbHynrj_m_31ae65933e75bad51cab0b76b17a41ca_sx_919553_www807-807~tplv-5mmsx3fupr-resize_q:1080:1080:q90.webp"
                                            ],
                                            "width":1080
                                        }
                                    },
                                    "start_time":null,
                                    "url_expire":1705376158,
                                    "vid":"v0327cg10001ck1l1jfog65tp84jbp5g",
                                    "width":720
                                }
                            },
                            "slice":{
                                "show_actions":{
                                    "fields":{
                                        "event_name":"pdp_header_module_show",
                                        "event_params":{
                                            "main_video_type":"",
                                            "module_name":"main_video"
                                        },
                                        "once_key":"pdp_header_main_video_show"
                                    },
                                    "type":"HeadTrack"
                                }
                            },
                            "track":{
                                "from_entrance":"main_picture",
                                "main_video_type":"",
                                "module_name":"main_video",
                                "type":"product"
                            }
                        },
                        {
                            "click_action":{
                                "fields":{
                                    "index":1
                                },
                                "type":"HeadPreview"
                            },
                            "media":{
                                "find_same_url":"aweme://search/photo?search_image_url=https%3A%2F%2Fp6-item.ecombdimg.com%2Fimg%2Fecom-shop-material%2FhtbHynrj_m_31ae65933e75bad51cab0b76b17a41ca_sx_919553_www807-807~tplv-5mmsx3fupr-resize_q%3A1080%3A1080%3Aq90.webp&enter_from=search_product_detail&search_channel=ecom_mms_sim_product&search_scan_params=%7B%22photo_search_previous_page%22%3A%22%22%2C%22enter_from_second%22%3A%22product_detail__%22%7D&group_id=3445486507249553176&product_id=3445486507249553176&extra=%7B%22ecom_scene_id%22%3A%221003%22%7D&enter_method=top_pic",
                                "image":{
                                    "url_model":{
                                        "height":1080,
                                        "uri":"ecom-shop-material/htbHynrj_m_31ae65933e75bad51cab0b76b17a41ca_sx_919553_www807-807",
                                        "url_list":[
                                            "https://p6-item.ecombdimg.com/img/ecom-shop-material/htbHynrj_m_31ae65933e75bad51cab0b76b17a41ca_sx_919553_www807-807~tplv-5mmsx3fupr-resize_q:1080:1080:q90.webp",
                                            "https://p26-item.ecombdimg.com/img/ecom-shop-material/htbHynrj_m_31ae65933e75bad51cab0b76b17a41ca_sx_919553_www807-807~tplv-5mmsx3fupr-resize_q:1080:1080:q90.webp"
                                        ],
                                        "width":1080
                                    }
                                },
                                "support_nav_blur":true,
                                "support_preview":true
                            },
                            "track":{
                                "pd_headvideo_size":"3_4",
                                "type":"product"
                            }
                        },
                        {
                            "click_action":{
                                "fields":{
                                    "index":2
                                },
                                "type":"HeadPreview"
                            },
                            "media":{
                                "find_same_url":"aweme://search/photo?search_image_url=https%3A%2F%2Fp6-item.ecombdimg.com%2Fimg%2Ftemai%2F7b41c6f7c35eb5bfc18a9e3d80777fdewww800-800~tplv-5mmsx3fupr-resize_q%3A1080%3A1080%3Aq90.webp&enter_from=search_product_detail&search_channel=ecom_mms_sim_product&search_scan_params=%7B%22photo_search_previous_page%22%3A%22%22%2C%22enter_from_second%22%3A%22product_detail__%22%7D&group_id=3445486507249553176&product_id=3445486507249553176&extra=%7B%22ecom_scene_id%22%3A%221003%22%7D&enter_method=top_pic",
                                "image":{
                                    "url_model":{
                                        "height":1080,
                                        "uri":"temai/7b41c6f7c35eb5bfc18a9e3d80777fdewww800-800",
                                        "url_list":[
                                            "https://p6-item.ecombdimg.com/img/temai/7b41c6f7c35eb5bfc18a9e3d80777fdewww800-800~tplv-5mmsx3fupr-resize_q:1080:1080:q90.webp",
                                            "https://p3-item.ecombdimg.com/img/temai/7b41c6f7c35eb5bfc18a9e3d80777fdewww800-800~tplv-5mmsx3fupr-resize_q:1080:1080:q90.webp"
                                        ],
                                        "width":1080
                                    }
                                },
                                "support_nav_blur":true,
                                "support_preview":true
                            },
                            "track":{
                                "pd_headvideo_size":"3_4",
                                "type":"product"
                            }
                        },
                        {
                            "click_action":{
                                "fields":{
                                    "index":3
                                },
                                "type":"HeadPreview"
                            },
                            "media":{
                                "find_same_url":"aweme://search/photo?extra=%7B%22ecom_scene_id%22%3A%221003%22%7D&enter_method=top_pic&search_image_url=https%3A%2F%2Fp26-item.ecombdimg.com%2Fimg%2Ftemai%2Fdc4086b40fda49ea08a138a29ff1d71bwww741-741~tplv-5mmsx3fupr-resize_q%3A1080%3A1080%3Aq90.webp&enter_from=search_product_detail&search_channel=ecom_mms_sim_product&search_scan_params=%7B%22photo_search_previous_page%22%3A%22%22%2C%22enter_from_second%22%3A%22product_detail__%22%7D&group_id=3445486507249553176&product_id=3445486507249553176",
                                "image":{
                                    "url_model":{
                                        "height":1080,
                                        "uri":"temai/dc4086b40fda49ea08a138a29ff1d71bwww741-741",
                                        "url_list":[
                                            "https://p26-item.ecombdimg.com/img/temai/dc4086b40fda49ea08a138a29ff1d71bwww741-741~tplv-5mmsx3fupr-resize_q:1080:1080:q90.webp",
                                            "https://p3-item.ecombdimg.com/img/temai/dc4086b40fda49ea08a138a29ff1d71bwww741-741~tplv-5mmsx3fupr-resize_q:1080:1080:q90.webp"
                                        ],
                                        "width":1080
                                    }
                                },
                                "support_nav_blur":true,
                                "support_preview":true
                            },
                            "track":{
                                "pd_headvideo_size":"3_4",
                                "type":"product"
                            }
                        },
                        {
                            "click_action":{
                                "fields":{
                                    "index":4
                                },
                                "type":"HeadPreview"
                            },
                            "media":{
                                "support_nav_blur":true,
                                "video":{
                                    "auto_play":null,
                                    "back_up_url":"https://v83-017.douyinvod.com/6dc5b70a5ea755a9c2b688ad58768632/65a5fa0b/video/tos/cn/tos-cn-ve-15c001-alinc2/oUBJ9wn3MoNbpdvzwfFzDYcDQbWeIAksAEgAAn/?a=1128&ch=10010&cr=3&dr=0&lr=all&cd=0%7C0%7C0%7C3&cv=1&br=1641&bt=1641&cs=0&ds=6&ft=LOVNtzzKhWH6BONR2DLo0PD1&mime_type=video_mp4&qs=0&rc=NWg4aWk6OWY1OTRoNTU6ZkBpajpodmU6ZnFnajMzNGkzM0BeNTMzMjVhNWAxMzQ0MDQ0YSNhbXJjcjQwaGxgLS1kLTBzcw%3D%3D&btag=10e000a8000&dy_q=1705372519&feature_id=f0150a16a324336cda5d6dd0b69ed299&l=20240116103519A07DD2BA9ACE83700F3D",
                                    "duration":148514,
                                    "extra_info":{
                                        "head_video":{
                                            "float_track_meta":{
                                                "video_type":"test_tab_window"
                                            },
                                            "track_meta":{
                                                "video_type":"test_tab"
                                            },
                                            "video_type":1
                                        }
                                    },
                                    "height":1920,
                                    "item_id":"7219510769266838788",
                                    "main_url":"https://v5-coldm.douyinvod.com/26596b60c13bccfa3e289429ef652572/65a5fa0b/video/tos/cn/tos-cn-ve-15c001-alinc2/oUBJ9wn3MoNbpdvzwfFzDYcDQbWeIAksAEgAAn/?a=1128&ch=10010&cr=3&dr=0&lr=all&cd=0%7C0%7C0%7C3&cv=1&br=1641&bt=1641&cs=0&ds=6&ft=LOVNtzzKhWH6BONR2DLo0PD1&mime_type=video_mp4&qs=0&rc=NWg4aWk6OWY1OTRoNTU6ZkBpajpodmU6ZnFnajMzNGkzM0BeNTMzMjVhNWAxMzQ0MDQ0YSNhbXJjcjQwaGxgLS1kLTBzcw%3D%3D&btag=10e000ad000&dy_q=1705372519&feature_id=f0150a16a324336cda5d6dd0b69ed299&l=20240116103519A07DD2BA9ACE83700F3D",
                                    "poster_image":{
                                        "url_model":{
                                            "height":1920,
                                            "uri":"tos-cn-i-0813/05c49017c44b438caec9ee83d84e8c6a",
                                            "url_list":[
                                                "https://p26-sign.douyinpic.com/tos-cn-i-0813/05c49017c44b438caec9ee83d84e8c6a~c5_300x400.jpeg?x-expires=1706580000&x-signature=IZuYa6W%2FBIcKxzF5G%2BSUG3zbfaE%3D&from=3213915784_large&s=PackSourceEnum_PUBLISH&se=false&sc=cover&biz_tag=aweme_video&l=20240116103519A07DD2BA9ACE83700F3D",
                                                "https://p6-sign.douyinpic.com/tos-cn-i-0813/05c49017c44b438caec9ee83d84e8c6a~c5_300x400.jpeg?x-expires=1706580000&x-signature=2W65uZVBaean1e2ssbQxC%2FA0PKw%3D&from=3213915784_large&s=PackSourceEnum_PUBLISH&se=false&sc=cover&biz_tag=aweme_video&l=20240116103519A07DD2BA9ACE83700F3D",
                                                "https://p3-sign.douyinpic.com/tos-cn-i-0813/05c49017c44b438caec9ee83d84e8c6a~c5_300x400.jpeg?x-expires=1706580000&x-signature=CXL1L3WhAZ4vNGknSiEjy4pD78s%3D&from=3213915784_large&s=PackSourceEnum_PUBLISH&se=false&sc=cover&biz_tag=aweme_video&l=20240116103519A07DD2BA9ACE83700F3D"
                                            ],
                                            "width":1440
                                        }
                                    },
                                    "start_time":null,
                                    "url_expire":0,
                                    "vid":"v0300fg10000cgodkn3c77ubfsuep7dg",
                                    "width":1080
                                }
                            },
                            "slice":{
                                "slice_id":"good_goods_entry",
                                "slice_template":{
                                    "elements":[
                                        {
                                            ":click_action":"data.open_feed",
                                            "elements":[
                                                {
                                                    "attr":{
                                                        ":src":"data.avatar"
                                                    },
                                                    "style":{
                                                        "height":"15",
                                                        "radius":[
                                                            7.5
                                                        ],
                                                        "width":"15"
                                                    },
                                                    "type":"Image"
                                                },
                                                {
                                                    "attr":{
                                                        ":text":"data.from"
                                                    },
                                                    "style":{
                                                        "font_color":"#ffffff",
                                                        "font_size":10,
                                                        "font_weight":500,
                                                        "margin":[
                                                            "0",
                                                            "0",
                                                            "0",
                                                            "5"
                                                        ]
                                                    },
                                                    "type":"Text"
                                                },
                                                {
                                                    "elements":[
                                                        {
                                                            "attr":{
                                                                "text":"更多"
                                                            },
                                                            "style":{
                                                                "font_color":"#ffffff",
                                                                "font_size":10,
                                                                "font_weight":500
                                                            },
                                                            "type":"Text"
                                                        },
                                                        {
                                                            "attr":{
                                                                "src":"https://lf3-static.bytednsdoc.com/obj/eden-cn/zpyjeh7vipfuloj/ic_arrowleft_outlined.png"
                                                            },
                                                            "style":{
                                                                "height":"10",
                                                                "margin":[
                                                                    "0",
                                                                    "0",
                                                                    "0",
                                                                    "2"
                                                                ],
                                                                "width":"10"
                                                            },
                                                            "type":"Image"
                                                        }
                                                    ],
                                                    "style":{
                                                        ":display":"option(data.show_more == true, flex, none)",
                                                        "align_items":"center",
                                                        "flex_direction":"row",
                                                        "justify_content":"center",
                                                        "margin":[
                                                            "0",
                                                            "0",
                                                            "0",
                                                            "5"
                                                        ]
                                                    },
                                                    "type":"View"
                                                }
                                            ],
                                            "style":{
                                                ":bottom":"data.bottom_value",
                                                "align_items":"center",
                                                "bg_color":"#80161823",
                                                "bottom":"56",
                                                "display":"flex",
                                                "flex_direction":"row",
                                                "justify_content":"flex-start",
                                                "padding":[
                                                    "3",
                                                    "5"
                                                ],
                                                "position":"absolute",
                                                "radius":[
                                                    11
                                                ],
                                                "right":"12"
                                            },
                                            "type":"View"
                                        }
                                    ],
                                    "style":{
                                        "height":"100%",
                                        "width":"100%"
                                    },
                                    "type":"View"
                                },
                                "slice_template_data":{
                                    "avatar":"https://p6.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_2837776c586ed2e5f92f4172ec22572a.jpeg?from=116350172",
                                    "bottom_value":44,
                                    "from":"来自娜娜总",
                                    "open_feed":{
                                        "fields":{
                                            "index":4
                                        },
                                        "type":"HeadPreview"
                                    },
                                    "opt_tab_ui":false,
                                    "show_more":true
                                }
                            },
                            "track":{
                                "from_entrance":"main_picture",
                                "type":"more_test",
                                "video_source_type":null
                            }
                        }
                    ],
                    "footer":{
                        "scroll_action":{
                            "actions":[
                                {
                                    "type":"HeadFeedback"
                                },
                                {
                                    "fields":{
                                        "btm_fields":{
                                            "btm_code":"a1.b8094.c0645.d17406"
                                        },
                                        "url":"sslocal://goods/store?enter_store_page_params=%7B%22commodity_type%22%3A6%2C%22product_id%22%3A%223445486507249553176%22%2C%22shop_id%22%3A%229303912%22%2C%22page_type%22%3A%22full_screen%22%2C%22enter_from%22%3A%22product_detail_card%22%2C%22entrance_location%22%3A%22header_area%22%2C%22brand_verified%22%3A%220%22%2C%22commodity_id%22%3A%223445486507249553176%22%7D&entrance_location=header_area&pass_through_api=%7B%22ecom_scene_id%22%3A%221003%22%7D&pre_product_id=3445486507249553176&pre_room_id=&sec_shop_id=htbHynrj&source_product_id=3445486507249553176&tab_id=3&url_maker=shop_sdk"
                                    },
                                    "type":"HeadJump"
                                },
                                {
                                    "fields":{
                                        "btm_id":"a1.b8094.c0645.d17406",
                                        "event_name":"click_store_entrance",
                                        "event_params":{
                                            "entrance_location":"header_area",
                                            "pre_product_id":"3445486507249553176",
                                            "store_group_type":"",
                                            "store_source_method":null,
                                            "store_source_page":null
                                        }
                                    },
                                    "type":"HeadTrack"
                                }
                            ],
                            "type":"Group"
                        },
                        "slice":{
                            "slice_id":"footer",
                            "slice_template":{
                                "elements":[
                                    {
                                        "attr":{
                                            ":src":"data.img"
                                        },
                                        "style":{
                                            "aspect_ratio":0.187,
                                            "width":"100%"
                                        },
                                        "type":"Image"
                                    }
                                ],
                                "style":{
                                    "align_items":"center",
                                    "display":"flex",
                                    "flex_direction":"row",
                                    "height":"100%",
                                    "justify_content":"center",
                                    "width":"70"
                                },
                                "type":"View"
                            },
                            "slice_template_data":{
                                "img":"https://p26-detailpage.byteimg.com/tos-cn-i-ojoqa5bfdv/118ca5832d492877b0ff498c49a92515.png~tplv-ojoqa5bfdv-image.image"
                            }
                        },
                        "url":"sslocal://goods/store?enter_store_page_params=%7B%22commodity_type%22%3A6%2C%22product_id%22%3A%223445486507249553176%22%2C%22shop_id%22%3A%229303912%22%2C%22page_type%22%3A%22full_screen%22%2C%22enter_from%22%3A%22product_detail_card%22%2C%22entrance_location%22%3A%22header_area%22%2C%22brand_verified%22%3A%220%22%2C%22commodity_id%22%3A%223445486507249553176%22%7D&entrance_location=header_area&pass_through_api=%7B%22ecom_scene_id%22%3A%221003%22%7D&pre_product_id=3445486507249553176&pre_room_id=&sec_shop_id=htbHynrj&source_product_id=3445486507249553176&tab_id=3&url_maker=shop_sdk"
                    },
                    "pendants":[
                        {
                            "id":"tab",
                            "native":{
                                "expand":true,
                                "tabs":[
                                    {
                                        "name":"商品",
                                        "start_index":0,
                                        "total_count":4,
                                        "track_meta":{
                                            "images_show_name":"picture_video",
                                            "images_tab_name":"product",
                                            "images_tab_status":"shrink",
                                            "pd_headvideo_size":"3_4",
                                            "tab_rank":1,
                                            "type":"product"
                                        }
                                    },
                                    {
                                        "name":"达人秀",
                                        "start_index":4,
                                        "total_count":1,
                                        "track_meta":{
                                            "images_show_name":"video",
                                            "images_tab_name":"more_test",
                                            "images_tab_status":"shrink",
                                            "tab_rank":2,
                                            "type":"more_test",
                                            "video_source_type":null
                                        }
                                    }
                                ]
                            }
                        }
                    ],
                    "preview_meta":[
    
                    ],
                    "track_meta":{
                        "anchor_id":null,
                        "enter_from_merge":"product_detail_page",
                        "enter_method":"head_icon",
                        "pre_product_id":"3445486507249553176"
                    }
                },
                "page_config":{
                    "collapse_detail":false,
                    "forbid_fold_slice_ids":[
                        "GirdleAreaGroup",
                        "BaseInfoGroup",
                        "BaseInfoMaskGroup"
                    ]
                },
                "page_meta":{
                    "common_meta":{
                        "ad_log_extra":[
    
                        ],
                        "apply_coupon":0,
                        "author_id":"99514375927",
                        "avl_discount":"0",
                        "bolt_param":[
    
                        ],
                        "bottom_right_control":{
                            "back_to_top_btn":{
                                "bottom_margin":127
                            },
                            "shop_entry":{
                                "bottom_margin":332
                            },
                            "small_window":{
                                "bottom_margin":103
                            }
                        },
                        "brand_verified":"0",
                        "button_status":"0",
                        "buyin_track":"",
                        "c_biz_combo":"8",
                        "coupon_id":"",
                        "cps_track":"",
                        "delivery_delay_des":"",
                        "display_collected":true,
                        "display_report":false,
                        "display_share":true,
                        "ecom_scene_id":"1003",
                        "entrance_info":"{\"brand_verified\":0,\"business_tag\":\"\",\"campaign_sub_type\":\"\",\"campaign_type\":\"\",\"discount_type\":\"\",\"ecom_group_type\":\"\",\"forbid_popup\":true,\"full_return\":\"0\",\"has_rank_id\":\"\",\"is_activity_banner\":0,\"is_exist_size_tab\":\"0\",\"is_groupbuying\":0,\"is_package_sale\":0,\"is_replay\":0,\"is_short_screen\":\"0\",\"is_with_video\":1,\"label_name\":\"\",\"market_channel_hot_fix\":\"\",\"rank_id_source\":\"\",\"show_dou_campaign\":0,\"show_rank\":\"show_rank\",\"upfront_presell\":0,\"warm_up_status\":\"0\",\"which_account\":\"\"}",
                        "follow_status":0,
                        "forbid_sku_switch":"0",
                        "from_live":false,
                        "from_video":false,
                        "guess_like_cache_id":"3445486507249553176",
                        "has_replay":"0",
                        "is_authentic_insure":"1",
                        "is_collected":false,
                        "is_cross_border_product":false,
                        "is_liked":false,
                        "is_live_insurance_product":false,
                        "is_virtual":false,
                        "item_id":"",
                        "kol_user_tags":"",
                        "label_name":"",
                        "live_room_id":"",
                        "log_data":"{\"avl_discount\":\"0\"}",
                        "marketing_channel":"",
                        "meta_param":"",
                        "on_sale":true,
                        "origin_id":"99514375927_3445486507249553176",
                        "origin_type":"3002002002",
                        "pay_type":1,
                        "pdp_business_flags":{
                            "pdp_optimize":0
                        },
                        "pre_sell_type":0,
                        "presell_type":0,
                        "product_buy_status":"normal",
                        "product_comment_data_type":0,
                        "product_id":"3445486507249553176",
                        "product_is_invalid":false,
                        "product_min_price":4990,
                        "product_type":0,
                        "promotion_id":"3445486507249553176",
                        "promotion_source":6,
                        "screen_shot_params":"{\"item_id\":\"\",\"product_id\":\"3445486507249553176\",\"price\":\"4990\",\"promotion_source\":\"6\",\"meta_param\":\"\",\"author_id\":\"99514375927\",\"sec_author_id\":\"\",\"promotion_id\":\"3445486507249553176\",\"shop_id\":\"9303912\"}",
                        "screen_shot_popup_schema":"sslocal://webcast_lynxview?gravity=bottom&mask_alpha=0.6&top_level=1&url=https%3A%2F%2Flf-webcast-sourcecdn-tos.bytegecko.com%2Fobj%2Fbyte-gurd-source%2Fwebcast%2Fecom%2Flynx%2Ffe_reactlynx_goods_detail_screenshot_popup%2Ffind_more%2Ftemplate.js%3Fjump_url%3Daweme%253A%252F%252Fsearch%252Fphoto%253Fenter_from%253Dsearch_product_detail%2526search_channel%253Decom_mms_sim_product%2526enter_method%253Dscreen_shot%2526search_scan_params%253D%25257B%252522photo_search_previous_page%252522%25253A%252522%252522%25252C%252522enter_from_second%252522%25253A%252522product_detail__%252522%25257D%2526group_id%253D3445486507249553176%2526product_id%253D3445486507249553176%2526extra%253D%25257B%252522ecom_scene_id%252522%25253A%2525221003%252522%25257D%26feedback_url%3D%26new_same_button%3Dfalse&type=popup&height_percent=100&width_percent=100",
                        "search_page_params":[
    
                        ],
                        "sec_author_id":"",
                        "shop_id":"9303912",
                        "sku_id":"",
                        "sku_spec_info":[
                            {
                                "select_spec_id":"",
                                "spec_default_name":"颜色",
                                "spec_ids":[
                                    "1727206324462606",
                                    "1727206324462622",
                                    "1727206324462638",
                                    "1727206324462654",
                                    "1727206324463630",
                                    "1727206324463646"
                                ],
                                "spec_names":[
                                    "梵贞蘑菇气垫自然色4盒",
                                    "梵贞蘑菇气垫象牙白4盒",
                                    "梵贞蘑菇气垫自然色2盒+象牙白2盒",
                                    "梵贞蘑菇气垫象牙白2盒+自然色2盒",
                                    "梵贞蘑菇气垫自然色3盒+象牙白1盒",
                                    "梵贞蘑菇气垫象牙白3盒+自然色1盒"
                                ]
                            }
                        ],
                        "source_page":"store_page",
                        "tag_guarantee_header":"",
                        "third_party":false,
                        "three_d_log_data":"",
                        "track_extra":"{\"add_cart_source\":\"product_detail\",\"buyin_track\":\"\",\"c_biz_combo\":\"8\",\"cart_track\":\"{\\"anchor_id\\":\\"\\",\\"brand_verified\\":0,\\"business_tag\\":\\"\\",\\"campaign_sub_type\\":\\"\\",\\"campaign_type\\":\\"\\",\\"discount_type\\":\\"\\",\\"ecom_group_type\\":\\"\\",\\"ecom_scene_id\\":\\"\\",\\"forbid_popup\\":true,\\"full_return\\":\\"0\\",\\"group_id\\":\\"\\",\\"has_rank_id\\":\\"\\",\\"is_activity_banner\\":0,\\"is_exist_size_tab\\":\\"0\\",\\"is_groupbuying\\":0,\\"is_package_sale\\":0,\\"is_replay\\":0,\\"is_short_screen\\":\\"0\\",\\"is_with_video\\":1,\\"label_name\\":\\"\\",\\"market_channel_hot_fix\\":\\"\\",\\"promotion_id\\":\\"\\",\\"rank_id_source\\":\\"\\",\\"room_id\\":\\"\\",\\"show_dou_campaign\\":0,\\"show_rank\\":\\"show_rank\\",\\"upfront_presell\\":0,\\"warm_up_status\\":\\"0\\",\\"which_account\\":\\"\\"}\",\"category_id\":\"20029\",\"inflow_list_type\":\"\",\"is_second_hand\":\"\",\"is_spot_goods\":\"1\",\"pickup_coupon_type\":\"0\",\"presell\":\"\",\"rank_id\":\"\",\"rank_name\":\"本店商品热榜·第2名\",\"sellpoint_bp\":\"\",\"store_author_level\":\"\",\"store_is_follow\":\"\",\"store_product_count\":\"\",\"tag_code\":\"\"}",
                        "transition_tracker_data":"",
                        "user_addr_id":-1,
                        "which_account":"",
                        "with_sku":"1",
                        "with_video":"1"
                    },
                    "server_monitor_meta":{
                        "BatchGetProduct2C":"9",
                        "FetchRitTag":"22",
                        "ProductSkuPurchaseInfo":"34",
                        "check_sign":"0",
                        "latency_ab_latency":"18",
                        "latency_api_total":"144",
                        "pack_rpc":"120",
                        "promise_GetPromiseInfo":"36",
                        "request_pre_check":"23"
                    },
                    "sku_meta":{
                        "sku_mappings":{
                            "1727206324462606":1727206324464670,
                            "1727206324462622":1727206324464686,
                            "1727206324462638":1727206324464702,
                            "1727206324462654":1727206337007624,
                            "1727206324463630":1727206337007640,
                            "1727206324463646":1727206337007656
                        }
                    },
                    "track_meta":{
                        "EVENT_ORIGIN_FEATURE":"TEMAI",
                        "author_id":"99514375927",
                        "baseverified_category":"0",
                        "bind_card_flag":"",
                        "button_status":"0",
                        "campaign_sub_type":"",
                        "campaign_type":"",
                        "commodity_id":"3445486507249553176",
                        "commodity_type":"6",
                        "coupon_id":"",
                        "coupon_type":"",
                        "discount_count":0,
                        "discount_type":"",
                        "ecom_group_type":"",
                        "ecom_pitaya_json_str":"{\"category_ids\":[\"20029\",\"20574\",\"24851\",\"0\"]}",
                        "entrance_info":"{\"brand_verified\":0,\"business_tag\":\"\",\"campaign_sub_type\":\"\",\"campaign_type\":\"\",\"discount_type\":\"\",\"ecom_group_type\":\"\",\"forbid_popup\":true,\"full_return\":\"0\",\"has_rank_id\":\"\",\"is_activity_banner\":0,\"is_exist_size_tab\":\"0\",\"is_groupbuying\":0,\"is_package_sale\":0,\"is_replay\":0,\"is_short_screen\":\"0\",\"is_with_video\":1,\"label_name\":\"\",\"market_channel_hot_fix\":\"\",\"rank_id_source\":\"\",\"show_dou_campaign\":0,\"show_rank\":\"show_rank\",\"upfront_presell\":0,\"warm_up_status\":\"0\",\"which_account\":\"\"}",
                        "extra_campaign_type":"",
                        "follow_status":"<nil>",
                        "fxh_white_list_flag":"",
                        "goods_type":"",
                        "group_id":"",
                        "has_rank_id":"",
                        "head_video_id":"v0327cg10001ck1l1jfog65tp84jbp5g",
                        "industry_ranking_type":"normal",
                        "insurance_commodity_flag":"0",
                        "is_ad":"0",
                        "is_crossborder_goods":"0",
                        "is_hainan_membership":"1",
                        "is_new_goods_detail_flag":"1",
                        "is_recommended_reason":"0",
                        "is_replay":"0",
                        "is_sales_inherit_product":"0",
                        "is_sales_show":"1",
                        "is_ship_shop":"0",
                        "is_short_screen":"0",
                        "is_sku_pic":"0",
                        "is_under_stock":"0",
                        "is_with_video":"1",
                        "label_name":"",
                        "main_product_id":"",
                        "member_price_track":"",
                        "new_coupon_id":"",
                        "page_name":"product_detail",
                        "page_type":"full_screen",
                        "params_for_special":"tppp",
                        "pickup_coupon_type":"0",
                        "price_type":"",
                        "product_id":"3445486507249553176",
                        "product_type":"",
                        "ranking_num":"num+",
                        "ranking_type":"industry",
                        "room_id":"",
                        "sales_display_type":"sold",
                        "shop_id":"9303912",
                        "shop_open_fxh_flag":"",
                        "show_referrer":"0",
                        "store_id":0,
                        "store_type":"shop",
                        "user_open_fxh_flag":"",
                        "v3_event_additions":"{}",
                        "virtual_commodity_flag":"0",
                        "warm_up_status":"0",
                        "with_coupon":"0",
                        "with_sku":"1"
                    }
                },
                "pendant_info":{
                    "component_id":"id_pendant_info",
                    "is_hide":false,
                    "slice_type":"PdpVO",
                    "track":[
    
                    ],
                    "ui":{
                        "container_type":"native"
                    },
                    "version":1,
                    "vo":{
                        "display":{
                            "pendants":[
    
                            ]
                        },
                        "meta":[
    
                        ]
                    }
                },
                "play_back_float_entry":null,
                "scroll_nodes":[
                    {
                        "id":"id_head_view",
                        "log_name":"product",
                        "name":"商品"
                    },
                    {
                        "id":"id_comments",
                        "log_name":"comment",
                        "name":"评价"
                    },
                    {
                        "id":"id_detail",
                        "log_name":"detail",
                        "name":"详情"
                    },
                    {
                        "id":"id_recommend",
                        "log_name":"recommend",
                        "name":"热门"
                    }
                ],
                "shop_float_entry":{
                    "component_id":"id_shop_float_entry",
                    "is_hide":false,
                    "slice_type":"PdpVO",
                    "track":[
    
                    ],
                    "ui":{
                        "container_type":"native"
                    },
                    "version":1,
                    "vo":{
                        "display":{
                            "entry_content":{
                                "action":{
                                    "check_params":"{\"check_login\":true}",
                                    "id":"shop_jump_store"
                                },
                                "background":{
                                    "background_color":"#E6FF3B52",
                                    "padding":{
                                        "bottom":8,
                                        "left":8,
                                        "right":4,
                                        "top":8
                                    },
                                    "radius":{
                                        "bottom_left":18,
                                        "top_left":18
                                    }
                                },
                                "head_buttons":{
                                    "button_list":[
                                        {
                                            "align_strategy":1,
                                            "button_type":2,
                                            "content":{
                                                "font_style":{
                                                    "font_size":14,
                                                    "font_weight":500,
                                                    "line":1,
                                                    "text_color":"#FFFFFFFF"
                                                },
                                                "text":"进店逛逛"
                                            },
                                            "icon":{
                                                "url_model":{
                                                    "height":20,
                                                    "uri":"https://p26-item.ecombdimg.com/tos-cn-i-5mmsx3fupr/arrow-right.png~tplv-5mmsx3fupr-origin-png.png",
                                                    "url_list":[
                                                        "https://p26-item.ecombdimg.com/tos-cn-i-5mmsx3fupr/arrow-right.png~tplv-5mmsx3fupr-origin-png.png"
                                                    ],
                                                    "width":12
                                                }
                                            },
                                            "space":0
                                        }
                                    ],
                                    "scrollable":false,
                                    "space":4
                                }
                            }
                        },
                        "meta":{
                            "business_meta":{
                                "is_store":true,
                                "shop_author_id":"96263453298",
                                "shop_nav_link":"aweme://user/profile/96263453298",
                                "shop_portfolio_url":"sslocal://goods/store?sec_shop_id=htbHynrj&entrance_location=product_detail&url_maker=shop_sdk&pass_through_api=%7B%22ecom_scene_id%22%3A%221003%22%7D&pre_product_id=3445486507249553176",
                                "shop_reputation_link":"sslocal://webcast_webview?animation_type=present&enable_latch=1&gravity=bottom&height_percent=75&hide_nav_bar=1&hide_status_bar=0&is_from_live_indicator=0&mask_alpha=0.5&open_animate=0&radius=12&status_bar_color=black&top_level=1&trans_status_bar=1&type=popup&use_player_bottom_height=1&web_bg_color=%23ffffff&width_percent=100&up_full_screen=1&up_height_percent=75&up_offset_height=400&up_trans_status_bar=1&close_icon_position=-1&url=https%3A%2F%2Flf-webcast-sourcecdn-tos.bytegecko.com%2Fobj%2Fbyte-gurd-source%2F10181%2Fgecko%2Fresource%2Fecommerce_shop_detail_web%2Fxzg_rule.html%3Fsec_shop_id%3DhtbHynrj%26shop_id%3D9303912%26entrance_location%3D102"
                            },
                            "track_meta":{
                                "is_exist_follow":false,
                                "is_new_product":0,
                                "pre_product_id":"3445486507249553176",
                                "store_group_type":"video",
                                "store_source_method":null,
                                "store_source_page":null,
                                "store_type":"shop"
                            }
                        }
                    }
                },
                "small_video":null,
                "templates":null,
                "top_right_controls":{
                    "component_id":"id_top_right_controls",
                    "is_hide":false,
                    "slice_type":"PdpVO",
                    "track":[
    
                    ],
                    "ui":{
                        "container_type":"native"
                    },
                    "version":1,
                    "vo":{
                        "display":{
                            "dark_elements":{
                                "button_list":[
                                    {
                                        "action":{
                                            "id":"action_search"
                                        },
                                        "background":{
                                            "background_color":"#57292929",
                                            "padding":{
                                                "bottom":7,
                                                "left":7,
                                                "right":7,
                                                "top":7
                                            },
                                            "radius":{
                                                "bottom_left":20,
                                                "bottom_right":20,
                                                "top_left":20,
                                                "top_right":20
                                            }
                                        },
                                        "button_type":1,
                                        "content_description":"搜索",
                                        "element_id":"top_right_search",
                                        "icon":{
                                            "native_model":{
                                                "height":24,
                                                "resource_name":"resource_top_right_search_dark_icon",
                                                "type":null,
                                                "width":24
                                            }
                                        },
                                        "show_first_screen":true
                                    },
                                    {
                                        "action":{
                                            "id":"action_collect",
                                            "ref_id":"ref_dark_icon"
                                        },
                                        "background":{
                                            "background_color":"#57292929",
                                            "padding":{
                                                "bottom":7,
                                                "left":7,
                                                "right":7,
                                                "top":7
                                            },
                                            "radius":{
                                                "bottom_left":20,
                                                "bottom_right":20,
                                                "top_left":20,
                                                "top_right":20
                                            }
                                        },
                                        "button_type":1,
                                        "content_description":"点击收藏",
                                        "element_id":"top_right_collect",
                                        "icon":{
                                            "native_model":{
                                                "height":24,
                                                "resource_name":"resource_top_right_collect_dark_icon",
                                                "type":null,
                                                "width":24
                                            }
                                        },
                                        "show_first_screen":true,
                                        "states":[
                                            {
                                                "action":{
                                                    "id":"action_collect",
                                                    "ref_id":"ref_dark_icon"
                                                },
                                                "background":{
                                                    "background_color":"#57292929",
                                                    "padding":{
                                                        "bottom":7,
                                                        "left":7,
                                                        "right":7,
                                                        "top":7
                                                    },
                                                    "radius":{
                                                        "bottom_left":20,
                                                        "bottom_right":20,
                                                        "top_left":20,
                                                        "top_right":20
                                                    }
                                                },
                                                "button_type":1,
                                                "content_description":"点击取消收藏",
                                                "element_id":"top_right_collect",
                                                "icon":{
                                                    "native_model":{
                                                        "height":24,
                                                        "resource_name":"resource_top_right_collected_dark_icon",
                                                        "type":null,
                                                        "width":24
                                                    }
                                                },
                                                "show_first_screen":true,
                                                "status_id":"status_collected"
                                            }
                                        ],
                                        "status_id":"status_collect"
                                    },
                                    {
                                        "action":{
                                            "id":"action_share"
                                        },
                                        "background":{
                                            "background_color":"#57292929",
                                            "padding":{
                                                "bottom":7,
                                                "left":7,
                                                "right":7,
                                                "top":7
                                            },
                                            "radius":{
                                                "bottom_left":20,
                                                "bottom_right":20,
                                                "top_left":20,
                                                "top_right":20
                                            }
                                        },
                                        "button_type":1,
                                        "content_description":"分享",
                                        "element_id":"top_right_share",
                                        "icon":{
                                            "native_model":{
                                                "height":24,
                                                "resource_name":"resource_top_right_share_dark_icon",
                                                "type":null,
                                                "width":24
                                            }
                                        },
                                        "show_first_screen":true
                                    }
                                ],
                                "scrollable":false,
                                "space":7
                            },
                            "light_elements":{
                                "button_list":[
                                    {
                                        "action":{
                                            "id":"action_collect",
                                            "ref_id":"ref_light_icon"
                                        },
                                        "background":{
                                            "padding":{
                                                "bottom":7,
                                                "left":7,
                                                "right":7,
                                                "top":7
                                            },
                                            "radius":{
                                                "bottom_left":20,
                                                "bottom_right":20,
                                                "top_left":20,
                                                "top_right":20
                                            }
                                        },
                                        "button_type":1,
                                        "content_description":"点击收藏",
                                        "element_id":"top_right_collect",
                                        "icon":{
                                            "native_model":{
                                                "height":24,
                                                "resource_name":"resource_top_right_collect_icon",
                                                "type":null,
                                                "width":24
                                            }
                                        },
                                        "show_first_screen":true,
                                        "states":[
                                            {
                                                "action":{
                                                    "id":"action_collect",
                                                    "ref_id":"ref_light_icon"
                                                },
                                                "background":{
                                                    "padding":{
                                                        "bottom":7,
                                                        "left":7,
                                                        "right":7,
                                                        "top":7
                                                    },
                                                    "radius":{
                                                        "bottom_left":20,
                                                        "bottom_right":20,
                                                        "top_left":20,
                                                        "top_right":20
                                                    }
                                                },
                                                "button_type":1,
                                                "content_description":"点击取消收藏",
                                                "element_id":"top_right_collect",
                                                "icon":{
                                                    "native_model":{
                                                        "height":24,
                                                        "resource_name":"resource_top_right_collected_icon",
                                                        "type":null,
                                                        "width":24
                                                    }
                                                },
                                                "show_first_screen":true,
                                                "status_id":"status_collected"
                                            }
                                        ],
                                        "status_id":"status_collect"
                                    },
                                    {
                                        "action":{
                                            "id":"action_share"
                                        },
                                        "background":{
                                            "padding":{
                                                "bottom":7,
                                                "left":7,
                                                "right":7,
                                                "top":7
                                            },
                                            "radius":{
                                                "bottom_left":20,
                                                "bottom_right":20,
                                                "top_left":20,
                                                "top_right":20
                                            }
                                        },
                                        "button_type":1,
                                        "content_description":"分享",
                                        "element_id":"top_right_im",
                                        "icon":{
                                            "native_model":{
                                                "height":24,
                                                "resource_name":"resource_top_right_share_icon",
                                                "type":null,
                                                "width":24
                                            }
                                        },
                                        "show_first_screen":true
                                    }
                                ],
                                "scrollable":false,
                                "space":7
                            }
                        },
                        "meta":{
                            "collect":{
                                "collected":false,
                                "product_min_price":4990
                            },
                            "share":{
                                "detail_url_without_scene_id":"https://haohuo.jinritemai.com/ecommerce/trade/detail/index.html?alkey=1128_99514375927_0_3445486507249553176_010&c_biz_combo=8&detail_schema=sslocal%3A%2F%2Fec_goods_detail%3Fpromotion_id%3D3445486507249553176%26product_id%3D3445486507249553176%26promotion_id%3D3445486507249553176%26item_id%3D0%26kol_id%3D99514375927%26enter_from%3Dcopy%26source_page%3Dcopy%26meta_params%3D%26request_additions%3D%257B%2522ecom_scene_id%2522%253A%25221003%2522%252C%2522from_internal_feed%2522%253A%2522false%2522%252C%2522cps_track%2522%253A%2522%2522%252C%2522marketing_channel%2522%253A%2522%2522%257D%26ec_s%3D127ad4c0561291fca1f134758b942d0907b00bd28cad_L0O%25252FoCviNDNAEgm%25252F%25252FNwNf7OT%25252FTIEWUOv4aR67J7dZEAvurzpjgruHTp8gnSL%25252FRI0&did=MS4wLjACAAAANwkJuWIRFOzg5uCpDRpMj4OX-QryoDgn-yYlXQnRwQQ&entrance_info=%7B%7D&from_link=1&goods_detail=%7B%22title%22%3A%22%E3%80%90%E6%8B%8D1%E5%8F%914%E3%80%91%E6%A2%B5%E8%B4%9E%E8%98%91%E8%8F%87%E5%A4%B4%E6%B0%94%E5%9E%ABbb%E9%9C%9C%E7%B2%89%E5%BA%95%E9%81%AE%E7%91%95%E4%BF%9D%E6%B9%BF%E4%BA%AE%E8%82%A4%E9%98%B2%E6%B0%B4%E4%B8%8D%E8%84%B1%E5%A6%86%E6%8C%81%E4%B9%85%22%2C%22sales%22%3A18058%2C%22img%22%3A%7B%22uri%22%3A%22ecom-shop-material%2FhtbHynrj_m_31ae65933e75bad51cab0b76b17a41ca_sx_919553_www807-807%22%2C%22url_list%22%3A%5B%22https%3A%2F%2Fp6-item.ecombdimg.com%2Fimg%2Fecom-shop-material%2FhtbHynrj_m_31ae65933e75bad51cab0b76b17a41ca_sx_919553_www807-807~tplv-5mmsx3fupr-image.png%22%2C%22https%3A%2F%2Fp26-item.ecombdimg.com%2Fimg%2Fecom-shop-material%2FhtbHynrj_m_31ae65933e75bad51cab0b76b17a41ca_sx_919553_www807-807~tplv-5mmsx3fupr-image.png%22%5D%2C%22width%22%3A100%2C%22height%22%3A100%7D%2C%22min_price%22%3A4990%2C%22max_price%22%3A4990%7D&h5_origin_type=detail_share&id=3445486507249553176&origin_id=99514375927_3445486507249553176&origin_type=3002002002&sec_author_id=MS4wLjABAAAA2I9NdgAKZrz9e0tLm1csyDMNqLESPDm34TdYYqXe8-I&u_code=hl42fe69&use_link_command=1&with_sec_did=1",
                                "first_image":{
                                    "height":1080,
                                    "uri":"ecom-shop-material/htbHynrj_m_31ae65933e75bad51cab0b76b17a41ca_sx_919553_www807-807",
                                    "url_list":[
                                        "https://p6-item.ecombdimg.com/img/ecom-shop-material/htbHynrj_m_31ae65933e75bad51cab0b76b17a41ca_sx_919553_www807-807~tplv-5mmsx3fupr-resize_q:1080:1080:q90.webp",
                                        "https://p26-item.ecombdimg.com/img/ecom-shop-material/htbHynrj_m_31ae65933e75bad51cab0b76b17a41ca_sx_919553_www807-807~tplv-5mmsx3fupr-resize_q:1080:1080:q90.webp"
                                    ],
                                    "width":1080
                                },
                                "kol_id":"99514375927",
                                "meta_param_without_scene_id":"",
                                "million_discount":false,
                                "share_button_animation":0,
                                "share_template":"7.43 N@w.sE HII:/ 02/01 【抖音商城】%s 【拍1发4】梵贞蘑菇头气垫bb霜粉底遮瑕保湿亮肤防水不脱妆持久\n长按复制此条消息,打开抖音搜索,查看商品详情!",
                                "title":"【拍1发4】梵贞蘑菇头气垫bb霜粉底遮瑕保湿亮肤防水不脱妆持久",
                                "visitor_count":7414
                            }
                        }
                    }
                }
            },
            "promotions":null,
            "status_code":0,
            "app_ver": "1.0.0-2.0",
            "_ddf":"leo",
            "format_check":"ok"
        },
        "error":"",
        "secache":"a6fb6fb2b51f4f556354006999ca5797",
        "secache_time":1705372533,
        "secache_date":"2024-01-16 10:35:33",
        "reason":"",
        "error_code":"0000",
        "cache":0,
        "api_info":"today: max:15000 all[=++];expires:2031-01-01",
        "execution_time":"0.867",
        "server_time":"Beijing/2024-01-16 10:35:33",
        "client_ip":"127.0.0.1",
        "call_args":{
            "num_iid":"3445486507249553176"
        },
        "api_type":"douyin",
        "server_memory":"4.5MB",
        "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/2023-11-30 15:44:00",
    		"call_args": [],
    		"api_type": "douyin",
    		"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(微信同号)