    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
        }
        
        body {
            background-color: #0f0f0f;
            color: #e0e0e0;
            line-height: 1.5;
            padding: 10px;
            max-width: 500px;
            margin: 0 auto;
        }
        
        .container {
            background-color: #121212;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
        }
        
        /* 头部区域 */
        header {
            padding: 15px 15px 10px;
            border-bottom: 1px solid #2a2a2a;
        }
        
        .header-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 12px;
            text-align: center;
            color: #ffffff;
        }
        
        .channel-buttons {
            display: flex;
            gap: 10px;
            margin-bottom: 10px;
        }
        
        .channel-btn {
            flex: 1;
            padding: 10px 0;
            border-radius: 8px;
            border: none;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .channel-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        }
        
        .channel-btn i {
            margin-right: 6px;
        }
        
        .orange-btn {
            background: linear-gradient(135deg, #ff7b00, #ff5500);
            color: white;
        }
        
        .pink-btn {
            background: linear-gradient(135deg, #ff2a8e, #c2185b);
            color: white;
        }
        
        /* 视频列表 */
        .video-list {
            padding: 15px;
        }
        
        .video-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }
        
        .video-card {
            background-color: #1e1e1e;
            border-radius: 10px;
            overflow: hidden;
            position: relative;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .video-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
        }
        
        .video-thumbnail {
            position: relative;
            height: 120px;
            overflow: hidden;
            cursor: pointer;
        }
        
        .video-cover {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }
        
        .video-card:hover .video-cover {
            transform: scale(1.05);
        }
        
        .blur-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 2;
            cursor: pointer;
        }
        
        .blur-text {
            color: #ff5252;
            font-weight: 600;
            font-size: 16px;
            margin-bottom: 5px;
        }
        
        .verify-text {
            color: #e0e0e0;
            font-size: 12px;
            background-color: rgba(0, 0, 0, 0.7);
            padding: 4px 8px;
            border-radius: 4px;
        }
        
        .free-badge {
            position: absolute;
            top: 8px;
            left: 8px;
            background-color: #4CAF50;
            color: white;
            font-size: 12px;
            font-weight: 600;
            padding: 3px 8px;
            border-radius: 4px;
            z-index: 3;
        }
        
        .video-duration {
            position: absolute;
            bottom: 8px;
            right: 8px;
            background-color: rgba(0, 0, 0, 0.8);
            color: white;
            font-size: 12px;
            padding: 2px 6px;
            border-radius: 4px;
            z-index: 3;
        }
        
        .video-info {
            padding: 10px;
        }
        
        .video-title {
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 5px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .video-stats {
            display: flex;
            justify-content: space-between;
            font-size: 12px;
            color: #aaaaaa;
            margin-top: 5px;
        }
        
        .views {
            display: flex;
            align-items: center;
        }
        
        .views i {
            margin-right: 4px;
            color: #ff5252;
        }
        
        /* 分页 */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 20px;
            padding: 10px 0;
        }
        
        .page-numbers {
            display: flex;
            gap: 5px;
        }
        
        .page-btn {
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #2a2a2a;
            border: none;
            border-radius: 6px;
            color: #e0e0e0;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.2s;
        }
        
        .page-btn:hover, .page-btn.active {
            background-color: #ff7b00;
            color: white;
        }
        
        .page-btn.disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }
        
        .ellipsis {
            color: #888;
            font-size: 16px;
            padding: 0 5px;
        }
        
        /* 响应式调整 */
        @media (max-width: 400px) {
            .video-grid {
                grid-template-columns: 1fr;
            }
        }