'use client'; import { useRef, Fragment } from 'react'; import { InkReveal, FadeUp, InkCard, PulseElement } from '@/lib/animations'; import { RippleButton } from '@/components/ui/ripple-button'; import { ScrollReveal, inkRevealVariants, slideInLeftVariants } from '@/components/ui/scroll-animations'; import type { Product } from '@/lib/constants/products'; interface ProductFeaturesSectionProps { product: Product; } function FeatureItem({ feature, index, }: { feature: string; index: number; }) { // 解析功能标题和描述(中文冒号分隔) const colonIndex = feature.indexOf(':'); const title = colonIndex > -1 ? feature.substring(0, colonIndex) : feature; const description = colonIndex > -1 ? feature.substring(colonIndex + 1) : ''; // 编号格式化 const number = String(index + 1).padStart(2, '0'); return (
{description}
全方位覆盖企业核心业务场景
想了解更多功能细节?
预约一次 30 分钟在线演示,了解产品如何适配您的业务