个人中心全部,模糊乱序搜索,类型筛选

Change-Id: Id635654fccccaea80bfbf4d1480abd55f7d12046
diff --git a/src/components/Personal/Personal.css b/src/components/Personal/Personal.css
index c087ac6..28a1adb 100644
--- a/src/components/Personal/Personal.css
+++ b/src/components/Personal/Personal.css
@@ -159,4 +159,63 @@
     margin-top: 20px;

     border-top: 1px solid #f0f0f0;

     padding-top: 20px;

-  }
\ No newline at end of file
+  }

+

+

+  /* Personal.css */

+/* ... 其他已有样式 ... */

+

+/* 下载进度卡片样式 */

+.progress-card {

+  background: #fff;

+  border-radius: 8px;

+  padding: 20px;

+  margin-bottom: 20px;

+  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);

+}

+

+.download-task {

+  margin-bottom: 15px;

+}

+

+.task-info {

+  display: flex;

+  justify-content: space-between;

+  margin-bottom: 5px;

+}

+

+.task-id {

+  font-size: 14px;

+  color: #666;

+}

+

+.task-progress {

+  font-size: 14px;

+  font-weight: bold;

+  color: #1890ff;

+}

+

+.progress-bar {

+  height: 8px;

+  background: #f0f0f0;

+  border-radius: 4px;

+  overflow: hidden;

+}

+

+.progress-fill {

+  height: 100%;

+  background: #1890ff;

+  border-radius: 4px;

+  transition: width 0.3s ease;

+}

+

+

+.user-meta span {

+  margin-right: 15px;

+  color: #666;

+}

+

+.user-meta span:last-child {

+  color: #ff9800;

+  font-weight: bold;

+}