

    .video_menu.svelte-g4yzcb {
        position: sticky;
        top: 55px;
        z-index: 50;
        background: #ffffff;
        border-bottom: 1px solid #eee;
    }

    .wrapper.svelte-g4yzcb {
        padding: 12px 16px;
    }

    .search_bar.svelte-g4yzcb {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 12px;
    }

    .search_bar.svelte-g4yzcb input[type="search"]:where(.svelte-g4yzcb) {
        width: 220px;
        height: 36px;
        padding: 6px 12px;
        font-size: 14px;
        color: #333;

        border-radius: 6px;
        border: 2px solid #d9d9d9;
        background: #fff;
        outline: none;

        transition: border-color 300ms ease,
        box-shadow 300ms ease;
    }

    .search_bar.svelte-g4yzcb input[type="search"]:where(.svelte-g4yzcb):focus {
        border-color: #1677ff;
        box-shadow: 0 0 0 2px rgba(22, 119, 255, 0.15);
    }

    .search_bar.svelte-g4yzcb input[type="search"]:where(.svelte-g4yzcb)::placeholder {
        color: #aaa;
    }

    .search_bar.svelte-g4yzcb input[type="submit"]:where(.svelte-g4yzcb) {
        height: 36px;
        padding: 0 16px;
        font-size: 14px;
        border-radius: 6px;

        border: 2px solid #1677ff;
        background: #1677ff;
        color: #fff;

        cursor: pointer;

        transition: background-color 300ms ease,
        border-color 300ms ease,
        opacity 300ms ease;
    }

    .search_bar.svelte-g4yzcb input[type="submit"]:where(.svelte-g4yzcb):hover {
        background: #4096ff;
        border-color: #4096ff;
    }

    .search_bar.svelte-g4yzcb input[type="submit"]:where(.svelte-g4yzcb):active {
        opacity: 0.85;
    }

    /* ===== 标题 + Tab 区 ===== */
    .title_bar.svelte-g4yzcb {
        display: flex;
        height: 40px;
        align-items: center;
        justify-content: space-between;
    }

    .title.svelte-g4yzcb {
        font-size: 18px;
        font-weight: 600;
        color: #111;
    }

    .tab_menu.svelte-g4yzcb {
        display: flex;
        align-items: center;
        gap: 24px;
    }

    /* ===== Tabs ===== */
    .tab.svelte-g4yzcb {
        display: flex;
        gap: 20px;
    }

    .tab_item.svelte-g4yzcb {
        position: relative;
        padding: 6px 2px;
        font-size: 14px;
        color: #666;
        text-decoration: none;

        transition: color 500ms ease;
    }

    .tab_item.svelte-g4yzcb::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -6px;
        width: 100%;
        height: 2px;
        background: #1677ff;

        opacity: 0;
        transform: scaleX(0);

        transition: opacity 500ms ease,
        transform 500ms ease;
    }

    .tab_item.svelte-g4yzcb:hover,
    .tab_item.active.svelte-g4yzcb {
        color: #1677ff;
    }

    .tab_item.svelte-g4yzcb:hover::after,
    .tab_item.active.svelte-g4yzcb::after {
        opacity: 1;
        transform: scaleX(1);
    }

    /* ===== Display 气泡按钮 ===== */
    .display.svelte-g4yzcb {
        display: flex;
        gap: 8px;
    }

    .display_item.svelte-g4yzcb {
        padding: 6px 14px;
        font-size: 13px;
        border-radius: 999px;
        border: none;

        background: #f2f2f2;
        color: #666;
        cursor: pointer;

        transition: background-color 500ms ease,
        color 500ms ease;
    }

    .display_item.svelte-g4yzcb:hover,
    .display_item.active.svelte-g4yzcb {
        background: #1677ff;
        color: #fff;
    }

    /* --- 全局样式 --- */
    .wrapper.svelte-jp09wb {
        max-width: 100%;
        margin: 0 auto;
        padding: 0 20px;
    }

    .section-title.svelte-jp09wb {
        margin: 20px 0;
        font-size: 18px;
        font-weight: bold;
        color: #333;
    }

    .loading.svelte-jp09wb {
        text-align: center;
        padding: 20px;
        height: 60px;
        color: #666;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* --- 标题栏 --- */
    /* (unused) .title_bar {
        margin: 20px 0;
        padding-bottom: 10px;
        border-bottom: 1px solid #eee;
    }*/

    /* (unused) .title {
        font-size: 24px;
        font-weight: bold;
        margin-bottom: 10px;
    }*/

    /* (unused) .tab_menu .list {
        display: flex;
        gap: 20px;
    }*/

    /* (unused) .tab_menu button {
        background: none;
        border: none;
        padding: 5px 10px;
        font-size: 16px;
        color: #666;
        cursor: pointer;
        border-bottom: 2px solid transparent;
    }*/

    /* (unused) .tab_menu button.active {
        color: #000;
        border-bottom-color: #000;
    }*/

    /* --- 轮播图 --- */
    .banner-section.svelte-jp09wb {
        margin-bottom: 20px;
    }

    .slides-container.svelte-jp09wb {
        display: flex;
        margin: 10px 0;
        overflow-x: auto;
        gap: 10px;
        scrollbar-width: none; /* Firefox */
        padding-bottom: 10px;
    }

    .slides-container.svelte-jp09wb::-webkit-scrollbar {
        display: none;
    }

    /* Chrome, Safari */
    .slide-item.svelte-jp09wb {
        flex: 0 0 auto;
        position: relative;
        width: 100%; /* 或其他你喜欢的宽度 */
        border-radius: 12px;
        overflow: hidden;
    }

    .slide-image.svelte-jp09wb {
        width: 100%;
        height: 240px;
        object-fit: cover;
    }

    /* (unused) .slide-link {
        position: absolute;
        bottom: 10px;
        right: 10px;
        background: rgba(0, 0, 0, 0.7);
        color: white;
        padding: 4px 8px;
        border-radius: 4px;
        font-size: 12px;
        text-decoration: none;
    }*/

    /* --- 推荐直播 --- */
    .recommend-section.svelte-jp09wb {
        margin: 20px 0;
    }

    .recommend-grid.svelte-jp09wb {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 16px;
    }

    .recommend-card.svelte-jp09wb {
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.2s ease-in-out;
    }

    .recommend-card.svelte-jp09wb:hover {
        transform: translateY(-5px);
    }

    .recommend-thumb.svelte-jp09wb {
        position: relative;
        width: 100%;
        height: 200px;
    }

    .recommend-thumb.svelte-jp09wb img:where(.svelte-jp09wb) {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .recommend-thumb.svelte-jp09wb img.loaded:where(.svelte-jp09wb) {
        opacity: 1;
    }

    /* 加载完成后显示 */
    .live-badge.svelte-jp09wb {
        position: absolute;
        top: 8px;
        right: 8px;
        background: #ff4757;
        color: white;
        padding: 2px 6px;
        border-radius: 4px;
        font-size: 12px;
        font-weight: bold;
    }

    .recommend-info.svelte-jp09wb {
        padding: 12px;
    }

    .recommend-user.svelte-jp09wb {
        display: flex;
        align-items: center;
        margin-bottom: 8px;
    }

    .user-avatar.svelte-jp09wb {
        display: block;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        margin-right: 8px;
        object-fit: cover;
    }

    .user-name.svelte-jp09wb {
        font-size: 14px;
        color: #333;
    }

    .recommend-title.svelte-jp09wb {
        font-size: 14px;
        font-weight: bold;
        margin-bottom: 8px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        color: #333;
    }

    /* (unused) .recommend-meta {
        display: flex;
        justify-content: space-between;
        font-size: 12px;
        color: #999;
    }*/

    /* --- 主列表 --- */
    .main-list.svelte-jp09wb {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 16px;
    }

    .main-card.svelte-jp09wb {
        border-radius: 12px;
        padding: 5px;
    }

    .main-card-header.svelte-jp09wb {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 12px;
    }

    .user-details.svelte-jp09wb .user-name:where(.svelte-jp09wb) {
        font-weight: bold;
        font-size: 14px;
    }

    .user-level.svelte-jp09wb {
        font-size: 12px;
        color: #666;
    }

    .live-indicator.svelte-jp09wb {
        color: #ff0000;
        font-size: 12px;
        font-weight: bold;
    }

    .video-indicator.svelte-jp09wb {
        color: #33ff00;
        font-size: 12px;
        font-weight: bold;
    }

    .user-info.svelte-jp09wb {
        display: flex;
        width: 100%;
        align-items: center; /* 顺便垂直居中，好看点 */
    }

    .user-info.svelte-jp09wb .live-status:where(.svelte-jp09wb) {
        margin-left: auto;
    }

    .main-title.svelte-jp09wb {
        font-size: 14px;
        font-weight: bold;
        margin-bottom: 12px;
        color: #333333;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .main-thumb.svelte-jp09wb {
        width: 100%;
        height: auto;
        aspect-ratio: 2 / 2;
        border-radius: 20px;
        overflow: hidden;
        margin-bottom: 12px;
    }

    .main-thumb.svelte-jp09wb img:where(.svelte-jp09wb) {
        width: 100%;
        height: 100%;
        aspect-ratio: 2 / 3;
        object-fit: cover;
        transition: opacity 0.3s ease-in-out;
    }

    .main-thumb.svelte-jp09wb img.loaded:where(.svelte-jp09wb) {
        opacity: 1;
    }

    .main-meta.svelte-jp09wb {
        display: flex;
        gap: 16px;
        font-size: 12px;
        color: #666;
    }
