
  /* 确保分类列表项允许子元素横向排列，不换行 */
  .custom-new-badge-container, 
  .custom-new-badge-container a, 
  .custom-new-badge-container span {
    display: inline-flex !important;
    align-items: center !important;
    white-space: nowrap !important; /* 强制文字不换行 */
  }

  /* 精美 New 标签样式 */
  .custom-new-badge {
    display: inline-block !important;
    background-color: #ff4d4f !important; /* 标签红色背景 */
    color: #ffffff !important;            /* 白色文字 */
    font-size: 10px !important;           /* 字体大小 */
    font-weight: bold !important;         /* 字体加粗 */
    padding: 1px 5px !important;          /* 紧凑内边距 */
    margin-left: 6px !important;          /* 紧跟在标题后面的间距 */
    border-radius: 3px !important;        /* 圆角 */
    text-transform: uppercase !important; /* 大写 */
    line-height: 1.2 !important;
    font-family: sans-serif !important;
    flex-shrink: 0 !important;            /* 防止标签被挤压变形 */
  }
