.cateBox{
  width:100%;
}
@media only screen and (min-width: 768px){
  .cate1 {
    width: 100%;
    overflow: hidden;
    font-size: 0px;
    white-space: nowrap;
    text-align: right;
  }
  .li1 {
    display: inline-block;
    border-radius: 50px;
    background-color: #000;
    margin: 0;
  }
  .cateNameH3 {
    width: 100%;
    height: 35px;
    line-height: 35px;
  }
  .cateListBox {
    position: relative;
    width: 100px;
    height: auto;
    transition: all 0.5s;
    background-color: transparent;
  }
  .cateListBox:hover {
    background-color: #008bdf;
  }
  .cateListBox:hover a {
    color: #fff;
  }
  .cateName {
    display: inline-block;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #333;
    text-align: center;
  }
  .cateName1 {
    font-size: 1rem;
  }
  .li1:hover .cate2 {
    display: block;
  }
  .cateActive{
    background:#008bdf;
  }
  .cateActive a{
    color:#fff;
  }
}
@media only screen and (max-width: 768px){
  .cate1 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
    font-size: 0;
  }
  .cateListBox {
    flex-basis: 33.333%;
    overflow: hidden;
    padding: 3px 5px;
    border-radius: 50px;
    color: #fff;
  }
  .cateNameH3 {
    background: #008bdf;
    height: 35px;
    border-radius: 23px;
    text-align: center;
  }
  .cateName {
    font-size: 13px;
    color: #fff;
  }
}
