/* ===== Reset & Base ===== */ *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } html { -webkit-text-size-adjust: 100%; } body { font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Helvetica Neue", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif; background: #f7f8fa; color: #2D3436; line-height: 1.6; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; padding-top: 60px; padding-bottom: env(safe-area-inset-bottom, 0); } /* ===== Nav ===== */ nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(255,255,255,0.96); backdrop-filter: saturate(180%) blur(20px); -webkit-backdrop-filter: saturate(180%) blur(20px); border-bottom: 1px solid rgba(0,0,0,0.05); height: 60px; padding: 0 env(safe-area-inset-right, 16px) 0 env(safe-area-inset-left, 16px); } .nav-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 100%; padding: 0 16px; } .logo { font-size: 18px; font-weight: 700; color: #1DA1F2; text-decoration: none; letter-spacing: -0.3px; display: flex; align-items: center; gap: 6px; } .logo:hover { opacity: 0.8; } .nav-links { display: flex; gap: 4px; } .nav-links a { text-decoration: none; color: #2D3436; font-size: 14px; font-weight: 500; padding: 8px 14px; border-radius: 12px; transition: all 0.2s ease; min-height: 44px; display: flex; align-items: center; } .nav-links a:hover, .nav-links a:focus { background: rgba(29,161,242,0.1); color: #1DA1F2; } .nav-links a[href="tishici.html"] { background: #1DA1F2; color: #fff; } .menu-toggle { display: none; background: none; border: none; font-size: 24px; cursor: pointer; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; color: #2D3436; } /* ===== Drawer ===== */ .drawer-overlay { position: fixed; inset: 0; z-index: 200; background: rgba(0,0,0,0.4); opacity: 0; visibility: hidden; transition: all 0.3s ease; } .drawer-overlay.active { opacity: 1; visibility: visible; } .drawer-menu { position: fixed; top: 0; right: -300px; bottom: 0; z-index: 300; width: 280px; background: #fff; padding: 60px 24px 24px; box-shadow: -4px 0 24px rgba(0,0,0,0.08); transition: right 0.3s ease; overflow-y: auto; } .drawer-menu.active { right: 0; } .drawer-close { position: absolute; top: 8px; right: 12px; background: none; border: none; font-size: 22px; cursor: pointer; min-width: 44px; min-height: 44px; color: #2D3436; } .drawer-menu a { display: block; text-decoration: none; color: #2D3436; font-size: 16px; padding: 14px 12px; border-radius: 12px; transition: background 0.2s; min-height: 44px; } .drawer-menu a:hover, .drawer-menu a:focus { background: rgba(29,161,242,0.08); color: #1DA1F2; } .drawer-menu a[href="tishici.html"] { color: #1DA1F2; font-weight: 600; } /* ===== Container ===== */ .container { max-width: 1100px; margin: 0 auto; padding: 24px 16px 60px; } /* ===== Breadcrumb ===== */ .breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; font-size: 13px; color: #888; margin-bottom: 20px; padding: 10px 0; } .breadcrumb a { color: #1DA1F2; text-decoration: none; } .breadcrumb a:hover { text-decoration: underline; } .breadcrumb .sep { color: #ccc; } /* ===== Typography ===== */ h1 { font-size: 28px; font-weight: 700; line-height: 1.3; margin-bottom: 12px; letter-spacing: -0.5px; color: #1DA1F2; } .intro { font-size: 15px; color: #555; line-height: 1.7; background: #fff; border-radius: 12px; padding: 20px 24px; box-shadow: 0 1px 3px rgba(0,0,0,0.04); margin-bottom: 32px; border-left: 4px solid #1DA1F2; } h2 { font-size: 22px; font-weight: 700; margin: 40px 0 16px; padding-bottom: 10px; border-bottom: 2px solid #eef0f4; color: #2D3436; } h2 .badge { display: inline-block; font-size: 13px; font-weight: 600; background: #FF6B35; color: #fff; padding: 2px 12px; border-radius: 20px; margin-left: 8px; vertical-align: middle; } h3 { font-size: 17px; font-weight: 600; margin: 24px 0 10px; color: #2D3436; } h4 { font-size: 15px; font-weight: 600; margin: 18px 0 8px; color: #2D3436; } /* ===== Card ===== */ .card { background: #fff; border-radius: 12px; padding: 24px; box-shadow: 0 1px 4px rgba(0,0,0,0.04), 0 2px 8px rgba(0,0,0,0.02); margin-bottom: 24px; } /* ===== Table ===== */ .table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 12px 0 8px; border-radius: 12px; border: 1px solid #eef0f4; } table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 600px; } thead { background: #f0f4f9; } th { padding: 14px 12px; text-align: left; font-weight: 600; color: #1DA1F2; border-bottom: 2px solid #dce3ed; white-space: nowrap; font-size: 13px; } td { padding: 13px 12px; border-bottom: 1px solid #eef0f4; vertical-align: top; } tbody tr:last-child td { border-bottom: none; } tbody tr:hover { background: #f8faff; } td:first-child { font-weight: 600; color: #2D3436; } /* ===== Tags ===== */ .tag { display: inline-block; font-size: 12px; font-weight: 600; padding: 2px 10px; border-radius: 20px; } .tag-blue { background: rgba(29,161,242,0.12); color: #1DA1F2; } .tag-orange { background: rgba(255,107,53,0.12); color: #FF6B35; } .tag-green { background: rgba(52,199,89,0.12); color: #34C759; } .tag-gray { background: rgba(45,52,54,0.08); color: #2D3436; } /* ===== Section highlight ===== */ .section-highlight { background: linear-gradient(135deg, rgba(29,161,242,0.04), rgba(255,107,53,0.04)); border-radius: 12px; padding: 20px 24px; margin: 16px 0; border: 1px solid rgba(29,161,242,0.1); } .section-highlight p { font-size: 14px; color: #444; } .section-highlight strong { color: #1DA1F2; } /* ===== Prompt block ===== */ .prompt-block { font-size: 13px; color: #636E72; line-height: 1.6; background: #F8F9FA; border-radius: 10px; padding: 14px 16px; margin: 10px 0; font-family: "SF Mono", "Menlo", "Monaco", "Consolas", monospace; white-space: pre-wrap; word-break: break-word; border-left: 3px solid #1DA1F2; } .prompt-label { display: inline-block; padding: 3px 12px; border-radius: 12px; font-size: 12px; font-weight: 500; margin-bottom: 8px; } .prompt-label.blue { background: rgba(29,161,242,0.1); color: #1DA1F2; } .prompt-label.orange { background: rgba(255,107,53,0.1); color: #FF6B35; } .prompt-label.green { background: rgba(0,184,148,0.1); color: #00B894; } /* ===== Formula ===== */ .formula-box { background: #fff; border-radius: 12px; padding: 20px 24px; margin-bottom: 20px; border: 2px solid #1DA1F2; text-align: center; } .formula-text { font-size: 16px; font-weight: 600; color: #2D3436; line-height: 1.8; } .formula-text span { color: #1DA1F2; } .formula-text .highlight { background: rgba(255,107,53,0.1); color: #FF6B35; padding: 2px 6px; border-radius: 4px; } /* ===== Internal links grid ===== */ .link-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; margin: 16px 0; } .link-card { display: flex; flex-direction: column; background: #fff; border-radius: 12px; padding: 16px; text-decoration: none; color: #2D3436; box-shadow: 0 1px 4px rgba(0,0,0,0.04); transition: all 0.2s ease; border: 1px solid #eef0f4; } .link-card:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.08); border-color: #1DA1F2; } .link-card .l-title { font-weight: 600; font-size: 15px; color: #1DA1F2; margin-bottom: 4px; } .link-card .l-desc { font-size: 13px; color: #888; } .link-card .l-arrow { font-size: 18px; margin-top: 6px; text-align: right; color: #1DA1F2; } /* ===== Footer ===== */ footer { background: #2D3436; color: #ccc; padding: 32px 16px 40px; margin-top: 40px; } footer .container { padding-bottom: 0; } .footer-inner { max-width: 1100px; margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 24px; } .footer-brand { font-size: 18px; font-weight: 700; color: #fff; } .footer-contact { font-size: 14px; } .footer-contact a { color: #1DA1F2; text-decoration: none; font-weight: 600; } .footer-contact a:hover { text-decoration: underline; } .footer-copy { font-size: 12px; color: #999; margin-top: 16px; text-align: center; width: 100%; } /* ===== Tip cards ===== */ .tip-card { background: #fff; border-radius: 12px; box-shadow: 0 1px 4px rgba(0,0,0,0.04), 0 2px 8px rgba(0,0,0,0.02); padding: 20px 24px; margin-bottom: 16px; border-left: 4px solid #1DA1F2; } .tip-card.orange { border-left-color: #FF6B35; } .tip-card.green { border-left-color: #34C759; } .tip-card h4 { margin: 0 0 8px; font-size: 15px; } .tip-card p { font-size: 14px; color: #555; line-height: 1.7; } /* ===== Responsive ===== */ @media (max-width: 768px) { body { padding-top: 56px; } nav { height: 56px; } .nav-links { display: none; } .menu-toggle { display: flex; } .container { padding: 16px 14px 40px; } h1 { font-size: 22px; } h2 { font-size: 19px; margin-top: 32px; } .card { padding: 16px; } .intro { padding: 16px; font-size: 14px; } table { font-size: 13px; min-width: 480px; } th, td { padding: 10px 8px; } .link-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; } .footer-inner { flex-direction: column; gap: 12px; } .formula-text { font-size: 14px; } .tip-card { padding: 16px; } } @media (max-width: 480px) { .container { padding: 12px 12px 32px; } h1 { font-size: 20px; } table { font-size: 12px; min-width: 380px; } th, td { padding: 8px 6px; } } @media (prefers-color-scheme: dark) { body { background: #1c1e20; color: #e8e8e8; } nav { background: rgba(28,30,32,0.96); border-bottom-color: rgba(255,255,255,0.06); } .logo, .nav-links a { color: #e8e8e8; } .nav-links a[href="tishici.html"] { background: #1DA1F2; color: #fff; } .card, .intro { background: #26282b; box-shadow: 0 1px 3px rgba(0,0,0,0.2); } .intro { border-left-color: #1DA1F2; color: #bbb; } h2 { border-bottom-color: #333; color: #e8e8e8; } h3, h4 { color: #e8e8e8; } .breadcrumb { color: #999; } .breadcrumb a { color: #4db8f5; } thead { background: #2a2d31; } th { color: #4db8f5; border-bottom-color: #444; } td { border-bottom-color: #333; } tbody tr:hover { background: #2a2d31; } td:first-child { color: #e8e8e8; } .table-wrap { border-color: #333; } .section-highlight { background: rgba(29,161,242,0.06); border-color: rgba(29,161,242,0.15); } .section-highlight p { color: #bbb; } footer { background: #111; } .footer-brand { color: #e8e8e8; } .link-card { background: #26282b; border-color: #333; } .link-card:hover { border-color: #4db8f5; } .link-card .l-title { color: #4db8f5; } .link-card .l-desc { color: #999; } .drawer-menu { background: #26282b; } .drawer-menu a { color: #e8e8e8; } .drawer-menu a:hover { background: rgba(29,161,242,0.12); } .drawer-menu a[href="tishici.html"] { color: #4db8f5; } .menu-toggle { color: #e8e8e8; } .drawer-close { color: #e8e8e8; } .tag-blue { background: rgba(77,184,245,0.15); color: #4db8f5; } .tag-orange { background: rgba(255,107,53,0.15); color: #FF6B35; } .tag-green { background: rgba(52,199,89,0.15); color: #34C759; } .tag-gray { background: rgba(200,200,200,0.1); color: #bbb; } .prompt-block { background: #1a1b1e; color: #aaa; border-left-color: #4db8f5; } .formula-box { background: #26282b; border-color: #4db8f5; } .formula-text { color: #e8e8e8; } .tip-card { background: #26282b; } .tip-card p { color: #bbb; } } /* ===== Reading Progress Bar ===== */ .progress-bar { position: fixed; top: 60px; left: 0; height: 3px; background: linear-gradient(90deg, #1DA1F2, #FF6B35); z-index: 101; width: 0%; transition: width 0.1s linear; border-radius: 0 2px 2px 0; } /* ===== TOC Sidebar (Desktop) ===== */ .toc-container { position: fixed; left: max(calc((100vw - 1100px) / 2 - 220px), 10px); top: 90px; width: 200px; max-height: calc(100vh - 120px); overflow-y: auto; z-index: 50; display: block; background: rgba(255,255,255,0.92); backdrop-filter: saturate(180%) blur(20px); -webkit-backdrop-filter: saturate(180%) blur(20px); border-radius: 14px; padding: 16px; border: 1px solid rgba(0,0,0,0.06); box-shadow: 0 2px 12px rgba(0,0,0,0.04); font-size: 12px; } .toc-container::-webkit-scrollbar { width: 3px; } .toc-container::-webkit-scrollbar-thumb { background: #dce3ed; border-radius: 3px; } .toc-title { font-weight: 700; color: #1DA1F2; font-size: 13px; margin-bottom: 10px; letter-spacing: 0.5px; } .toc-container a { display: block; text-decoration: none; color: #666; padding: 6px 10px; border-radius: 8px; line-height: 1.4; margin-bottom: 2px; transition: all 0.15s ease; font-weight: 400; } .toc-container a:hover, .toc-container a:focus { background: rgba(29,161,242,0.08); color: #1DA1F2; } .toc-container a.active { background: rgba(29,161,242,0.12); color: #1DA1F2; font-weight: 600; } /* ===== Mobile TOC Toggle ===== */ .toc-toggle { display: none; position: fixed; right: 12px; bottom: 100px; z-index: 150; width: 44px; height: 44px; background: #1DA1F2; color: #fff; border: none; border-radius: 50%; font-size: 18px; box-shadow: 0 4px 16px rgba(29,161,242,0.3); cursor: pointer; align-items: center; justify-content: center; touch-action: manipulation; } /* ===== Back to Top ===== */ .back-to-top { position: fixed; right: 20px; bottom: 40px; z-index: 150; width: 44px; height: 44px; background: rgba(255,255,255,0.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(0,0,0,0.08); border-radius: 50%; box-shadow: 0 4px 16px rgba(0,0,0,0.1); cursor: pointer; display: none; align-items: center; justify-content: center; font-size: 18px; color: #1DA1F2; transition: all 0.3s ease; } .back-to-top:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); } .back-to-top.visible { display: flex; } /* ===== Section anchors ===== */ .section-anchor { position: relative; top: -70px; display: block; visibility: hidden; } /* ===== Summary Box ===== */ .summary-box { background: linear-gradient(135deg, rgba(29,161,242,0.06), rgba(52,199,89,0.06)); border-radius: 14px; padding: 24px 28px; margin: 32px 0 16px; border: 1px solid rgba(29,161,242,0.12); } .summary-box h3 { font-size: 18px; color: #1DA1F2; margin: 0 0 12px; } .summary-box ul { padding-left: 20px; color: #555; line-height: 1.9; font-size: 14px; } .summary-box ul li { margin-bottom: 6px; } /* ===== CTA Contact Card ===== */ .cta-card { background: linear-gradient(135deg, #1DA1F2, #0D8BD9); color: #fff; border-radius: 14px; padding: 28px 24px; margin: 24px 0; text-align: center; } .cta-card h3 { color: #fff !important; font-size: 19px; margin: 0 0 8px; } .cta-card p { font-size: 14px; opacity: 0.92; margin: 0 0 16px; line-height: 1.6; } .cta-pulse { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.2); color: #fff; text-decoration: none; padding: 12px 28px; border-radius: 24px; font-weight: 600; font-size: 15px; border: 1px solid rgba(255,255,255,0.3); box-shadow: 0 4px 16px rgba(0,0,0,0.15); transition: all 0.2s ease; } .cta-pulse:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,0.25); background: rgba(255,255,255,0.3); } /* ===== Touch targets ===== */ button, a, .link-card, .tip-card { touch-action: manipulation; } /* ===== Responsive updates ===== */ @media (max-width: 1400px) { .toc-container { display: none; } .toc-toggle { display: flex; } } @media (max-width: 768px) { body { padding-top: 56px; } nav { height: 56px; } .nav-links { display: none; } .menu-toggle { display: flex; } .container { padding: 16px 14px 40px; } h1 { font-size: 22px; } h2 { font-size: 19px; margin-top: 32px; } .card { padding: 16px; } .intro { padding: 16px; font-size: 14px; } table { font-size: 13px; min-width: 480px; } th, td { padding: 10px 8px; } .link-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 10px; } .footer-inner { flex-direction: column; gap: 12px; } .formula-text { font-size: 14px; } .tip-card { padding: 16px; } .summary-box { padding: 16px 20px; } .back-to-top { right: 12px; bottom: 30px; } .progress-bar { top: 56px; } .toc-mobile { position: fixed; top: 56px; right: 0; bottom: 0; width: 280px; background: rgba(255,255,255,0.98); backdrop-filter: blur(20px); z-index: 250; padding: 20px; padding-top: calc(20px + env(safe-area-inset-top, 0)); padding-bottom: calc(20px + env(safe-area-inset-bottom, 0)); overflow-y: auto; box-shadow: -4px 0 24px rgba(0,0,0,0.08); transform: translateX(100%); transition: transform 0.3s ease; } .toc-mobile.active { transform: translateX(0); } .toc-mobile-overlay { position: fixed; inset: 0; z-index: 240; background: rgba(0,0,0,0.4); opacity: 0; visibility: hidden; transition: all 0.3s ease; } .toc-mobile-overlay.active { opacity: 1; visibility: visible; } } @media (max-width: 480px) { .container { padding: 12px 12px 32px; } h1 { font-size: 20px; } table { font-size: 12px; min-width: 380px; } th, td { padding: 8px 6px; } .back-to-top { right: 10px; bottom: 24px; width: 40px; height: 40px; font-size: 16px; } } @media (min-width: 769px) { .menu-toggle { display: none !important; } .drawer-overlay, .drawer-menu, .toc-mobile, .toc-mobile-overlay { display: none !important; } } h2 { scroll-margin-top: 80px; } /* ===== Dark mode updates ===== */ @media (prefers-color-scheme: dark) { body { background: #1c1e20; color: #e8e8e8; } nav { background: rgba(28,30,32,0.96); border-bottom-color: rgba(255,255,255,0.06); } .logo, .nav-links a { color: #e8e8e8; } .nav-links a[href="tishici.html"] { background: #1DA1F2; color: #fff; } .card, .intro { background: #26282b; box-shadow: 0 1px 3px rgba(0,0,0,0.2); } .intro { border-left-color: #1DA1F2; color: #bbb; } h2 { border-bottom-color: #333; color: #e8e8e8; } h3, h4 { color: #e8e8e8; } .breadcrumb { color: #999; } .breadcrumb a { color: #4db8f5; } thead { background: #2a2d31; } th { color: #4db8f5; border-bottom-color: #444; } td { border-bottom-color: #333; } tbody tr:hover { background: #2a2d31; } td:first-child { color: #e8e8e8; } .table-wrap { border-color: #333; } .section-highlight { background: rgba(29,161,242,0.06); border-color: rgba(29,161,242,0.15); } .section-highlight p { color: #bbb; } footer { background: #111; } .footer-brand { color: #e8e8e8; } .link-card { background: #26282b; border-color: #333; } .link-card:hover { border-color: #4db8f5; } .link-card .l-title { color: #4db8f5; } .link-card .l-desc { color: #999; } .drawer-menu { background: #26282b; } .drawer-menu a { color: #e8e8e8; } .drawer-menu a:hover { background: rgba(29,161,242,0.12); } .drawer-menu a[href="tishici.html"] { color: #4db8f5; } .menu-toggle { color: #e8e8e8; } .drawer-close { color: #e8e8e8; } .tag-blue { background: rgba(77,184,245,0.15); color: #4db8f5; } .tag-orange { background: rgba(255,107,53,0.15); color: #FF6B35; } .tag-green { background: rgba(52,199,89,0.15); color: #34C759; } .tag-gray { background: rgba(200,200,200,0.1); color: #bbb; } .prompt-block { background: #1a1b1e; color: #aaa; border-left-color: #4db8f5; } .formula-box { background: #26282b; border-color: #4db8f5; } .formula-text { color: #e8e8e8; } .tip-card { background: #26282b; } .tip-card p { color: #bbb; } .toc-container, .back-to-top { background: rgba(38,40,43,0.94); border-color: rgba(255,255,255,0.08); } .toc-container a { color: #aaa; } .toc-container a:hover, .toc-container a:focus { background: rgba(29,161,242,0.15); } .summary-box { background: linear-gradient(135deg, rgba(29,161,242,0.08), rgba(52,199,89,0.08)); border-color: rgba(29,161,242,0.15); } .summary-box ul { color: #bbb; } .toc-mobile { background: rgba(38,40,43,0.98); } .toc-mobile a { color: #ccc; } }
首页 营销模式 实操指南 提示词库 推文技巧 场景方案 防封合规

Grok AI提示词模板库:22个即拷即用的跨境电商X推文Prompt模板

核心结论:本文提供Grok AI在X平台生成推文的完整提示词模板库,包含五大核心模块:Grok Prompt构建核心公式(7要素拆解)、跨境电商推文Prompt模板库(22个模板:产品推广5个/品牌故事3个/教育干货4个/互动引流4个/串文Thread6个)、Grok特有技巧(实时数据引用/视觉生成/立场设置/多语言生成)、推文内容优化参数表(字数对照/10种语气风格/Hashtag规范)、负向提示词与防AI检测改写(7项防封要点+6种改写方法)。所有模板即拷即用,只需替换方括号中的占位内容即可。

一、Grok Prompt构建核心公式 基础

1.1 推文Prompt通用公式

[角色设定] + [目标受众] + [内容主题] + [语气风格] + [结构要求] + [长度限制] + [CTA要求]

七个要素按顺序组合,即可生成高质量的推文Prompt。缺要素会导致输出偏离预期,建议全部写全。

要素填写说明与示例
角色设定给Grok身份:"你是一位美国市场跨境电商营销专家"
目标受众人群画像:"面向25-40岁重视性价比的科技爱好者"
内容主题具体内容:"蓝牙耳机新品上市推广"
语气风格语气参数:"轻松专业、数据驱动"(见第四章10种风格)
结构要求结构:"钩子开头 + 3个卖点 + 社交证明 + CTA"
长度限制字符数:"120-150字符"
CTA要求行动引导:"结尾引导点击独立站链接"

二、跨境电商推文Prompt模板库(22个) 核心

2.1 产品推广类(5个模板)

模板名适用场景
新品发布型新品上市首推,制造期待感
限时促销型大促/清仓/闪购,营造紧迫感
爆款推荐型复推数据验证过的爆款
参数对比型与竞品对比,突出技术优势
使用场景型场景化展示产品解决痛点
【新品发布型】示例 Act as a senior X platform growth marketer for cross-border e-commerce. - Product: [产品名 + 3个核心卖点] - Audience: [目标受众] - Angle: 新品首发悬念 + 首批限量 - Tone: excited & exclusive - Structure: 钩子 + 卖点 + 首批优惠 + CTA - Length: 120-150 characters - Hashtags: ≤2

2.2 品牌故事类(3个模板)

模板名适用场景
品牌介绍型讲清品牌起源与使命
团队故事型创始人/团队真实故事建立情感连接
客户案例型客户真实使用经历背书
【品牌故事型】示例 Write a brand story tweet about [brand]. - Core value: [品牌核心价值] - Story arc: 初心 → 坚持 → 成就 - Tone: authentic & emotional - Structure: 具体细节 + 情感共鸣 + 品牌名 + CTA - Length: 180-220 characters

2.3 教育干货类(4个模板)

模板名适用场景
使用教程型教用户如何正确使用产品
行业知识型输出行业洞察建立专业形象
数据分享型用数据说话,增强可信度
误区纠正型指出常见误区,提供正确方案

2.4 互动引流类(4个模板)

模板名适用场景
投票提问型发起投票/二选一,快速起量
有奖互动型转发抽奖/评论区互动送礼
话题讨论型抛出争议话题引发讨论
填字/挑战型趣味挑战,病毒式传播
【投票提问型】示例 Create an engaging poll-style tweet for [niche]. - Topic: [话题,二选一或三选一] - Tone: fun & curious - Length: 80-120 characters(互动类要短) - Add a poll with 2-3 options - CTA: "Comment your choice and why"

2.5 串文Thread类(6个模板)

模板名适用场景
干货教程串文步骤式教程(3-5条)
案例拆解串文成功案例复盘(4-6条)
观点输出串文行业观点长文(3-7条)
清单总结串文干货清单(3-5条)
故事叙述串文品牌/创业故事(5-7条)
合集盘点串文资源/工具盘点(4-6条)
【干货教程串文】示例 Create an X thread (3-5 posts) teaching [topic]. - Post 1: 钩子(痛点/数据)引出主题 - Post 2-4: 每个核心步骤一条,配具体操作 - Post 5: 总结 + 收藏引导 + CTA - Each post: 150-250 characters - End with: "Follow @[你的账号] for more"

三、Grok特有技巧 进阶

3.1 Grok四大独特能力

能力说明Prompt用法示例
实时数据引用直接抓取X平台热点与趋势话题"引用X平台当前热门话题"
视觉生成Grok Vision生成/识别配图"生成一张与推文匹配的配图"
立场偏好设置设定Grok为特定商业/内容立场"以卖家视角、批判性分析竞品"
多语言生成中英日韩德法等10+语言无缝切换"用西班牙语生成,面向墨西哥市场"

热点营销:在Prompt中加入"引用X平台当前热门话题"或"结合最新趋势"指令,Grok会自动抓取实时热点数据并整合到推文中,实现借势营销。

四、推文内容优化参数表

4.1 推文字数对照表

内容类型推荐字数说明
产品推广类120-150字符短平快,直击卖点
互动引流类80-120字符最短,快速起互动
品牌故事类180-220字符留足叙事空间
教育干货类200-250字符信息量充足
串文Thread每条150-250字符整体3-7条

4.2 10种语气风格参数

语气风格适用场景
专业权威行业报告、数据解读
轻松幽默日常互动、生活方式类
紧迫感限时促销、限量发售
故事叙述品牌故事、客户案例
数据说服参数对比、效果证明
对话提问投票、话题讨论
激励鼓舞创业、成长类内容
简洁直接公告、上新通知
教育讲解教程、干货分享
社交亲切粉丝互动、日常内容

4.3 Hashtag使用规范(6项)

#规范要求
1每篇推荐1-3个Hashtag,最多不超过3个
2优先选搜索量中等(10K-100K)、竞争度低的长尾Hashtag
3Hashtag应自然融入推文内容,避免集中堆放在结尾
4品牌自有Hashtag可固定每篇使用,形成识别度
5避免使用与内容无关的热门标签蹭流量
6英文标签用CamelCase(如 #CrossBorderEcommerce)提高可读性

五、负向提示词与防AI检测改写 重要

5.1 7项防封要点(避免垃圾信息判定)

#要点
1避免过度堆砌Hashtag(每篇≤3个)
2不要重复使用相同句式模板,差异化表达
3确保内容有信息价值,而非纯营销广告
4控制外链数量,每5条推文最多1条带链接
5避免违规关键词(黑五类/医疗/金融敏感词)
6加入人工改写,使内容自然化、口语化
7发布频率控制,每日5-8条,间隔至少2小时

5.2 6种防AI检测改写技巧

#方法示例
1加入个人经历/数据细节"上个月我们测了20款…"
2口语化表达,减少书面腔"说实话,这玩意儿真的顶"
3打破完美结构,加入短句单字/短语断句:"真的。就这么简单。"
4融入平台语境梗引用X平台热门梗、语气词
5改变句式模板顺序先结论后铺垫,避免"首先…其次…"
6手动微调关键词替换通用词为行业黑话/英文混排

📌 核心总结

🎯 Grok提示词模板 · 使用要点

相关文章推荐