:root {
  --qing-video-menu-size: 24px;
}

.qing-video-menu {
  margin: 20px auto 40px;
}

.qing-video-menu .qing-video-menu-ul {
  display: flex;
  overflow-x: auto;
  justify-content: center;
}

.qing-video-menu .qing-video-menu-ul::-webkit-scrollbar {
  display: none;
}

.qing-video-menu .qing-video-menu-ul li {
font-size: var(--qing-video-menu-size);
    text-align: center;
    background: #DADADA;
    margin: 0 20px;
    flex: 0 0 24%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 10px;
}
.qing-video-menu .qing-video-menu-ul li:hover,
.qing-video-menu .qing-video-menu-ul li.active {
  background: var(--color-primary);
  color: #fff;
}

.qing-video-menu .qing-video-menu-ul li a:hover{
  color: #fff;
  
}

@media screen and (max-width: 1500px) {
  :root {
    --qing-video-menu-size: 22px;
  }
}

@media screen and (max-width: 1280px) {
  :root {
    --qing-video-menu-size: 20px;
  }
}

@media screen and (max-width: 992px) {
  :root {
    --qing-video-menu-size: 18px;
  }

}

@media screen and (max-width: 768px) {
  :root {
    --qing-video-menu-size: 16px;
  }

}

@media screen and (max-width: 576px) {
  :root {
    --qing-video-menu-size: 14px;
  }
 
}