
        .video-page {
            display: flex;
            height: calc( 100vh - 150px);
        }

        /* 主内容区 */
        .main-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            position: relative;
            height:100%;
        }

        /* 视频区域 */
        .video-container {
            flex: 1;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #000;
            height:100%;
        }

        .video-wrapper {
            position: relative;
            height: 100%;
            width:100%;
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        video {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        /* 视频封面占位 */
        .video-poster {
            position: absolute;
            top: 0;
            left: 0;
            margin:0 auto;
            height: 100%;
            width: 100%;
            background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1;
        }

        .video-poster img {
            height: 100%;
            object-fit: contain;
        }

        .video-poster.hidden {
            display: none;
        }

        /* 视频信息浮层 */
        .video-overlay {
            position: absolute;
            top: 20px;
            left: 20px;
            z-index: 2;
            color: #fff;
        }

        .video-tag {
            writing-mode: vertical-rl;
            font-size: 14px;
            color: rgba(255,255,255,0.8);
            letter-spacing: 4px;
            position: absolute;
            top: 20px;
            right: 60px;
        }

        .video-title {
            font-size: 72px;
            font-weight: bold;
            font-family: "STKaiti", "KaiTi", serif;
            text-shadow: 0 0 20px rgba(0,0,0,0.5);
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: #d4af37;
        }

        .video-credits {
            position: absolute;
            bottom: 80px;
            right: 60px;
            font-size: 12px;
            color: rgba(255,255,255,0.7);
            text-align: right;
            line-height: 1.8;
        }

        /* 剧集卡片 */
        .episode-card {
            position: absolute;
            bottom: 100px;
            left: 20px;
            display: flex;
            background: rgba(20, 20, 20, 0.95);
            border-radius: 12px;
            overflow: hidden;
            width: 420px;
            z-index: 3;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.1);
        }

        .episode-poster {
            width: 100px;
            height: 140px;
            flex-shrink: 0;
            background: #333;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            font-size: 12px;
        }

        .episode-poster img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .episode-info {
            padding: 12px 16px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .episode-header {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 8px;
        }

        .episode-title {
            color: #fff;
            font-size: 15px;
            font-weight: 500;
            flex: 1;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .episode-badge {
            background: #ff4444;
            color: #fff;
            font-size: 10px;
            padding: 2px 6px;
            border-radius: 4px;
        }

        .episode-genre {
            color: #888;
            font-size: 12px;
            margin-bottom: 8px;
        }

        .episode-desc {
            color: #aaa;
            font-size: 12px;
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 10px;
        }

        .episode-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: auto;
        }

        .episode-count {
            color: #666;
            font-size: 12px;
        }

        .episode-link {
            color: #4a90d9;
            font-size: 12px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .episode-link::after {
            content: "›";
            font-size: 14px;
        }

        /* 播放控制栏 */
        .controls-bar {
            background: linear-gradient(transparent, rgba(0,0,0,0.9));
            padding: 20px;
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 10;
        }

        .progress-container {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
        }

        .time {
            color: #aaa;
            font-size: 12px;
            font-family: monospace;
            min-width: 50px;
        }

        .progress-bar {
            flex: 1;
            height: 4px;
            background: rgba(255,255,255,0.2);
            border-radius: 2px;
            cursor: pointer;
            position: relative;
        }

        .progress-fill {
            height: 100%;
            background: #00d4aa;
            border-radius: 2px;
            width: 35%;
            position: relative;
        }

        .progress-handle {
            position: absolute;
            right: -6px;
            top: 50%;
            transform: translateY(-50%);
            width: 12px;
            height: 12px;
            background: #00d4aa;
            border-radius: 50%;
            opacity: 0;
            transition: opacity 0.2s;
        }

        .progress-bar:hover .progress-handle {
            opacity: 1;
        }

        .controls-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .controls-left {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .control-btn {
            background: none;
            border: none;
            color: #fff;
            cursor: pointer;
            padding: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 0.2s;
        }

        .control-btn:hover {
            opacity: 0.8;
        }

        .play-btn {
            width: 40px;
            height: 40px;
        }

        .play-btn svg {
            width: 100%;
            height: 100%;
        }

        .skip-btn {
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .controls-right {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .speed-btn {
            color: #fff;
            font-size: 13px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px 8px;
        }

        .volume-container {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .volume-slider {
            width: 80px;
            height: 4px;
            background: rgba(255,255,255,0.2);
            border-radius: 2px;
            cursor: pointer;
        }

        .volume-fill {
            height: 100%;
            background: #fff;
            border-radius: 2px;
            width: 70%;
        }

        /* 右侧互动栏 */
        .sidebar {
            width: 70px;
            background: rgba(10, 10, 10, 0.8);
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 20px 0;
            gap: 20px;
            z-index: 5;
        }

        .nav-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            border: none;
            color: #fff;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s;
        }

        .nav-btn:hover {
            background: rgba(255,255,255,0.2);
        }

        .action-group {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }

        .action-btn {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.2s;
        }

        .action-btn:hover {
            transform: scale(1.1);
        }

        .action-btn.like {
            background: #ff4444;
        }

        .action-btn.favorite {
            background: #fff;
        }

        .action-btn.follow {
            background: #4a90d9;
        }

        .action-btn.share {
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
        }

        .action-btn svg {
            width: 24px;
            height: 24px;
        }

        .action-count {
            color: #fff;
            font-size: 12px;
        }

        .action-label {
            color: #888;
            font-size: 11px;
        }

        /* 点赞/收藏激活状态 */
        .action-btn.active {
            background: #ffd700 !important;
        }
        .action-btn.active svg {
            fill: #333;
        }
        .action-btn.active + .action-count,
        .action-btn.active ~ .action-label {
            color: #ffd700;
        }

        /* 图标样式 */
        .icon {
            width: 24px;
            height: 24px;
            fill: currentColor;
        }

        .icon-white {
            fill: #fff;
        }

        /* 全屏按钮 */
        .fullscreen-btn {
            width: 36px;
            height: 36px;
        }

        /* 播放按钮覆盖层 */
        .play-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background: rgba(0,0,0,0.6);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 4;
            transition: transform 0.2s, background 0.2s;
        }

        .play-overlay:hover {
            transform: translate(-50%, -50%) scale(1.1);
            background: rgba(0,0,0,0.8);
        }

        .play-overlay.hidden {
            display: none;
        }

        .play-overlay svg {
            width: 32px;
            height: 32px;
            fill: #fff;
            margin-left: 4px;
        }
            width: 65%;
        }
        
        