 /* 热榜页特有样式 */
        .hot-header {
            background: linear-gradient(135deg, #ff7700 0%, #ff5e3a 50%, #ff9a44 100%);
            padding: 50px 0 70px;
            color: #fff;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hot-header::before {
            content: '🔥';
            position: absolute;
            font-size: 200px;
            opacity: 0.1;
            top: -50px;
            right: 10%;
            transform: rotate(-15deg);
        }

        .hot-header h1 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 12px;
            position: relative;
            z-index: 1;
        }

        .hot-header p {
            font-size: 16px;
            opacity: 0.95;
            position: relative;
            z-index: 1;
        }

        .hot-update-time {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 16px;
            padding: 8px 20px;
            background: rgba(255,255,255,0.2);
            border-radius: 20px;
            font-size: 14px;
        }

        /* 榜单类型切换 */
        .hot-tabs {
            background: #fff;
            border-bottom: 1px solid #f0f0f0;
            padding: 0;
        }

        .hot-tabs-container {
            display: flex;
            justify-content: center;
        }

        .hot-tab-list {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .hot-tab-list li {
            position: relative;
        }

        .hot-tab-list li a {
            display: block;
            padding: 20px 32px;
            font-size: 16px;
            font-weight: 500;
            color: #666;
            text-decoration: none;
            transition: all 0.3s;
            border-bottom: 3px solid transparent;
        }

        .hot-tab-list li a:hover {
            color: #ff7700;
        }

        .hot-tab-list li.active a {
            color: #ff7700;
            border-bottom-color: #ff7700;
        }

        /* 热榜列表 */
        .hot-content {
            padding: 30px 0;
        }

        .hot-layout {
            display: flex;
            gap: 30px;
        }

        .hot-main {
            flex: 1;
            min-width: 0;
        }

        .hot-sidebar {
            width: 340px;
            flex-shrink: 0;
        }

        /* 热榜条目 */
        .hot-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 24px;
            background: #fff;
            border-radius: 12px;
            margin-bottom: 16px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
            transition: all 0.3s;
            position: relative;
        }

        .hot-item:hover {
            transform: translateX(4px);
            box-shadow: 0 4px 16px rgba(0,0,0,0.1);
        }

        .hot-rank-number {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            font-size: 20px;
            font-weight: 700;
            flex-shrink: 0;
        }

        .hot-rank-number.rank-1 {
            background: linear-gradient(135deg, #ff5e3a 0%, #ff9a44 100%);
            color: #fff;
            font-size: 24px;
        }

        .hot-rank-number.rank-2 {
            background: linear-gradient(135deg, #ff7700 0%, #ff9933 100%);
            color: #fff;
            font-size: 22px;
        }

        .hot-rank-number.rank-3 {
            background: linear-gradient(135deg, #ff9933 0%, #ffbb66 100%);
            color: #fff;
        }

        .hot-rank-number.rank-other {
            background: #f5f5f5;
            color: #999;
        }

        .hot-rank-trend {
            position: absolute;
            top: 12px;
            right: 12px;
            display: flex;
            align-items: center;
            gap: 4px;
            font-size: 12px;
            font-weight: 600;
        }

        .hot-rank-trend.up {
            color: #ff4d4f;
        }

        .hot-rank-trend.down {
            color: #52c41a;
        }

        .hot-rank-trend.same {
            color: #999;
        }

        .hot-item-content {
            flex: 1;
            min-width: 0;
        }

        .hot-item-title {
            font-size: 17px;
            font-weight: 600;
            color: #333;
            line-height: 1.5;
            margin-bottom: 10px;
        }

        .hot-item-title a {
            color: inherit;
            text-decoration: none;
        }

        .hot-item-title a:hover {
            color: #ff7700;
        }

        .hot-item-excerpt {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
            margin-bottom: 12px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .hot-item-meta {
            display: flex;
            align-items: center;
            gap: 20px;
            font-size: 13px;
            color: #999;
        }

        .hot-item-meta span {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .hot-item-meta svg {
            width: 16px;
            height: 16px;
        }

        .hot-heat {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 4px 12px;
            background: #fff3e0;
            border-radius: 12px;
            font-size: 13px;
            color: #ff7700;
            font-weight: 500;
        }

        /* 侧边栏 */
        .hot-sidebar-widget {
            background: #fff;
            border-radius: 12px;
            padding: 24px;
            margin-bottom: 20px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
        }

        .hot-sidebar-title {
            font-size: 18px;
            font-weight: 600;
            color: #333;
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 2px solid #ff7700;
        }

        /* 飙升榜 */
        .rising-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .rising-item {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .rising-rank {
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            flex-shrink: 0;
        }

        .rising-rank.top {
            background: #ff7700;
            color: #fff;
        }

        .rising-rank.normal {
            background: #f0f0f0;
            color: #666;
        }

        .rising-info {
            flex: 1;
            min-width: 0;
        }

        .rising-title {
            font-size: 14px;
            color: #333;
            line-height: 1.4;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .rising-title:hover {
            color: #ff7700;
        }

        .rising-heat {
            font-size: 12px;
            color: #ff7700;
            margin-top: 4px;
        }

        .rising-trend {
            display: flex;
            align-items: center;
            gap: 4px;
            font-size: 12px;
            font-weight: 600;
            color: #ff4d4f;
        }

        /* 话题标签云 */
        .hot-topics-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .hot-topic-tag {
            padding: 8px 16px;
            background: #f5f5f5;
            border-radius: 20px;
            font-size: 14px;
            color: #666;
            text-decoration: none;
            transition: all 0.2s;
        }

        .hot-topic-tag:hover {
            background: #ff7700;
            color: #fff;
        }

        .hot-topic-tag.hot {
            background: #fff3e0;
            color: #ff7700;
        }

        /* 响应式 */
        @media (max-width: 1024px) {
            .hot-layout {
                flex-direction: column;
            }
            .hot-sidebar {
                width: 100%;
            }
            .hot-header::before {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .hot-header h1 {
                font-size: 28px;
            }
            .hot-tab-list li a {
                padding: 16px 20px;
                font-size: 14px;
            }
            .hot-item {
                padding: 16px;
            }
            .hot-rank-number {
                width: 36px;
                height: 36px;
                font-size: 16px;
            }
            .hot-rank-number.rank-1 {
                font-size: 18px;
            }
            .hot-rank-number.rank-2 {
                font-size: 17px;
            }
        }