/* ========== 分类筛选栏 ========== */
.type-page-main {
    background-color: #fff;
}

.type-container {
    margin-top: -20px;
    padding-bottom: 20px;
}

.type-container > div:last-child .vod-section {
    margin-bottom: 0;
}

.type-page-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin: 0 0 16px;
}

.type-filter-card {
    margin-bottom: 20px;
    padding: 25px 0 0;
}

.type-filter-tags {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
}

.type-filter-tags::-webkit-scrollbar {
    height: 0;
    display: none;
}

.type-filter-tag {
    display: inline-block;
    padding: 12px 30px;
    font-size: 15px;
    color: #555;
    background-color: #fff;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.type-filter-tag:hover {
    background-color: #fff8f0;
    color: #e65100;
    box-shadow: 0 2px 8px rgba(255, 152, 0, 0.15);
}

.type-filter-tag.active {
    background: linear-gradient(135deg, #ff9800, #e65100);
    color: #fff;
    box-shadow: 0 2px 8px rgba(255, 152, 0, 0.3);
}

@media (max-width: 768px) {
    .type-container {
        padding-bottom: 10px;
    }

    .type-page-title {
        font-size: 19px;
        margin-bottom: 12px;
    }

    .type-filter-tag {
        padding: 10px 22px;
        font-size: 14px;
    }

    .type-filter-card {
        margin-bottom: 20px;
        padding: 35px 0 0;
    }
}