.container {
    max-width: 1400px;
    margin: 0 auto;
    padding-bottom: 20px;
}

.page-title {
    text-align: center;
    margin-bottom: 30px;
    color: #ff0000;
    font-size: 2.5rem;
}

.page-subtitle {
    text-align: center;
    margin-bottom: 40px;
    color: #606060;
    font-size: 1.2rem;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 20px;
    margin-top: 20px;
}

.video-card {
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.15);
}

.thumbnail-container {
    position: relative;
    margin-bottom: 12px;
    /* border-bottom: 1px solid #eee; */
}

.thumbnail {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}

.duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 3px 6px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.video-info {
    padding: 0 10px;
}

.video-title {
    font-weight: 600;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.2;
    font-size: 1.05rem;
    color: #000;
}

.channel-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #848383;
}



.channel-name {
    color: #606060;
    font-size: 14px;
}

.video-meta {
    color: #606060;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
}

.views {
    margin-right: 10px;
}

.category-tag {
    display: inline-block;
    background-color: #ff0000;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    margin-top: 8px;
}



.tool-right {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

.el-pagination {
    display: flex;
    align-items: center;
}

.el-pager {
    display: flex;
    align-items: center;
    margin: 0 10px;
    padding: 0;
    list-style: none;
}

.el-pager li {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    min-width: 36px;
    height: 32px;
    margin: 0 2px;
    line-height: 32px;
    background: #fff;
    padding: 0 8px;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
    transition: all 0.2s ease;
    border: 1px solid #ddd;
}

.el-pager li:hover {
    background-color: #f5f5f5;
}

.el-pager li.is-active {
    background-color: #d82f2f;
    color: #fff;
    font-weight: 700;
    border: 1px solid #d82f2f;
    cursor: default;
}

.el-pager li.ellipsis {
    cursor: default;
    background: transparent;
    border: none;
    color: #999;
    min-width: 20px;
}

.btn-prev,
.btn-next {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    background-color: #d82f2f;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 4px;
    transition: background-color 0.2s ease;
}

.btn-prev:hover,
.btn-next:hover {
    background-color: #b80000;
}

.btn-prev:disabled,
.btn-next:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.no-data {
    text-align: center;
    padding: 100px 0;
    font-size: 28px;
    font-weight: bold;
    color: #999;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}