/* manquxingqiu/assets/css/pages/home.css */
        :root {
            --primary-color: #23d5ab;
            --secondary-color: #f8f9fa;
            --text-primary: #2d3436;
            --text-secondary: #636e72;
            --card-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: #E6EDE3;
            padding-bottom: 62px; /* 底部导航高度 */
        }

        /* 头部样式 */
        .main-header {
            position: fixed;
            top: 0;
            width: 100%;
            height: 60px;
            background: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 16px;
            box-shadow: var(--card-shadow);
            z-index: 1000;
        }

        /* 导航选项卡 */
        .nav-tabs {
            position: fixed;
            top: 60px;
            width: 100%;
            display: flex;
            background: white;
            border-bottom: 1px solid #eee;
            z-index: 999;
        }

        .nav-tab {
            flex: 1;
            padding: 16px;
            text-align: center;
            color: #666;
            cursor: pointer;
            transition: all 0.3s;
        }

        .nav-tab.active {
            color: var(--primary-color);
            border-bottom: 3px solid var(--primary-color);
        }

        /* 内容区域 */
        .page-content {
            padding: 120px 16px 80px;
        }

        /* 搜索栏 */
        .search-bar {
            position: relative;
            margin: 12px 0;
        }

        .search-bar input {
            width: 100%;
            padding: 12px 40px 12px 16px;
            border: 1px solid #e0e0e0;
            border-radius: 24px;
            font-size: 14px;
        }

        .search-icon {
            position: absolute;
            right: 16px;
            top: 50%;
            transform: translateY(-50%);
            width: 20px;
            height: 20px;
            fill: #666;
        }

        /* 拼团卡片 */
        .group-list {
            display: grid;
            gap: 16px;
            margin-top: 20px;
        }

        .group-card {
            background: white;
            padding: 16px;
            border-radius: 12px;
            box-shadow: var(--card-shadow);
        }

        .card-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 12px;
        }

        .members {
            color: var(--primary-color);
            background: rgba(35,213,171,0.1);
            padding: 4px 8px;
            border-radius: 12px;
            font-size: 0.9em;
        }

        .goods-preview {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }

        .goods-tag {
            background: #f0f2f5;
            padding: 4px 10px;
            border-radius: 15px;
            font-size: 0.9em;
        }
