.aolei_video_list {
    background: #F7F8FA;
}

.aolei_video_list .headr-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    background: var(--bg-color);
    overflow-y: auto;
}

.aolei_video_list .headr-bar a {
    font-family: var(--font-family);
    font-weight: 400;
    line-height: normal;
    color: var(--text-color);
    font-size: var(--font-16);
    padding: 0 48px;
    transition: all 0.3s ease;
}

.aolei_video_list .headr-bar a:hover {
    color: var(--color-primary);
}

.aolei_video_list .headr-bar a.active {
    color: var(--color-primary);
    font-weight: 700;
}

.aolei_video_list .headr-bar a:nth-child(n + 2) {
    border-left: 1px solid #E2E2E2;
}

.aolei_video_list .container {
    padding-top: var(--gap-50);
    padding-bottom: var(--gap-50);
}

.aolei_video_list .video-list-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 27px;
}

.aolei_video_list .video-item {
    background: #fff;
    box-shadow: 0 1px 2px 0 rgba(17, 17, 17, 0.15);
}

.aolei_video_list .video-img {
    position: relative;
    width: 100%;
    aspect-ratio: 9/5;
}

.aolei_video_list .video-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aolei_video_list .video-img .video_item_icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.aolei_video_list .video-title {
    padding: 20px;
}

.aolei_video_list .video-title h3 {
    font-size: var(--font-16);
    font-weight: 400;
    line-height: normal;
    font-family: var(--font-family);
    color: #111;
}

.aolei-list-pagination {
    margin-top: var(--gap-50);
}

.aolei-list-pagination ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.aolei-list-pagination ul a {
    font-size: var(--font-16);
    font-weight: 400;
    line-height: normal;
    font-family: var(--font-family);
    color: #3E3A39;
    transition: all 0.3s ease;
}

.aolei-list-pagination ul a.active {
    color: #FFF;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 992px) {
    .aolei_video_list .video-list-box {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .aolei_video_list .video-list-box {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .aolei_video_list .headr-bar a {
        padding: 0 24px;
    }
}

@media (max-width: 480px) {
    .aolei_video_list .video-list-box {
        grid-template-columns: 1fr;
    }
}