        /* 分类按钮图标布局 */
        .category-item {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        @media (max-width: 768px) {
            .jw-header {
                position: sticky;
                top: 0;
                z-index: 50;
                background: #f9fafb;
            }

            /* 移动端隐藏分类图标 */
            .category-item .category-icon {
                display: none;
            }

            /* 移动端分类按钮文字居中 */
            .category-item {
                justify-content: center;
            }
        }
