    /* 核心容器：完全匹配百度热榜官网宽度和样式 */
    .oak-hot-baidu-hot-wrapper {
        width: 1200px;
        margin: 0 auto;
        border-radius: 8px;
        overflow: hidden;
    }

    /* 轮播容器样式（每屏垂直显示两个数据） */
    .oak-hot-hot-carousel {
        position: relative;
        width: 100%;
        height: 280px;
        margin: 10px auto;
        border-radius: 15px;
        background-color: #f8f8f8;
        overflow: hidden;
    }
    .oak-hot-carousel-inner {
        display: flex;
        width: 100%;
        height: 100%;
        transition: transform 0.5s ease;
    }
    /* 每屏占100%宽度，内部垂直排列两个数据项 */
    .oak-hot-carousel-screen {
        flex: 0 0 100%;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column; /* 垂直排列 */
        padding: 20px 24px;
        box-sizing: border-box;
    }
    /* 每个热榜数据项占50%高度，垂直排列 */
    .oak-hot-carousel-item {
        flex: 0 0 50%;
        width: 100%;
        height: 50%;
        padding: 8px 12px;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        justify-content: center;
        border-bottom: 1px dashed #e0e0e0; /* 分隔两个数据项 */
    }
    /* 最后一个数据项去掉分隔线 */
    .oak-hot-carousel-item:last-child {
        border-bottom: none;
    }
    /* 标题单独一行 */
    .oak-hot-carousel-title {
        font-size: 18px;
        color: #333;
        text-decoration: none;
        line-height: 1.4;
        margin-bottom: 8px;
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap; /* 单行省略 */
    }
    .oak-hot-carousel-title:hover {
        color: #e53333;
    }
    /* 来源/描述/热度 同一行显示 */
    .oak-hot-carousel-meta {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        font-size: 12px;
    }
    /* 来源+描述 左对齐 */
    .oak-hot-carousel-meta-left {
        display: flex;
        align-items: center;
        gap: 8px;
        flex: 1;
        overflow: hidden;
    }
    .oak-hot-carousel-source {
        color: #e53333;
        font-weight: 500;
        flex-shrink: 0; /* 不压缩 */
    }
    .oak-hot-carousel-desc {
        color: #666;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    /* 热度值 右对齐 */
    .oak-hot-carousel-hot {
        color: #ff6700;
        font-weight: 500;
        flex-shrink: 0;
        margin-left: 12px;
    }

    /* 轮播指示器样式（无箭头） */
    .oak-hot-carousel-indicators {
        position: absolute;
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 8px;
        z-index: 10;
    }
    .oak-hot-indicator-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: rgba(0,0,0,0.2);
        cursor: pointer;
        transition: background-color 0.2s ease;
    }
    .oak-hot-indicator-dot.active {
        background-color: #e53333;
        width: 20px;
        border-radius: 4px;
    }

    /* 热榜分类标签栏：新增横向滚动（手机端生效） */
    .oak-hot-hot-tabs {
        display: flex;
        border-bottom: 1px solid #f0f0f0;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch; /* 移动端顺滑滚动 */
        scrollbar-width: none; /* 隐藏Firefox滚动条 */
    }
    /* 隐藏Chrome/Safari滚动条 */
    .oak-hot-hot-tabs::-webkit-scrollbar {
        display: none;
    }
    .oak-hot-hot-tab {
        padding: 14px 24px;
        font-size: 15px;
        color: #666;
        cursor: pointer;
        border-bottom: 2px solid transparent;
        /* 禁止标签换行 */
        flex-shrink: 0;
    }
    .oak-hot-hot-tab.active {
        color: #e53333;
        border-bottom-color: #e53333;
        background-color: #fff;
    }
    /* 热榜头部：标题+更新时间 */
    .oak-hot-hot-header {
        padding: 16px 24px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .oak-hot-hot-header h2 {
        font-size: 18px;
        font-weight: 600;
        color: #333;
        margin: 0;
    }
    .oak-hot-hot-update-time {
        font-size: 12px;
        color: #999;
    }
    /* 热榜列表：1:1复刻百度官网核心样式 - 重置默认样式确保居左 */
    .oak-hot-hot-list {
        list-style: none;
        padding: 0; /* 移除默认左内边距 */
        margin: 0; /* 移除默认外边距 */
    }
    .oak-hot-hot-item {
        display: flex;
        align-items: center;
        padding: 20px 24px;
        border-bottom: 1px solid #f5f5f5;
        transition: background-color 0.2s ease;
        position: relative;
    }
    .oak-hot-hot-item:hover {
        background-color: #f9f9f9;
    }
    .oak-hot-hot-item:last-child {
        border-bottom: none;
    }
    /* 排名样式：完全匹配百度热榜（1/2/3名特殊样式） */
    .oak-hot-hot-rank {
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        margin-right: 24px;
        flex-shrink: 0;
    }
    .oak-hot-rank-1 {
        font-size: 32px;
        color: #e53333;
    }
    .oak-hot-rank-2 {
        font-size: 28px;
        color: #e56600;
    }
    .oak-hot-rank-3 {
        font-size: 28px;
        color: #e59800;
    }
    .oak-hot-rank-other {
        font-size: 24px;
        color: #666;
    }
    /* 热榜内容区：标题+摘要 */
    .oak-hot-hot-content {
        flex: 1;
    }
    .oak-hot-hot-title {
        font-size: 18px;
        color: #333;
        text-decoration: none;
        line-height: 1.5;
        margin-bottom: 8px;
        display: block;
    }
    .oak-hot-hot-title:hover {
        color: #e53333;
    }
    .oak-hot-hot-desc {
        font-size: 13px;
        color: #999;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    /* 热度值：百度官网右侧橙色样式 */
    .oak-hot-hot-value {
        width: 120px;
        text-align: right;
        font-size: 14px;
        color: #ff6700;
        font-weight: 500;
        flex-shrink: 0;
    }

    /* ========== AI软件排行榜（独立板块）样式 ========== */
    .oak-hot-ai-software-section {
        margin-top: 30px;
        border-top:2px solid #f5f5f5;
        padding-top: 20px;
    }
    .oak-hot-ai-software-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 24px 24px;
    }
    .oak-hot-ai-software-card {
        background-color: #f9f9f9;
        border-radius: 8px;
        padding: 16px;
        box-shadow: 0 1px 2px rgba(0,0,0,0.05);
        display: flex;
        flex-direction: column;
        height: 100%;
        position: relative; /* 新增：为排名图标定位做准备 */
    }
    /* 新增：AI软件排行前三个左上角排名图标样式 */
    .oak-hot-ai-rank-icon {
        position: absolute;
        top: 0;
        left: 0;
        width: 40px;
        height: 40px;
        z-index: 10; /* 确保图标在最上层 */
    }
    .oak-hot-ai-rank-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    /* Logo+软件名容器（横向排列，居中对齐） */
    .oak-hot-ai-software-header {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 12px;
    }
    /* Logo样式 */
    .oak-hot-ai-software-logo {
        width: 64px;
        height: 64px;
        flex-shrink: 0;
        border-radius: 30px; /* 保持圆角一致性 */
        box-sizing: border-box; /* 确保边框不影响尺寸 */
    }
    .oak-hot-ai-software-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 30px; /* 轻微圆角 */
        background-color: #ffffff;
    }
    /* 软件名样式（Logo右侧居中） */
    .oak-hot-ai-software-name {
        font-size: 18px;
        color: #333333;
        font-weight: 600;
        margin: 0;
        line-height: 1.3;
        display: flex;
        align-items: center;
        height: 64px; /* 和Logo同高，确保垂直居中 */
    }
    /* 信息区域 */
    .oak-hot-ai-software-info {
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    .oak-hot-ai-software-short-desc {
        font-size: 14px;
        color: #666666;
        line-height: 1.4;
        margin: 0 0 12px 0;
    }
    /* 基础信息行 */
    .oak-hot-ai-software-details {
        display: flex;
        flex-wrap: wrap;
        gap: 8px 16px;
        margin-bottom: 12px;
        font-size: 12px;
    }
    .oak-hot-ai-software-details .oak-hot-label {
        color: #999999;
    }
    .oak-hot-ai-software-details .oak-hot-value {
        color: #333333;
    }
    /* 涨幅样式 */
    .oak-hot-growth-up {
        color: #00b42a !important;
    }
    .oak-hot-growth-down {
        color: #e53333 !important;
    }
    /* 场景标签 */
    .oak-hot-ai-software-scene {
        margin-bottom: 12px;
        font-size: 12px;
    }
    .oak-hot-ai-software-scene .oak-hot-label {
        color: #999999;
        display: block;
        margin-bottom: 4px;
    }
    .oak-hot-scene-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }
    .oak-hot-scene-tag {
        background-color: #f0f0f0;
        color: #666666;
        padding: 2px 8px;
        border-radius: 4px;
        font-size: 11px;
        white-space: nowrap;
    }
    /* 详细描述 */
    .oak-hot-ai-software-desc {
        font-size: 12px;
        flex: 1;
    }
    .oak-hot-ai-software-desc .oak-hot-label {
        color: #999999;
        display: block;
        margin-bottom: 4px;
    }
    .oak-hot-desc-text {
        color: #666666;
        line-height: 1.5;
        margin: 0;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    /* 空数据样式 */
    .oak-hot-ai-software-empty {
        grid-column: 1 / -1;
        text-align: center;
        padding: 30px 0;
    }

    /* ========== AI软件分页样式 ========== */
    .oak-hot-ai-software-pagination {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        padding: 20px 0;
        margin: 0 24px;
        border-top: 1px solid #f5f5f5;
    }
    .oak-hot-pagination-btn {
        padding: 8px 16px;
        border: 1px solid #e0e0e0;
        border-radius: 4px;
        background-color: #ffffff;
        color: #666666;
        font-size: 14px;
        cursor: pointer;
        transition: all 0.2s ease;
    }
    .oak-hot-pagination-btn:hover {
        border-color: #e53333;
        color: #e53333;
    }
    .oak-hot-pagination-btn:disabled {
        border-color: #f0f0f0;
        color: #cccccc;
        cursor: not-allowed;
        background-color: #f9f9f9;
    }
    .oak-hot-pagination-numbers {
        display: flex;
        gap: 4px;
    }
    .oak-hot-pagination-number {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 4px;
        color: #666666;
        font-size: 14px;
        cursor: pointer;
        transition: all 0.2s ease;
    }
    .oak-hot-pagination-number:hover {
        background-color: #f0f0f0;
        color: #e53333;
    }
    .oak-hot-pagination-number.active {
        background-color: #e53333;
        color: #ffffff;
    }
    .oak-hot-pagination-info {
        margin: 0 16px;
        font-size: 14px;
        color: #999999;
    }

    /* 响应式适配 */
    @media (max-width: 1200px) {
        .oak-hot-baidu-hot-wrapper {
            width: 95%;
        }
    }
    @media (max-width: 768px) {
        /* 移动端轮播适配 */
        .oak-hot-hot-carousel {
            height: 240px;
        }
        .oak-hot-carousel-screen {
            padding: 16px 16px;
        }
        .oak-hot-carousel-item {
            padding: 6px 8px;
        }
        .oak-hot-carousel-title {
            font-size: 15px;
            margin-bottom: 6px;
        }
        .oak-hot-carousel-meta {
            font-size: 11px;
        }
        .oak-hot-carousel-source {
            font-size: 10px;
        }
        .oak-hot-indicator-dot {
            width: 6px;
            height: 6px;
        }
        .oak-hot-indicator-dot.active {
            width: 15px;
        }

        /* 移动端标签优化 */
        .oak-hot-hot-tab {
            padding: 12px 20px;
            font-size: 14px;
        }
        /* 移动端列表优化 - 强制居左显示 */
        .oak-hot-hot-list {
            text-align: left;
            width: 100%;
        }
        .oak-hot-hot-item {
            padding: 16px 16px;
            justify-content: flex-start; /* 确保内容居左排列 */
        }
        .oak-hot-hot-rank {
            width: 36px;
            height: 36px;
            margin-right: 16px;
        }
        .oak-hot-rank-1 { font-size: 24px; }
        .oak-hot-rank-2 { font-size: 20px; }
        .oak-hot-rank-3 { font-size: 20px; }
        .oak-hot-rank-other { font-size: 18px; }
        .oak-hot-hot-title { font-size: 16px; }
        .oak-hot-hot-value { width: 80px; font-size: 12px; }

        /* 移动端AI软件排行榜适配 */
        .oak-hot-ai-software-container {
            grid-template-columns: 1fr;
            padding: 0 16px 16px;
            gap: 16px;
        }
        .oak-hot-ai-software-card {
            padding: 12px;
        }
        /* 移动端排名图标适配 */
        .oak-hot-ai-rank-icon {
            width: 30px;
            height: 30px;
        }
        .oak-hot-ai-software-logo {
            width: 50px;
            height: 50px;
        }
        .oak-hot-ai-software-name {
            font-size: 16px;
            height: 50px; /* 适配移动端Logo尺寸 */
        }
        .oak-hot-ai-software-short-desc {
            font-size: 13px;
        }
        .oak-hot-desc-text {
            -webkit-line-clamp: 4; /* 移动端多显示一行描述 */
        }

        /* 移动端分页适配 */
        .oak-hot-ai-software-pagination {
            flex-wrap: wrap;
            padding: 16px 0;
            margin: 0 16px;
        }
        .oak-hot-pagination-btn {
            padding: 6px 12px;
            font-size: 13px;
        }
        .oak-hot-pagination-number {
            width: 32px;
            height: 32px;
            font-size: 13px;
        }
        .oak-hot-pagination-info {
            margin: 8px 0;
            order: -1;
            width: 100%;
            text-align: center;
        }
    }
    /* 隐藏其他标签内容，默认显示百度热榜 */
    .oak-hot-hot-panel {
        display: none;
    }
    .oak-hot-hot-panel.active {
        display: block;
    }
    /* 轮播空数据样式 */
    .oak-hot-carousel-empty {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #999;
        font-size: 14px;
    }
    /* 最后一屏不足两个数据时的占位样式 */
    .oak-hot-carousel-item.empty {
        opacity: 0;
        pointer-events: none;
        border-bottom: none;
    }