/* 套餐列表页样式 */

.package-filter-tabs {
    display: flex;
    gap: 0;
    padding: 0;
    background-color: #fff;
    border-bottom: 1px solid #E0E0E0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.package-filter-tabs::-webkit-scrollbar {
    display: none;
}

.package-filter-tabs .filter-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 80px;
}

.package-filter-tabs .filter-tab.active {
    color: #1890FF;
    border-bottom-color: #1890FF;
    font-weight: 600;
    background-color: rgba(24, 144, 255, 0.04);
}

.package-filter-tabs .filter-tab:active {
    background-color: rgba(24, 144, 255, 0.08);
}

.filter-icon {
    font-size: 12px;
}

/* 套餐列表 */
.package-list {
    padding: 0;
}

.package-item {
    background-color: #fff;
    margin-bottom: 12px;
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid #F0F0F0;
}

.package-item:active {
    background-color: #fafafa;
}

@media (hover: hover) {
    .package-item:hover {
        background-color: #fafafa;
    }
}

.package-item-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.package-item-info {
    padding: 16px 20px;
}

.package-item-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.5;
    letter-spacing: 0.2px;
}

.package-item-price {
    font-size: 18px;
    font-weight: 700;
    color: #1890FF;
    margin-bottom: 12px;
    letter-spacing: 0.2px;
}

.package-item-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.package-item-tag {
    display: inline-block;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 400;
    color: #666;
    background-color: #F5F5F5;
    border-radius: 12px;
    letter-spacing: 0.1px;
}

/* 空状态 */
.empty-state {
    text-align: center;
    padding: 80px 20px;
}

.empty-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    opacity: 0.3;
}

.empty-text {
    font-size: 14px;
    color: #999;
    letter-spacing: 0.2px;
}

/* 顶部导航右侧图标 */
.top-nav-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #333;
    cursor: pointer;
    padding: 4px;
}

.top-nav-icon:active {
    opacity: 0.6;
}

