
        
        /* 搜索页面主内容区 */
        .search-main-content {
            display: flex;
            width: 100%;
            min-height: calc(100vh - 100px);
        }
        
        /* 中间搜索结果区 */
        .search-results-container {
            flex: 1;
            padding: 30px;
            overflow-y: auto;
            border-right: 1px solid var(--secondary-color);
        }
        .result-item {
    background: var(--white);
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s 
    align-items: flex-start;
}
        /* 右侧边栏 */
        .right-sidebar {
            width: 300px;
            padding: 20px;
            overflow-y: auto;
            background-color: rgba(210, 180, 140, 0.1);
        }
        
        /* 搜索页面特定样式 */
        .search-container {
            max-width: 100%;
        }
        
        .search-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .search-title {
            font-size: 2.8rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .search-form {
            position: relative;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .search-input {
            width: 100%;
            padding: 12px 20px;
            border: 2px solid var(--secondary-color);
            border-radius: 30px;
            font-size: 1.6rem;
            outline: none;
            transition: all 0.3s;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        
        .search-input:focus {
            border-color: var(--primary-color);
        }
        
        .search-button {
            position: absolute;
            right: 5px;
            top: 5px;
            background: var(--primary-color);
            color: var(--white);
            border: none;
            padding: 8px 20px;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 1.4rem;
        }
        
        .search-button:hover {
            background: var(--primary-light);
        }
        
        .search-results {
            margin-top: 30px;
        }
        
        .result-item {
            margin-bottom: 25px;
            padding-bottom: 25px;
            border-bottom: 1px solid var(--secondary-color);
        }
        
        .result-title {
            font-size: 2.0rem;
            color: var(--primary-color);
            margin-bottom: 10px;
        }
        
        .result-title a {
            transition: color 0.3s;
        }
        
        .result-title a:hover {
            color: var(--primary-light);
        }
        
        .result-url {
            color: var(--text-light);
            font-size: 1.4rem;
            margin-bottom: 8px;
            display: block;
        }
        
        .result-snippet {
            color: var(--text-dark);
            line-height: 1.6;
            font-size: 1.4rem;
        }
        
        /* 右侧边栏样式 */
        .sidebar-section {
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--secondary-color);
        }
        
        .sidebar-title {
            font-size: 2.0rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--secondary-color);
        }
        
        /* 频道搜索 */
        .channel-search {
            margin-bottom: 20px;
        }
        
        .channel-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }
        
        .channel-item {
            padding: 8px 12px;
            background-color: var(--secondary-color);
            border-radius: 4px;
            text-align: center;
            transition: all 0.3s;
            font-size: 1.4rem;
            color: var(--text-dark);
        }
        
        .channel-item:hover {
            background-color: var(--primary-color);
            color: var(--white);
            cursor: pointer;
        }
        
.channel-item.selected {
    background-color: #8B5A2B;
    color: #fff;
    font-weight: bold;
    border-bottom: 2px solid #8B5A2B;
}

.result-highlight {
    background: #fff8e170;
    padding: 0 2px;
    font-weight: bold;
    color: var(--secondary-color);
}

        /* 实时热搜词 */
        .hot-search-list {
            list-style: none;
        }
        
        .hot-search-item {
            display: flex;
            align-items: center;
            padding: 8px 0;
            border-bottom: 1px dashed var(--secondary-color);
        }
        
        .hot-search-rank {
            width: 24px;
            height: 24px;
            background-color: var(--secondary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            font-size: 1.2rem;
            color: var(--primary-color);
        }
        
        .hot-search-item:nth-child(1) .hot-search-rank {
            background-color: var(--primary-color);
            color: var(--white);
        }
        
        .hot-search-item:nth-child(2) .hot-search-rank {
            background-color: var(--accent-color);
            color: var(--white);
        }
        
        .hot-search-item:nth-child(3) .hot-search-rank {
            background-color: var(--secondary-color);
            color: var(--primary-color);
        }
        
        .hot-search-text {
            flex: 1;
            font-size: 1.4rem;
        }
        
        .hot-search-count {
            font-size: 1.2rem;
            color: var(--text-light);
        }
        
        .no-results {
            text-align: center;
            padding: 40px 0;
            color: var(--primary-color);
            font-size: 1.8rem;
        }
        /* 响应式设计 */
        @media screen and (max-width: 1024px) {
            
            .search-main-content {
                flex-direction: column;
            }
            
            .right-sidebar {
                width: 100%;
                border-top: 1px solid var(--secondary-color);
            }
        }
        
        @media screen and (max-width: 768px) {
            
            .search-main-content {
                flex-direction: column;
            }
            
            .right-sidebar {
                width: 100%;
                border-top: 1px solid var(--secondary-color);
            }
        }
        
        /* 动画效果 */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .result-item {
            animation: fadeIn 0.4s ease forwards;
        }
        
        .result-item:nth-child(2) { animation-delay: 0.05s; }
        .result-item:nth-child(3) { animation-delay: 0.1s; }
        .result-item:nth-child(4) { animation-delay: 0.15s; }
        .result-item:nth-child(5) { animation-delay: 0.2s; }
        .result-item:nth-child(6) { animation-delay: 0.25s; }

