/* 首页分类条展示 */
#category-bar{
    padding: 0.4rem 1rem 0.4rem 0.5rem;
    background: rgba(255, 255, 255, 0.88);
    border-radius: 12px;
    display: flex;
    white-space: nowrap;
    overflow: hidden;
    margin-bottom: 1rem;
    border: 1px solid #fff;
    font-size: 23px;
}

div#category-bar:hover {
  border: 1px solid #ff2c74;
}

  @media screen and (max-width: 768px){
    #category-bar{
      border-radius: 0;
    }
  }

  #category #category-bar{
    padding: 0;
    border: none;
  }

  #category a.category-bar-item.select a{
    display: none;
  }

  .category-in-bar{
    display: flex;
    white-space: nowrap;
  }

  .category-in-bar-tips{
    margin-right: 1rem;
  }

  .category-bar-items{
    white-space: nowrap;
    overflow-x: hidden;
    display: flex;
  }

  .category-bar-items::-webkit-scrollbar{
    display: none;
  }

  .category-bar-item a{
    padding: 0.1rem 0.5rem;
    margin: 0 0.33rem;
    font-weight: bold;
    border-radius: 12px;
  }

  .category-bar-item:hover a{
    background: #FFC0CB;
    color: #fff;
  }

  .category-bar-more{
    margin-left: 1rem;
    font-weight: bold;
  }