
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        } 

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            background: #000000;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            padding-top: 50px;
        }

        .header {
            text-align: center;
            background: #fff;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: #fff;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .header h1 {
            color: #2c3e50;
            margin-bottom: 10px;
            font-size: 24px;
        }

        .header p {
            color: #666;
            font-size: 14px;
            margin-bottom: 0;
        }

        .player-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .player-card {
            background: #fff;
            border-radius: 8px;
            padding: 20px;
            transition: all 0.3s ease;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .player-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .player-card h3 {
            color: #2c3e50;
            margin-bottom: 10px;
        }

        .player-card p {
            color: #666;
            font-size: 14px;
            margin-bottom: 15px;
        }

        .btn {
            display: inline-block;
            padding: 8px 16px;
            background: #3498db;
            color: #fff;
            text-decoration: none;
            border-radius: 4px;
            transition: background 0.3s ease;
        }

        .btn:hover {
            background: #2980b9;
        }

        .footer {
            text-align: center;
            padding: 20px;
            background: #fff;
            border-radius: 8px;
            margin-top: 20px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .notice {
            background: #fff;
            border-left: 4px solid #3498db;
            padding: 20px 30px;
            margin: 20px 0;
            border-radius: 4px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .notice h2 {
            color: #2c3e50;
            margin-bottom: 20px;
            font-size: 24px;
        }

        .notice h3 {
            color: #34495e;
            margin: 20px 0 10px;
            font-size: 20px;
        }

        .notice h4 {
            color: #2980b9;
            margin: 15px 0 10px;
            font-size: 16px;
        }

        .notice ul {
            margin-left: 20px;
            margin-bottom: 15px;
        }

        .notice code {
            background: #f8f9fa;
            padding: 2px 6px;
            border-radius: 3px;
            font-family: monospace;
            color: #e74c3c;
        }

        .notice pre {
            background: #f8f9fa;
            padding: 15px;
            border-radius: 4px;
            overflow-x: auto;
            margin: 10px 0;
        }

        .notice pre code {
            background: none;
            padding: 0;
            color: #333;
        }

        .main-player {
            background: #000000;
            border-radius: 0px;
            padding: 0px;
            margin: 0px 0;
            box-shadow: 0 0px 0px rgba(0, 0, 0, 0.1);
        }

        .search-box {
            /* display: flex; */
        }

        .search-box .btn-group {
            width: 100%;
        }

        .search-box input {
            flex: 1;
            padding: 8px 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 14px;
        }

        .search-box input:focus {
            outline: none;
            border-color: #3498db;
        }

        .video-info {
            background: #fff;
            padding: 15px;
            border-radius: 0 0 8px 8px;
            border-top: 1px solid #eee;
        }

        .episode-list {
            border-top: 1px solid #eee;
            padding-top: 15px;
        }

        .episode-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .episode-btn- {
            padding: 5px 15px;
            background: #f5f5f5;
            border: 1px solid #ddd;
            border-radius: 4px;
            cursor: pointer;
            font-size: 14px;
        }

        .episode-btn:hover {
            background: #e8e8e8;
        }

        .episode-btn.active {
            background: #3498db;
            color: #fff;
            border-color: #3498db;
        }

        .episode-nav {
            margin: 10px 0;
            text-align: center;
        }

        .btn-page {
            padding: 5px 15px;
            background: #f5f5f5;
            border: 1px solid #ddd;
            border-radius: 4px;
            cursor: pointer;
            margin: 0 10px;
        }

        .btn-page:hover {
            background: #e8e8e8;
        }

        #page-info {
            color: #666;
            font-size: 14px;
        }

        .episode-buttons {
            display: flex;
            flex-wrap: nowrap;
            overflow-x: auto;
            gap: 10px;
            padding: 10px 0;
            scrollbar-width: thin;
        }

        .episode-buttons::-webkit-scrollbar {
            height: 6px;
        }

        .episode-buttons::-webkit-scrollbar-thumb {
            background: #ccc;
            border-radius: 3px;
        }

        .episode-expand- {
            text-align: center;
            padding: 10px;
            color: #666;
            cursor: pointer;
            user-select: none;
            width: 70px;
            /*zdy*/
        }

        .episode-expand:hover {
            color: #3498db;
        }

        .expand-icon {
            display: inline-block;
            transition: transform 0.3s;
        }

        .expand-icon.active {
            transform: rotate(180deg);
        }

        .episode-buttons-more {
            display: none;
            flex-wrap: wrap;
            gap: 10px;
            padding: 10px 0;
            border-top: 1px solid #eee;
            margin-top: 10px;
        }

        .episode-container {
            position: relative;
        }

        .episode-buttons {
            display: flex;
            flex-wrap: nowrap;
            gap: 10px;
            padding: 10px 0;
        }

        .episode-expand {
            padding: 5px 15px;
            background: #f5f5f5;
            border: 1px solid #ddd;
            border-radius: 4px;
            cursor: pointer;
            font-size: 14px;
            color: #666;
            user-select: none;
            width: 70px;
            /*zdy*/
        }

        .episode-expand:hover {
            background: #e8e8e8;
            color: #3498db;
        }

        .expand-icon {
            display: inline-block;
            transition: transform 0.3s;
        }

        .expand-icon.active {
            transform: rotate(180deg);
        }

        .episode-buttons-more {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: #fff;
            border: 1px solid #eee;
            border-radius: 4px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            z-index: 1000;
        }

        .episode-scroll-container {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            padding: 15px;
            max-height: 300px;
            overflow-y: auto;
        }

        .episode-scroll-container::-webkit-scrollbar {
            width: 6px;
        }

        .episode-scroll-container::-webkit-scrollbar-thumb {
            background: #ccc;
            border-radius: 3px;
        }

        .btn-nav {
            padding: 5px 15px;
            background: #3498db;
            color: #fff;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            margin-left: 10px;
        }

        .btn-nav:hover {
            background: #2980b9;
        }

        .episode-container {
            position: relative;
        }

        .episode-buttons {
            display: flex;
            flex-wrap: nowrap;
            gap: 10px;
            padding: 10px 0;
        }

        .episode-expand- {
            padding: 5px 15px;
            background: #f5f5f5;
            border: 1px solid #ddd;
            border-radius: 4px;
            cursor: pointer;
            font-size: 14px;
            color: #666;
            user-select: none;
        }

        .episode-expand:hover {
            background: #e8e8e8;
            color: #3498db;
        }

        .expand-icon {
            display: inline-block;
            transition: transform 0.3s;
        }

        .expand-icon.active {
            transform: rotate(180deg);
        }

        .episode-buttons-more {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: #fff;
            border: 1px solid #eee;
            border-radius: 4px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            z-index: 1000;
        }

        .episode-scroll-container {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            padding: 15px;
            max-height: 300px;
            overflow-y: auto;
        }

        .episode-scroll-container::-webkit-scrollbar {
            width: 6px;
        }

        .episode-scroll-container::-webkit-scrollbar-thumb {
            background: #ccc;
            border-radius: 3px;
        }

        .btn-toggle {
            background: #3498db;
            color: #fff;
            border: none;
            padding: 5px 15px;
            border-radius: 4px;
            cursor: pointer;
            margin-left: 10px;
            font-size: 14px;
        }

        .btn-toggle:hover {
            background: #2980b9;
        }

        .notice-full {
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid #eee;
        }

        .notice h2 {
            color: #2c3e50;
            margin-bottom: 20px;
            font-size: 24px;
        }

        .notice h3 {
            color: #34495e;
            margin: 20px 0 10px;
            font-size: 20px;
        }

        .notice h4 {
            color: #2980b9;
            margin: 15px 0 10px;
            font-size: 16px;
        }

        .notice ul {
            margin-left: 20px;
            margin-bottom: 15px;
        }

        .notice code {
            background: #f8f9fa;
            padding: 2px 6px;
            border-radius: 3px;
            font-family: monospace;
            color: #e74c3c;
        }

        .notice pre {
            background: #f8f9fa;
            padding: 15px;
            border-radius: 4px;
            overflow-x: auto;
            margin: 10px 0;
        }

        .notice pre code {
            background: none;
            padding: 0;
            color: #333;
        }

        @media screen and (max-width: 768px) {

            /* 已添加的移动端样式 */
            /* 新增移动端优化样式 */
            .header {
                padding: 15px 0;
            }

            .header h1 {
                font-size: 20px;
            }

            .container {
                padding: 10px;
                padding-top: 100px;
            }

            .player-card {
                padding: 15px;
            }

            .player-card h3 {
                font-size: 16px;
            }

            .notice {
                padding: 15px;
            }

            .notice h2 {
                font-size: 18px;
            }

            .notice h3 {
                font-size: 16px;
            }

            .video-info {
                padding: 10px;
            }

            /* 优化视频标题和导航按钮在移动端的布局 */
            .video-info>div:first-child {
                flex-direction: column;
                gap: 10px;
            }

            .video-info>div:first-child>div {
                width: 100%;
                display: flex;
                justify-content: space-between;
                gap: 10px;
            }

            /* 优化展开更多按钮 */
            .episode-expand {
                width: 100%;
                margin-top: 10px;
            }

            /* 优化弹出的剧集列表 */
            .episode-scroll-container {
                max-height: 200px;
                padding: 10px;
            }
        }

        #current-player {
            width: 100%;
            height: 500px;
        }

        @media screen and (max-width: 768px) {
            #current-player {
                height: 200px !important;
            }
        }

        /* 修改集数按钮的基础样式 */
        .episode-btn {
            padding: 5px 15px;
            background: #f5f5f5;
            border: 1px solid #ddd;
            border-radius: 4px;
            cursor: pointer;
            font-size: 14px;
        }

        /* 移动端优化 */
        @media screen and (max-width: 768px) {
            .episode-buttons {
                display: grid;
                grid-template-columns: repeat(7, 1fr);
                /* 一排显示7个 */
                gap: 5px;
                padding: 5px 0;
            }

            .episode-btn {
                padding: 0;
                width: 100%;
                font-size: 12px;
                white-space: nowrap;
                text-align: center;
                min-width: 0;
            }

            /* 优化展开更多按钮 */
            .episode-expand {
                margin-top: 8px;
                padding: 8px;
                width: 70px;
                text-align: center;
            }

            /* 优化更多集数的弹出容器 */
            .episode-buttons-more .episode-scroll-container {
                display: grid;
                grid-template-columns: repeat(7, 1fr);
                gap: 5px;
                padding: 10px;
            }
        }

        /* 添加刷新按钮样式 */
        .btn-refresh {
            background: transparent;
            border: none;
            color: #3498db;
            padding: 5px 10px;
            cursor: pointer;
            font-size: 16px;
            transition: transform 0.3s ease;
        }

        .btn-refresh:hover {
            transform: rotate(180deg);
        }

        @media screen and (max-width: 768px) {
            .btn-refresh {
                padding: 8px;
                font-size: 18px;
            }

            /* 优化移动端按钮布局 */
            .video-info>div:first-child {
                padding: 10px;
            }

            .video-info .btn-nav {
                padding: 8px 15px;
                font-size: 14px;
            }
        }

        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 20px;
            position: relative;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
        }

        .header-content h1 {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            margin: 0;
        }

        .header-back {
            color: #3498db;
            font-size: 18px;
            text-decoration: none;
            padding: 8px;
        }

        .header-refresh {
            background: transparent;
            border: none;
            color: #3498db;
            padding: 8px;
            cursor: pointer;
            font-size: 18px;
            transition: transform 0.3s ease;
        }

        .header-refresh:hover {
            transform: rotate(180deg);
        }

        @media screen and (max-width: 768px) {
            .header-content {
                padding: 0 10px;
            }

            .header-content h1 {
                font-size: 18px;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
                max-width: 60%;
            }

            .header-back,
            .header-refresh {
                padding: 5px;
                font-size: 16px;
            }

            .header p {
                font-size: 12px;
                padding: 0 10px;
            }
        }

        /* 播放器选择框样式 */
        .radio-group {
            margin-top: 15px;
            padding: 15px;
            border-top: 1px solid #eee;
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }

        .radio-group label {
            display: inline-flex;
            align-items: center;
            cursor: pointer;
            user-select: none;
            padding: 8px 15px;
            background: #f5f5f5;
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        .radio-group label:hover {
            background: #e8e8e8;
        }

        .radio-group input[type="radio"] {
            margin-right: 8px;
            cursor: pointer;
        }

        .radio-group span {
            color: #666;
            font-size: 14px;
        }

        /* 选中状态样式 */
        .radio-group input[type="radio"]:checked+span {
            color: #3498db;
        }

        @media screen and (max-width: 768px) {
            .radio-group {
                gap: 10px;
                padding: 10px;
            }

            .radio-group label {
                padding: 6px 12px;
                font-size: 13px;
            }
        }

        .header.scrolled {
            padding: 10px 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(5px);
        }
  