style(Home): 优化首页推荐组件的样式

- 调整了更多探索提示语的样式和布局
- 添加了 more 类的样式定义,优化了视觉效果
This commit is contained in:
Huangzhe
2025-05-26 11:05:33 +08:00
parent 76b5235ab5
commit 83aee0d18a

View File

@@ -47,8 +47,8 @@ const props = ref<TablePropsType[]>([
:props="props"
/>
<!-- 剧中展示提示语 -->
<div style="width: 100%; margin-top: 10px; text-align: center">
<span style="">- 最新数据及更多创新趋势请到YIP探索 - </span>
<div class="more">
<span>- 最新数据及更多创新趋势请到YIP探索 - </span>
</div>
</common-layout>
</div>
@@ -89,5 +89,13 @@ const props = ref<TablePropsType[]>([
margin-bottom: 10px;
}
.more {
margin: 20px;
color: #919191;
font-weight: 400;
font-size: 13px;
text-align: center;
}
}
</style>