import { createStyles } from '@/theme' export const useStyle = createStyles(({ token, css, cx, prefixCls }, props: any) => { const prefix = `${prefixCls}-${token?.proPrefix}-ca-detail-page` const container = css` ` const content = css` padding: 20px 0; .ant-descriptions-item-label{ font-weight: bold; width: 50%; } ` return { container: cx(prefix, props?.className, container), content, } })