/** html **/
        /* 全局样式 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.6;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        .container {
            width: 100%;
            max-width: 100%;
            margin: 0 auto;
            padding: 0 30px;
        }
        
        /* 电脑端默认字体设置 */
        body {
            font-family: 'Arial', 'Microsoft YaHei', sans-serif;
        }
        
        /* 头部样式 */
        header {
            background-color: #fff;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            padding: 15px 0;
        }
        
        .logo {
            text-align: center;
            font-weight: bold;
            color: #ff5500;
            margin-bottom: 15px;
            font-family: inherit;
        }
        
        /* 导航栏样式 */
        .nav-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: left;
            gap: 10px;
            margin-bottom: 15px;
        }
        
        .nav-item {
            padding: 8px 15px;
            border-radius: 4px;
            transition: all 0.3s;
            text-align: center;
            font-family: inherit;
        }
        
        /* 搜索框样式 */
        .search-container {
            display: flex;
            justify-content: center;
            margin-bottom: 20px;
        }
        
        .search-input {
            width: 70%;
            max-width: 500px;
            min-width: 200px;
            padding: 10px 15px;
            border: 1px solid #ff5500;
            border-radius: 4px 0 0 4px;
            outline: none;
            transition: width 0.3s ease;
            font-family: inherit;
        }
        
        .search-btn {
            padding: 10px 20px;
            background-color: #ff5500;
            color: white;
            border: none;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: background-color 0.3s;
            font-family: inherit;
        }
        
        .search-btn:hover {
            background-color: #e04b00;
        }
        
        /* 主要内容区 */
        .main-content {
            display: flex;
            flex-direction: column;
            gap: 30px;
            margin: 30px 0;
        }
        
        /* 播放器区域 */
        .player-container {
            background-color: #fff;
            border-radius: 0px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            padding: 10px;
            margin-bottom: 0px;
        }
        
        .player-title {
            margin-bottom: 15px;
            color: #333;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            font-family: inherit;
        }
        
        .video-player {
            width: 100%;
            background-color: #000;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-family: inherit;
        }
        
        /* 视频列表区域 */
        .video-list-container {
            background-color: #fff;
            border-radius: 0px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            padding: 10px;
        }
        
        .video-list-title {
            margin-bottom: 15px;
            color: #333;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
            font-family: inherit;
        }
        
        .video-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .video-item {
            background-color: #fff;
            border-radius: 0px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            overflow: hidden;
            transition: transform 0.3s;
        }
        
        .video-item:hover {
            transform: translateY(-5px);
        }
        
        .video-thumbnail-container {
            width: 100%;
            aspect-ratio: 16/9;
            background-color: #eee;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        
        .video-thumbnail {
            width: 100%;
            height: 100%;
            object-fit: fill;
            background-color: #f0f0f0;
            position: relative;
        }
        
        .video-thumbnail-error {
            position: absolute;
            color: #999;
            display: none;
            font-family: inherit;
        }
        
        .video-thumbnail-container.failed .video-thumbnail-error {
            display: block;
			font-size: 14px;
        }
        
        .video-thumbnail-container.failed .video-thumbnail {
            display: none;
        }
        
        .video-info {
            padding: 15px;
        }
        
        .video-title {
            margin-bottom: 10px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            font-family: inherit;
        }
        
        .video-meta {
            display: flex;
            justify-content: space-between;
            color: #747474;
            font-family: inherit;
        }
		.video-category {
            display: flex;
            justify-content: space-between;
            color: #747474;
            font-family: inherit;
			text-decoration: underline;
        }
        
        /* 分页样式 */
        .pagination {
            display: flex;
            justify-content: center;
            /* margin: 30px 0; */
            gap: 30px;
        }
		
		.pagination a{
			background: #ff5500;
            color: #ffffff;
            font-size: 15px;
        }
        
        .page-item {
            padding: 8px 12px;
            background-color: #fff;
            border: 1px solid #ddd;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s;
            font-family: inherit;
        }
        
        .page-item:hover, .page-item.active {
            background-color: #ff5500;
            color: white;
            border-color: #ff5500;
        }
        
        /* 友情链接 */
        .links-section {
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            padding: 20px;
        }
        
        .links-list {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .link-item {
            color: #666;
            transition: color 0.3s;
            font-family: inherit;
        }
        
        .link-item:hover {
            color: #ff5500;
        }
        
        /* 页脚 */
        footer {
            background-color: #333;
            color: #fff;
            padding: 30px 0;
            text-align: center;
            margin-top: 30px;
        }
        
        .footer-content {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .copyright {
            color: #ffffff;
            font-family: inherit;
        }
        
        /* 电脑端字体和尺寸设置 */
        .logo {
            font-size: 2rem;
        }
        
        .nav-item {
            font-size: 1rem;
        }
        
        .search-input,
        .search-btn {
            font-size: 1rem;
        }
        
        .player-title,
        .video-list-title {
            font-size: 1.3rem;
        }
        
        .video-player {
            font-size: 1.2rem;
        }
        
        .video-title {
            font-size: 1rem;
        }
        
        .video-meta,
        .video-thumbnail-error,
        .page-item,
        .link-item,
        .copyright {
            font-size: 0.9rem;
        }
        
        /* 手机端样式 - 可以单独设置所有字体 */
        @media (max-width: 768px) {
            body {
                font-family: 'Helvetica Neue', 'PingFang SC', sans-serif;
            }
            .container {
                width: 100%;
                max-width: 100%;
                margin: 0 auto;
                padding: 0 5px;
            }
            .logo {
                font-size: 1rem;
            }
            
            .nav-item {
                font-size: 0.9rem;
                padding: 6px 12px;
            }
            
            .search-input {
                width: 65%;
                min-width: 150px;
                font-size: 0.9rem;
            }
            
            .search-btn {
                font-size: 0.9rem;
                padding: 10px 15px;
            }
            
            .player-title,
            .video-list-title {
                font-size: 1rem;
            }
            
            .video-player {
                font-size: 1rem;
            }
            
            .video-list {
                grid-template-columns: 1fr;
            }
            
            .video-title {
                font-size: 0.85rem;
            }
            
            .video-meta,
            .video-thumbnail-error,
            .page-item,
            .link-item,
            .copyright {
                font-size: 0.8rem;
            }
            
            .links-section {
                display: none;
            }
			.nav-container {
                justify-content: center;
            }
            
            /* 手机端导航栏多色彩方案 */
            .nav-item:nth-child(8n+1) { background-color: #ff9e9e; }
            .nav-item:nth-child(8n+2) { background-color: #91e3ff; }
            .nav-item:nth-child(8n+3) { background-color: #a5ffa5; }
            .nav-item:nth-child(8n+4) { background-color: #ffd6a5; }
            .nav-item:nth-child(8n+5) { background-color: #d9a5ff; }
            .nav-item:nth-child(8n+6) { background-color: #ffffa5; }
            .nav-item:nth-child(8n+7) { background-color: #a5a5ff; }
            .nav-item:nth-child(8n+8) { background-color: #ffa5e3; }
        }
        
        /* 电脑端样式 */
        @media (min-width: 769px) {
            .nav-item {
                background-color: #ff5500;
                color: #ffffff;
				font-weight: 500;
            }
            
            .nav-item:hover {
                background-color: #ff5500;
                color: white;
            }
        }
/** html **/