.oboot-video-list {

    --ob-vlist-bg: #1a0a12;

    --ob-vlist-bg-deep: #0f0609;

    --ob-vlist-text: #ffffff;

    --ob-vlist-muted: rgba(255, 255, 255, 0.72);

    --ob-vlist-accent: #c96b8a;

    --ob-vlist-line: rgba(201, 107, 138, 0.35);

    --ob-vlist-badge-bg: rgba(120, 40, 70, 0.92);

    --ob-vlist-max: 1500px;

    --ob-vlist-gap: clamp(19px, 2.2vw, 27px);

    --oboot-vlist-cols: 3;



    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;

    color: var(--ob-vlist-text);

    background:

        radial-gradient(900px 420px at 12% 0%, rgba(201, 107, 138, 0.12), transparent 55%),

        radial-gradient(700px 380px at 88% 8%, rgba(120, 40, 70, 0.14), transparent 50%),

        linear-gradient(165deg, var(--ob-vlist-bg) 0%, var(--ob-vlist-bg-deep) 100%);

    padding: clamp(18px, 3vw, 32px) 0;

    margin: 0 calc(50% - 50vw);

    width: 100vw;

    max-width: 100vw;

    box-sizing: border-box;

}



.oboot-video-list,

.oboot-video-list *,

.oboot-video-list *::before,

.oboot-video-list *::after {

    box-sizing: border-box;

}



.oboot-video-list__inner {

    max-width: var(--ob-vlist-max);

    width: 100%;

    margin: 0 auto;

    padding: 0 clamp(14px, 3.5vw, 28px);

}



.oboot-video-list__grid {

    display: grid;

    grid-template-columns: repeat(var(--oboot-vlist-cols), minmax(0, 1fr));

    gap: var(--ob-vlist-gap);

}



/* ---------- 新版卡片列表（短码前台） ---------- */

.oboot-video-list.oboot-video-list--styled {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 100%;
    padding: 0;
    background: transparent;
    overflow: visible;
}

.oboot-video-list--styled .oboot-video-list__inner {
    width: 100%;
    max-width: var(--ob-vlist-max, 1500px);
    margin: 0 auto;
    padding: 0;
}

.oboot-video-list--styled .oboot-video-list__content {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.oboot-video-list--styled .oboot-video-list__grid {
    display: grid;
    gap: var(--ob-vlist-gap, 17px);
    width: 100%;
    margin: 0 auto;
    grid-template-columns: repeat(var(--oboot-vlist-cols, 3), minmax(0, 1fr));
}

.oboot-video-list--styled .obvl-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
    max-width: 100%;
}

.oboot-video-list--styled {
    --obvl-thumb-ratio: 16 / 9;
}

.oboot-video-list--thumb-9-16 {
    --obvl-thumb-ratio: 9 / 16;
}

.oboot-video-list--styled .obvl-card__media {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: var(--obvl-thumb-ratio, 16 / 9);
    overflow: hidden;
    flex-shrink: 0;
}

.oboot-video-list--styled .obvl-card__media > .obvl-card__thumb-link,
.oboot-video-list--styled .obvl-card__media > .obvl-card__thumb {
    position: absolute;
    inset: 0;
}

.oboot-video-list--styled .obvl-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 列表页顶栏：导航 + 名称左 + 年度按钮右 */
.obvl-list-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px 24px;
    width: 100%;
    max-width: 100%;
    margin: 0 0 20px;
    padding: 16px 18px;
    flex-wrap: wrap;
    border-radius: var(--obvl-radius, 10px);
    border: 1px solid var(--obvl-border, rgba(255, 255, 255, 0.18));
    background:
        radial-gradient(ellipse 78% 150% at 96% -18%, rgba(255, 255, 255, 0.09) 0%, transparent 54%),
        radial-gradient(ellipse 55% 120% at 0% 100%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        linear-gradient(
            118deg,
            var(--obvl-card-hover, #2e3f4b) 0%,
            var(--obvl-card, #25333e) 46%,
            color-mix(in srgb, var(--obvl-card, #25333e) 72%, #000 28%) 100%
        );
    box-shadow:
        0 8px 26px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

@supports not (background: color-mix(in srgb, #000 50%, #fff)) {
    .obvl-list-header {
        background:
            radial-gradient(ellipse 78% 150% at 96% -18%, rgba(255, 255, 255, 0.09) 0%, transparent 54%),
            radial-gradient(ellipse 55% 120% at 0% 100%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
            linear-gradient(118deg, var(--obvl-card-hover, #2e3f4b) 0%, var(--obvl-card, #25333e) 100%);
    }
}

.obvl-list-header__left {
    flex: 1 1 auto;
    min-width: 0;
}

.obvl-list-header__right {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 12px 16px;
    flex: 0 0 auto;
    margin-left: auto;
}

.oboot-video-list--styled .obvl-list-header__orders-btn,
.oboot-video-list--styled .obvl-list-header__orders-btn:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 12px 22px;
    font-family: "Microsoft YaHei", "微软雅黑", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.02em;
    text-decoration: none !important;
    white-space: nowrap;
    color: #f2dc9a !important;
    -webkit-text-fill-color: #f2dc9a;
    background:
        radial-gradient(ellipse 120% 180% at 100% 0%, rgba(255, 216, 77, 0.16) 0%, transparent 58%),
        linear-gradient(160deg, rgba(138, 21, 38, 0.94) 0%, rgba(72, 10, 20, 0.98) 100%);
    border: 1px solid rgba(248, 231, 176, 0.58);
    border-radius: var(--obvl-radius, 10px);
    box-shadow:
        0 4px 18px rgba(138, 21, 38, 0.42),
        0 0 0 1px rgba(255, 216, 77, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.oboot-video-list--styled .obvl-list-header__orders-btn .custom-uc-paid-vod-list-icon {
    flex: 0 0 auto;
    width: 14px;
    height: 14px;
    color: #ffd84d;
}

.oboot-video-list--styled .obvl-list-header__orders-btn:hover,
.oboot-video-list--styled .obvl-list-header__orders-btn:focus {
    color: #ffd84d !important;
    -webkit-text-fill-color: #ffd84d;
    border-color: rgba(255, 216, 77, 0.78);
    box-shadow:
        0 8px 24px rgba(138, 21, 38, 0.5),
        0 0 0 1px rgba(255, 216, 77, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
    transform: translateY(-2px);
}

.oboot-video-list.oboot-video-list--styled .obvl-list-header__nav {
    margin: 0 0 6px;
    padding: 0;
    font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 1.4 !important;
    text-align: left !important;
    color: var(--obvl-muted, rgba(255, 255, 255, 0.72)) !important;
}

.oboot-video-list.oboot-video-list--styled .obvl-list-header__title {
    margin: 0;
    font-family: "Microsoft YaHei", "微软雅黑", "PingFang SC", "Helvetica Neue", Arial, sans-serif !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    text-align: left !important;
    color: var(--obvl-text, #fff8f4) !important;
}

.oboot-video-list.oboot-video-list--styled .obvl-list-header__subtitle {
    margin: 8px 0 0 !important;
    padding: 0 !important;
    font-family: "Microsoft YaHei", "微软雅黑", "PingFang SC", "Helvetica Neue", Arial, sans-serif !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    line-height: 1.45 !important;
    text-align: left !important;
    color: var(--obvl-text, #fff8f4) !important;
    text-shadow:
        0 0 8px rgba(255, 255, 255, 0.42),
        0 0 14px rgba(255, 212, 71, 0.34),
        0 0 22px rgba(232, 200, 106, 0.24) !important;
}

.obvl-list-header .obvl-year-links {
    flex: 0 1 auto;
    width: auto;
    margin: 0;
}

.obvl-list-header__right .obvl-year-links {
    margin-left: 0;
}

.obvl-list-header .obvl-year-links__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

/* 其他年份链接卡 */
.obvl-year-links {
    width: auto;
    margin: 0;
}

.oboot-video-list--styled .obvl-year-links__card,
.oboot-video-list--styled .obvl-year-links__card:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 152px;
    min-height: 50px;
    padding: 13px 26px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.03em;
    text-decoration: none !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff;
    text-shadow: none;
    background: linear-gradient(160deg, var(--obvl-card-hover, #2e3f4b) 0%, var(--obvl-card, #25333e) 100%);
    border: 1px solid var(--obvl-border, rgba(255, 255, 255, 0.18));
    border-radius: var(--obvl-radius, 10px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.oboot-video-list--styled .obvl-year-links__icon {
    display: inline-flex;
    flex-shrink: 0;
    color: #ffffff;
}

.oboot-video-list--styled .obvl-year-links__icon svg {
    display: block;
    width: 18px;
    height: 18px;
}

.oboot-video-list--styled .obvl-year-links__label {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff;
}

.oboot-video-list--styled .obvl-year-links__card:hover,
.oboot-video-list--styled .obvl-year-links__card:focus {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff;
    border-color: var(--obvl-accent, #c96b8a);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.34);
    transform: translateY(-2px);
}

.oboot-video-list--styled .obvl-year-links__card--current,
.oboot-video-list--styled .obvl-year-links__card--current:visited {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff;
    background: linear-gradient(160deg, var(--obvl-card-bg-highlight, #3a4f5c) 0%, var(--obvl-card, #25333e) 100%);
    border-color: var(--obvl-accent, #c96b8a);
    box-shadow:
        0 0 0 1px var(--obvl-accent, #c96b8a),
        0 8px 24px rgba(0, 0, 0, 0.36);
}

.oboot-video-list--styled .obvl-year-links__card--current .obvl-year-links__icon {
    color: var(--obvl-accent, #c96b8a);
}

.oboot-video-list--styled .obvl-year-links__card--current:hover,
.oboot-video-list--styled .obvl-year-links__card--current:focus {
    color: #ffffff !important;
    box-shadow:
        0 0 0 2px var(--obvl-accent, #c96b8a),
        0 10px 28px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .obvl-list-header {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .obvl-list-header__left,
    .oboot-video-list.oboot-video-list--styled .obvl-list-header__title {
        width: 100%;
    }

    .obvl-list-header__right {
        width: 100%;
        margin-left: 0;
        justify-content: flex-start;
    }

    .oboot-video-list--styled .obvl-list-header__orders-btn {
        width: 100%;
    }

    .obvl-list-header .obvl-year-links {
        width: 100%;
        margin-left: 0;
    }

    .obvl-list-header .obvl-year-links__grid {
        justify-content: flex-start;
    }

    .obvl-year-links__grid {
        justify-content: flex-start;
    }

    .oboot-video-list--styled .obvl-year-links__card {
        min-width: calc(50% - 8px);
        flex: 1 1 calc(50% - 8px);
        max-width: 100%;
        padding: 12px 16px;
        font-size: 15px;
    }
}

/* 电脑端：520px × N 列，顶栏与网格同宽居中 */
@media (min-width: 769px) {
    .oboot-video-list--styled.oboot-video-list--has-thumb-width .oboot-video-list__inner {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 0;
    }

    .oboot-video-list--styled.oboot-video-list--has-thumb-width .oboot-video-list__content {
        width: var(--ob-vlist-row-max);
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .oboot-video-list--styled.oboot-video-list--has-thumb-width .oboot-video-list__grid {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        grid-template-columns: repeat(var(--oboot-vlist-cols, 3), var(--obvl-thumb-width));
        justify-content: center;
    }

    .oboot-video-list--styled.oboot-video-list--has-thumb-width .obvl-card {
        width: 100%;
        min-width: 0;
        max-width: none;
    }
}



/* ---------- 旧版卡片（未启用 obvl 款式） ---------- */



.oboot-video-list__card {

    display: flex;

    flex-direction: column;

    min-width: 0;

    border: 1px solid var(--ob-vlist-line);

    border-radius: 6px;

    overflow: hidden;

    background: rgba(255, 255, 255, 0.03);

}



.oboot-video-list__thumb-link {

    display: block;

    text-decoration: none;

    color: inherit;

}



.oboot-video-list__thumb {

    position: relative;

    aspect-ratio: var(--obvl-thumb-ratio, 16 / 9);

    overflow: hidden;

    background: rgba(0, 0, 0, 0.35);

}



.oboot-video-list__img {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

}



.oboot-video-list__no-thumb {

    display: block;

    width: 100%;

    height: 100%;

    background: linear-gradient(135deg, rgba(201, 107, 138, 0.25), rgba(40, 12, 24, 0.6));

}



.oboot-video-list__badge {

    position: absolute;

    top: 8px;

    right: 8px;

    z-index: 2;

    padding: 3px 10px;

    border-radius: 4px;

    font-size: 12px;

    line-height: 1.35;

    font-weight: 600;

    color: #fff;

    background: var(--ob-vlist-badge-bg);

    border: 1px solid rgba(255, 255, 255, 0.18);

    max-width: calc(100% - 16px);

    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;

}



.oboot-video-list__title {

    margin: 0;

    padding: 12px 14px 8px;

    font-size: clamp(14px, 1.6vw, 16px);

    font-weight: 700;

    line-height: 1.45;

    border-top: 1px solid var(--ob-vlist-line);

}



.oboot-video-list__title a {

    color: var(--ob-vlist-text);

    text-decoration: none;

}



.oboot-video-list__title a:hover,

.oboot-video-list__title a:focus {

    color: var(--ob-vlist-accent);

}



.oboot-video-list__meta {

    display: flex;

    flex-wrap: wrap;

    gap: 6px 14px;

    padding: 0 14px 12px;

    font-size: 12px;

    line-height: 1.5;

    color: var(--ob-vlist-muted);

}



.oboot-video-list__meta > span:not(:last-child)::after {

    content: none;

}



.oboot-video-list__empty {

    margin: 0;

    padding: 24px 0;

    text-align: center;

    color: var(--ob-vlist-muted);

}



.oboot-video-list .oboot-pg-demo {

    margin-top: clamp(20px, 3vw, 32px);

}



@media (max-width: 1024px) {

    .oboot-video-list--cols-4,

    .oboot-video-list--cols-5,

    .oboot-video-list--cols-6 {

        --oboot-vlist-cols: 3;

    }

}



@media (max-width: 768px) {

    .oboot-video-list:not(.oboot-video-list--styled) {

        --oboot-vlist-cols: 2;

    }



    .oboot-video-list--cols-1 {

        --oboot-vlist-cols: 1;

    }



    .oboot-video-list.oboot-video-list--styled {

        --oboot-vlist-cols: 1;

        width: 100%;

        max-width: 100%;

        padding-left: clamp(10px, 3vw, 16px);

        padding-right: clamp(10px, 3vw, 16px);

    }



    .oboot-video-list--styled .oboot-video-list__inner {

        max-width: 100%;

    }



    .oboot-video-list--styled .oboot-video-list__grid {

        grid-template-columns: minmax(0, 1fr);

        justify-items: center;

        width: 100%;

    }



    .oboot-video-list--styled .obvl-card {

        width: 100%;

        max-width: 100%;

        min-width: 0;

    }



    .oboot-video-list--styled.oboot-video-list--has-thumb-width .oboot-video-list__grid {
        width: 100%;
        max-width: 100%;
        grid-template-columns: minmax(0, 1fr);
    }

    .oboot-video-list--styled.oboot-video-list--has-thumb-width .obvl-card {
        width: min(100%, var(--obvl-thumb-width));
        max-width: 100%;
        min-width: 0;
    }

    .oboot-video-list.oboot-video-list--styled.oboot-video-list--thumb-9-16 {
        --oboot-vlist-cols: 2;
    }

    .oboot-video-list--styled.oboot-video-list--thumb-9-16 .oboot-video-list__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        justify-items: stretch;
    }

    .oboot-video-list--styled.oboot-video-list--thumb-9-16 .obvl-card {
        width: 100%;
        max-width: 100%;
    }

    .oboot-video-list--styled.oboot-video-list--thumb-9-16.oboot-video-list--has-thumb-width .oboot-video-list__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 100%;
    }

    .oboot-video-list--styled.oboot-video-list--thumb-9-16.oboot-video-list--has-thumb-width .obvl-card {
        width: 100%;
        max-width: 100%;
    }
}



@media (max-width: 480px) {

    .oboot-video-list:not(.oboot-video-list--styled):not(.oboot-video-list--cols-1) {

        --oboot-vlist-cols: 1;

    }

}


