/** * title: "带操作区卡片" * description: "包含内容、操作区域、底部操作按钮" */ import React from 'react'; import { Card, Button } from '@alicloud/console-components'; const cardContent: React.CSSProperties = { background: '#f6f6f6', width: '100%', height: '100%', borderRadius: '4px', textAlign: 'center', lineHeight: '100%', color: '#aaaaaa', position: 'relative', }; const contentext: React.CSSProperties = { lineHeight: '20px', position: 'absolute', top: '50%', width: '100%', marginTop: '-10px', }; const CardContent = () => (