        
    .hidden {
      display: none;
    }
    button {
      padding: 4px 5px;
      background-color: #007BFF;
      color: white;
      border: none;
      border-radius: 5px;
      margin: 5px 3px;
      cursor: pointer;
    }

html, body {
            width: 100%;
            height: 100%;
            margin: 0;
            padding: 0;
            background-color: #f6f6f6;
        }

        .swiper {
            width: 100%;
            height: 24px;
        }

        .home-top {
            background-color: #fff;
        }

        .banner {
            width: 100%;
            height: 140px;
            box-sizing: border-box;
        }

        .tips {
            padding: 15px 15px 0;

        }

        .tips-wrap {
            padding: 0 10px;
            height: 35px;
            background: #F6F6F6;
            border-radius: 5px;
            display: flex;
            align-items: center;
        }

        .tips-laba {
            width: 20px;
            height: 16px;
        }

        .tips-label {
            font-size: 13px;
            font-family: PingFang SC;
            font-weight: 400;
            color: #333333;
            padding: 0 7px;
            border-right: 1px solid #DDDDDD;
        }

        .tips-roll {
            padding-left: 7px;
            font-size: 13px;
            line-height: 24px;
            font-family: PingFang SC;
            font-weight: 400;
            color: #333333;
        }

        .nav-list {
            padding: 15px 15px 10px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .nav-icon-wrap {
            width: calc(33% - 6px);
        }

        .nav-icon {
            width: 100%;
            height: 95px;
        }

        .home-list {
            padding-bottom: 20px;
        }
        .home-list2 {
            padding-bottom: 1px;
            margin: 5px;
        }
        .list-wrap {
            margin-top: 4px;
            background-color: #fff;
            padding: 15px;
            display: flex;
            align-items: center;
        }

        .list-cover {
            width: 80px;
            height: 80px;
            background: #FECF13;
            border-radius: 2px;
        }

        .list-text {
            flex: 1;
            margin-left: 11px;
        }

        .list-text-title {
            font-size: 17px;
            font-family: PingFang SC;
            font-weight: bold;
            color: #333333;
        }

        .list-label {
            font-size: 13px;
            font-family: PingFang SC;
            font-weight: 400;
            color: #999999;
            margin-top: 6px;
        }

        .list-info {
            display: flex;
            justify-content: space-between;
            margin-top: 6px;
        }

        .price-wrap {
            font-size: 13px;
            font-family: PingFang SC;
            font-weight: bold;
            color: #FF3434;
            padding-top: 7px;
        }

        .price-number {
            font-size: 20px;
        }

        .price-label {
            font-size: 13px;
            font-family: PingFang SC;
            font-weight: 400;
            color: #999999;
            padding-top: 12px;
        }

        .prce-btn {
            width: 75px;
            height: 28px;
            line-height: 28px;
            text-decoration: none;
            text-align: center;
            background: linear-gradient(90deg, #5C96FF 0%, #327AFF 100%);
            border-radius: 6px;
            font-size: 14px;
            font-family: PingFang SC;
            font-weight: 400;
            color: #FFFFFF;
        }

        .common-tab {
            width: 100%;
            padding: 10px 0 15px;
            background-color: #fff;
            position: fixed;
            bottom: 0;
            display: flex;
            align-items: center;
            justify-content: space-around;
        }

        .tab-normal {
            text-align: center;
            font-size: 10px;
            font-family: PingFang SC;
            font-weight: 500;
            color: #AAAAAA;
        }

        .tab-normal img {
            width: 20px;
            height: 20px;
        }

        .tab-active {
            font-size: 10px;
            font-family: PingFang SC;
            font-weight: 500;
            color: #327AFF;
        }








        
       /* 优化筛选区域样式 */
        .search-filter-container {
            display: flex;
            flex-wrap: wrap;
            gap: 2px;
            margin: 5px 0;
            padding: 15px;
            background: #f8f9fa;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        
        .filter-row {
            display: flex;
            flex-wrap: nowrap; /* 确保不换行 */
            gap: 10px;
            width: 100%;
            align-items: center;
        }
        
        .filter-group {
            flex: 1;
            min-width: 0; /* 允许缩小 */
        }
        
        .filter-input {
            width: 100%;
            padding: 10px;
            border: 1px solid #ced4da;
            border-radius: 4px;
            font-size: 14px;
        }
        
        .filter-select {
            width: 100%;
            padding: 9.5px 5px; 
            border: 1px solid #ced4da;
            border-radius: 4px;
            background: white;
            font-size: 14px;
        }
        
        /* 新增：按钮组容器 */
        .button-group {
    display: flex;
    border-radius: 4px;
    overflow: hidden; /* 确保内部按钮的圆角被裁剪 */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    /* 添加以下样式修复右侧白色背景问题 */
    position: relative; /* 创建新的堆叠上下文 */
    z-index: 1; /* 确保按钮组覆盖其他元素 */
}

/* 左侧按钮添加左侧圆角 */
.button-group .filter-button:first-child {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    /* 确保覆盖左侧区域 */
    position: relative;
    z-index: 2;
}

/* 右侧按钮添加右侧圆角 */
.button-group .reset-button:last-child {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    /* 确保覆盖右侧区域 */
    position: relative;
    z-index: 2;
    /* 修复右侧圆角问题 */
    margin-right: 0;
}

/* 添加分隔线 */
.button-group .filter-button {
    border-right: 1px solid rgba(255,255,255,0.3);
}

/* 确保按钮组覆盖所有区域 */
.button-group::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #6c757d; /* 重置按钮的背景色 */
    z-index: 1; /* 在按钮下方 */
    border-radius: 4px;
}

/* 确保按钮在背景上方 */
.button-group .filter-button,
.button-group .reset-button {
    position: relative;
    z-index: 2;
}
        
        .filter-button {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0px;
            padding: 5px 10px;
            margin: 0;
            background: #5C96FF;
            color: white;
            border: none;
            cursor: pointer;
            font-size: 16px;
            font-weight: 500;
            transition: background 0.3s ease;
            height: 40px;
            white-space: nowrap;
            border-radius: 0; /* 移除圆角 */
           flex: 2; /* 占据3份空间 */
           min-width: 30px;
        }
        
        .filter-button:hover {
            background: #3a5a9c;
        }
        
        .filter-button i {
            font-size: 18px;
        }
        
        /* 新增：重置按钮样式 */
        .reset-button {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0px;
            padding: 5px 10px;
            margin: 0;
            background: #6c757d; /* 灰色背景 */
            color: white;
            border: none;
            cursor: pointer;
            font-size: 16px;
            font-weight: 500;
            transition: background 0.3s ease;
            height: 40px;
            white-space: nowrap;
            border-radius: 0; /* 移除圆角 */
                flex: 1; /* 占据1份空间 */
                min-width: 20px;
        }
        
        .reset-button:hover {
            background: #5a6268; /* 深灰色悬停效果 */
        }
        
        /* 左侧按钮添加左侧圆角 */
        .button-group .filter-button:first-child {
            border-top-left-radius: 4px;
            border-bottom-left-radius: 4px;
        }
        
        /* 右侧按钮添加右侧圆角 */
        .button-group .reset-button:last-child {
            border-top-right-radius: 4px;
            border-bottom-right-radius: 4px;
        }
        
        /* 添加分隔线 */
        .button-group .filter-button {
            border-right: 1px solid rgba(255,255,255,0.3);
        }
        
        /* 筛选成功提示 */
        .filter-success {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: #28a745;
            color: white;
            padding: 10px 20px;
            border-radius: 4px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            z-index: 1000;
            display: none;
            font-weight: bold;
        }
        
        /* 响应式调整 */
        @media (max-width: 768px) {
            .filter-row {
                flex-wrap: wrap; /* 在小屏幕上换行 */
            }
            
            .filter-group {
                min-width: 10%;
                max-width: 30%;
            }
            
            .filter-group3 {
                min-width: 10%;
                max-width: 25%;
            }
            
            .filter-group2 {
                min-width: 10%;
                max-width: 13%;
            }
            
            .button-group {
                width: 28%;
            }
        } 
  

      
