:root {
            --primary-color: #4361ee;
            --secondary-color: #3a0ca3;
            --accent-color: #4cc9f0;
            --dark-color: #121212;
            --light-color: #f8f9fa;
        }
        
        body {
            background-color: #f5f7fb;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            padding-top: 0;
        }
        
        		a {
text-decoration: none;
color:#333;
}

a:hover{
	color:#444;
}
		
		 /* 页脚 */
        footer {
            background-color: var(--card-bg);
            border-top: 1px solid var(--border-color);
            padding: 25px 0;
            margin-top: 40px;
        }
        
        .footer-content {
            text-align: center;
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-size: 16px;
            font-weight: 600;
            color: var(--primary-dark);
            margin-bottom: 15px;
        }
        
        .copyright {
            color: var(--text-light);
            font-size: 13px;
        }


 /* 筛选条件区域 */
        .filter-section {
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            padding: 20px;
            margin-bottom: 25px;
        }
        
        .filter-title {
            font-weight: 700;
            color: var(--dark-color);
            font-size: 1.25rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }
        
        .filter-title i {
            margin-right: 10px;
            color: var(--primary-color);
        }
        
        .filter-group {
            margin-bottom: 25px;
        }
        
        .filter-group:last-child {
            margin-bottom: 0;
        }
        
        .filter-label {
            font-weight: 600;
            color: #555;
            margin-bottom: 10px;
            font-size: 0.95rem;
        }
        
        /* 年份筛选样式 */
        .year-filter {
            display: flex;
            overflow-x: auto;
            gap: 10px;
            padding-bottom: 5px;
            scrollbar-width: thin;
        }
        
        .year-filter::-webkit-scrollbar {
            height: 4px;
        }
        
        .year-filter::-webkit-scrollbar-thumb {
            background-color: #ccc;
            border-radius: 2px;
        }
        
        .year-item {
            flex-shrink: 0;
            padding: 8px 16px;
            border-radius: 20px;
            background-color: #f0f2f5;
            color: #333;
            border: none;
            transition: all 0.3s ease;
            font-weight: 500;
            cursor: pointer;
        }
        
        .year-item:hover, .year-item.active {
            background-color: var(--primary-color);
            color: white;
        }
        
        /* 类型筛选样式 */
        .type-filter {
            display: flex;
            overflow-x: auto;
            gap: 10px;
            padding-bottom: 5px;
             /* scrollbar-width: thin; */
        }
        
        /*
        
        .type-filter::-webkit-scrollbar {
            height: 4px;
        }
        
        .type-filter::-webkit-scrollbar-thumb {
            background-color: #ccc;
            border-radius: 2px;
        }
        */
        
        .type-item {
            flex-shrink: 0;
            padding: 8px 16px;
            border-radius: 20px;
            background-color: #f0f2f5;
            color: #333;
            border: none;
            transition: all 0.3s ease;
            font-weight: 500;
            cursor: pointer;
            white-space: nowrap;
        }
        
       .type-item.active {
            background-color: var(--primary-color);
            color: white;
        }

		.type-item:hover {
            border: solid 1px var(--primary-color); 
            color:blue;
        }
        
        /* 排序筛选样式 */
        .sort-filter {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .sort-item {
            padding: 8px 16px;
            border-radius: 20px;
            background-color: #f0f2f5;
            color: #333;
            border: none;
            transition: all 0.3s ease;
            font-weight: 500;
            cursor: pointer;
        }
		
		 .title-filter {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
		
	 .title-item {
            padding: 4px 2px;  
			
            color: #333;
            border-radius:5px;
			font-size:20px;
            transition: all 0.3s ease;
            font-weight: 700;
            cursor: pointer; 
			text-decoration: none;
        }
	
	.title-item.active {
           
            border-bottom: 3px solid red;
           
        }		
        
        .sort-item:hover, .sort-item.active {
            background-color: var(--primary-color);
            color: white;
        }

        
        /* 网站顶部导航栏 */
        .site-header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            margin-bottom: 20px;
        }
        
        .site-header .container-fluid {
            padding-left: 20px;
            padding-right: 20px;
        }
		
		
		 /* 视频详情区域 */
        .video-detail-section {
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            padding: 25px;
            margin-bottom: 25px;
        }
        
        .video-detail-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }
        
        .video-cover-container {
           display: flex; 
			justify-content: center; 
			align-items: top; 
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .video-cover {
            width: 100%;
			height:auto;
            display: flex;
        }
        
        .video-info-container {
            flex: 1;
            min-width: 300px;
        }
        
        .video-title {
            font-weight: 700;
            color: var(--dark-color);
            font-size: 1.8rem;
            margin-bottom: 15px;
            line-height: 1.3;
        }
        
        .video-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .video-meta-item {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
        }
        
        .video-meta-label {
            font-weight: 600;
            color: #555;
            margin-right: 8px;
            min-width: 50px;
        }
        
        .video-meta-value {
            color: #333;
            font-size: 0.95rem;
        }
        
        .video-description {
            color: #555;
            line-height: 1.6;
            margin-bottom: 25px;
			background-color:#f5f7fb;
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            text-decoration: none;
            flex-shrink: 0;
        }
        
        .logo-icon {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
            font-size: 1.5rem;
        }
        
        .logo-text {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--dark-color);
            margin: 0;
        }
        
        .logo-subtitle {
            font-size: 0.85rem;
            color: #666;
            margin: 0;
        }
		
		 /* PC端下拉窗口样式 */
        .pc-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: white;
            border-radius: 0 0 8px 8px;
            box-shadow: var(--dropdown-shadow);
            z-index: 1000;
            overflow: hidden;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: opacity var(--transition-speed), transform var(--transition-speed), visibility var(--transition-speed);
        }
        
        .pc-dropdown.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .dropdown-header {
            background-color: #f8f9fa;
            padding: 12px 15px;
            border-bottom: 1px solid #dee2e6;
            font-weight: 600;
        }
        
        .dropdown-content {
            padding: 15px;
            max-height: 300px;
            overflow-y: auto;
        }
        
        .dropdown-item {
            padding: 8px 0;
            border-bottom: 1px solid #f0f0f0;
            cursor: pointer;
            transition: background-color 0.2s;
        }
        
        .dropdown-item:hover {
            background-color: #f8f9fa;
        }
        
        .dropdown-item:last-child {
            border-bottom: none;
        }
        
        /* 移动端全屏模态框样式 */
        .mobile-modal .modal-content {
            border-radius: 0;
            height: 100vh;
        }
        
        .mobile-modal .modal-header {
            background-color: #f8f9fa;
        }
        
        .mobile-modal .modal-body {
            padding: 20px;
            overflow-y: auto;
        }
        
        /* PC端顶部布局 */
        .pc-header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }
        
        /* 移动端顶部布局 */
        .mobile-header-content {
            display: flex;
            flex-direction: column;
            width: 100%;
        }
        
        .mobile-header-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            margin-bottom: 15px;
        }
        
        .mobile-header-bottom {
            width: 100%;
        }
        
        /* 搜索框样式 */
        .search-container {
            position: relative;
            max-width: 400px;
        }
        
        .search-input {
            border-radius: 25px;
            border: 1px solid #ddd;
            padding: 10px 45px 10px 20px;
            width: 100%;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }
        
        .search-input:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1);
            outline: none;
        }
        
        .search-btn {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: #777;
            font-size: 1.1rem;
        }
        
        /* 历史按钮样式 */
        .history-btn {
            background: none;
            border: none;
            color: #555;
            padding: 8px 15px;
            border-radius: 8px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            font-weight: 500;
            white-space: nowrap;
        }
        
        .history-btn:hover {
            background-color: #f0f2f5;
            color: var(--primary-color);
        }
        
        .history-btn i {
            margin-right: 6px;
        }
        
        /* 移动端历史按钮样式 */
        .mobile-history-btn {
            background: none;
            border: none;
            color: #555;
            padding: 8px 12px;
            border-radius: 8px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            font-weight: 500;
            white-space: nowrap;
        }
        
        .mobile-history-btn:hover {
            background-color: #f0f2f5;
            color: var(--primary-color);
        }
        
        .mobile-history-btn i {
            margin-right: 4px;
        }
        
        /* 历史下拉菜单 */
        .history-dropdown {
            min-width: 280px;
            padding: 10px 0;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            border: 1px solid #eee;
        }
        
        .history-dropdown .dropdown-item {
            padding: 10px 15px;
            display: flex;
            align-items: center;
            transition: all 0.2s ease;
        }
        
        .history-dropdown .dropdown-item:hover {
            background-color: #f8f9fa;
        }
        
        .history-item-thumb {
            width: 60px;
            height: 40px;
            border-radius: 5px;
            object-fit: cover;
            margin-right: 10px;
        }
        
        .history-item-title {
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 2px;
        }
        
        .history-item-time {
            font-size: 0.8rem;
            color: #888;
        }
        
        /* PC端侧边栏样式 */
        .sidebar {
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            height: calc(100vh - 100px);
            position: sticky;
            top: 90px;
            overflow-y: auto;
            padding: 0;
        }
        
        .sidebar-logo {
            padding: 25px 20px;
            border-bottom: 1px solid #eee;
            margin-bottom: 15px;
        }
        
        .sidebar-category {
            padding: 10px 20px;
            margin: 3px 10px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            color: #333;
            text-decoration: none;
        }
        
        .sidebar-category:hover, .sidebar-category.active {
            background-color: #eef2ff;
            color: var(--primary-color);
            transform: translateX(5px);
        }
        
        .sidebar-category i {
            margin-right: 10px;
            font-size: 1.1rem;
        }
        
        /* 移动端顶部滚动分类菜单 */
        .top-categories-container {
            display: none;
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            padding: 12px 15px;
            margin-bottom: 15px;
        }
        
        .top-categories {
            overflow-x: auto;
            white-space: nowrap;
            scrollbar-width: none; /* Firefox */
        }
        
        .top-categories::-webkit-scrollbar {
            display: none; /* Chrome, Safari, Opera */
        }
        
        .top-category {
            display: inline-block;
            padding: 6px 14px;
            margin-right: 8px;
            border-radius: 20px;
            background-color: #f0f2f5;
            color: #333;
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 500;
            font-size: 0.9rem;
        }
        
        .top-category:hover, .top-category.active {
            background-color: var(--primary-color);
            color: white;
        }
        
        /* 播放区域 */
        .play-section {
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            padding: 25px;
            margin-bottom: 25px;
        }
        
        /* PC端播放布局 */
        .pc-play-container {
            display: flex;
            gap: 30px;
        }
        
        .pc-player-container {
            flex: 1;
            min-width: 0;
        }
        
        .pc-info-container {
            flex: 0 0 250px;
			max-width:300px;
        }
        
        /* 移动端播放布局 */
        .mobile-play-container {
            display: flex;
            flex-direction: column;
        }
        
        .mobile-player-container {
            width: 100%;
            margin-bottom: 15px;
        }
        
        .mobile-info-container {
            width: 100%;
        }
        
        /* 视频播放器样式 */
        .video-player {
            width: 100%;
            border-radius: 10px;
            overflow: hidden;
            background-color: #000;
            position: relative;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .video-player-placeholder {
            width: 100%;
            padding-top: 56.25%; /* 16:9 比例 */
            background: linear-gradient(45deg, #1a1a2e, #16213e);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            position: relative;
        }
        
        .video-player-placeholder i {
            font-size: 4rem;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .video-player-controls {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            padding: 20px 15px 10px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .video-player-btn {
            background: none;
            border: none;
            color: white;
            font-size: 1.2rem;
            cursor: pointer;
            padding: 5px;
        }
        
        .video-player-btn:hover {
            color: var(--accent-color);
        }
        
        .video-player-progress {
            flex: 1;
            height: 4px;
            background-color: rgba(255, 255, 255, 0.3);
            border-radius: 2px;
            margin: 0 15px;
            position: relative;
            overflow: hidden;
        }
        
        .video-player-progress-bar {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 35%;
            background-color: var(--primary-color);
            border-radius: 2px;
        }
        
        /* 视频信息样式 */
        .video-play-title {
            font-weight: 700;
            color: var(--dark-color);
            font-size: 1.6rem;
            margin-bottom: 10px;
            line-height: 1.3;
        }
        
        .video-play-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 20px;
            align-items: center;
        }
        
        .video-play-meta-item {
            display: flex;
            align-items: center;
            margin-bottom: 5px;
        }
        
        .video-play-year {
            background-color: #f0f2f5;
            color: #555;
            padding: 4px 10px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 0.9rem;
        }
        
        .video-play-category {
            background-color: var(--primary-color);
            color: white;
            padding: 4px 10px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 0.9rem;
        }
        
        /* 播放线路容器样式 */
        .play-lines-container {
            margin-bottom: 5px;
        }
        
        .play-lines-label {
            font-weight: 600;
            color: #555;
            font-size: 1rem;
            margin-bottom: 10px;
            display: block;
        }
        
        /* 播放线路样式 */
        .play-lines {
            display: flex;
            overflow-x: auto;
            gap: 12px;
            padding-bottom: 10px;
            scrollbar-width: thin;
        }
        
        .play-lines::-webkit-scrollbar {
            height: 4px;
        }
        
        .play-lines::-webkit-scrollbar-thumb {
            background-color: #ccc;
            border-radius: 2px;
        }
        
        .play-line-item {
            flex-shrink: 0;
            padding: 8px 16px;
            border-radius: 6px;
            background-color: white;
            color: #333;
            border: 2px solid #e0e0e0;
            transition: all 0.3s ease;
            font-weight: 500;
            cursor: pointer;
            position: relative;
            min-width: 90px;
            text-align: center;
        }
        
        .play-line-item:hover {
            border-color: var(--primary-color);
            color: var(--primary-color);
        }
        
        .play-line-item.active {
            border-color: var(--primary-color);
            background-color: var(--primary-color);
            color: white;
        }
        
        /* 线路角标 */
        .line-badge {
            position: absolute;
            top: 0px;
            right: 0px;
            background-color: #ff4757;
            color: white;
            font-size: 0.7rem;
            padding: 2px 6px;
            border-radius: 10px;
            min-width: 20px;
            text-align: center;
        }
        
       
        
        .episodes-list {
            display: flex;
            overflow-x: auto;
            gap: 10px;  
            padding-bottom: 5px;
            /* scrollbar-width: thin; */
        }
        /*
        .episodes-list::-webkit-scrollbar {
            height: 4px;
        }
        
        .episodes-list::-webkit-scrollbar-thumb {
            background-color: #ccc;
            border-radius: 2px;
        } */
        
        .episode-item {
            flex-shrink: 0;
			padding:6px  8px;
            
            border-radius: 6px;
            background-color: #f0f2f5;
            color: #333;
            border: none;
            transition: all 0.3s ease;
            font-weight: 500;
            cursor: pointer; 
            text-align: center; 
            font-size: 0.9rem;
            position: relative;
        }
        
        .episode-item:hover {
            background-color: #e4e6e9;
            transform: translateY(-2px);
        }
        
        .episode-item.active {
            background-color: var(--primary-color);
            color: white;
        }
        
        /* 正在播放标记 */
        .playing-indicator {
            position: absolute;
            top: 5px;
            right: 5px;
            width: 8px;
            height: 8px;
            background-color: #ff4757;
            border-radius: 50%;
            animation: pulse 1.5s infinite;
        }
        
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.5; }
            100% { opacity: 1; }
        }
        
        /* 播放控制按钮区域 - 更新为一行铺满 */
        .play-controls {
            display: flex;
            gap: 10px;
            margin-top: 5px;
            padding-top: 3px;
            border-top: 1px solid #eee;
            width: 100%;
        }
        
        .play-control-btn {
            padding: 12px 0;
            border-radius: 8px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            flex: 1;
            font-size: 0.95rem;
        }
        
        .play-control-btn.next {
            background-color: var(--primary-color);
            color: white;
        }
        
        .play-control-btn.next:hover {
            background-color: var(--secondary-color);
        }
        
        .play-control-btn.report {
            background-color: #f0f2f5;
            color: #555;
        }
        
        .play-control-btn.report:hover {
            background-color: #e4e6e9;
            color: #333;
        }
        
        .play-control-btn.share {
            background-color: #f0f2f5;
            color: #555;
        }
        
        .play-control-btn.share:hover {
            background-color: #e4e6e9;
            color: #333;
        }
        
        /* 推荐视频区域 */
        .recommend-section {
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            padding: 5px;
            margin-bottom: 15px;
        }
        
        .recommend-title {
            font-weight: 700;
            color: var(--dark-color);
            font-size: 1.4rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }
        
        .recommend-title i {
            margin-right: 10px;
            color: var(--primary-color);
        }
		
		.category-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
		
		.category-title {
            font-weight: 700;
            color: var(--dark-color);
            font-size: 1.5rem;
            margin: 0;
            display: flex;
            align-items: center;
        }
        
        .category-title i {
            margin-right: 8px;
            color: var(--primary-color);
            font-size: 1.25rem;
        }		
        

		/* 更多链接样式 */
        .more-link {
            color: var(--secondary-color);
            text-decoration: none;
            font-size: 1rem;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
            font-weight: 500; 
        }
        
        .more-link:hover {
            color: var(--primary-color);
        }
        
        .more-link i {
            margin-left: 4px;
            font-size: 0.8rem;
        }
		
        /* 视频卡片样式 - 宽高比6:9 */
        .video-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            margin-bottom: 16px;
			margin-left:-8px;
			margin-right:-8px;
            height: 100%;
			padding-left: 0px;
			padding-right: 0px;
            position: relative;
        }
        
        .video-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
        }
        
        .video-thumbnail {
            position: relative;
            overflow: hidden;
            padding-top: 120%; /* 6:9 比例 (9/6*100%) */
        }
        
        .video-thumbnail img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .video-card:hover .video-thumbnail img {
            transform: scale(1.05);
        }
        
        /* 视频分类标签 - 右上角 */
        .video-category {
            position: absolute;
            top: 0px;
            right: 0px;
            background-color: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 500;
            z-index: 2;
        }
        
        .video-duration {
            position: absolute;
            bottom: 0px;
            left: 0;
            
            text-align:center;
			margin-left:10%;
			margin-right:10%;
            background-color: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 2px 2px;
            border-radius: 3px;
            font-size: 0.75rem;
        }
        
        .video-info {
            padding-top: 6px;
			margin:0 ;
        }
        
        .video-title-sm {
            font-weight: 500;
            font-size: 1.05rem;
            margin: 0;
            padding-top:5px;
            line-height: 1.0;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            height: 2.2em;
			text-align:center;
        }
        
        /* 返回顶部按钮 */
        .back-to-top {
            position: fixed;
            bottom: 25px;
            right: 25px;
            background-color: var(--primary-color);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            box-shadow: 0 4px 12px rgba(67, 97, 238, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
            z-index: 999;
            border: none;
        }
        
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background-color: var(--secondary-color);
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(67, 97, 238, 0.4);
        }
        
        /* 响应式调整 */
        @media (max-width: 992px) {
            .sidebar {
                display: none;
            }
            
			/* 剧集列表容器 */
        .episodes-container {
            max-width:100%;
        }
		
            .top-categories-container {
                display: block;
            }
            
            body {
                padding-top: 0;
            }
            
            .site-header {
                margin-bottom: 15px;
                padding: 12px 0;
            }
            
            /* 隐藏PC端布局，显示移动端布局 */
            .pc-header-content {
                display: none;
            }
            
            .mobile-header-content {
                display: flex;
            }
            
            /* 调整移动端logo和按钮布局 */
            .mobile-header-top {
                display: flex;
                align-items: center;
                justify-content: space-between;
                width: 100%;
                margin-bottom: 15px;
            }
            
            /* 调整移动端logo容器，使其不占据全部宽度 */
            .mobile-logo-container {
                flex-grow: 1;
                min-width: 0; /* 防止flex子项溢出 */
            }
            
            .logo-container {
                flex-shrink: 1;
                overflow: hidden;
            }
            
            .logo-text {
                font-size: 1.3rem;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }
            
            .logo-subtitle {
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }
            
            /* 调整搜索框样式 */
            .mobile-search-container .search-input {
                padding: 10px 45px 10px 15px;
            }
            
            /* 播放区域响应式 */
            .pc-play-container {
                display: none;
            }
            
            .mobile-play-container {
                display: flex;
            }
            
            .video-thumbnail {
                padding-top: 120%; /* 保持6:9比例 */
            }
        }
        
        @media (min-width: 993px) {
            /* 隐藏移动端布局，显示PC端布局 */
            .mobile-header-content {
                display: none;
            }
			
			
            
			
			
            .pc-header-content {
                display: flex;
            }
            
            /* 隐藏移动端播放布局，显示PC端播放布局 */
            .mobile-play-container {
                display: none;
            }
            
            .pc-play-container {
                display: flex;
            }
        }
        
        /* 移动端至少3列 */
        @media (max-width: 768px) {
            .video-thumbnail {
                padding-top: 150%; /* 保持6:9比例 */
            }
			.video-cover {
				max-width:250px;
				
			}
			.video-cover-container{
				display:flex;
				justify-content: center; 
			align-items: center; 
			padding-left:30px;
				
			}
			
			.video-cover {
				max-width:250px;
				
			}
			.episodes-container {
				max-width:100%;
				min-width:100%
			}
            
            .container-fluid {
                padding-left: 12px;
                padding-right: 12px;
            }
            
            /* 确保移动端视频列表至少3列 */
           
            
            .video-info {
                padding-top: 5px;
            }
            
            .video-title-sm {
                font-size: 0.9rem;
            }
            
            .back-to-top {
                bottom: 20px;
                right: 15px;
                width: 45px;
                height: 45px;
                font-size: 1.1rem;
            }
            
            .site-header .container-fluid {
                padding-left: 15px;
                padding-right: 15px;
            }
            
            /* 调整移动端logo和按钮的间距 */
            .mobile-header-top {
                margin-bottom: 12px;
            }
            
            .logo-text {
                font-size: 1.2rem;
            }
            
            .logo-icon {
                width: 35px;
                height: 35px;
                font-size: 1.3rem;
                margin-right: 8px;
            }
            
            .mobile-history-btn {
                padding: 8px 10px;
                font-size: 0.9rem;
            }
            
            /* 播放页面移动端调整 */
            .video-play-title {
                font-size: 1.3rem;
            }
            
            .play-section {
                padding: 20px;
            }
            
            .play-controls {
                gap: 8px;
            }
            
            .play-control-btn {
                padding: 10px 0;
                font-size: 0.9rem;
            }
        }
        
        @media (max-width: 576px) {
			.title-filter {
				display: flex; 
				justify-content: center; 
				align-items: center; 
			}
            /* 确保移动端视频列表至少3列 */
            .col-xs-4 {
                flex: 0 0 auto;
                width: 33.333333%;
            }
            
            .logo-text {
                font-size: 1.1rem;
            }
            
            .logo-icon {
                width: 32px;
                height: 32px;
                font-size: 1.2rem;
                margin-right: 6px;
            }
            
            .logo-subtitle {
                font-size: 0.75rem;
            }
            
            .mobile-history-btn {
                padding: 6px 8px;
                font-size: 0.85rem;
            }
            
            .mobile-history-btn i {
                margin-right: 2px;
            }
            
            /* 播放页面超小屏幕调整 */
            .video-play-title {
                font-size: 1.2rem;
            }
            
            .video-play-meta {
                gap: 10px;
            }
            
            .play-line-item {
                padding: 6px 12px;
                min-width: 80px;
                font-size: 0.85rem;
            }
            
            .line-badge {
                font-size: 0.6rem;
                padding: 1px 4px;
                min-width: 18px;
            }
            
            .episode-item {
               
                font-size: 0.8rem;
            }
            
            .play-section {
                padding: 15px;
            }
            
            .play-control-btn {
                font-size: 0.85rem;
                padding: 8px 0;
            }
        }
        
        @media (max-width: 400px) {
            /* 超小屏幕确保3列 */
            .col-xxs-4 {
                flex: 0 0 auto;
                width: 33.333333%;
            }
            
            .video-thumbnail {
                padding-top: 150%; /* 保持6:9比例 */
            }
            
            .play-control-btn {
                font-size: 0.8rem;
                padding: 8px 0;
                gap: 4px;
            }
            
            .play-control-btn i {
                font-size: 0.9rem;
            }
        }
        
        /* PC端搜索框样式 */
        .pc-search-container {
            flex-grow: 1;
            max-width: 500px;
            margin: 0 20px;
        }
        
        /* 当前播放信息 */
        .current-play-info {
            background-color: #f8f9fa;
            border-radius: 8px;
            padding: 10px 15px;
            margin-bottom: 20px;
            border-left: 4px solid var(--primary-color);
        }
        
        .current-play-text {
            font-weight: 500;
            color: #555;
            font-size: 0.95rem;
        }
        
        .current-play-text strong {
            color: var(--primary-color);
        }


 /* 分页样式 */
        .pagination-container {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 30px;
            margin-bottom: 40px;
            gap: 15px;
        }
        
        .pagination-btn {
            background-color: white;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
            padding: 8px 20px;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }
        
        .pagination-btn:hover:not(:disabled) {
            background-color: var(--primary-color);
            color: white;
        }
        
        .pagination-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            border-color: #ccc;
            color: #ccc;
        }
        
        .pagination-btn i {
            font-size: 0.9rem;
        }
        
        .pagination-prev i {
            margin-right: 8px;
        }
        
        .pagination-next i {
            margin-left: 8px;
        }
        
        .page-info {
            font-weight: 600;
            color: #555;
        }
        
         /* 无结果提示 */
        .no-results {
            text-align: center;
            padding: 60px 20px;
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            margin-bottom: 30px;
        }
        
        .no-results-icon {
            font-size: 3rem;
            color: #ccc;
            margin-bottom: 20px;
        }
        
        .no-results-title {
            font-weight: 600;
            color: #555;
            margin-bottom: 10px;
        }
        
        .no-results-text {
            color: #777;
            font-size: 0.95rem;
        }
        
 
.artlist-thumb {
    display: block;
    width: 100%;
    height: 100%;
    background-image: url(../images/load.gif);
    background-position: 50% 50%;
    background-size: cover;
}       
        
 .artlist-img {
    width: 180px;
    height: 120px;
    overflow: hidden;
    border-radius: 5px;
}
