

        /* 顶部返回栏 */
        .top-bar {
            padding: 20px 15px;
            display: flex;
            align-items: center;
        }

        .back-btn {
            color: #fff;
            font-size: 16px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .back-btn::before {
            content: "<";
            font-size: 18px;
        }

        /* 头部信息区 */
        .header-section {
            display: flex;
            padding: 0 15px 20px;
            gap: 15px;
        }

        .cover-img {
            width: 120px;
            height: 160px;
            border-radius: 8px;
            object-fit: cover;
        }

        .info-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .title {
            font-size: 22px;
            font-weight: bold;
            margin-bottom: 8px;
        }

        .tags {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
        }

        .tag {
            padding: 3px 8px;
            background-color: #333;
            border-radius: 4px;
            font-size: 12px;
            color: #ccc;
        }

        .tag.active {
            background-color: #1677ff;
            color: #fff;
        }

        .action-icons {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
        }

        .icon {
            width: 24px;
            height: 24px;
            cursor: pointer;
            opacity: 0.8;
            transition: opacity 0.2s;
        }

        .icon:hover {
            opacity: 1;
        }

        .icon.liked {
            color: #ff4d4f;
        }

        .icon.collected {
            color: #1677ff;
        }

        .play-btn {
            width: 180px;
            height: 44px;
            background: linear-gradient(90deg, #86b7fe, #4080ff);
            border: none;
            border-radius: 8px;
            color: #fff;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .play-btn::before {
            content: "▶";
            font-size: 18px;
        }

        /* 基本信息区 */
        .info-section {
            padding: 0 15px 20px;
        }

        .section-title {
            font-size: 14px;
            color: #ccc;
            margin-bottom: 10px;
        }

        .desc {
            font-size: 14px;
            line-height: 1.6;
            color: #aaa;
        }

        /* 剧集列表区 */
        .episodes-section {
            padding: 0 15px 20px;
        }

        .ep-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 12px;
        }

        .ep-item {
            height: 44px;
            background-color: #2a2a2a;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            cursor: pointer;
            position: relative;
            transition: background-color 0.2s;
        }

        .ep-item:hover {
            background-color: #3a3a3a;
        }

        .ep-item .badge {
            position: absolute;
            top: 2px;
            right: 5px;
            font-size: 10px;
            color: #ffd700;
        }

        .ep-item .vip-badge {
            position: absolute;
            top: 2px;
            right: 5px;
            font-size: 10px;
            color: #ff4d4f;
            background: linear-gradient(90deg, #ff4d4f, #ff7875);
            padding: 1px 4px;
            border-radius: 3px;
        }

        /* 推荐短剧区 */
        .recommend-section {
            padding: 0 15px 30px;
        }

        .recommend-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 12px;
        }

        .drama-card {
            cursor: pointer;
        }

        .drama-cover {
            width: 100%;
            aspect-ratio: 3/4;
            border-radius: 8px;
            object-fit: cover;
            margin-bottom: 6px;
        }

        .drama-title {
            font-size: 12px;
            color: #ccc;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .drama-count {
            font-size: 11px;
            color: #888;
            margin-top: 3px;
        }

        /* 响应式适配 */
        @media (max-width: 768px) {
            .ep-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            .recommend-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 480px) {
            .ep-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .recommend-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }