/* 简洁的分类标签样式 */
.lottery-tabs {
    margin: 0.1rem 0;
    background: #fff;
    padding: 0.08rem 0;
}

.lottery-tabs .tab-nav {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 0.15rem;
    gap: 0.06rem;
}

.lottery-tabs .tab-nav::-webkit-scrollbar {
    display: none;
}

.lottery-tabs .tab-item {
    flex: 0 0 auto;
    padding: 0.04rem 0.08rem;
    background: #f5f5f5;
    color: #666;
    text-decoration: none;
    border-radius: 0.06rem;
    font-size: 0.11rem;
    line-height: 1.2;
    white-space: nowrap;
    border: 1px solid #e0e0e0;
    transition: all 0.2s ease;
}

.lottery-tabs .tab-item.active {
    background: #da3a3f;
    color: white;
    border-color: #da3a3f;
}

/* 简单的点击效果 */
.lottery-card-item {
    transition: transform 0.1s ease;
}

.lottery-card-item:active {
    transform: scale(0.98);
}

