/* pages/mine/mine.wxss *//* 页面容器 */ .container { height: 100vh; display: flex; flex-direction: column; } /* 固定导航栏 */ .navbar { position: fixed; top: 50px; left: 0; right: 0; height: 44px; background-color: #fff; box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1); display: flex; align-items: center; padding: 0 15px; z-index: 100; } /* 导航栏内容 */ .logo { font-size: 18px; font-weight: bold; color: #333; margin-right: 15px; } .search-box { flex: 1; height: 30px; background-color: #f5f5f5; border-radius: 15px; display: flex; align-items: center; padding: 0 10px; } .search-input { flex: 1; height: 100%; margin-left: 5px; font-size: 14px; color: #333; background-color: transparent; border: none; outline: none; } .action-btn { margin-left: 15px; font-size: 14px; color: #666; } /* 页面内容区域 */ .content { flex: 1; margin-top: 44px; /* 留出导航栏高度 */ padding: 10px; overflow-y: auto; } .content-item { padding: 15px; margin-bottom: 10px; background-color: #f9f9f9; border-radius: 8px; }