diff --git a/src/components/search/KUNGalgameSearchBox.vue b/src/components/search/KUNGalgameSearchBox.vue
index c70260a6..8f634f66 100644
--- a/src/components/search/KUNGalgameSearchBox.vue
+++ b/src/components/search/KUNGalgameSearchBox.vue
@@ -1,10 +1,33 @@
@@ -14,7 +37,9 @@ const { isShowSearch } = storeToRefs(useTempHomeStore())
-
+
+
+
@@ -39,8 +64,8 @@ const { isShowSearch } = storeToRefs(useTempHomeStore())
.container {
display: flex;
- justify-content: center;
- align-items: start;
+ flex-direction: column;
+ align-items: center;
white-space: nowrap;
position: relative;
color: var(--kungalgame-font-color-3);
@@ -52,6 +77,7 @@ const { isShowSearch } = storeToRefs(useTempHomeStore())
max-width: 500px;
min-height: 200px;
max-height: 600px;
+ overflow-y: scroll;
}
.search-enter-from {
diff --git a/src/components/search/SearchBox.vue b/src/components/search/SearchBox.vue
index a32f3d16..df0ac27e 100644
--- a/src/components/search/SearchBox.vue
+++ b/src/components/search/SearchBox.vue
@@ -52,12 +52,16 @@ onMounted(() => {
diff --git a/src/store/temp/home.ts b/src/store/temp/home.ts
index 8f44a563..4caa80e5 100644
--- a/src/store/temp/home.ts
+++ b/src/store/temp/home.ts
@@ -16,7 +16,7 @@ export const useTempHomeStore = defineStore({
keywords: '',
category: ['Galgame'],
page: 1,
- limit: 17,
+ limit: 10,
sortField: 'updated',
sortOrder: 'desc',
isLoading: true,
diff --git a/src/views/Home/content/article/components/TopicPart.vue b/src/views/Home/content/article/components/TopicPart.vue
index ad9154dd..9e48c3ce 100644
--- a/src/views/Home/content/article/components/TopicPart.vue
+++ b/src/views/Home/content/article/components/TopicPart.vue
@@ -146,7 +146,6 @@ const getRepliesCount = computed(() => {
width: 100%;
display: flex;
align-items: center;
- overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;