
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
        }
        a{
            text-decoration: none;
        }
        body {
            background-color: #f5f7fa;
            color: #333;
            padding: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .container {
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            overflow: hidden;
        }
        
        /* 头部样式 */
        .header {
            background: linear-gradient(135deg, #ff6b6b, #ff8e53);
            padding: 25px 20px;
            color: white;
            position: relative;
        }
        
        .search-box {
            display: flex;
            align-items: center;
            max-width: 800px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            padding: 8px 20px;
            backdrop-filter: blur(5px);
        }
        
        .search-icon {
            margin-right: 12px;
            font-size: 20px;
        }
        
        .search-input {
            flex: 1;
            background: transparent;
            border: none;
            color: white;
            font-size: 16px;
            padding: 10px 0;
        }
        
        .search-input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .search-input:focus {
            outline: none;
        }
        
        /* 分类导航 */
        .categories {
            display: flex;
            flex-wrap: wrap;
            padding: 15px 20px;
            background-color: #f8f9fa;
            border-bottom: 1px solid #eaeaea;
        }
        
        .category {
            background-color: white;
            border: 1px solid #eaeaea;
            border-radius: 20px;
            padding: 6px 16px;
            margin: 5px;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .category a{
            color: #333;
        }
        .category a:hover{
            color: white;
        }
        .category:hover {
            background-color: #ff6b6b;
            color: white;
            border-color: #ff6b6b;
        }
        
        .category.active {
            background-color: #ff6b6b;
            color: white;
            border-color: #ff6b6b;
        }
        
        /* 热门搜索 */
        .section-title {
            padding: 15px 20px;
            font-size: 18px;
            font-weight: bold;
            color: #333;
            border-bottom: 1px solid #eaeaea;
            display: flex;
            align-items: center;
        }
        
        .section-title::before {
            content: "";
            display: inline-block;
            width: 4px;
            height: 18px;
            background-color: #ff6b6b;
            margin-right: 10px;
            border-radius: 2px;
        }
        
        .keywords {
            display: flex;
            flex-wrap: wrap;
            padding: 15px 20px;
        }
        
        .keyword {
            background-color: #f0f2f5;
            border-radius: 4px;
            padding: 6px 14px;
            margin: 6px;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.2s;
        }
        .keyword a{
            color: #333;
        }
        .keyword:hover {
            background-color: #ff6b6b;
            color: white;
            transform: translateY(-2px);
        }
        .keyword:hover a{
            color: white;
        }
        .keyword.hot {
            background-color: #fff0f0;
            color: #ff6b6b;
            font-weight: bold;
        }
        
        /* 最近更新 */
        .updates {
            padding: 0 20px 20px;
        }
        
        .update-item {
            background-color: white;
            border-radius: 8px;
            padding: 15px;
            margin-bottom: 15px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            display: flex;
            transition: all 0.3s ease;
        }
        
        .update-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .update-thumb {
            width: 120px;
            height: 80px;
            border-radius: 6px;
            background: linear-gradient(135deg, #a18cd1, #fbc2eb);
            margin-right: 15px;
            flex-shrink: 0;
            position: relative;
            overflow: hidden;
        }
        
        .update-thumb::after {
            content: "▶";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 24px;
            opacity: 0.8;
        }
        
        .update-content {
            flex: 1;
        }
        
        .update-title {
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 8px;
            color: #333;
        }
        
        .update-meta {
            display: flex;
            align-items: center;
            color: #666;
            font-size: 13px;
        }
        
        .update-tag {
            background-color: #e6f7ff;
            color: #1890ff;
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 12px;
            margin-right: 10px;
        }
        
        .update-date {
            font-size: 12px;
            color: #999;
        }
        
        /* 今日热播 */
        .hot-today {
            padding: 20px;
        }
        
        .hot-items {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 20px;
        }
        
        .hot-item {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            background: white;
        }
        
        .hot-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }
        
        .hot-thumb {
            height: 140px;

            position: relative;
        }
        
        .hot-play {
            position: absolute;
            top: 10px;
            right: 10px;
            background: rgba(0, 0, 0, 0.5);
            color: white;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 12px;
        }
        
        .hot-content {
                height: 31px;
            line-height: 1.8;
            overflow: hidden;

        }
        
        .hot-title {

            margin-bottom: 8px;
            font-size: 15px;
        }
        
        .hot-info {
            display: flex;
            justify-content: space-between;
            color: #666;
            font-size: 13px;
        }
        
        /* 页脚 */
        .footer {
            text-align: center;
            padding: 20px;
            color: #666;
            font-size: 13px;
            border-top: 1px solid #eee;
        }
        .hot-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

  /* 分页 */
        .pagination {
            display: flex;
            justify-content: center;
            margin: 30px 0;
        }

        .pagination a {
            width: 40px;
            height: 40px;
            margin: 0 5px;
            border: none;
            border-radius: 50%;
            border: 1px solid #eaeaea;
            background-color: #FFF;
            color: #333;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            
        }

        .pagination a:hover, .pagination a.active {
 
            background-color: #ff6b6b;
            color: white;
            border-color: #ff6b6b;
        }

        @media (max-width: 768px) {
            .hot-items {
                grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
            }
            
            .update-item {
                flex-direction: column;
            }
            
            .update-thumb {
                width: 100%;
                margin-bottom: 12px;
            }
        }
