hookehuyr

style(ui): 调整首页标题样式和计划弹窗高度

### 优化
- 调整首页"臻奇荟"标题位置至左上方(pt-[128rpx])
- 优化标题对齐方式为 text-left,适配整体页面布局
- 调整 PlanPopup 弹窗高度从 90% 至 80%

---

**详细信息**:
- **影响文件**: src/pages/index/index.vue, src/components/plan/PlanPopupNew.vue
- **技术栈**: Vue 3, Tailwind CSS
- **测试状态**: 已通过
- **备注**: 保持原有高度占位,防止布局塌陷

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
## [2026-02-13] - 首页标题样式调整
### 优化
- 调整首页“臻奇荟”标题位置至左上方(顶部间距从 180rpx 减小至 128rpx)
- 优化标题对齐方式,适配整体页面布局
---
**详细信息**
- **影响文件**: src/pages/index/index.vue
- **技术栈**: Vue 3, Tailwind CSS
- **测试状态**: 已通过
- **备注**: 保持原有高度占位,防止布局塌陷
---
## [2026-02-13] - 统一权限检查与移除重复代码
### 新增
......
......@@ -7,7 +7,7 @@
:visible="visible"
position="bottom"
round
:style="{ height: '90%' }"
:style="{ height: '80%' }"
:close-on-click-overlay="true"
:safe-area-inset-bottom="true"
@update:visible="handleVisibleChange"
......
......@@ -25,8 +25,8 @@
<view class="absolute bottom-0 left-0 w-full h-[240rpx] bg-gradient-to-t from-[#F9FAFB] via-[#F9FAFB]/80 to-transparent backdrop-blur-[2px] pointer-events-none"></view>
</view>
<view class="relative z-10 px-[32rpx] pt-[180rpx]">
<text class="block text-white text-[44rpx] font-bold mb-[40rpx] text-center">臻奇荟</text>
<view class="relative z-10 px-[32rpx] pt-[128rpx]">
<text class="block text-white text-[44rpx] font-bold mb-[40rpx] text-left">臻奇荟</text>
<!-- Search Bar -->
<view
......