       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: #000;
            color: #fff;
            overflow: hidden;
            height: 100vh;
        }
        
        .app-container {
            height: 100vh;
            position: relative;
            overflow: hidden;
        }
        
        /* 视频区域 */
        .video-section {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 100px;
            background: #000;
            z-index: 0;
            display: flex;
            flex-direction: column;
        }
        
        .player-container {
            flex: 1;
            position: relative;
            background: #000;
            background-image: url('/images/bjlogo.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
        
        .video-section.video-loaded .player-container {
            background-image: none;
        }
        
        .video-section video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }
        
        .video-section.video-loaded {
            background-image: none;
        }
        
        .player-container {
            width: 100%;
            height: 100%;
            position: relative;
        }
        
        video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }
        
        /* 顶部导航 */
        .top-bar {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            display: -webkit-flex;
            display: flex;
            -webkit-justify-content: space-between;
            justify-content: space-between;
            -webkit-align-items: center;
            align-items: center;
            padding: 10px 16px 16px;
            background: linear-gradient(rgba(0,0,0,0.6), transparent);
            z-index: 9999;
            opacity: 1;
            height: 50px;
        }
        
        .back-btn {
            display: flex;
            align-items: center;
            gap: 4px;
            color: #fff;
            font-size: 16px;
            background: none;
            border: none;
            cursor: pointer;
        }
        
        .back-btn svg {
            width: 24px;
            height: 24px;
        }
        
        .top-right-btns {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .speed-wrapper {
            position: relative;
        }
        
        .speed-btn {
            padding: 4px 10px;
            background: rgba(255,255,255,0.2);
            border: none;
            border-radius: 4px;
            color: #fff;
            font-size: 13px;
            cursor: pointer;
            position: relative;
        }
        
        /* 倍速菜单 */
        .speed-menu {
            position: absolute;
            top: 100%;
            right: 0;
            margin-top: 8px;
            background: rgba(0,0,0,0.95);
            border-radius: 8px;
            padding: 8px 0;
            z-index: 20;
            display: none;
            min-width: 80px;
        }
        
        .speed-menu.open {
            display: block;
        }
        
        .speed-option {
            padding: 10px 16px;
            color: rgba(255,255,255,0.8);
            font-size: 13px;
            cursor: pointer;
            text-align: center;
            transition: all 0.2s;
        }
        
        .speed-option:hover {
            background: rgba(255,255,255,0.1);
        }
        
        .speed-option.active {
            color: #ff6b6b;
        }
        
        .more-btn {
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px;
        }
        
        .more-btn svg {
            width: 24px;
            height: 24px;
            fill: #fff;
        }
        
        /* 分类菜单 */
        .category-menu {
            position: absolute;
            top: 80px;
            right: 12px;
            background: rgba(0,0,0,0.95);
            border-radius: 12px;
            padding: 12px;
            z-index: 20;
            display: none;
            animation: fadeIn 0.2s ease;
        }
        
        .category-menu.open {
            display: block;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .category-list {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        
        .category-item {
            padding: 10px 20px;
            color: rgba(255,255,255,0.8);
            font-size: 14px;
            cursor: pointer;
            border-radius: 8px;
            transition: all 0.2s;
            white-space: nowrap;
            display: block;
            text-decoration: none;
        }
        
        .category-item:hover {
            background: rgba(255,255,255,0.1);
        }
        
        .category-item.active {
            color: #ff6b6b;
            background: rgba(255,107,107,0.2);
        }
        
        /* 右侧按钮 - 类似抖音 */
        .side-buttons {
            position: absolute;
            right: 12px;
            bottom: 250px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            z-index: 10;
        }
        
        .side-btn {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            background: none;
            border: none;
            cursor: pointer;
        }
        
        .side-btn-icon {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            transition: all 0.2s;
        }
        
        .side-btn-icon svg {
            width: 24px;
            height: 24px;
            fill: #fff;
        }
        
        .side-btn.active .side-btn-icon {
            background: #ff6b6b;
        }
        
        .side-btn.active .side-btn-icon svg {
            fill: #fff;
        }
        
        .side-btn-text {
            font-size: 11px;
            color: rgba(255,255,255,0.8);
        }
        
        /* 进度条 */
        .progress-container {
            width: 100%;
            z-index: 150;
            padding: 0;
        }
        
        .progress-bar {
            width: 100%;
            height: 16px;
            display: flex;
            align-items: center;
            cursor: pointer;
            position: relative;
            gap: 8px;
        }
        
        .progress-current {
            font-size: 12px;
            color: rgba(255,255,255,0.9);
            min-width: 40px;
        }
        
        .progress-duration {
            font-size: 12px;
            color: rgba(255,255,255,0.9);
            min-width: 40px;
            text-align: right;
        }
        
        .progress-track-wrapper {
            flex: 1;
            position: relative;
        }
        
        .progress-track {
            width: 100%;
            height: 2px;
            background: rgba(255,255,255,0.3);
            border-radius: 1px;
            position: relative;
        }
        
        .progress-fill {
            height: 100%;
            background: #ff6b6b;
            border-radius: 1px;
            width: 0%;
        }
        
        .progress-thumb {
            position: absolute;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 12px;
            height: 12px;
            background: #ff6b6b;
            border-radius: 50%;
            left: 0%;
            opacity: 0;
            transition: opacity 0.2s;
        }
        
        .progress-bar:hover .progress-thumb,
        .progress-bar.dragging .progress-thumb {
            opacity: 1;
        }
        
        /* 简要信息区域 */
        .info-section {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            max-width: 100%;
            min-height: 100px;
            padding: 8px 12px 16px;
            cursor: pointer;
            display: -webkit-flex;
            display: flex;
            -webkit-flex-direction: column;
            flex-direction: column;
            background: transparent;
            z-index: 9999;
            -webkit-justify-content: flex-start;
            justify-content: flex-start;
            gap: 2px;
            box-sizing: border-box;
        }
        
        .info-simple {
            display: -webkit-flex;
            display: flex;
            flex-direction: column;
            gap: 4px;
            -webkit-align-items: flex-start;
            align-items: flex-start;
            overflow: hidden;
            -webkit-flex: 1;
            flex: 1;
            background: transparent;
            width: 100%;
        }
        
        .info-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }
        
        .info-title {
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 4px;
            display: flex;
            align-items: center;
            gap: 6px;
            overflow: hidden;
            text-overflow: ellipsis;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            line-height: 1.3;
        }
        
        .info-tag-hot {
            padding: 1px 4px;
            background: linear-gradient(90deg, #ff6b6b, #ff8e53);
            border-radius: 3px;
            font-size: 11px;
            font-weight: normal;
            color: #fff;
            flex-shrink: 0;
        }
        
        .info-summary {
            font-size: 13px;
            color: rgba(255,255,255,0.7);
            line-height: 1.4;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
        }
        
        .djxx {
            background: rgba(50, 50, 50, 0.9);
            border-radius: 8px;
            padding: 10px 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
            width: 100%;
            flex-shrink: 0;
            box-sizing: border-box;
        }
        
        .info-summary.expanded {
            -webkit-line-clamp: unset;
        }
        
        .info-summary-wrapper {
            display: flex;
            align-items: flex-start;
            gap: 4px;
        }
        
        .info-summary-toggle {
            color: #ff6b6b;
            font-size: 12px;
            white-space: nowrap;
            cursor: pointer;
            flex-shrink: 0;
        }
        
        .info-category {
            display: -webkit-flex;
            display: flex;
            gap: 6px;
            margin: 4px 0;
        }
        
        .info-category-tag {
            font-size: 13px;
            color: rgba(255,255,255,0.7);
            background: rgba(255,255,255,0.1);
            padding: 2px 8px;
            border-radius: 10px;
        }
        
        /* 选集栏 */
        .episode-bar {
            display: -webkit-flex;
            display: flex;
            -webkit-align-items: center;
            align-items: center;
            -webkit-justify-content: space-between;
            justify-content: space-between;
            background: transparent;
            padding: 0;
            margin-top: -2px;
            flex-shrink: 0;
            position: relative;

            z-index: 100;
            min-height: 40px;
        }
        
        .episode-bar-content {
            display: -webkit-flex;
            display: flex;
            -webkit-align-items: center;
            align-items: center;
            gap: 6px;
            -webkit-flex: 1;
            flex: 1;
            background: rgba(255,255,255,0.1);
            padding: 10px 14px;
            border-radius: 8px;
            cursor: pointer;
        }
        
        .episode-bar-text {
            flex: 1;
            font-size: 14px;
            color: rgba(255,255,255,0.8);
        }
        
        .episode-bar-arrow {
            width: 20px;
            height: 20px;
            fill: rgba(255,255,255,0.6);
        }
        
        .fullscreen-btn {
            background: rgba(255,255,255,0.1);
            border: none;
            border-radius: 8px;
            padding: 10px;
            margin-left: 10px;
            cursor: pointer;
        }
        
        .fullscreen-btn svg {
            width: 22px;
            height: 22px;
            fill: rgba(255,255,255,0.8);
        }
        
        /* 弹窗 */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.7);
            z-index: 200;
            display: none;
            align-items: flex-end;
            justify-content: center;
        }
        
        .modal-overlay.open {
            display: flex;
        }
        
        .modal-content {
            width: 100%;
            max-height: 85vh;
            background: #2a2a2a;
            border-radius: 16px 16px 0 0;
            overflow-y: auto;
            animation: slideUp 0.3s ease;
        }
        
        @keyframes slideUp {
            from { transform: translateY(100%); }
            to { transform: translateY(0); }
        }
        
        .modal-header {
            padding: 16px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            background: #2a2a2a;
            z-index: 10;
        }
        
        .modal-title {
            font-size: 18px;
            font-weight: bold;
        }
        
        .modal-close {
            background: rgba(255,255,255,0.1);
            border: none;
            color: #fff;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            font-size: 18px;
            cursor: pointer;
        }
        
        .modal-body {
            padding: 16px;
        }
        
        /* 图片右侧显示信息 */
        .modal-info {
            display: flex;
            gap: 12px;
            margin-bottom: 20px;
        }
        
        .modal-cover {
            width: 100px;
            height: 133px;
            border-radius: 8px;
            object-fit: cover;
            flex-shrink: 0;
        }
        
        .modal-info-content {
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .modal-tags {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
            margin-bottom: 12px;
        }
        
        .modal-tag {
            font-size: 11px;
            color: rgba(255,255,255,0.7);
            background: rgba(255,255,255,0.15);
            padding: 3px 8px;
            border-radius: 4px;
        }
        
        .modal-desc-wrapper {
            display: flex;
            flex-wrap: wrap;
            align-items: flex-start;
        }
        
        .modal-desc {
            font-size: 13px;
            color: rgba(255,255,255,0.7);
            line-height: 1.5;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            overflow: hidden;
            flex: 1;
            min-width: 0;
        }
        
        .desc-toggle {
            font-size: 13px;
            color: #ff6b6b;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0;
            padding-left: 4px;
            flex-shrink: 0;
        }
        
        /* 集数列表 */
        .modal-episodes-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 20px 0 12px;
            padding-top: 16px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        
        .modal-episodes-title {
            font-size: 16px;
            font-weight: bold;
        }
        
        .episode-tabs {
            display: flex;
            gap: 8px;
            margin-bottom: 12px;
            overflow-x: auto;
            padding-bottom: 4px;
        }
        
        .episode-tab {
            flex-shrink: 0;
            padding: 6px 14px;
            background: rgba(255,255,255,0.1);
            border: none;
            border-radius: 20px;
            color: rgba(255,255,255,0.7);
            font-size: 13px;
            cursor: pointer;
            transition: all 0.2s;
        }
        
        .episode-tab.active {
            background: #ff6b6b;
            color: #fff;
        }
        
        .episode-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 8px;
            max-height: 200px;
            overflow-y: auto;
        }
        
        .episode-num {
            aspect-ratio: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255,255,255,0.1);
            border-radius: 8px;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.2s;
            color: #fff;
        }
        
        .episode-num:hover {
            background: rgba(255,255,255,0.2);
        }
        
        .episode-num.active {
            background: #ff6b6b;
        }
        
        /* Loading */
        .loading {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: #fff;
            font-size: 14px;
            z-index: 5;
        }
        
        /* 播放按钮 */
        .play-button {
            position: absolute;
            top: 40%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(0,0,0,0.4);
            border-radius: 50%;
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 50;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .play-button:hover {
            background: rgba(0,0,0,0.6);
        }
        
        .play-button.hidden {
            display: none;
        }
        
        /* 滑动提示 */
        .swipe-hint {
            position: absolute;
            top: 80px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0,0,0,0.6);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 12px;
            z-index: 100;
            animation: fadeInOut 3s ease;
        }
        
        @keyframes fadeInOut {
            0%, 100% { opacity: 0; }
            20%, 80% { opacity: 1; }
        }
        
        /* 短剧推荐区域样式 */
        .vod_row {
            padding: 20px 12px;
            background: #f5f5f5;
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            max-height: 80vh;
            overflow-y: auto;
        }
        
        .pannel {
            background: white;
            border-radius: 8px;
            padding: 16px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        
        .pannel_head {
            margin-bottom: 16px;
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
        }
        
        .pannel_head .v_change {
            margin-left: auto;
        }
        
        .pannel_head h2.title {
            margin: 0;
        }
        
        .pannel_head .v_change {
            margin-bottom: 2px;
        }
        
        .pannel_head h2.title {
            font-weight: bold;
            color: #333;
        }
        
        .pannel_head .text_muted {
            font-size: 12px;
            color: #999;
        }
        
        .pannel_head .v_change {
            text-decoration: none;
            color: #999;
            font-size: 12px;
            margin-right: 10px;
        }
        
        .cbox_list {
            position: relative;
        }
        
        .cbox1,
        .cbox2,
        .cbox3 {
            display: block;
        }
        
        .cbox2,
        .cbox3 {
            display: none;
        }
        
        .cbox2.hide,
        .cbox3.hide {
            display: none;
        }
        
        .vodlist {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        
        .vodlist_item {
            flex: 0 0 calc(33.333% - 8px);
            max-width: calc(33.333% - 8px);
        }
        
        .vodlist_thumb {
            display: block;
            position: relative;
            aspect-ratio: 3/4;
            overflow: hidden;
            border-radius: 6px;
            background: #f0f0f0;
        }
        
        .vodlist_thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 1;
        }
        
        .vodlist_thumb .play,
        .vodlist_thumb .vodlist_top,
        .vodlist_thumb .pic_text {
            position: absolute;
            z-index: 2;
        }
        
        .vodlist_thumb .play {
            position: absolute;
            top: 8px;
            right: 8px;
            width: 24px;
            height: 24px;
            background: rgba(0,0,0,0.6);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }
        
        .vodlist_top {
            position: absolute;
            top: 0;
            left: 0;
        }
        
        .voddate {
            padding: 2px 8px;
            border-radius: 0 0 4px 0;
            font-size: 10px;
            color: white;
            margin: 0;
        }
        
        .voddate_type {
            background: #ff6b6b;
        }
        
        .pic_text {
            position: absolute;
            bottom: 8px;
            right: 8px;
            font-size: 10px;
            color: white;
            background: rgba(0,0,0,0.6);
            padding: 2px 6px;
            border-radius: 4px;
        }
        
        .vodlist_titbox {
            margin-top: 8px;
        }
        
        .vodlist_title {
            margin: 0 0 4px 0;
            font-size: 13px;
            font-weight: 500;
        }

        
        .vodlist_title a {
            text-decoration: none;
            color: #333;
        }
        
        .vodlist_sub {
            margin: 0;
            font-size: 11px;
            color: #999;
        }
        
        .pull_right {
            float: right;
        }
        
        .pull_left {
            float: left;
        }
        
        .clearfix::after {
            content: "";
            display: table;
            clear: both;
        }
        
        /* PC 访问提示框样式 */
        .pc-notice-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.75);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 99999;
            animation: fadeIn 0.3s ease;
            backdrop-filter: blur(5px);
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes slideUp {
            from { 
                opacity: 0;
                transform: translateY(30px);
            }
            to { 
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }
        
        .pc-notice-box {
            background: #fff;
            border-radius: 20px;
            padding: 40px 35px;
            text-align: center;
            max-width: 380px;
            width: 90%;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            animation: slideUp 0.4s ease;
        }
        
        .pc-notice-qrcode {
            margin: 20px auto;
            padding: 15px;
            background: #f8f9fa;
            border-radius: 12px;
            display: inline-block;
            text-align: center;
        }
        
        .pc-notice-qrcode img {
            display: block;
            border-radius: 8px;
        }
        
        .pc-notice-title {
            font-size: 28px;
            font-weight: bold;
            color: #333;
            margin-bottom: 15px;
            letter-spacing: 1px;
        }
        
        .pc-notice-icon {
            font-size: 70px;
            margin-bottom: 15px;
            display: inline-block;
            animation: float 3s ease-in-out infinite;
        }
        
        .pc-notice-text {
            font-size: 15px;
            color: #666;
            margin-bottom: 25px;
            line-height: 1.8;
            padding: 0 10px;
        }
        
        .pc-notice-qrcode {
            margin: 20px auto;
            padding: 20px;
            background: linear-gradient(145deg, #ffffff 0%, #f0f0f0 100%);
            border-radius: 16px;
            display: inline-block;
            text-align: center;
            box-shadow: 
                0 8px 20px rgba(0, 0, 0, 0.1),
                0 0 0 1px rgba(102, 126, 234, 0.1) inset;
            position: relative;
        }
        
        .pc-notice-tip {
            font-size: 13px;
            color: #999;
            margin-top: 15px;
        }
        
        .pc-notice-continue {
            margin-top: 20px;
            padding: 12px 30px;
            background: #333;
            color: #fff;
            border: none;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .pc-notice-continue:hover {
            background: #555;
            transform: translateY(-2px);
        }
        
        .pc-notice-continue:active {
            transform: translateY(0);
        }
        
        @media (max-width: 480px) {
            .pc-notice-box {
                padding: 35px 30px;
                margin: 20px;
            }
            
            .pc-notice-title {
                font-size: 24px;
            }
            
            .pc-notice-icon {
                font-size: 60px;
            }
            
            .pc-notice-text {
                font-size: 14px;
            }
        }