import './index.less'; import Title from '@/pages/home/components/Title'; import React from 'react'; interface StepItemProps { title: string | React.ReactNode; content: string | React.ReactNode; onClick: () => void; url?: string; after?: any; } interface StepsProps { title: string | React.ReactNode; data: StepItemProps[]; style?: any; } const ItemDefaultImg = require('/public/images/home/bottom-1.png'); const StepsItem = (props: StepItemProps) => { return (