
/* 主内容区样式 */
.site-main {
    background-color: #141414;
    padding: 25px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* 模块通用样式 */
.module {
    margin-bottom: 30px;
}

.module-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    height: auto;
}

.module-title {
    color: #ffffff;
    font-size: 17px;
    padding-bottom: 5px;
    border-bottom: 2px solid #ff4d4d;
    display: inline-block;
    margin: 0;
}

.more-link {
    color: #aaaaaa;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.more-link:hover {
    color: #ff4d4d;
}

/* 轮播图模块样式（重点修复按钮定位） */
.banner-slider {
    margin-bottom: 30px;
    position: relative; /* 确保按钮不会超出此容器 */
}

.slider-container {
    position: relative;
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
    height: 380px;
}

.slider-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.banner-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.banner-item.active {
    opacity: 1;
    z-index: 1;
}

.banner-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.banner-img {
    width: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 40%, rgba(0,0,0,0) 100%);
    z-index: 2; /* 覆盖层层级低于按钮 */
}

.banner-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    z-index: 3; /* 文字层级低于按钮 */
}

.banner-title {
    color: #fff;
    font-size: 24px;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.banner-desc {
    color: #eee;
    font-size: 13px;
    max-width: 700px;
    line-height: 1.5;
    margin-bottom: 15px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.banner-meta {
    display: flex;
    gap: 15px;
}

.meta-score, .meta-hits {
    color: #fff;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.meta-score i {
    color: #ffd700;
}

.meta-hits i {
    color: #ff4d4d;
}

/* 轮播按钮重点修复：确保在图片上方且位置正确 */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(0,0,0,0.7);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 4; /* 关键：高于覆盖层和文字，确保可见 */
    transition: all 0.3s;
    /* 防止按钮被容器裁剪 */
    box-sizing: border-box;
    margin: 0 10px; /* 与边缘保持距离 */
}

.slider-btn:hover {
    background-color: #ff4d4d;
    transform: translateY(-50%) scale(1.1); /* 增加hover效果 */
}

.prev-btn {
    left: 0; /* 左对齐容器，结合margin确保在图片内 */
}

.next-btn {
    right: 0; /* 右对齐容器，结合margin确保在图片内 */
}

.slider-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 4; /* 指示器也在最上层 */
}

.indicator-item {
    width: 8px;
    height: 8px;
    background-color: rgba(255,255,255,0.5);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.indicator-item.active {
    width: 20px;
    border-radius: 4px;
    background-color: #ff4d4d;
}



/* 最新更新模块样式 */

.vod-card {
    background-color: #1e1e1e;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.vod-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.3);
}

.card-link {
    text-decoration: none;
    display: block;
}

.card-img {
    position: relative;
    width: 100%;
    padding-top: 140%;
    height: 0;
    overflow: hidden;
}

.card-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.vod-card:hover .card-img img {
    transform: scale(1.05);
}

.card-mark {
    position: absolute;
    top: 6px;
    left: 6px;
    background-color: #ff4d4d;
    color: #fff;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 2px;
    z-index: 1;
}



.vod-card:hover .play-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.card-info {
    padding: 6px 8px;
}

.card-title {
    color: #fff;
    font-size: 13px;
    margin: 0 0 3px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.card-meta {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}



.meta-update {
    color: #ff4d4d;
    font-size: 11px;
    margin-left: auto;
}


.type-tabs {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 5px 0;
    margin-bottom: 10px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.type-tabs::-webkit-scrollbar {
    display: none;
}

.tab-item {
    color: #aaaaaa;
    text-decoration: none;
    font-size: 14px;
    padding: 5px 8px;
    position: relative;
    white-space: nowrap;
    line-height: 1;
    flex-shrink: 0;
}

.tab-item.active {
    color: #ff4d4d;
}

.tab-item.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ff4d4d;
}

.tab-item:hover {
    color: #ffffff;
}

.horizontal-list {
    position: relative;
    height: auto;
    padding: 5px 0;
}

.list-wrapper {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 5px 0;
    scrollbar-width: thin;
    scrollbar-color: #ff4d4d #333;
    -webkit-overflow-scrolling: touch;
}

.list-wrapper::-webkit-scrollbar {
    height: 4px;
}

.list-wrapper::-webkit-scrollbar-track {
    background-color: #333;
    border-radius: 2px;
}

.list-wrapper::-webkit-scrollbar-thumb {
    background-color: #ff4d4d;
    border-radius: 2px;
}

.horizontal-card {
    width: 150px;
    min-width: 150px;
    flex-shrink: 0;
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background-color: rgba(0,0,0,0.8);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: background-color 0.3s;
    font-size: 18px;
}

.scroll-btn:hover {
    background-color: #ff4d4d;
}

.left-btn {
    left: -10px;
}

.right-btn {
    right: -10px;
}



/* 加载状态样式 */
.loading {
    width: 100%;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
}

.load-error {
    width: 100%;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff4d4d;
    font-size: 13px;
    cursor: pointer;
}

/* 回到顶部按钮 */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
    background-color: #ff4d4d;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.back-to-top.show {
    opacity: 1;
    pointer-events: auto;
}

.back-to-top:hover {
    background-color: #e03e3e;
    transform: scale(1.1);
}

/* 响应式调整（确保按钮在各种屏幕上都在图片内） */
@media (max-width: 1024px) {
    .slider-container {
        height: 320px;
    }
    .recommend-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .slider-container {
        height: 250px;
    }
    .banner-text {
        padding: 15px;
    }
    .banner-title {
        font-size: 20px;
    }
    .banner-desc {
        display: none;
    }
    /* 移动端按钮调整 */
    .slider-btn {
        width: 36px;
        height: 36px;
        font-size: 16px;
        margin: 0 5px;
    }
    .recommend-banner {
        flex-direction: column;
        height: auto;
    }
    .recommend-banner .banner-img, .banner-info {
        width: 100%;
    }
    .recommend-banner .banner-img {
        height: 180px;
    }
    .recommend-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .horizontal-card {
        width: 130px;
        min-width: 130px;
    }
}

@media (max-width: 480px) {
    .slider-container {
        height: 180px;
    }
    .slider-btn {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    .banner-title {
        font-size: 16px;
    }
    .recommend-list {
        grid-template-columns: 1fr;
    }
    .module-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .horizontal-card {
        width: 110px;
        min-width: 110px;
    }
    .type-tabs {
        width: 100%;
        padding-bottom: 8px;
    }
}

/* 懒加载图片初始样式 */
.lazyload {
    background: #2a2a2a url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cpath d='M16 12a4 4 0 1 1-8 0'%3E%3C/path%3E%3C/svg%3E") center no-repeat;
    background-size: 40px;
}

/* 排行榜模块样式 */
.home-ranking {
    background-color: #141414;
    padding: 15px 0;
    margin-bottom: 30px;
}

.ranking-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ranking-item {
    display: flex;
    align-items: center;
    background-color: #1e1e1e;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.2s;
}

.ranking-item:hover {
    transform: translateX(3px);
}

.ranking-num {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    background-color: #2a2a2a;
    color: #aaa;
    visibility: visible !important;
}

/* 前三名序号高亮 */
.top-num.top-1 { background-color: #ff4d4d; color: #fff; }
.top-num.top-2 { background-color: #ff9900; color: #fff; }
.top-num.top-3 { background-color: #ffcc00; color: #000; }

.ranking-link {
    display: flex;
    align-items: center;
    flex: 1;
    padding: 12px;
    text-decoration: none !important; /* 取消下划线 */
}

.ranking-img {
    width: 100px;
    height: 70px;
    margin-right: 15px;
    flex-shrink: 0;
}

.ranking-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 3px;
}

.ranking-info {
    flex: 1;
    min-width: 0;
}

.ranking-title {
    font-size: 13px;
    margin: 0 0 5px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #fff;
    text-decoration: none !important; /* 确保标题无下划线 */
}

.ranking-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #aaa;
}

.meta-type {
    background-color: #2a2a2a;
    padding: 0 3px;
    border-radius: 2px;
}

.meta-value {
    color: #ff4d4d;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .ranking-img {
        width: 90px;
        height: 60px;
    }
    .ranking-title {
        font-size: 13px;
    }
}

/* 热门推荐模块整体样式 */
.home-recommend {
    background-color: #141414;
    padding: 20px 0;
    margin-bottom: 30px;
}

/* 关键：网格布局实现2列并排 */
.recommend-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 强制2列，平分宽度 */
    gap: 15px; /* 列之间的间距（左右）和行之间的间距（上下） */
}

/* 单条推荐项样式（保持“左图右文”不变） */
.recommend-item {
    background-color: #1e1e1e;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.recommend-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* 链接容器（左图右文布局） */
.recommend-link {
    display: flex; /* 横向排列图片和信息 */
    text-decoration: none !important;
    height: 100%;
}

/* 左侧图片区域（占比40%） */
.recommend-img {
    position: relative;
    width: 40%;
    min-height: 160px; /* 固定图片区域高度 */
    overflow: hidden;
}

.recommend-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.recommend-item:hover .recommend-img img {
    transform: scale(1.05);
}

/* 播放按钮（悬停显示） */
.recommend-play {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.recommend-item:hover .recommend-play {
    opacity: 1;
}

.play-btn {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 77, 77, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

/* 标签容器（类型+时长） */
.recommend-tag {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 6px 10px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.tag-type, .tag-time {
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 12px;
    padding: 2px 5px;
    border-radius: 3px;
}

/* 右侧信息区域（占比60%） */
.recommend-info {
    width: 60%;
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.recommend-title {
    color: #fff;
    font-size: 16px;
    margin: 0 0 8px 0;
    line-height: 1.3;
    transition: color 0.3s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.recommend-item:hover .recommend-title {
    color: #ff4d4d;
}

.recommend-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 8px 0;
    font-size: 12px;
}

.meta-score, .meta-update, .meta-area {
    color: #aaa;
}

.meta-score i {
    color: #ffd700;
    margin-right: 3px;
}

.recommend-desc {
    color: #ccc;
    font-size: 12px;
    line-height: 1.5;
    margin: 0 0 8px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* 简介显示2行 */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recommend-actor {
    color: #aaa;
    font-size: 12px;
}

.actor-label {
    color: #ff4d4d;
    margin-right: 5px;
}

.actor-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 响应式调整（确保移动端显示正常） */
@media (max-width: 768px) {
    /* 移动端自动改为1列布局（避免拥挤） */
    .recommend-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    /* 移动端单条恢复“左图右文”，图片占比35% */
    .recommend-img {
        width: 35%;
        min-height: 140px;
    }
    
    .recommend-info {
        width: 65%;
    }
}

@media (max-width: 480px) {
    .recommend-img {
        min-height: 120px;
    }
    
    .recommend-title {
        font-size: 14px;
    }
}

        /* 样式 */
        .search-bar {
            background-color: #1e1e1e;
            padding: 15px 0;
            border-bottom: 1px solid #333;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        .search-form {
            display: flex;
            max-width: 800px;
            margin: 0 auto;
        }
        .search-input {
            flex: 1;
            height: 42px;
            padding: 0 15px;
            background-color: #2d2d2d;
            border: 1px solid #444;
            border-right: none;
            color: #fff;
            outline: none;
            border-radius: 6px 0 0 6px;
            font-size: 15px;
        }
        .search-input:focus {
            border-color: #ff3a3a;
        }
        .search-btn {
            width: 90px;
            height: 42px;
            background-color: #ff3a3a;
            border: none;
            color: #fff;
            cursor: pointer;
            border-radius: 0 6px 6px 0;
            font-size: 15px;
            transition: background-color 0.2s;
        }
        .search-btn:hover {
            background-color: #ff5252;
        }
        
        .result-wrap {
            padding: 25px 0 30px;
        }
        .result-info {
            margin: 20px 0px;
            color: #aaa;
            font-size: 14px;
            padding-bottom: 10px;
            border-bottom: 1px dashed #333;
        }
        .result-info strong {
            color: #ff3a3a;
        }
        
        .movie-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
            gap: 18px;
            width: 100%;
            margin-bottom: 30px;
        }
        .movie-card {
            width: 100%;
            border-radius: 6px;
            overflow: hidden;
            background-color: #1e1e1e;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
            transition: all 0.3s;
        }
        .movie-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        .movie-pic {
            position: relative;
            width: 100%;
            padding-top: 145%;
            overflow: hidden;
        }
        .movie-pic img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .movie-card:hover .movie-pic img {
            transform: scale(1.05);
        }
        .movie-meta {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 5px 8px;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            font-size: 12px;
            color: #fff;
            display: flex;
            justify-content: space-between;
        }
        .movie-type {
            background-color: rgba(255,58,58,0.8);
            padding: 0 5px;
            border-radius: 3px;
            font-size: 11px;
        }
        .movie-title {
            padding: 10px 8px;
            font-size: 14px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            height: 40px;
            display: flex;
            align-items: center;
        }
        
        .no-results {
            text-align: center;
            padding: 60px 20px;
            color: #aaa;
            background-color: #1e1e1e;
            border-radius: 8px;
            margin-top: 20px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }
        .no-results p:first-child {
            font-size: 16px;
            margin-bottom: 10px;
        }
        
        .page-nav {
            margin: 30px 0 10px;
            text-align: center;
            padding: 12px;
            background-color: #1e1e1e;
            border-radius: 6px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }
        .page-nav a {
            display: inline-block;
            padding: 5px 10px;
            margin: 0 3px;
            background-color: #2d2d2d;
            border-radius: 4px;
            font-size: 14px;
            transition: all 0.2s;
        }
        .page-nav a:hover {
            background-color: #3a3a3a;
        }
        .page-nav a.active {
            background-color: #ff3a3a;
            color: #fff;
        }
        
        @media (max-width: 768px) {
            .movie-grid {
                grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
                gap: 12px;
            }
            .result-wrap {
                padding: 20px 0;
            }
        }
        
                /* 筛选页 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            background-color: #121212;
            color: #e0e0e0;
            font-family: "Microsoft YaHei", sans-serif;
            line-height: 1.5;
            font-size: 13px;
        }

        a {
            color: #e0e0e0;
            text-decoration: none;
            transition: all 0.2s ease;
            cursor: pointer;
        }
        a:hover {
            color: #fff;
        }
        
        /* 筛选区容器 */
        .stui-pannel {
            background-color: #1a1a1a;
            border-radius: 8px;
            box-shadow: 0 3px 12px rgba(0,0,0,0.3);
            margin: 15px 0;
            border: none;
        }
        .stui-pannel-box {
            padding: 15px;
        }
        
        /* 筛选标题 */
        .stui-pannel__head {
            padding: 10px 0;
            border-bottom: 1px solid rgba(255,255,255,0.08);
            margin-bottom: 10px;
        }
        .stui-pannel__head .title {
            font-size: 16px;
            color: #ff4d4d;
            font-weight: 500;
        }
        
        /* 筛选列表 */
        .stui-screen__list {
            display: flex;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255,255,255,0.04);
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: thin;
            min-height: 45px;
        }
        .stui-screen__list::-webkit-scrollbar {
            height: 4px;
        }
        .stui-screen__list::-webkit-scrollbar-thumb {
            background-color: rgba(255,77,77,0.4);
            border-radius: 2px;
        }
        .stui-screen__list li {
            list-style: none;
            margin-right: 10px;
            white-space: nowrap;
        }
        .stui-screen__list .text-muted {
            color: #ff4d4d;
            font-size: 14px;
            padding: 5px 0;
            margin-right: 8px;
        }
        .stui-screen__list li a {
            display: inline-block;
            padding: 5px 14px;
            background-color: #232323;
            border-radius: 20px;
            font-size: 12px;
        }
        .stui-screen__list li.active a {
            background-color: #ff4d4d;
            color: #fff;
        }
        .stui-screen__list li a:hover {
            background-color: #2a2a2a;
        }
        .stui-screen__list li.active a:hover {
            background-color: #ff5a5a;
        }
        /* 新增：禁用状态样式 */
        .stui-screen__list li a.disabled {
            opacity: 0.5;
            cursor: not-allowed;
            pointer-events: none;
        }
        
        /* 排序区域 */
        .nav-head {
            display: flex;
            list-style: none;
            padding: 10px 0;
        }
        .nav-head li {
            margin-right: 12px;
        }
        .nav-head li a {
            display: inline-block;
            padding: 4px 12px;
            background-color: #232323;
            border-radius: 4px;
            font-size: 12px;
        }
        .nav-head li.active a {
            background-color: #ff4d4d;
            color: #fff;
        }
        
        /* 影片列表 */
        .stui-vodlist {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
            gap: 15px;
            padding: 15px 0;
        }
        .stui-vodlist li {
            list-style: none;
        }
        .movie-pic {
            position: relative;
            width: 100%;
            padding-top: 142%;
            overflow: hidden;
            border-radius: 6px 6px 0 0;
        }
        .movie-pic img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .stui-vodlist li:hover .movie-pic img {
            transform: scale(1.05);
        }
        .movie-name {
            padding: 10px 8px;
            font-size: 13px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            background-color: #1a1a1a;
            border-radius: 0 0 6px 6px;
        }
        .stui-vodlist li {
            background-color: #1a1a1a;
            border-radius: 6px;
            overflow: hidden;
            box-shadow: 0 2px 6px rgba(0,0,0,0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .stui-vodlist li:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.4);
        }
        
        /* 分页 */
        .pagination {
            margin: 20px 0;
            text-align: center;
            padding: 12px;
            background-color: #1a1a1a;
            border-radius: 6px;
        }
        .pagination a {
            display: inline-block;
            padding: 5px 10px;
            margin: 0 3px;
            background-color: #232323;
            border-radius: 3px;
            font-size: 12px;
        }
        .pagination a.current {
            background-color: #ff4d4d;
            color: #fff;
        }
        
        /* 无数据提示 */
        .no-data {
            text-align: center;
            padding: 50px 15px;
            color: #aaa;
            background-color: #1a1a1a;
            border-radius: 6px;
            margin: 15px 0;
        }
        
        /* 响应式 */
        @media (max-width: 768px) {
            .stui-screen__list li a {
                padding: 4px 12px;
                font-size: 11px;
            }
            .stui-vodlist {
                grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
                gap: 12px;
            }
            .movie-name {
                font-size: 12px;
                padding: 8px 6px;
            }
        }

        /* 分页 */
            .stui-page {
        margin: 20px 0;
        padding: 12px;
        background-color: #1a1a1a;
        border-radius: 6px;
        list-style: none;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }
    .stui-page li {
        margin: 0 3px;
    }
    .stui-page li a {
        display: inline-block;
        padding: 5px 12px;
        background-color: #232323;
        border-radius: 4px;
        font-size: 12px;
        color: #e0e0e0;
        text-decoration: none;
        transition: all 0.2s ease;
    }
    .stui-page li a:hover {
        background-color: #2a2a2a;
        color: #fff;
    }
    .stui-page li.active a {
        background-color: #ff4d4d;
        color: #fff;
    }
    .stui-page li.active a:hover {
        background-color: #ff5a5a;
    }
    .stui-page li .num {
        display: inline-block;
        padding: 5px 12px;
        font-size: 12px;
        color: #e0e0e0;
    }
    @media (max-width: 768px) {
        .stui-page li a {
            padding: 4px 10px;
            font-size: 11px;
        }
    }
    /* 带背景的面包屑导航 - 适配深色主题 */
.stui-breadcrumb-container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.stui-breadcrumb {
    margin: 15px 0;
    padding: 12px 15px;
    background-color: #1a1a1a; /* 与筛选区相同的深色背景 */
    border-radius: 8px; /* 统一圆角 */
    box-shadow: 0 2px 6px rgba(0,0,0,0.2); /* 轻微阴影，增强层次感 */
    font-size: 12px;
}
.stui-breadcrumb ul {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}
.stui-breadcrumb li {
    margin-right: 8px;
}
.stui-breadcrumb li::after {
    content: "/";
    margin-left: 8px;
    color: #888; /* 浅灰色分隔符，避免突兀 */
}
.stui-breadcrumb li:last-child::after {
    content: ""; /* 最后一项不显示分隔符 */
}
.stui-breadcrumb li.active {
    color: #ff4d4d; /* 主题红色标注当前页 */
}
.stui-breadcrumb li a {
    color: #e0e0e0; /* 链接默认颜色 */
    text-decoration: none;
}
.stui-breadcrumb li a:hover {
    color: #ff4d4d; /* hover 时变主题色，统一交互 */
}