        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
            font-style: normal !important;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background-color: #f5f6f8;
            color: #333;
            min-height: 100vh;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            font-size: 16px;
        }

        /* 分类导航栏 */
        .category-nav {
            background-color: #ffffff;
            padding: 0;
            position: sticky;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            border-bottom: 1px solid #f0f0f0;
        }

        .category-list {
            display: flex;
            align-items: center;
            width: 100%;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
        }

        .category-list::-webkit-scrollbar {
            display: none;
        }

        .category-item {
            flex: 1;
            color: #666;
            font-size: 18px;
            font-weight: 500;
            text-decoration: none;
            padding: 18px 0;
            position: relative;
            white-space: nowrap;
            transition: all 0.3s ease;
            background: none;
            border: none;
            cursor: pointer;
            text-align: center;
            min-width: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            border-bottom: 3px solid transparent;
        }

        .category-item.active {
            color: #f39800;
            font-weight: 600;
            border-bottom: 3px solid #f39800;
        }

        /* 非活跃状态的分类项 - 移除点击效果 */
        .category-item:not(.active) {
            cursor: default;
        }

        .category-item:not(.active):hover {
            color: #666;
        }

        /* 搜索框容器 */
        .search-container {
            display: flex;
            align-items: center;
            flex: 1;
            background-color: #f8f9fa;
            border-radius: 24px;
            padding: 0 16px;
            height: 44px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1.5px solid transparent;
        }

        .search-container:focus-within {
            background-color: #ffffff;
            border-color: #f39800;
            box-shadow: 0 0 0 3px rgba(243, 152, 0, 0.08);
            transform: translateY(-1px);
        }

        .search-input {
            flex: 1;
            border: none;
            background: transparent;
            font-size: 17px;
            font-weight: 400;
            outline: none;
            color: #1a1a1a;
            height: 100%;
            padding: 0;
            caret-color: #f39800;
        }

        .search-input::placeholder {
            color: #999;
            font-weight: 400;
        }

        .search-actions {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        /* 隐藏AI搜索按钮 */
        .ai-btn {
            display: none !important;
        }

        /* 清除按钮 */
        .clear-btn {
            background: none;
            border: none;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            border-radius: 50%;
            transition: background-color 0.2s;
        }

        .clear-btn:hover {
            background-color: rgba(0, 0, 0, 0.05);
        }

        .clear-btn svg {
            width: 20px;
            height: 20px;
            fill: #999;
        }

        /* 搜索按钮 */
        .search-btn {
            color: #fff;
            font-size: 17px;
            font-weight: 500;
            background-color: #f39800;
            border: none;
            padding: 8px 20px;
            cursor: pointer;
            border-radius: 6px;
            transition: all 0.2s ease;
            white-space: nowrap;
            margin-left: 8px;
            box-shadow: 0 2px 4px rgba(243, 152, 0, 0.2);
        }

        .search-btn:hover {
            background-color: #e68900;
            transform: translateY(-1px);
            box-shadow: 0 4px 8px rgba(243, 152, 0, 0.25);
        }

        /* 搜索结果容器 */
        .results-container {
            overflow-y: auto;
            scroll-behavior: smooth;
            padding: 8px 0;
            min-height: calc(100vh - 180px);
        }

        /* 卡片样式 */
        .card {
            background-color: #fff;
            margin: 0 8px 6px 8px;
            border-radius: 8px;
            transition: all 0.2s ease;
            position: relative;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            min-height: 380px;
            display: flex;
            flex-direction: column;
        }

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

        /* 标题 */
        .title {
            font-size: 18px;
            font-weight: bold;
            font-family: "Heiti SC", "黑体", "Microsoft YaHei", "微软雅黑", sans-serif;
            color: #1a1a1a;
            padding: 14px 16px 6px;
            line-height: 1.3;
        }

        /* 视频卡片样式 */
        .video-card {
            padding-bottom: 0;
        }

        /* 内容区域 */
        .content-wrapper {
            padding: 0 16px;
            flex: 1;
            min-height: 150px;
        }

        .meta-info {
            color: #666;
            font-size: 14px;
            line-height: 1.4;
            margin-bottom: 8px;
        }

        .meta-line {
            display: flex;
            align-items: center;
            margin-bottom: 2px;
            flex-wrap: wrap;
        }

        /* 年份样式 */
        .year {
            color: #666;
            margin-right: 10px;
            font-size: 14px;
            font-weight: 400;
        }

        /* 分类标签 */
        .category {
            background-color: #f0f2f5;
            padding: 3px 8px;
            border-radius: 10px;
            margin-right: 6px;
            font-size: 12px;
            color: #666;
            font-weight: 500;
        }

        /* 状态样式 */
        .status {
            background-color: #f0f2f5;
            color: #666;
            padding: 3px 8px;
            border-radius: 10px;
            font-size: 12px;
            font-weight: 500;
        }

        /* 媒体部分 */
        .media-section {
            display: flex;
            gap: 12px;
            margin-bottom: 12px;
            align-items: flex-start;
        }

        /* 视频描述区域 */
        .video-desc {
            flex: 1;
            font-size: 14px;
            color: #333;
            line-height: 1.5;
            display: flex;
            flex-direction: column;
        }

        /* 导演和演员信息 */
        .video-desc .director,
        .video-desc .actors {
            margin-bottom: 6px;
            color: #333;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 1;
            line-height: 1.4em;
            max-height: 1.4em;
        }

        /* 简介 */
        .video-desc .intro {
            margin-bottom: 6px;
            color: #333;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 3;
            overflow: hidden;
            text-overflow: ellipsis;
            line-height: 1.4em;
            max-height: 4.2em;
            flex: 1;
        }

        .video-desc .director span,
        .video-desc .actors span {
            color: #333;
            font-weight: 500;
        }

        /* 封面图片 */
        .thumb-img {
            width: 100px;
            height: 140px;
            background-size: cover;
            background-position: center;
            border-radius: 6px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            background-color: #f5f6f8;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
            flex-shrink: 0;
        }

        /* 图片加载中的占位符 */
        .thumb-img::before {
            content: '加载中...';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: #999;
            font-size: 11px;
            z-index: 1;
        }

        /* 图片加载成功 */
        .thumb-img.loaded::before {
            display: none;
        }

        /* 图片加载失败 */
        .thumb-img.error::before {
            content: '封面加载失败';
            color: #f39800;
            font-size: 10px;
            white-space: nowrap;
        }

        /* 无图片时的默认状态 */
        .thumb-img.no-image::before {
            content: '暂无封面';
            color: #999;
            font-size: 12px;
            white-space: nowrap;
        }

        .thumb-img:hover {
            transform: scale(1.03);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
        }

        /* 举报按钮 - 在卡片右下角 */
        .report-btn {
            position: absolute;
            bottom: 10px;
            right: 10px;
            background: none;
            border: none;
            cursor: pointer;
            z-index: 10;
            opacity: 0.7;
            transition: all 0.2s ease;
            font-size: 18px;
            color: #666;
            font-weight: bold;
            padding: 0;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.8);
        }

        .report-btn:hover {
            opacity: 1;
            background-color: rgba(255, 255, 255, 0.9);
        }

        /* 集数按钮行 */
        .episodes-row {
            padding: 0 16px 10px;
            margin-top: 10px;
        }

        /* 集数按钮容器 */
        .episodes {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 5px;
            margin-bottom: 10px;
        }

        /* 集数按钮 */
        .ep-btn {
            background-color: #f8f9fa;
            color: #333;
            font-size: 13px;
            height: 34px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 6px;
            font-weight: 400;
            cursor: pointer;
            border: none;
            transition: all 0.2s ease;
        }

        .ep-btn:hover {
            background-color: #f0f2f5;
            transform: translateY(-1px);
        }

        /* 播放按钮 */
        .play-btn {
            background-color: #f8f9fa;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            border: 1px solid #e0e0e0;
            width: 100%;
            color: #555;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            margin-top: 5px;
        }

        .play-btn:hover {
            background-color: #f0f2f5;
            border-color: #d0d0d0;
            transform: translateY(-1px);
            box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
        }

        /* 底部信息 - 简化样式，只有纯净播放和URL在左下角 */
        .video-footer {
            padding: 10px 16px;
            display: flex;
            align-items: center;
            font-size: 13px;
            color: #666;
            background-color: transparent;
            border-top: none;
            min-height: 40px;
        }

        /* 显示地址链接 */
        .video-source {
            color: #666;
            text-decoration: none;
            font-weight: 400;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            display: inline-block;
            font-size: 13px;
            margin-left: 10px;
        }

        .video-source:hover {
            color: #666;
            text-decoration: none;
        }

        /* 纯净播放标签 */
        .pure-play {
            color: #666;
            font-size: 13px;
            font-weight: 400;
            white-space: nowrap;
        }

        /* 分页样式 */
        .pagination {
            background-color: #fff;
            padding: 20px 0;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 2px 8px 8px 8px;
            border-radius: 8px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }

        /* 分页导航按钮行 */
        .pagination-nav {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 5px;
        }

        /* 分页按钮 */
        .page-btn {
            color: #333;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
            white-space: nowrap;
            padding: 8px 12px;
            background: none;
            border: none;
            border-radius: 4px;
            text-decoration: none;
            height: 36px;
            min-width: 36px;
        }

        .page-btn:hover:not(.disabled) {
            color: #f39800;
            text-decoration: underline;
            background-color: transparent;
        }

        .page-btn.disabled {
            opacity: 0.4;
            cursor: not-allowed;
            color: #999;
        }

        /* 当前页码信息 */
        .current-page-info {
            font-size: 14px;
            font-weight: 500;
            color: #333;
            white-space: nowrap;
            padding: 0 2px;
        }

        /* 底部搜索框 */
        .bottom-search {
            background-color: #fff;
            padding: 16px;
            display: flex;
            align-items: center;
            gap: 12px;
            margin-top: 4px;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
        }

        /* 错误提示 */
        .error-message {
            padding: 20px;
            text-align: center;
            color: #f39800;
            background-color: #fff;
            margin: 8px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            font-size: 16px;
            font-weight: 500;
        }
        
        /* 空状态 */
        .empty-state {
            text-align: center;
            padding: 40px 20px;
            color: #999;
            font-size: 16px;
            background-color: #fff;
            border-radius: 8px;
            margin: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            font-weight: 500;
        }

        /* 初始状态提示 */
        .initial-state {
            text-align: center;
            padding: 60px 20px;
            color: #999;
            font-size: 18px;
            background-color: #fff;
            border-radius: 8px;
            margin: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            font-weight: 500;
        }

        /* 滚动条美化 */
        .results-container::-webkit-scrollbar {
            width: 6px;
        }

        .results-container::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        .results-container::-webkit-scrollbar-thumb {
            background: #c1c1c1;
            border-radius: 3px;
        }

        /* 响应式设计 */
        @media (max-width: 768px) {
            body {
                font-size: 15px;
            }
            
            .category-nav {
                padding: 0;
            }
            
            .category-item {
                font-size: 16px;
                padding: 16px 0;
                border-bottom-width: 2px;
            }
            
            .video-card .category {
                font-size: 11px;
            }
            
            .video-card .status {
                font-size: 11px;
            }
            
            .search-container {
                height: 40px;
                padding: 0 14px;
            }
            
            .search-input {
                font-size: 16px;
            }
            
            .search-btn {
                font-size: 16px;
                padding: 7px 16px;
            }
            
            .clear-btn {
                width: 32px;
                height: 32px;
            }
            
            /* 移动端调整 */
            .card {
                min-height: 350px;
            }
            
            .thumb-img {
                width: 90px;
                height: 126px;
            }
            
            .title {
                font-size: 17px;
            }
            
            .episodes {
                grid-template-columns: repeat(5, 1fr);
                gap: 4px;
            }
            
            .ep-btn {
                height: 32px;
                font-size: 12px;
            }
            
            .report-btn {
                font-size: 16px;
                width: 28px;
                height: 28px;
                bottom: 8px;
                right: 8px;
            }
            
            .pagination {
                padding: 16px 0;
                margin: 2px 8px 8px 8px;
            }
            
            .pagination-nav {
                gap: 3px;
            }
            
            .page-btn {
                font-size: 13px;
                padding: 6px 10px;
                height: 32px;
                min-width: 32px;
            }
            
            .current-page-info {
                font-size: 13px;
                padding: 0 1px;
            }
            
            .bottom-search {
                padding: 14px;
                margin-top: 4px;
            }
            
            .video-footer {
                padding: 8px 14px;
                font-size: 12px;
                min-height: 36px;
            }
            
            .video-source {
                font-size: 12px;
            }
            
            .pure-play {
                font-size: 12px;
            }
        }

        @media (max-width: 480px) {
            body {
                font-size: 14px;
            }
            
            .category-nav {
                padding: 0;
            }
            
            .category-item {
                font-size: 15px;
                padding: 14px 0;
                border-bottom-width: 2px;
            }
            
            .video-card .category {
                font-size: 10px;
            }
            
            .video-card .status {
                font-size: 10px;
            }
            
            .search-container {
                height: 38px;
                padding: 0 12px;
            }
            
            .search-input {
                font-size: 15px;
            }
            
            .search-btn {
                font-size: 15px;
                padding: 6px 14px;
            }
            
            /* 小屏幕调整 */
            .card {
                min-height: 330px;
            }
            
            .thumb-img {
                width: 80px;
                height: 112px;
            }
            
            .video-desc .director,
            .video-desc .actors {
                -webkit-line-clamp: 1;
            }
            
            .video-desc .intro {
                -webkit-line-clamp: 2;
                max-height: 2.8em;
            }
            
            .title {
                font-size: 16px;
                padding: 12px 14px 5px;
            }
            
            .content-wrapper {
                padding: 0 14px;
            }
            
            .episodes {
                grid-template-columns: repeat(5, 1fr);
                gap: 3px;
            }
            
            .ep-btn {
                height: 30px;
                font-size: 11px;
            }
            
            .report-btn {
                font-size: 15px;
                width: 26px;
                height: 26px;
                bottom: 6px;
                right: 6px;
            }
            
            .play-btn {
                height: 38px;
                font-size: 15px;
            }
            
            .video-footer {
                padding: 6px 14px;
                font-size: 11px;
                min-height: 34px;
            }
            
            .video-source {
                font-size: 11px;
            }
            
            .pure-play {
                font-size: 11px;
            }
            
            .pagination {
                padding: 14px 0;
                margin: 2px 8px 8px 8px;
            }
            
            .pagination-nav {
                gap: 2px;
            }
            
            .page-btn {
                font-size: 12px;
                padding: 5px 8px;
                height: 30px;
                min-width: 30px;
            }
            
            .current-page-info {
                font-size: 12px;
                padding: 0;
            }
            
            .bottom-search {
                padding: 12px;
                margin-top: 4px;
            }
        }