.vod-section {
    margin-bottom: 28px;
    margin-top: 20px;
}

.vod-section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 16px;
}


/* 分类标题 */

.vod-section-title h2 {
    display: flex;
    align-items: center;

    gap: 8px;

    margin: 0;

    color: #f5f5f5;

    font-size: 22px;
    font-weight: 700;
}

.title-icon {
    width: 22px;
    height: 22px;

    object-fit: contain;

    flex-shrink: 0;
}

.vod-section-title h2::before {
    content: "";

    position: absolute;

    left: 0;
    top: 50%;

    width: 4px;
    height: 18px;

    border-radius: 2px;

    background: #fb7185;

    transform: translateY(-50%);
}


/* 更多按钮 */

.more-btn {
    height: 30px;

    padding: 0 12px;

    border-radius: 16px;

    border: 1px solid #252b35;

    background: #151922;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #d1d5db;

    font-size: 13px;

    transition: .2s;
}

.more-btn:hover {
    background: #1c2230;
}


/* 视频列表 */

.vod-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 14px;
}