{"product_id":"wheel-armor-multi-surface-automotive-custom-marker","title":"🏎️ Wheel Armor Multi-Surface Automotive Custom Marker","description":"\u003cstyle\u003e   \/* =====================================================      TRACK-READY RACING AUTOMOTIVE TEMPLATE      Color Palette: Asphalt Black, Racing Red \u0026 Electric Blue      ===================================================== *\/   .auto-page-wrapper {     --bg-base: #080a0f;          \/* 沥青深黑 *\/     --panel-bg: rgba(18, 22, 34, 0.85); \/* 磨砂玻璃质感面板 *\/     --panel-dark: rgba(10, 12, 18, 0.95);     --text-main: #f8fafc;        \/* 亮白正文 *\/     --text-muted: #94a3b8;       \/* 辅助灰蓝 *\/     --primary: #f92a43;          \/* 竞速引擎红 *\/     --primary-glow: rgba(249, 42, 67, 0.45);     --accent: #2a6df9;           \/* 电光极客蓝 *\/     --accent-glow: rgba(42, 109, 249, 0.45);     --border-light: rgba(249, 42, 67, 0.25);     --border-dark: rgba(42, 109, 249, 0.25);          --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.6);     --shadow-md: 0 8px 25px rgba(249, 42, 67, 0.15);     --shadow-hover: 0 12px 35px rgba(249, 42, 67, 0.35);          position: relative;     width: 100%;     max-width: 960px;     margin: 0 auto;     background-color: var(--bg-base);     color: var(--text-main);     font-family: 'Impact', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;     line-height: 1.6;     overflow: hidden;     scroll-behavior: smooth;     isolation: isolate;   }    \/* 极速流光动态背景 (Speed-lines Effect) *\/   .auto-page-wrapper::before {     content: '';     position: absolute;     top: -50%; left: -50%; right: -50%; bottom: -50%;     width: 200%; height: 200%;     background: repeating-linear-gradient(       -45deg,       rgba(249, 42, 67, 0.02) 0px,       rgba(249, 42, 67, 0.02) 2px,       transparent 2px,       transparent 20px,       rgba(42, 109, 249, 0.02) 20px,       rgba(42, 109, 249, 0.02) 22px,       transparent 22px,       transparent 60px     );     z-index: -2;     pointer-events: none;     animation: speed-drift 8s linear infinite;   }   @keyframes speed-drift {     0% { transform: translateY(0) translateX(0); }     100% { transform: translateY(120px) translateX(-120px); }   }      \/* 中心高能光晕 *\/   .auto-page-wrapper::after {     content: '';     position: absolute;     top: 0; left: 50%; transform: translateX(-50%);     width: 900px; height: 900px;     background: radial-gradient(circle, rgba(249,42,67,0.12) 0%, rgba(42,109,249,0.08) 40%, transparent 70%);     z-index: -1;     pointer-events: none;   }    .auto-page-wrapper * { box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; }   .auto-page-wrapper h1, .auto-page-wrapper h2, .auto-page-wrapper h3, .auto-page-wrapper .ap-kicker { font-family: 'Impact', 'Arial Black', sans-serif; letter-spacing: 1px; }      .auto-page-wrapper img { width: 100%; height: auto; display: block; object-fit: cover; }   .auto-page-wrapper a { text-decoration: none; color: inherit; display: block; }      .ap-section { padding: 45px 20px; position: relative; border-bottom: 1px solid rgba(255,255,255,0.03); }   .ap-section-dark { background: linear-gradient(180deg, transparent 0%, #030408 100%); }      \/* 蓝色强调色背景区 *\/   .ap-section-accent {      background: linear-gradient(135deg, rgba(15, 20, 35, 0.9) 0%, rgba(5, 7, 15, 0.95) 100%);      box-shadow: inset 0 0 40px rgba(42, 109, 249, 0.1);   }      \/* Media Container with Speed Hover Effect *\/   .ap-media {     border-radius: 12px;     overflow: hidden;     box-shadow: var(--shadow-sm);     margin: 20px 0;     border: 1px solid var(--border-light);     transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;   }   .ap-media:hover {     transform: translateY(-5px) scale(1.02);     border-color: var(--primary);     box-shadow: 0 10px 30px var(--primary-glow);   }    \/* Typography *\/   .ap-kicker { color: var(--primary); font-size: 15px; font-weight: 400; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; text-shadow: 0 0 15px var(--primary-glow); }   .ap-section-accent .ap-kicker { color: var(--accent); text-shadow: 0 0 15px var(--accent-glow); }      .ap-title { font-size: clamp(30px, 5vw, 46px); font-weight: 400; line-height: 1.1; margin: 0 0 15px; color: #ffffff; text-transform: uppercase; text-shadow: 2px 2px 0px rgba(249,42,67,0.5); }   .ap-subtitle { font-size: 16px; color: var(--text-muted); margin-bottom: 20px; font-family: -apple-system, BlinkMacSystemFont, sans-serif; letter-spacing: 0; }    \/* Hero Racing Badges *\/   .ap-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 25px; }   .ap-badge {      background: linear-gradient(90deg, rgba(249, 42, 67, 0.15), rgba(42, 109, 249, 0.15));      border: 1px solid rgba(255,255,255,0.15);      padding: 6px 16px;      border-radius: 4px; \/* 赛道风采用硬朗直角 *\/     font-size: 13px;      font-weight: 800;      color: #fff;      display: flex;      align-items: center;      gap: 6px;      backdrop-filter: blur(5px);     box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);    }    \/* 2x2 Feature Grid Navigation *\/   .ap-grid-nav { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 30px; }   .ap-nav-card {     background: var(--panel-bg);     backdrop-filter: blur(10px);     -webkit-backdrop-filter: blur(10px);     padding: 20px 16px;     border-radius: 8px;     border: 1px solid rgba(255,255,255,0.08);     border-bottom: 3px solid rgba(255,255,255,0.1);     box-shadow: var(--shadow-sm);     transition: all 0.3s ease;     text-align: center;   }   .ap-nav-card:hover {     transform: translateY(-4px);     background: rgba(30, 35, 50, 0.9);     border-color: var(--border-light);     border-bottom: 3px solid var(--primary);     box-shadow: 0 10px 25px var(--primary-glow);   }   .ap-nav-icon { font-size: 28px; margin-bottom: 8px; display: block; filter: drop-shadow(0 0 8px var(--primary-glow)); }   .ap-nav-title { font-size: 16px; font-weight: 800; margin: 0 0 4px; color: #ffffff; text-transform: uppercase; font-family: 'Impact', sans-serif; letter-spacing: 1px; }   .ap-nav-desc { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.4; }    \/* Feature Text Block *\/   .ap-feature-text { margin-top: 20px; }   .ap-feature-text h3 { font-size: 26px; font-weight: 400; margin: 0 0 12px; color: #ffffff; text-transform: uppercase; }   .ap-feature-text p { font-size: 15px; color: var(--text-muted); margin: 0 0 15px; }      \/* Interactive Details (Specs \u0026 FAQ) *\/   .ap-accordion { margin-top: 20px; }   .ap-accordion details {     background: var(--panel-bg);     backdrop-filter: blur(10px);     border: 1px solid rgba(255,255,255,0.08);     border-left: 3px solid rgba(255,255,255,0.2);     border-radius: 6px;     margin-bottom: 12px;     overflow: hidden;     transition: all 0.3s ease;   }   .ap-accordion details[open] {      border-left: 3px solid var(--primary);      box-shadow: 0 0 20px rgba(249, 42, 67, 0.15);      background: rgba(20, 25, 40, 0.95);   }   .ap-accordion summary {     padding: 18px 16px;     font-size: 16px;     font-weight: 800;     cursor: pointer;     list-style: none;     position: relative;     color: #ffffff;     text-transform: uppercase;   }   .ap-accordion summary::-webkit-details-marker { display: none; }   .ap-accordion summary::after {     content: '+';     position: absolute;     right: 16px;     top: 50%;     transform: translateY(-50%);     font-size: 24px;     color: var(--primary);     transition: transform 0.3s ease;   }   .ap-accordion details[open] summary::after { content: '−'; color: var(--accent); }   .ap-accordion-content { padding: 0 16px 18px; font-size: 14px; color: var(--text-muted); line-height: 1.7; }   .ap-accordion-content strong { color: #fff; font-weight: 700; border-bottom: 1px solid var(--primary); }    \/* Trust Module *\/   .ap-trust-list {      background: rgba(0,0,0,0.6);      border: 1px solid rgba(255,255,255,0.1);      border-radius: 8px;      padding: 24px;      margin-top: 30px;      backdrop-filter: blur(10px);   }   .ap-trust-item { font-size: 14px; color: #ffffff; margin-bottom: 14px; display: flex; align-items: center; gap: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }   .ap-trust-item:last-child { margin-bottom: 0; }   .ap-trust-item::before {      content: '✓';      display: inline-flex;      justify-content: center;      align-items: center;      width: 24px; height: 24px;      background: linear-gradient(135deg, var(--primary), #8a0b1c);      color: #fff;      border-radius: 4px;      font-size: 14px;      font-weight: 900;     box-shadow: 0 0 10px var(--primary-glow);   }    \/* Racing CTA Button *\/   .ppt-cta-button {     display: flex;     justify-content: center;     align-items: center;     width: 100%;     max-width: 440px;     margin: 40px auto 0;     padding: 20px 20px;     background: linear-gradient(90deg, #f92a43 0%, #b30f23 100%);     color: #ffffff;     font-size: 20px;     font-weight: 900;     font-family: 'Impact', sans-serif;     text-transform: uppercase;     letter-spacing: 2px;     border-radius: 6px;     box-shadow: 0 8px 25px rgba(249, 42, 67, 0.4);     transition: transform 0.2s ease, box-shadow 0.2s ease;     border: 1px solid #ff4d63;   }   .ppt-cta-button:hover {      transform: translateY(-3px) scale(1.02);      box-shadow: 0 12px 35px rgba(249, 42, 67, 0.6);    }    @media(min-width: 768px){     .ap-section { padding: 60px 40px; }     .ap-flex-row { display: flex; align-items: center; gap: 50px; }     .ap-flex-row \u003e * { flex: 1; }     .ap-feature-text { margin-top: 0; }   }   @media (prefers-reduced-motion: reduce) {     .auto-page-wrapper::before, .auto-page-wrapper::after { animation: none; }   } \u003c\/style\u003e \u003cdiv class=\"auto-page-wrapper\"\u003e \u003csection class=\"ap-section\"\u003e \u003cp class=\"ap-kicker\"\u003e\u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0780\/1287\/4799\/files\/9_20.gif?v=1789878733\" alt=\"\"\u003e\u003cbr\u003eProfessional Auto Tuning\u003c\/p\u003e \u003ch1 class=\"ap-title\"\u003eTransform Your Wheels \u0026amp; Fix Scratches Instantly.\u003c\/h1\u003e \u003cp class=\"ap-subtitle\"\u003eA premium automotive-grade paint marker engineered for custom tire lettering and seamless car body scratch repair. Built to withstand the harshest elements.\u003c\/p\u003e \u003cdiv class=\"ap-badges\"\u003e \u003cdiv class=\"ap-badge\"\u003e💦 Wash Proof\u003c\/div\u003e \u003cdiv class=\"ap-badge\"\u003e☀️ UV Resistant\u003c\/div\u003e \u003cdiv class=\"ap-badge\"\u003e🏎️ Auto Grade\u003c\/div\u003e \u003c\/div\u003e \u003cdiv class=\"ap-media\"\u003e\u003ca href=\"%E8%BF%99%E9%87%8C%E5%A4%8D%E5%88%B6%E4%BA%A7%E5%93%81%E8%AF%A6%E6%83%85%E9%93%BE%E6%8E%A5\"\u003e \u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0780\/1287\/4799\/files\/ChatGPT_Image_Sep_20__2026__12_35_41_PM.png?v=1789879102\" alt=\"Product Presentation\" loading=\"eager\"\u003e \u003c\/a\u003e\u003c\/div\u003e \u003cdiv class=\"ap-grid-nav\"\u003e \u003ca href=\"#feature-tires\" class=\"ap-nav-card\"\u003e\u003cspan class=\"ap-nav-icon\"\u003e🏎️\u003c\/span\u003e \u003ch3 class=\"ap-nav-title\"\u003eCustom Tires\u003c\/h3\u003e \u003cp class=\"ap-nav-desc\"\u003ePermanent lettering\u003c\/p\u003e \u003c\/a\u003e\u003ca href=\"#feature-scratch\" class=\"ap-nav-card\"\u003e\u003cspan class=\"ap-nav-icon\"\u003e🚗\u003c\/span\u003e \u003ch3 class=\"ap-nav-title\"\u003eScratch Fix\u003c\/h3\u003e \u003cp class=\"ap-nav-desc\"\u003eHide paint scuffs\u003c\/p\u003e \u003c\/a\u003e\u003ca href=\"#feature-wash\" class=\"ap-nav-card\"\u003e\u003cspan class=\"ap-nav-icon\"\u003e💦\u003c\/span\u003e \u003ch3 class=\"ap-nav-title\"\u003eWash Proof\u003c\/h3\u003e \u003cp class=\"ap-nav-desc\"\u003eResists high pressure\u003c\/p\u003e \u003c\/a\u003e\u003ca href=\"#feature-precision\" class=\"ap-nav-card\"\u003e\u003cspan class=\"ap-nav-icon\"\u003e✍️\u003c\/span\u003e \u003ch3 class=\"ap-nav-title\"\u003eValve Tip\u003c\/h3\u003e \u003cp class=\"ap-nav-desc\"\u003ePerfect fluid control\u003c\/p\u003e \u003c\/a\u003e \u003c\/div\u003e \u003c\/section\u003e \u003csection class=\"ap-section\" id=\"feature-tires\"\u003e \u003cdiv class=\"ap-flex-row\"\u003e \u003cdiv class=\"ap-media\"\u003e\u003ca href=\"%E8%BF%99%E9%87%8C%E5%A4%8D%E5%88%B6%E4%BA%A7%E5%93%81%E8%AF%A6%E6%83%85%E9%93%BE%E6%8E%A5\"\u003e \u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0780\/1287\/4799\/files\/ChatGPT_Image_Sep_20__2026__12_40_12_PM__2.png?v=1789879262\" alt=\"Custom rim striping before and after\" loading=\"lazy\"\u003e \u003c\/a\u003e\u003c\/div\u003e \u003cdiv class=\"ap-feature-text\"\u003e \u003cp class=\"ap-kicker\"\u003eSport Styling\u003c\/p\u003e \u003ch3\u003eStand Out on the Street\u003c\/h3\u003e \u003cp\u003eGive your vehicle that aggressive, track-ready aesthetic. Easily trace your tire brand letters or draw custom rim stripes. The high-opacity paint guarantees vibrant, eye-catching results in minutes.\u003c\/p\u003e \u003c\/div\u003e \u003c\/div\u003e \u003c\/section\u003e \u003csection class=\"ap-section\" id=\"feature-scratch\"\u003e \u003cdiv class=\"ap-flex-row\" style=\"flex-direction: row-reverse;\"\u003e \u003cdiv class=\"ap-media\" style=\"border-color: var(--border-dark);\"\u003e\u003ca href=\"%E8%BF%99%E9%87%8C%E5%A4%8D%E5%88%B6%E4%BA%A7%E5%93%81%E8%AF%A6%E6%83%85%E9%93%BE%E6%8E%A5\"\u003e \u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0780\/1287\/4799\/files\/ChatGPT_Image_Sep_20__2026__12_30_58_PM__1.png?v=1789879336\" alt=\"Car scratch repair before and after\" loading=\"lazy\"\u003e \u003c\/a\u003e\u003c\/div\u003e \u003cdiv class=\"ap-feature-text\"\u003e \u003cp class=\"ap-kicker\" style=\"color: var(--accent); text-shadow: 0 0 10px var(--accent-glow);\"\u003eInstant Concealer\u003c\/p\u003e \u003ch3 style=\"text-shadow: 2px 2px 0px rgba(42,109,249,0.5);\"\u003eErase Ugly Scratches\u003c\/h3\u003e \u003cp\u003eSkip the expensive body shop. This marker isn't just for tires—its automotive-grade paint seamlessly fills and conceals superficial scratches, rock chips, and scuffs on your car's bodywork.\u003c\/p\u003e \u003c\/div\u003e \u003c\/div\u003e \u003c\/section\u003e \u003csection class=\"ap-section ap-section-accent\" id=\"feature-wash\"\u003e \u003cdiv class=\"ap-flex-row\"\u003e \u003cdiv class=\"ap-media\" style=\"border-color: var(--accent); box-shadow: 0 0 20px var(--accent-glow);\"\u003e\u003ca href=\"%E8%BF%99%E9%87%8C%E5%A4%8D%E5%88%B6%E4%BA%A7%E5%93%81%E8%AF%A6%E6%83%85%E9%93%BE%E6%8E%A5\"\u003e \u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0780\/1287\/4799\/files\/ChatGPT_Image_Sep_20__2026__12_40_12_PM__1.png?v=1789879262\" alt=\"Pressure washing tire lettering\" loading=\"lazy\"\u003e \u003c\/a\u003e\u003c\/div\u003e \u003cdiv class=\"ap-feature-text\"\u003e \u003cp class=\"ap-kicker\" style=\"color: var(--accent);\"\u003eUnstoppable Durability\u003c\/p\u003e \u003ch3 style=\"text-shadow: 2px 2px 0px rgba(42,109,249,0.5);\"\u003eEngineered for the Elements\u003c\/h3\u003e \u003cp\u003eRain, mud, baking sun, or the brutal force of a pressure washer—this premium paint holds its ground. Formulated specifically to bond with rubber and metal, it won't flake, crack, or fade away.\u003c\/p\u003e \u003c\/div\u003e \u003c\/div\u003e \u003c\/section\u003e \u003csection class=\"ap-section\" id=\"feature-precision\"\u003e \u003cp class=\"ap-kicker\"\u003eProduct Details\u003c\/p\u003e \u003ch2 class=\"ap-title\"\u003eSpecs \u0026amp; Questions\u003c\/h2\u003e \u003cdiv class=\"ap-accordion\"\u003e \u003cdetails open=\"\"\u003e \u003csummary\u003e🛠️ Core Specifications\u003c\/summary\u003e \u003cdiv class=\"ap-accordion-content\"\u003e \u003cstrong\u003eTip Type:\u003c\/strong\u003e Precision Valve-Action Tip\u003cbr\u003e\u003cstrong\u003ePaint Type:\u003c\/strong\u003e High-Opacity Automotive Acrylic\u003cbr\u003e\u003cstrong\u003eResistances:\u003c\/strong\u003e UV Rays, Water, High-Pressure Washes\u003cbr\u003e\u003cstrong\u003eApplications:\u003c\/strong\u003e Tire Rubber, Metal Rims, Car Body Paint\u003c\/div\u003e \u003c\/details\u003e \u003cdetails\u003e \u003csummary\u003e💧 Will it wash off at the car wash?\u003c\/summary\u003e \u003cdiv class=\"ap-accordion-content\"\u003eAbsolutely not. Once fully cured, the specialized paint bonds tenaciously to the surface, easily withstanding high-powered pressure washers and harsh scrubbing.\u003c\/div\u003e \u003c\/details\u003e \u003cdetails\u003e \u003csummary\u003e🚗 Does it work on any car color?\u003c\/summary\u003e \u003cdiv class=\"ap-accordion-content\"\u003eFor scratch repair, ensure you select the marker color that closest matches your vehicle's paint. For tires, \u003cstrong\u003eWhite\u003c\/strong\u003e and \u003cstrong\u003eYellow\u003c\/strong\u003e are the most popular choices for high contrast.\u003c\/div\u003e \u003c\/details\u003e \u003cdetails\u003e \u003csummary\u003e⏱️ How long does the paint take to dry?\u003c\/summary\u003e \u003cdiv class=\"ap-accordion-content\"\u003eIt is touch-dry in minutes, but we recommend letting it fully cure for 24 hours before exposing it to heavy rain or car washes for maximum longevity.\u003c\/div\u003e \u003c\/details\u003e \u003c\/div\u003e \u003c\/section\u003e \u003csection class=\"ap-section ap-section-dark\"\u003e \u003cdiv style=\"text-align: center;\"\u003e \u003ch2 class=\"ap-title\"\u003eReady to Upgrade Your Ride?\u003c\/h2\u003e \u003cp class=\"ap-subtitle\"\u003eGrab yours today and experience professional-grade tuning from your driveway.\u003c\/p\u003e \u003c\/div\u003e \u003cdiv class=\"ap-trust-list\"\u003e \u003cdiv class=\"ap-trust-item\"\u003ePremium Automotive Grade Paint Formulation\u003c\/div\u003e \u003cdiv class=\"ap-trust-item\"\u003eSafe and Secure Express Checkout\u003c\/div\u003e \u003cdiv class=\"ap-trust-item\"\u003eFast Tracked Shipping Directly to Your Door\u003c\/div\u003e \u003cdiv class=\"ap-trust-item\"\u003e100% Satisfaction Guarantee on Every Order\u003c\/div\u003e \u003c\/div\u003e \u003ca href=\"#\" class=\"ppt-cta-button\"\u003e Claim Your Tuning Marker 🛒 \u003c\/a\u003e\u003c\/section\u003e \u003c\/div\u003e","brand":"FJY01","offers":[{"title":"White","offer_id":49668014113027,"sku":"NC01862609206245-白色","price":19.99,"currency_code":"USD","in_stock":true},{"title":"Black","offer_id":49668014145795,"sku":"NC01862609206245-黑色","price":19.99,"currency_code":"USD","in_stock":true},{"title":"Red","offer_id":49668014178563,"sku":"NC01862609206245-红色","price":19.99,"currency_code":"USD","in_stock":true},{"title":"Blue","offer_id":49668014211331,"sku":"NC01862609206245-蓝色","price":19.99,"currency_code":"USD","in_stock":true},{"title":"Green","offer_id":49668014244099,"sku":"NC01862609206245-绿色","price":19.99,"currency_code":"USD","in_stock":true},{"title":"Yellow","offer_id":49668014276867,"sku":"NC01862609206245-黄色","price":19.99,"currency_code":"USD","in_stock":true},{"title":"Purple","offer_id":49668014309635,"sku":"NC01862609206245-紫色","price":19.99,"currency_code":"USD","in_stock":true},{"title":"Orange","offer_id":49668014342403,"sku":"NC01862609206245-橙色","price":19.99,"currency_code":"USD","in_stock":true},{"title":"Gold","offer_id":49668014375171,"sku":"NC01862609206245-金色","price":19.99,"currency_code":"USD","in_stock":true},{"title":"Silver","offer_id":49668014407939,"sku":"NC01862609206245-银色","price":19.99,"currency_code":"USD","in_stock":true},{"title":"Brown","offer_id":49668014440707,"sku":"NC01862609206245-咖啡色","price":19.99,"currency_code":"USD","in_stock":true},{"title":"Pink","offer_id":49668014473475,"sku":"NC01862609206245-粉红色","price":19.99,"currency_code":"USD","in_stock":true},{"title":"12-Color Set","offer_id":49668014506243,"sku":"NC01862609206245-黑色+红色+蓝色+绿色+ 黄色+紫色+橙色+白色+金色+银色+咖啡色+粉红色","price":56.99,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0818\/6013\/3123\/files\/ChatGPT_Image_Sep_20__2026__12_24_36_PM.png?v=1789986631","url":"https:\/\/cyrarise.com\/zh\/products\/wheel-armor-multi-surface-automotive-custom-marker","provider":"cyrarise","version":"1.0","type":"link"}