diff --git a/ruoyi-ui/src/views/ccdiProject/components/ProjectTable.vue b/ruoyi-ui/src/views/ccdiProject/components/ProjectTable.vue index c4f60dc..0c081d2 100644 --- a/ruoyi-ui/src/views/ccdiProject/components/ProjectTable.vue +++ b/ruoyi-ui/src/views/ccdiProject/components/ProjectTable.vue @@ -242,10 +242,19 @@ export default { .project-table-container { margin-top: 16px; - // 表格整体样式 + // 表格整体样式 - Material Design 卡片式 :deep(.el-table) { - border: 1px solid #eee; - border-radius: 4px; + // 移除边框,使用阴影 + border: none; + border-radius: 8px; + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); + + // 悬停时卡片阴影加深 + transition: box-shadow 0.3s ease; + + &:hover { + box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); + } // 表头样式 th {