/* InsightFlow Chrome Extension - Content Styles */ #insightflow-clipper-btn { animation: slideIn 0.3s ease-out; } @keyframes slideIn { from { transform: translateX(100px); opacity: 0; } to { transform: translateX(0); opacity: 1; } } /* 选中文本高亮样式 */ ::selection { background: rgba(102, 126, 234, 0.3); } /* 剪辑成功提示 */ .insightflow-toast { position: fixed; top: 20px; right: 20px; background: #4CAF50; color: white; padding: 15px 20px; border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.2); z-index: 999999; animation: toastSlideIn 0.3s ease-out; } @keyframes toastSlideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }