This commit is contained in:
yvan 2025-08-23 17:22:06 +08:00
parent 1dde942ff1
commit f47534b583
1 changed files with 5 additions and 5 deletions

View File

@ -1,5 +1,5 @@
<template> <template>
<view class="knowledge-container page-container-with-bg"> <view class="knowledge-container page-container-unified">
<view class="search-container"> <view class="search-container">
<u-search placeholder="搜索知识" v-model="searchKeyword" @search="searchKnowledge" @custom="searchKnowledge"></u-search> <u-search placeholder="搜索知识" v-model="searchKeyword" @search="searchKnowledge" @custom="searchKnowledge"></u-search>
</view> </view>
@ -121,7 +121,7 @@ export default {
.search-container { .search-container {
background: rgba(255, 255, 255, 0.95); background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(20rpx); backdrop-filter: blur(20rpx);
margin: 20rpx 30rpx 0 30rpx; margin: 0 0 0 0;
border-radius: 24rpx; border-radius: 24rpx;
padding: 20rpx; padding: 20rpx;
box-shadow: 0 8rpx 32rpx rgba(255, 138, 128, 0.2); box-shadow: 0 8rpx 32rpx rgba(255, 138, 128, 0.2);
@ -132,7 +132,7 @@ export default {
.category-tabs { .category-tabs {
background: rgba(255, 255, 255, 0.95); background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(20rpx); backdrop-filter: blur(20rpx);
margin: 20rpx 30rpx 0 30rpx; margin: 20rpx 0 0 0;
border-radius: 24rpx; border-radius: 24rpx;
padding: 20rpx 0; padding: 20rpx 0;
box-shadow: 0 8rpx 32rpx rgba(255, 138, 128, 0.2); box-shadow: 0 8rpx 32rpx rgba(255, 138, 128, 0.2);
@ -152,8 +152,8 @@ export default {
} }
.knowledge-content { .knowledge-content {
padding: 20rpx 30rpx; padding: 20rpx 0;
padding-bottom: 80rpx; padding-bottom: 40rpx;
min-height: 100%; min-height: 100%;
box-sizing: border-box; box-sizing: border-box;
} }