diff --git a/src/components/cards/SiteCard.vue b/src/components/cards/SiteCard.vue
index 5c9f7584..4b9781e5 100644
--- a/src/components/cards/SiteCard.vue
+++ b/src/components/cards/SiteCard.vue
@@ -654,7 +654,7 @@ onMounted(() => {
- 下载种子
+ 下载种子文件
diff --git a/src/components/cards/TorrentCard.vue b/src/components/cards/TorrentCard.vue
index a9593f1d..b7e97fbd 100644
--- a/src/components/cards/TorrentCard.vue
+++ b/src/components/cards/TorrentCard.vue
@@ -176,7 +176,7 @@ onMounted(() => {
- 下载种子
+ 下载种子文件
diff --git a/src/components/cards/TorrentItem.vue b/src/components/cards/TorrentItem.vue
new file mode 100644
index 00000000..238546a3
--- /dev/null
+++ b/src/components/cards/TorrentItem.vue
@@ -0,0 +1,249 @@
+
+
+
+
+
+
+
+
+
+
+ {{ torrent?.title }}
+ ↑{{ torrent?.seeders }}
+ ↓{{ torrent?.peers }}
+
+
+ {{ torrent?.description }}
+
+
+
+ {{ label }}
+
+
+ {{ meta?.edition }}
+
+
+ {{ meta?.resource_pix }}
+
+
+ {{ meta?.video_encode }}
+
+
+ {{ formatFileSize(torrent?.size) }}
+
+
+ {{ meta?.resource_team }}
+
+
+ {{ torrent?.volume_factor }}
+
+
+
+
+
+
+
+
+
+
+
+
+ 查看详情
+
+
+
+
+
+ 下载种子文件
+
+
+
+
+
+
+
+
diff --git a/src/views/discover/TorrentCardListView.vue b/src/views/discover/TorrentCardListView.vue
index fd149660..0f6f252c 100644
--- a/src/views/discover/TorrentCardListView.vue
+++ b/src/views/discover/TorrentCardListView.vue
@@ -216,8 +216,8 @@ const dataList = computed(() => {
diff --git a/src/views/discover/TorrentRowListView.vue b/src/views/discover/TorrentRowListView.vue
index 44be307a..65d95b58 100644
--- a/src/views/discover/TorrentRowListView.vue
+++ b/src/views/discover/TorrentRowListView.vue
@@ -1,20 +1,243 @@
-
-
-
+
+
+
+
+
+ 没有附合当前过滤条件的资源。
+
+
+
+
+
+
+ 站点
+
+
+
+
+ {{ site }}
+
+
+
+
+ 质量
+
+
+
+
+ {{ edition }}
+
+
+
+
+ 分辨率
+
+
+
+
+ {{ resolution }}
+
+
+
+
+ 制作组
+
+
+
+
+ {{ releaseGroup }}
+
+
+
+
+ 视频编码
+
+
+
+
+ {{ videoCode }}
+
+
+
+
+ 促销状态
+
+
+
+
+ {{ freeState }}
+
+
+
+
+ 季集
+
+
+
+
+ {{ season }}
+
+
+
+
+
+
diff --git a/tailwind.config.js b/tailwind.config.js
index 35bb8a84..5b47e6d8 100644
--- a/tailwind.config.js
+++ b/tailwind.config.js
@@ -12,7 +12,6 @@ module.exports = {
},
plugins: [
require('@tailwindcss/aspect-ratio'),
-
// ...
],
}