/* 首页视频列表区域 */
.video-content {
    padding: 2.4rem 0 5rem 0;
}

.video-content .video-tabs {
    display: flex;
    align-items: center;
    overflow: hidden;
    overflow-x: auto;
    padding-bottom: 0.6rem;
    row-gap: 1rem;
    column-gap: 3rem;
}

.video-content .video-tabs .tabs-content {
    position: relative;
    font-weight: 500;
    font-size: 16px;
    color: #666666;
    line-height: 22px;
    text-align: left;
    gap: 0.8rem;
    padding-bottom: 1rem;
    cursor: pointer;
    white-space: nowrap;
}

.video-content .video-tabs .tabs-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background-color: #333;
    transition: width 0.6s ease;
    border-radius: var(--border-radius);
}

.video-content .video-tabs .tabs-content.active::after {
    width: 3.2rem;
}

.video-content .video-tabs .tabs-content.active {
    color: #333;
}

@media (max-width: 1024px) {
    .video-content {
        padding: 2.4rem 2rem 5rem 2rem;
    }
    .video-content .video-tabs {
        column-gap: 2rem;
    }
    .video-content .video-tabs .tabs-content {
        gap: 0.5rem;
    }
}
