/* ===== 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扮演的身份角色 | "你是一名跨境电商营销专家,专注DTC品牌出海" | 限定Grok输出的专业视角和知识背景 |
| 目标受众 | 推文面向的目标人群 | "目标受众为25-40岁的美国家庭消费者,关注性价比和品质" | 确保内容精准触达目标人群 |
| 内容主题 | 推文要传达的核心信息 | "推广一款智能家居安防摄像头,核心卖点是AI人形检测和夜视功能" | 明确推文的核心信息锚点 |
| 语气风格 | 推文的情感基调和表达方式 | "语气专业但不失亲和,带一点点紧迫感" | 控制推文的情感色彩 |
| 结构要求 | 推文的段落组织和顺序 | "开头一句吸引眼球的钩子→中间2-3句产品介绍→结尾CTA" | 确保推文逻辑清晰、易于阅读 |
| 长度限制 | 推文的字符数范围 | "全文控制在120-180字符之间" | 适配Grok评分偏好,控制内容密度 |
| CTA要求 | 推文末尾的行动号召 | "结尾引导用户点击链接查看详情,同时鼓励评论互动" | 提升推文互动率和转化率 |
💡 使用技巧:七个要素缺一不可。每次写Prompt时,按顺序填入具体内容即可生成高质量的推文。初期建议将公式复制到备忘录中,每次创作时逐项填写,熟练后可自由组合省略某些要素。
| 维度 | 内容 |
|---|---|
| 场景 | 新品首发预热/正式发布推文 |
| 目标 | 制造期待感,引导用户关注新品并点击链接了解详情 |
| Grok Prompt | You are a product launch specialist for cross-border e-commerce. Target audience: US consumers aged 25-45 interested in smart home devices. Write a tweet to announce our new product [产品名称]. Key selling points: [卖点1], [卖点2], [卖点3]. Tone: Exciting and aspirational with a sense of exclusivity. Structure: Hook → Product reveal → Key benefit → CTA. Length: 120-150 characters. CTA: Encourage clicks and pre-orders. Include 2 relevant hashtags. |
| 输出示例 | Your home just got smarter 🤖✨ Meet [Product Name] — the AI security cam that detects people, not pets. 4K night vision + real-time alerts. Be the first to experience next-gen security. 🔗 Pre-order now 👇 #SmartHome #HomeSecurity |
| 适用阶段 | 产品上市前1-2周预热期 |
| 维度 | 内容 |
|---|---|
| 场景 | 黑五/网一/Prime Day/季末清仓等促销活动 |
| 目标 | 制造紧迫感,刺激用户立即下单购买 |
| Grok Prompt | 你是一名跨境电商促销文案专家。目标受众:追求性价比的在线购物者。写一条限时促销推文,推广[产品名称],原价[原价],现价[促销价],折扣力度[折扣比例]。语气:有紧迫感但不夸张。结构:紧迫感开头→折扣信息→产品价值→限时CTA。长度:120-150字符。CTA:引导立即购买,强调限时限量。包含1个促销相关的Hashtag。 |
| 输出示例 | ⏰ 最后24小时![Product Name] 限时5折特惠 原价$99.99 → 仅$49.99 爆款回归,库存告急🔥 手慢无 👇 #BlackFridayDeals |
| 适用阶段 | 大促活动前3天至活动结束 |
| 维度 | 内容 |
|---|---|
| 场景 | 热销产品持续推广/复购提醒 |
| 目标 | 利用社会证明(销量/评价)推动潜在客户下单 |
| Grok Prompt | You're a social proof marketing specialist. Target audience: shoppers who are still deciding. Write a tweet promoting our bestseller [产品名称] that has sold [销量] units with [评分] stars average rating. Include a customer quote: "[客户评价摘录]". Tone: Trustworthy and persuasive. Structure: Social proof stat → Customer quote → Product value → CTA. Length: 130-170 characters. CTA: Shop the bestseller now. Use 1-2 hashtags. |
| 输出示例 | 🔥 50,000+ happy customers can't be wrong. "Best purchase this year!" — Sarah K. [Product Name] ⭐ 4.8/5 from 2,300+ reviews Join the community 👇 #Bestseller #CustomerLove |
| 适用阶段 | 产品持续在售期,每周2-3次 |
| 维度 | 内容 |
|---|---|
| 场景 | 与竞品对比展示优势 |
| 目标 | 通过对比突出产品差异化优势,说服摇摆用户 |
| Grok Prompt | 你是一名电商对比营销专家。目标受众:正在比较[品类]产品的消费者。写一条对比推文,展示我们的[产品名称]相比竞品[竞品名称]的3个核心优势:[优势1]、[优势2]、[优势3]。语气:理性客观但自信。结构:对比 hook→3个优势点(用emoji标记)→总结CTA。长度:150-200字符。CTA:引导点击了解详情。不要直接贬低竞品。 |
| 输出示例 | Why [Our Brand] beats the competition? 🏆 ✅ 2x longer battery life ✅ Free shipping worldwide ✅ 24/7 customer support The choice is clear. See the full comparison 👇 |
| 适用阶段 | 产品成熟期,竞争激烈时使用 |
| 维度 | 内容 |
|---|---|
| 场景 | 利用UGC内容进行信任营销 |
| 目标 | 用真实用户反馈增强产品可信度 |
| Grok Prompt | You're a UGC marketing specialist. Write a tweet featuring a real customer testimonial for [产品名称]. Customer details: [客户名/匿名] from [地区], said "[客户评价]". Attach a photo of the product in use (describe the image). Tone: Authentic and relatable. Structure: Visual hook → Testimonial → Product tag → CTA. Length: 100-140 characters. |
| 输出示例 | "This changed my morning routine forever!" — Jessica from NYC ☕ Loving our [Product Name] — simple, elegant, effective. Real customers. Real results. Get yours 👇 |
| 适用阶段 | 产品持续销售期,每周1次 |
| 维度 | 内容 |
|---|---|
| 场景 | 品牌首次亮相/品牌形象塑造 |
| 目标 | 传递品牌使命和价值观,建立情感连接 |
| Grok Prompt | 你是一名品牌叙事专家。为[品牌名称]写一条品牌介绍推文。品牌使命:[一句话使命]。品牌起源故事:[创始故事概要]。核心价值观:[3个价值观]。语气:真诚、有温度、鼓舞人心。结构:情感Hook→使命陈述→品牌故事→价值观→CTA。长度:180-220字符。CTA:关注账号了解更多品牌故事。包含1个品牌Hashtag。 |
| 输出示例 | We started [Brand] in a small garage with one belief: Quality shouldn't cost the earth 🌍 Today, we're a community of 50K+ families choosing sustainable living. Join our mission 👇 #BrandName #SustainableLiving |
| 适用阶段 | 品牌建设初期,每月1-2次 |
| 维度 | 内容 |
|---|---|
| 场景 | 团队介绍/幕后故事/招聘宣传 |
| 目标 | 展示团队专业性和品牌温度 |
| Grok Prompt | You're a culture storyteller. Write a tweet introducing one of our team members: [姓名], [职位], who does [工作内容] and is passionate about [个人故事/兴趣]. Show the human side of our brand. Tone: Warm and personal. Structure: Personal intro → Role → Fun fact → Brand connection → CTA. Length: 140-180 characters. Encourage replies and engagement. |
| 输出示例 | Meet the face behind your orders! 👋 This is [Name], our QA specialist who personally tests every product before it ships. Yes, every. single. one. 🔍 Quality isn't just a word — it's our promise. ❤️ |
| 适用阶段 | 品牌建设期,每月2-3次 |
| 维度 | 内容 |
|---|---|
| 场景 | 客户成功故事/使用效果展示 |
| 目标 | 用真实案例证明产品价值,激发潜在客户购买欲 |
| Grok Prompt | 你是一名案例营销写手。写一条客户成功案例推文。客户背景:[行业/地区],使用我们的[产品名称]前:[痛点],使用后:[效果/成果]。语气:真实可信、结果驱动。结构:痛点Hook→解决方案→量化的成果→CTA。长度:150-200字符。CTA:引导私信咨询或点击链接了解。 |
| 输出示例 | Before: Lost $3K/month on ineffective ads 📉 After: Same budget, 5x ROI in 30 days 🚀 [Client Name] switched to [Product] and never looked back. See the full case study 👇 |
| 适用阶段 | 产品成熟期,每周1次案例分享 |
| 维度 | 内容 |
|---|---|
| 场景 | 产品使用技巧/功能教程/设置指南 |
| 目标 | 降低产品使用门槛,提升用户满意度和留存 |
| Grok Prompt | 你是一名产品教育专家。为[产品名称]写一条使用教程推文,教用户如何做[具体操作]。步骤:Step 1 [操作1]→Step 2 [操作2]→Step 3 [操作3]。语气:清晰、友善、易懂。结构:价值Hook→3步教程→效果预告→CTA。长度:170-220字符。CTA:引导保存推文或点击链接查看完整教程。 |
| 输出示例 | Did you know [Product] can do THIS? 🤯 3 steps to [achieve specific result]: 1️⃣ [Step 1] 2️⃣ [Step 2] 3️⃣ [Step 3] Save this for later & try it today! 🔧 |
| 适用阶段 | 产品全生命周期,每周1-2次 |
| 维度 | 内容 |
|---|---|
| 场景 | 行业洞察/趋势分析/知识科普 |
| 目标 | 建立品牌专业形象,吸引行业关注 |
| Grok Prompt | You are an industry thought leader in the [行业] space. Write a tweet sharing a key insight: "[核心洞察]". Back it up with a data point: "[数据来源/数据]". Target audience: professionals in [行业]. Tone: Authoritative and insightful. Structure: Bold claim → Supporting data → Key takeaway → CTA. Length: 150-200 characters. Encourage discussion in replies. |
| 输出示例 | By 2027, 80% of customer service will be AI-powered 🤖 Yet only 23% of e-commerce brands are prepared. The early adopters are already seeing 3x response rates. Is your brand ready? Let's discuss below 👇 |
| 适用阶段 | 品牌建设期,每周1-2次 |
| 维度 | 内容 |
|---|---|
| 场景 | 行业报告/调查数据/趋势图分享 |
| 目标 | 用数据增强说服力,吸引高价值互动 |
| Grok Prompt | 你是一名数据分析师。分享一条关于[主题]的数据洞察推文。关键数据点:[数据1]、[数据2]、[数据3]。语气:数据驱动但不枯燥,用emoji增强可读性。结构:数据Hook→3个关键数字→解读→CTA。长度:130-180字符。CTA:引导用户发表看法或点击查看完整报告。 |
| 输出示例 | 📊 2026 E-commerce Trends You Need to Know: 📌 67% of shoppers expect personalized recommendations 📌 Video ads have 40% higher conversion 📌 Mobile traffic = 73% of all visits Adapt or fall behind. Full report 👇 |
| 适用阶段 | 内容矩阵补充,每周1次 |
| 维度 | 内容 |
|---|---|
| 场景 | 行业常见误区/谣言澄清 |
| 目标 | 纠正认知偏差,建立专业权威形象 |
| Grok Prompt | 你是一名行业教育专家。写一条辟谣/纠正常见误区的推文。误区:"[常见误区]"。真相:"[正确事实]"。为什么这是误区:[解释原因]。语气:友善但坚定,不居高临下。结构:误区Hook→真相陈述→原因解释→CTA鼓励讨论。长度:150-200字符。 |
| 输出示例 | ❌ Myth: "More hashtags = more reach" ✅ Truth: 1-3 targeted hashtags beat 10 generic ones every time. Why? Grok's algorithm penalizes hashtag stuffing. Quality > Quantity. Agree? 👇 |
| 适用阶段 | 行业教育期,每月2-3次 |
| 维度 | 内容 |
|---|---|
| 场景 | 发起投票/征集意见/了解用户偏好 |
| 目标 | 增加粉丝互动率,收集用户洞察 |
| Grok Prompt | 你是一名社区运营专家。写一条互动投票推文,主题:[投票话题]。提供2-4个选项:[选项A]、[选项B]、[选项C]。语气:轻松有趣、鼓励参与。结构:提问Hook→选项→话题讨论引导→让小组成员参与。长度:80-120字符。CTA:投票并在评论区说出你的理由。 |
| 输出示例 | 🏆 Which factor matters MOST when choosing a [product]? A) Price 💰 B) Quality ⭐ C) Brand reputation 🏪 D) Customer reviews 📝 Vote & tell us why in the comments! 👇 |
| 适用阶段 | 任何阶段,每周1-2次投票 |
| 维度 | 内容 |
|---|---|
| 场景 | 抽奖/有奖转发/评论有礼 |
| 目标 | 快速提升推文曝光和账号关注 |
| Grok Prompt | 你是一名增长黑客。设计一条有奖互动推文。奖品:[奖品描述],价值[金额]。参与方式:关注+转发+@1位好友。截止日期:[日期]。语气:兴奋、友善、规则清晰。结构:奖品Hook→参与步骤→规则说明→截止时间。长度:120-160字符。CTA:立即参与并@好友。 |
| 输出示例 | 🎁 GIVEAWAY ALERT! 🎁 We're giving away [Prize] worth $[Value]! To enter: ✅ Follow us ✅ RT this tweet ✅ Tag 2 friends Winner announced [Date]. Good luck! 🍀 |
| 适用阶段 | 涨粉期/新品发布期,每月1-2次 |
| 维度 | 内容 |
|---|---|
| 场景 | 行业话题讨论/观点碰撞 |
| 目标 | 激发高质量讨论,提升账号活跃度 |
| Grok Prompt | You're a community conversation starter. Write a tweet to spark discussion about "[话题]". Share your perspective: "[你的观点]". Ask an open-ended question. Tone: Thought-provoking and inclusive. Structure: Bold opinion → Supporting reason → Open question → CTA to reply. Length: 130-180 characters. |
| 输出示例 | I believe AI won't replace marketers — but marketers who use AI will replace those who don't. 🤖💼 What's your take? Are you embracing AI tools in your workflow? Drop your thoughts below 👇 |
| 适用阶段 | 品牌建立期,每周2-3次 |
| 维度 | 内容 |
|---|---|
| 场景 | AMA/答疑/Q&A征集 |
| 目标 | 解答用户疑问,增强粉丝粘性 |
| Grok Prompt | 你是一名客户互动经理。写一条Q&A征集推文。主题:关于[主题]的任何问题。说明:我们将在[时间]进行集中答疑。语气:热情邀请、开放包容。结构:征集Hook→主题说明→参与方式→时间预告。长度:100-140字符。CTA:在评论区提问,我们会一一回复。 |
| 输出示例 | ❓ Got questions about [Topic]? We're hosting an AMA this Friday at 3PM EST! 🎙️ Drop your questions in the comments below — we'll answer each one live. See you there! 👋 |
| 适用阶段 | 任何阶段,每月1-2次 |
| 维度 | 内容 |
|---|---|
| 场景 | 系统性知识输出/多步骤教程 |
| 目标 | 深度展示专业能力,建立KOL地位,提升完读率 |
| Grok Prompt | 你是一名跨境电商教育专家。写一条5条推文组成的Thread(串文),主题为"[教程主题]"。每条推文结构:第1条Hook引导+问题引入,第2-4条逐步讲解3个核心步骤,第5条总结+CTA。每条推文150-250字符。语气:专业易懂。整体格式:1/5, 2/5...标注序号。结尾引导关注和收藏。 |
| 输出示例 | 1/5 🧵 How to [Topic] in 5 steps — a complete guide for beginners 👇 2/5 Step 1: [Action] — This is where most people get it wrong... 3/5 Step 2: [Action] — The key to [result] 4/5 Step 3: [Action] — Pro tip: [insider tip] 5/5 Master these 3 steps and you'll [result]. Save this thread for later! 📌 |
| 适用阶段 | 内容深度建设期,每周1-2条Thread |
| 维度 | 内容 |
|---|---|
| 场景 | 成功案例深度分析/竞品案例拆解 |
| 目标 | 通过案例分析展示行业洞察,提供可复用的策略 |
| Grok Prompt | Write a 4-tweet Thread analyzing the success of [案例品牌/公司] in [领域]. Break down: Tweet 1 — what they did and the result; Tweet 2 — key strategy #1; Tweet 3 — key strategy #2; Tweet 4 — lessons for your business. Tone: Analytical, actionable. Each tweet: 150-200 characters. End with a question to encourage discussion. |
| 输出示例 | 1/4 📊 Case Study: How [Brand] grew from $0 to $1M in 6 months 2/4 Strategy #1: They focused on [specific tactic] — not what everyone else was doing. 3/4 Strategy #2: [Another tactic] — simple but brilliant. 4/4 Key takeaway: [Lesson]. What's the #1 lesson you've learned? 👇 |
| 适用阶段 | 内容深度期,每两周1条Thread |
| 维度 | 内容 |
|---|---|
| 场景 | 行业观点/趋势预测/个人见解 |
| 目标 | 引发行业讨论,塑造意见领袖形象 |
| Grok Prompt | 你是一名行业思想领袖。写一条3-4条推文的Thread表达你对"[观点主题]"的看法。第1条:鲜明的观点Hook。第2条:支持论据1。第3条:支持论据2+数据。第4条:结论+引发讨论的问题。语气:自信但开放。每条140-200字符。鼓励读者在评论区分享不同观点。 |
| 输出示例 | 1/4 🧵 Here's an unpopular opinion about [Topic]: 2/4 Most businesses are doing [common practice] — and it's costing them [opportunity cost]. 3/4 The data shows that [data point] — proving that [your point]. 4/4 The bottom line: [conclusion]. Do you agree or disagree? Let's discuss 👇 |
| 适用阶段 | KOL建设期,每周1条观点Thread |
| 维度 | 内容 |
|---|---|
| 场景 | 清单/列表类内容(N大技巧/步骤/工具推荐等) |
| 目标 | 信息密度高、易收藏分享的格式,提升曝光 |
| Grok Prompt | 你是一名内容策展人。写一条5条推文的\"Top [数字] [主题]\"清单Thread。格式:1/5:Hook+总览,2/5:第1-2项,3/5:第3-4项,4/5:第5项+额外技巧,5/5:总结+CTA。每条推文100-150字符。语气:简洁有力、易读。每项用emoji标记。结尾引导收藏和转发。 |
| 输出示例 | 1/5 📋 Top 5 [Topic] Tips That Actually Work in 2026 🧵 2/5 1️⃣ [Tip 1 — short explanation] 2️⃣ [Tip 2 — short explanation] 3/5 3️⃣ [Tip 3 — short explanation] 4️⃣ [Tip 4 — short explanation] 4/5 5️⃣ [Tip 5 — short explanation] 💡 Bonus tip: [extra tip] 5/5 Save this thread for reference! 📌 Which tip will you try first? 👇 |
| 适用阶段 | 内容矩阵补充,每两周1条清单Thread |
| 维度 | 内容 |
|---|---|
| 场景 | 产品深度评测/开箱体验/使用心得 |
| 目标 | 多维度展示产品价值,打消购买顾虑 |
| Grok Prompt | 你是一名产品评测博主。写一条4条推文的[产品名称]评测Thread。格式:1/4:产品概览+为什么评测,2/4:优点(3个),3/4:缺点/改进建议(1-2个),4/4:总结+购买建议+评分。语气:客观公正、深度专业。每条150-200字符。结尾包含一个诚信声明(如\"This is an honest review\")。 |
| 输出示例 | 1/4 🧵 Honest Review: [Product Name] — 30 days later 2/4 ✅ What I loved: • [Feature 1] • [Feature 2] • [Feature 3] 3/4 ⚠️ What could be better: • [Drawback 1] • [Drawback 2] 4/4 ⭐ Rating: 4.5/5 Verdict: [summary recommendation]. Worth it? Yes, if [condition]. Full review thread saved 📌 |
| 适用阶段 | 新品发布后1-2周,每月1次深度评测 |
| 维度 | 内容 |
|---|---|
| 场景 | 集中回答用户常见问题 |
| 目标 | 减少重复客服工作,提升用户自助服务体验 |
| Grok Prompt | 你是一名客户服务专家。写一条3-4条推文的FAQ串文,主题为[主题]。第1条:Hook+问题概述。第2-3条:每个FAQ问题和答案。第4条:总结+更多帮助渠道。每条推文120-180字符。语气:热情友好、清晰准确。格式:Q: [问题] / A: [答案]。 |
| 输出示例 | 1/4 ❓ Top Questions About [Product/Service] Answered! 🧵 2/4 Q: [Question 1]? A: [Clear answer] 3/4 Q: [Question 2]? A: [Clear answer] 4/4 Got more questions? Drop them below or DM us — we're here to help! 💬 |
| 适用阶段 | 产品运营期,每月1次FAQ串文 |
Grok独有优势是能实时访问X平台的热点话题和趋势数据。在Prompt中加入"引用X平台当前热门话题"或"结合最新趋势"指令,Grok会自动抓取X的实时数据并整合到推文内容中,实现借势营销。示例Prompt:"Write a promotional tweet for our [产品] that references a current trending topic on X related to [行业]. Keep it relevant and natural."
Grok支持多模态视觉生成(Grok Vision),可以在Prompt中要求Grok为推文生成配图。示例Prompt:"Generate a product image for [产品名称] in a modern living room setting. Style: Minimalist, warm lighting, 16:9 aspect ratio." 生成的图片可以直接作为推文配图使用,确保视觉风格统一且原创。
Grok允许设置立场偏好,在Prompt开头加入立场设定可以控制Grok的输出倾向。示例:"You are pro-small business and skeptical of big corporations" 或 "You are a neutral, data-driven analyst." 这在与品牌定位匹配的内容创作中非常有用,确保AI输出符合品牌价值观。
Grok支持10+语言的推文生成,包括中文、英文、日文、韩文、德文、法文、西班牙文、葡萄牙文、阿拉伯文等。在Prompt中直接指定语言即可:"Write this tweet in Japanese for the Tokyo market" 或 "用西班牙语写一条推文,面向墨西哥市场的消费者"。Grok的多语言能力保证语法自然地道,适合多市场跨境卖家使用。
💡 组合使用建议:将上述技巧组合使用效果最佳。例如"引用X热点 + 多语言生成"可以快速为不同市场制作热点营销推文;"视觉生成 + 立场设置"可以批量产出风格统一的品牌内容。建议每周尝试1-2次组合使用,持续优化Prompt。
| 内容类型 | 推荐字数 | Grok偏好 | 说明 |
|---|---|---|---|
| 产品推广类 | 120-150字符 | 最佳 | 简洁直击卖点,减少用户阅读负担 |
| 品牌故事类 | 180-220字符 | 良好 | 需要足够篇幅传递情感和品牌价值 |
| 教育干货类 | 200-250字符 | 良好 | 信息密度高,需要一定篇幅展示价值 |
| 互动引流类 | 80-120字符 | 最佳 | 越短越容易激发互动行为 |
| 串文Thread(每条) | 150-250字符 | 最佳 | 串文整体信息密度高,Grok给予额外加分 |
| ⚠️ 不建议超限 | >280字符 | 低效 | 超过280字符被Grok判定为低效内容,降低评分 |
| 语气风格 | 适用场景 | Prompt参数示例 | 效果说明 |
|---|---|---|---|
| 专业权威 | 行业知识/数据分享 | Tone: Authoritative and data-driven | 适合建立行业专家形象 |
| 轻松幽默 | 品牌故事/互动引流 | Tone: Casual, witty, with a touch of humor | 提升品牌亲和力,增加互动 |
| 紧迫感 | 限时促销/库存告急 | 语气:有紧迫感但不过分夸张 | 刺激立即行动,提升转化 |
| 故事叙述 | 品牌故事/客户案例 | Tone: Narrative and emotional | 增强内容记忆点和情感连接 |
| 数据说服 | 产品推广/案例拆解 | Tone: Fact-based and persuasive | 用数据增强说服力 |
| 对话提问 | 互动引流/话题讨论 | Tone: Conversational and inviting | 激发用户评论和讨论 |
| 激励鼓舞 | 品牌使命/团队故事 | Tone: Inspiring and aspirational | 建立品牌愿景和用户共鸣 |
| 简洁直接 | 产品推广/CTA明确 | Tone: Direct and concise, no fluff | 高效传达关键信息 |
| 教育讲解 | 使用教程/干货分享 | Tone: Educational and patient | 降低学习门槛,提升理解度 |
| 社交亲切 | 日常互动/粉丝交流 | 语气:像朋友一样自然亲切 | 增强粉丝忠诚度 |
| 规范项 | 推荐做法 | 说明 | 避免 |
|---|---|---|---|
| 数量 | 1-3个/篇 | Grok算法偏好精准少量的Hashtag | 超过3个会被判定为垃圾信号 |
| 搜索量 | 中等(10K-100K) | 竞争度低,内容容易被发现 | 搜索量<1K或>1M的不推荐 |
| 相关性 | 与推文内容高度相关 | Hashtag应自然融入推文内容 | 使用无关热门Hashtag蹭流量 |
| 位置 | 自然融入推文中 | 最好出现在推文中间或结尾自然处 | 集中堆放在推文末尾 |
| 品牌Hashtag | 固定在每篇推文使用 | 如 #BrandName 帮助建立品牌搜索 | 频繁更换品牌Hashtag |
| 长尾Hashtag | 优先选择 | 如 #EcoFriendlyHomeDecor 优于 #Home | 过于宽泛的短Hashtag |
| 序号 | 要点 | 详细说明 | 负向提示词示例 |
|---|---|---|---|
| 1 | 避免过度堆砌Hashtag | 每篇推文Hashtag不超过3个,不使用无关热门Hashtag | Do NOT use more than 2 hashtags. Avoid generic hashtags like #love #follow #trending |
| 2 | 避免重复句式模板 | 不要连续多条推文使用完全相同的句式和结构 | Avoid using repetitive sentence structures. Each tweet should have a unique opening style. |
| 3 | 确保内容有信息价值 | 每条推文至少包含一个信息点或价值主张,而非纯营销口号 | Don't just say "Buy now". Include a specific benefit or data point to support the promotion. |
| 4 | 控制外链数量 | 单条推文最多1个外链,每日推文中外链占比不超过30% | Include maximum 1 link per tweet. Don't make the tweet look like an ad with multiple links. |
| 5 | 避免违规敏感词 | 不使用黑五类(药品/保健品/金融/医疗/赌博)敏感词汇 | Avoid using words like "guaranteed", "risk-free", "miracle cure", "get rich quick". |
| 6 | 不要@大量用户 | 单条推文@用户不超过2个,避免骚扰式营销 | Do NOT mention more than 2 users per tweet. Don't tag unrelated accounts. |
| 7 | 避免过度Emoji | 每条推文使用3-5个Emoji为宜,过多显得不专业 | Limit emoji use to 3-5 per tweet. Avoid using emoji to replace real words. |
| 序号 | 技巧 | 操作方法 | 改写前后对比 |
|---|---|---|---|
| 1 | 加入个人化表达 | 在推文中加入"I think""In my experience""I've found"等第一人称表达 | Before: "This product saves 30% energy" → After: "I've been using this for a month and it actually saved 30% energy" |
| 2 | 替换AI常用词汇 | 将"leveraging""unlocking""game-changer""revolutionize"等AI高频词替换为日常用词 | Before: "Leverage AI to unlock your potential" → After: "Use AI to work smarter" |
| 3 | 改变句式结构 | 将长句拆短或将短句合并,调整主谓宾顺序 | Before: "Our product features three key benefits including A, B, and C." → After: "Three things our product does differently: A, B, and C." |
| 4 | 加入口语化元素 | 适当加入"Honestly""Here's the thing""Let's be real"等口语化过渡词 | Before: "This is an effective solution for your business." → After: "Honestly? This just works for your business." |
| 5 | 调整标点符号 | 适当使用破折号、省略号等丰富标点,打破AI生成的标准化节奏 | Before: "It's easy to use, affordable, and reliable." → After: "Easy to use... affordable... reliable. What's not to love?" |
| 6 | 加入真实体验细节 | 嵌入具体的使用场景、时间、地点等细节 | Before: "Perfect for daily use" → After: "Used this during my morning commute — perfect for coffee lovers on the go ☕" |
💡 改写原则:Grok不会歧视AI生成的推文,但建议至少做30%的改写。改写重点放在开头钩子和结尾CTA上,这两个位置对Grok评分影响最大。使用上述6个技巧的任意2-3个组合,即可显著降低内容的AI感。
火烈鸟出海团队提供一对一定制服务,根据你的产品品类、目标市场和品牌定位,定制专属Grok推文Prompt模板库、串文策略和多语言版本。
💬 WhatsApp 立即咨询