        /* 移除卡片化样式影响 */
        .container {
            box-shadow: none !important;
            background-color: transparent !important;
            padding: 1rem !important;
            width: 100% !important;
            max-width: none !important;
        }

        /* 保持搜索框大小不变 */
        .input-group {
            max-width: 100% !important;
            display: flex;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        #input-url {
            width: 100% !important;
            min-width: auto !important;
            font-size: 1rem !important;
            line-height: 1.5 !important;
            padding: 0.6rem;
            border: 1px solid #ddd;
            border-radius: 4px;
        }

        #parse-button,
        #query-recent-button-bili {
            padding: 0.6rem 1.2rem !important;
            font-size: 1rem !important;
            background-color: #23ade5;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        #parse-button:hover,
        #query-recent-button-douyin:hover {
            background-color: #de273c;
        }

        #query-recent-button-douyin {
            padding: 0.6rem 1.2rem !important;
            font-size: 1rem !important;
            background-color: #FB7299;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        #parse-button:hover,
        #query-recent-button-bili:hover {
            background-color: #1a95c5;
        }

        /* 表格容器样式 */
        .table-container {
            overflow-x: visible !important;
            margin-top: 1rem;
            width: 100% !important;
        }

        .result-table {
            width: 100% !important;
            min-width: 100% !important;
            border-collapse: collapse;
        }

        .result-table th,
        .result-table td {
            padding: 0.8rem 0.6rem;
            text-align: center;
            border: 1px solid #e0e0e0;
            font-size: 0.9rem;
            white-space: nowrap;
        }

        .result-table th {
            background-color: rgba(35, 173, 229, 0.1);
            color: #23ade5;
            font-weight: 600;
            cursor: pointer;
        }

        .result-table th:hover {
            background-color: rgba(35, 173, 229, 0.2);
        }

        .result-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }

        .result-table .bvid-cell {
            font-family: monospace;
            width: 120px;
        }

        .result-table .title-cell {
            text-align: left;
            max-width: 300px;
            white-space: nowrap;
            /* 修改为不换行 */
            overflow: hidden;
            /* 超出部分隐藏 */
            text-overflow: ellipsis;
            /* 显示省略号 */
            line-height: 1.4;
        }


        .result-table .author-cell {
            color: #23ade5;
            font-weight: 500;
            width: 100px;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .result-table th:nth-child(4),
        .result-table th:nth-child(5),
        .result-table th:nth-child(6),
        .result-table th:nth-child(7),
        .result-table th:nth-child(8),
        .result-table th:nth-child(9),
        .result-table th:nth-child(10),
        .result-table th:nth-child(11) {
            width: 80px;
        }

        .loading {
            text-align: center;
            padding: 2rem;
            color: #666;
        }

        .error {
            color: #ff4d4f;
            padding: 1rem;
            text-align: center;
        }

        .export-button {
            margin-top: 1rem;
            padding: 0.6rem 1.2rem;
            background-color: #23ade5;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 1rem;
            transition: background-color 0.3s;
        }

        .export-button:hover {
            background-color: #1a95c5;
        }

        .export-pic-button {
            padding: 0.3rem 0.6rem;
            background-color: #2d55bc;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 1rem;
            transition: background-color 0.3s;
        }

        .export-pic-button:hover {
            background-color: #1a95c5;
        }

        .sort-controls {
            margin-top: 1rem;
            display: flex;
            gap: 0.5rem;
            align-items: center;
            flex-wrap: wrap;
        }

        /* 图表容器样式 */
        .chart-container {
            margin-top: 1.5rem;
            padding: 1rem;
            border: 1px solid #e0e0e0;
            border-radius: 4px;
            background-color: #fff;
            max-width: 100%;
            overflow-x: auto;
        }

        .chart-wrapper {
            height: 400px;
            width: 100%;
            min-width: auto;
        }

        @media (max-width: 768px) {
            .chart-wrapper {
                height: 300px;
            }
        }

        @media (max-width: 480px) {
            .chart-wrapper {
                height: 250px;
            }
        }

        /* 图表切换控件样式 */
        .chart-controls {
            margin-top: 1rem;
            display: flex;
            gap: 0.5rem;
            align-items: center;
            flex-wrap: wrap;
        }

        .chart-selector {
            padding: 0.4rem 0.8rem;
            border: 1px solid #ddd;
            border-radius: 4px;
            background-color: #f9f9f9;
            cursor: pointer;
        }

        .recommendation-report {
            margin-top: 1.5rem;
            padding: 1rem;
            border: 1px solid #e0e0e0;
            border-radius: 4px;
            background-color: #f9f9f9;
        }

        .delete-btn {
            background-color: #ff4d4f;
            color: white;
            border: none;
            border-radius: 4px;
            padding: 4px 8px;
            cursor: pointer;
            font-size: 0.8rem;
        }

        .delete-btn:hover {
            background-color: #f5222d;
        }

        .play-btn {
            background-color: #2d56d06e;
            color: white;
            border: none;
            border-radius: 4px;
            padding: 4px 8px;
            cursor: pointer;
            font-size: 0.8rem;
        }

        .play-btn:hover {
            background-color: #529bf3;
        }

        .play-btn a {
            text-decoration: none;
            color: inherit;
        }

        /* AI分析相关样式 */
        #ai-analysis-result {
            transition: all 0.3s ease;
        }

        .ai-analysis-loading {
            text-align: center;
            padding: 2rem;
            color: #666;
            font-size: 1.1rem;
        }

        .ai-analysis-error {
            color: #ff4d4f;
            padding: 1rem;
            text-align: center;
            background: #fff2f0;
            border: 1px solid #ffccc7;
            border-radius: 4px;
        }

        .advanced-search {
            padding: 0.4rem 0.8rem;
            font-size: 0.9rem;
            background-color: #baced6;
            color: white;
            border: none;
            border-radius: 4px;
            width: fit-content;
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
            text-align: center;
        }

        .param-group {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            width: 200px;
            justify-content: center;
        }

        .param-group label {
            width: 50px;
            text-align: right;
        }

        .search-param {
            width: 120px;
            /* 缩小控件宽度 */
            box-sizing: border-box;
            padding: 0.15rem 0.3rem;
            /* 进一步减小控件内边距 */
            border: 1px solid #ccc;
            border-radius: 3px;
            color: #333;
            font-size: 0.85rem;
            appearance: none;
            -webkit-appearance: none;
        }

        .search-param {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='5'%3E%3Cpath d='M0 0l5 5 5-5z' fill='%23333'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 0.3rem center;
            padding-right: 1rem;
        }

        /* 底部提示文字样式 */
        .advanced-search>div:last-child:not(.param-group) {
            font-size: 0.8rem;
            margin-top: 0.2rem;
            color: #f8f9fa;
        }

        .advanced-search:hover {
            background-color: #9ab1c4;/
        }

        .search-num {
            padding: 0.6rem;
            flex: 0 0 auto;
            border-radius: 1px;
        }

        /* 表格移动端适配 */
        .table-container {
            overflow-x: auto !important;
            margin-top: 1rem;
            width: 100% !important;
        }

        .result-table {
            width: 100% !important;
            min-width: 100% !important;
            border-collapse: collapse;
        }

        @media (max-width: 1200px) {
            .result-table {
                min-width: 800px !important;
            }
        }

        @media (max-width: 768px) {
            .input-group {
                gap: 0.8rem !important;
                flex-direction: column;
            }

            #input-url {
                padding: 0.8rem !important;
            }

            .result-table {
                min-width: 600px !important;
            }

            .result-table .title-cell {
                max-width: 100px;
            }

            .result-table th,
            .result-table td {
                padding: 0.4rem 0.2rem;
                font-size: 0.85rem;
            }

            /* 隐藏部分次要列 */
            .result-table th:nth-child(10),
            .result-table td:nth-child(10),
            .result-table th:nth-child(11),
            .result-table td:nth-child(11) {
                display: none;
            }

            .sort-controls {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        @media (max-width: 480px) {
            .result-table {
                min-width: 500px !important;
            }

            .result-table .title-cell {
                max-width: 80px;
                font-size: 0.75rem;
            }

            .result-table th,
            .result-table td {
                padding: 0.3rem 0.1rem;
                font-size: 0.75rem;
            }

            /* 进一步隐藏次要列 */
            .result-table th:nth-child(8),
            .result-table td:nth-child(8),
            .result-table th:nth-child(9),
            .result-table td:nth-child(9) {
                display: none;
            }
        }