/* 自定义滚动条 */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f8f9fa;
}

::-webkit-scrollbar-thumb {
    background: #495057;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #3498db;
}

/* 轮播图模块样式 */
.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);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

.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;
}

/* 卡片样式 */
.content-card {
    transition: all 0.3s ease;
}

.content-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.content-card:hover .card-overlay {
    opacity: 1;
}

.card-overlay {
    opacity: 0;
    transition: opacity 0.3s ease;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
}

/* 搜索页样式 */
#navbar {
    top: 0 !important;
    position: fixed !important;
}



.search-bar {
    background: white;
    padding: 6px 0;
    border-bottom: 1px solid #e5e7eb;
}

.search-form {
    display: flex;
    align-items: center;
}

.search-input {
    flex: 1;
    background: #f3f4f6;
    border-radius: 999px 0 0 999px;
    padding: 8px 16px;
    border: none;
    outline: none;
    transition: box-shadow 0.2s;
}

.search-input:focus {
    box-shadow: 0 0 0 2px #3b82f6;
}

.search-btn {
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 0 999px 999px 0;
    padding: 8px 24px;
    cursor: pointer;
    transition: background 0.3s;
}

.search-btn:hover {
    background: #2563eb;
}

.result-info {
    color: #4b5563;
    margin-bottom: 24px;
}

.result-info strong {
    color: #3b82f6;
    font-weight: 600;
}

.no-results {
    background: white;
    border-radius: 8px;
    padding: 32px;
    text-align: center;
    margin-top: 24px;
}

.no-results i {
    color: #9ca3af;
    margin-bottom: 16px;
}

.no-results h3 {
    color: #374151;
    font-size: 20px;
    margin-bottom: 8px;
}

.no-results p {
    color: #6b7280;
    margin-bottom: 24px;
}

.page-nav {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.page-nav a {
    padding: 6px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    margin: 0 4px;
    color: #4b5563;
    transition: all 0.2s;
}

.page-nav a:hover, .page-nav a.active {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
}

/* 自定义工具类 */
.text-shadow {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.text-shadow-lg {
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
}

.backdrop-blur {
    backdrop-filter: blur(8px);
}

.hover-scale {
    transition: transform 0.3s ease;
}

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

.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* 淡入动画 */
.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* 社交媒体复制 */
.social-icon.copy-success {
    color: #4CAF50 !important;
    font-weight: bold;
}

#copyToast.show {
    opacity: 1;
    pointer-events: auto;
}




/* 筛选页全局样式 */


/* 筛选面板 */
.stui-pannel{background:#fff;border-radius:0.75rem;box-shadow:0 1px 3px rgba(0,0,0,0.05);margin-bottom:20px;overflow:hidden;}
.stui-pannel-box{padding:20px;}
.stui-pannel__head{border-bottom:2px solid #3b82f6;padding-bottom:10px;margin-bottom:16px;}
.stui-pannel__head .title{font-size:20px;font-weight:600;color:#1f2937;}

/* 筛选列表 */
.stui-screen__list{list-style:none;margin:0 0 16px 0;padding:0;display:flex;flex-wrap:wrap;align-items:center;gap:8px;padding-bottom:12px;border-bottom:1px dotted #e5e7eb;}
.stui-screen__list .text-muted{font-size:14px;color:#6b7280;margin-right:8px;}
.stui-screen__list li a{display:inline-block;padding:6px 12px;background:#f9fafb;border-radius:4px;color:#374151;text-decoration:none;font-size:14px;border:1px solid #e5e7eb;transition:all 0.2s ease;}
.stui-screen__list li.active a{background:#3b82f6;color:#fff;border-color:#3b82f6;}
.stui-screen__list li a.disabled{cursor:not-allowed;color:#9ca3af;background:#f3f4f6;}
.stui-screen__list li a:hover:not(.disabled):not(.active){border-color:#d1d5db;background:#f3f4f6;}

/* 影片列表（移动端适配） */
.stui-vodlist{list-style:none;margin:0;padding:0;display:grid;
    grid-template-columns: repeat(auto-fill,minmax(180px,1fr));
    gap:15px;
}
@media (max-width: 768px) {
    .container{padding:15px;}
    body{padding-top: 60px; /* 移动端导航栏高度适配 */}
    .stui-breadcrumb{padding:10px 15px;}
    .stui-vodlist{
grid-template-columns: repeat(auto-fill,minmax(140px,1fr));
gap:10px;
    }
    .movie-pic{aspect-ratio:3/4;}
    .movie-name{padding:8px;}
    .movie-name a{font-size:14px;}
}
@media (max-width: 480px) {
    .stui-vodlist{
grid-template-columns: repeat(2,1fr);
    }
}

.stui-vodlist li{background:#fff;border-radius:0.75rem;box-shadow:0 1px 3px rgba(0,0,0,0.05);overflow:hidden;transition:transform 0.3s ease,box-shadow 0.3s ease;}
.stui-vodlist li:hover{transform:translateY(-5px);box-shadow:0 4px 6px rgba(0,0,0,0.1);}
.movie-pic{width:100%;aspect-ratio:2/3;overflow:hidden;}
.movie-pic img{width:100%;height:100%;object-fit:cover;transition:transform 0.3s ease;}
.stui-vodlist li:hover .movie-pic img{transform:scale(1.05);}
.movie-name{padding:12px;}
.movie-name a{font-size:16px;font-weight:500;color:#1f2937;text-decoration:none;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;}
.movie-name a:hover{color:#3b82f6;}








    /* 分页核心样式 - 适配你的HTML结构 */
.stui-page {
    list-style: none !important;
    padding: 10px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    background: #fff !important;
    border-radius: 0.75rem !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05) !important;
}
.stui-page li {
    display: inline-block !important;
    margin: 0 !important;
    padding: 0 !important;
}
.stui-page li a {
    display: inline-block !important;
    padding: 8px 16px !important;
    background: #f9fafb !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 4px !important;
    color: #374151 !important;
    text-decoration: none !important;
    font-size: 14px !important;
    transition: all 0.2s ease !important;
}
/* 当前页高亮样式 */
.stui-page li.active a {
    background: #3b82f6 !important;
    color: #fff !important;
    border-color: #3b82f6 !important;
}
/* 移动端页码信息样式 */
.stui-page li.visible-xs {
    margin-left: 8px !important;
}
.stui-page li.visible-xs span.num {
    color: #6b7280 !important;
    font-size: 14px !important;
    padding: 8px 0 !important;
    display: inline-block !important;
}
/* 禁用态（首页/尾页不可点击时）- 可选补充 */
.stui-page li a.disabled {
    cursor: not-allowed !important;
    color: #9ca3af !important;
    background: #f3f4f6 !important;
    border-color: #e5e7eb !important;
}
/* 移动端适配 */
@media (max-width: 768px) {
    .stui-page {
        gap: 4px !important;
        padding: 8px !important;
    }
    .stui-page li a {
        padding: 6px 12px !important;
        font-size: 12px !important;
    }
    .stui-page li.visible-xs span.num {
        font-size: 12px !important;
    }




        /* 跳转页专属样式 */
        .jump-container {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding-top: 64px; /* 适配配导航导航栏高度 */
        }
        
        .jump-card {
            max-width: 500px;
            width: 90%;
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            overflow: hidden;
        }
        
        .jump-header {
            background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
            color: white;
            padding: 20px;
            text-align: center;
        }
        
        .jump-body {
            padding: 30px 20px;
            text-align: center;
        }
        
        .countdown {
            display: inline-block;
            width: 36px;
            height: 36px;
            line-height: 36px;
            background: #eff6ff;
            color: #3b82f6;
            border-radius: 50%;
            font-weight: bold;
            margin: 0 8px;
        }
        
        .jump-footer {
            background: #f9fafb;
            padding: 15px 20px;
            text-align: center;
            border-top: 1px solid #f1f5f9;
        }
        
        
        
        .footer-policy {
    margin-top: 10px;
}

.footer-policy a {
    text-decoration: none;
    font-size: 13px;
    margin: 0 8px;
    transition: color 0.3s;
}

.footer-policy a:hover {
    color: #ff4d4d;
}


.footer-bottom{    font-size: 13px;
    margin-bottom: 10px;
    line-height: 1.6;}