2023-05-10 18:08:46 +00:00
|
|
|
<script setup lang="ts">
|
|
|
|
import KUNGalgameTopBar from '@/components/KUNGalgameTopBar.vue'
|
2023-06-05 02:52:35 +00:00
|
|
|
import KUNGalgameSearchBox from '@/components/KUNGalgameSearchBox.vue'
|
|
|
|
import Tags from './components/Tags.vue'
|
2023-06-07 10:10:53 +00:00
|
|
|
import Topic from './components/Topic.vue'
|
2023-06-12 13:57:40 +00:00
|
|
|
import Grid from './components/Grid.vue'
|
2023-05-10 18:08:46 +00:00
|
|
|
</script>
|
2023-05-01 15:58:54 +00:00
|
|
|
|
|
|
|
<template>
|
2023-06-08 05:18:05 +00:00
|
|
|
<div class="visual-wrapper">
|
|
|
|
<!-- 头部 -->
|
|
|
|
<KUNGalgameTopBar />
|
|
|
|
<!-- 帖子池容器 -->
|
|
|
|
<div class="pool-container">
|
|
|
|
<KUNGalgameSearchBox style="width: 100%; height: 40px" />
|
|
|
|
<Tags />
|
|
|
|
<!-- 帖子池内容区容器 -->
|
|
|
|
<div class="content-container">
|
|
|
|
<!-- 帖子池单个帖子列容器 -->
|
|
|
|
<div class="single-topic-column-container">
|
2023-06-12 13:57:40 +00:00
|
|
|
<Grid />
|
2023-05-01 15:58:54 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2023-06-08 05:18:05 +00:00
|
|
|
<!-- 右侧的功能栏 -->
|
|
|
|
<div class="kungalgame-right-bar"></div>
|
2023-05-01 15:58:54 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2023-05-25 07:55:30 +00:00
|
|
|
<style lang="scss" scoped>
|
2023-05-01 15:58:54 +00:00
|
|
|
.visual-wrapper {
|
2023-06-07 10:10:53 +00:00
|
|
|
height: 100vh;
|
2023-05-01 15:58:54 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
/* 帖子池容器 */
|
|
|
|
.pool-container {
|
|
|
|
/* 占页面的宽度比例 */
|
|
|
|
width: 90%;
|
|
|
|
/* 居中 */
|
|
|
|
margin: 0 auto;
|
|
|
|
display: flex;
|
|
|
|
/* 不收缩 */
|
|
|
|
flex-shrink: 0;
|
|
|
|
/* 竖直方向弹性盒 */
|
|
|
|
flex-direction: column;
|
|
|
|
/* 毛玻璃背景 */
|
|
|
|
backdrop-filter: blur(5px);
|
2023-06-05 06:32:08 +00:00
|
|
|
background-color: var(--kungalgame-trans-white-5);
|
2023-05-01 15:58:54 +00:00
|
|
|
border-radius: 7px;
|
|
|
|
}
|
|
|
|
/* 右侧的功能栏 */
|
|
|
|
.kungalgame-right-bar {
|
|
|
|
/* 位置 fix */
|
|
|
|
position: fixed;
|
|
|
|
top: 70%;
|
|
|
|
/* 距离右侧的距离 */
|
|
|
|
right: 1%;
|
|
|
|
z-index: 7;
|
|
|
|
/* 居中 */
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
</style>
|