.tab-list {
  height: 100px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: sticky;
  left: 0;
  top: 0;
  z-index: 99;
  background: #fff;
}
.tab-list .scroll {
  height: 100px;
  overflow-x: scroll;
  /*瀹氫箟婊氬姩鏉￠珮瀹藉強鑳屾櫙 楂樺鍒嗗埆瀵瑰簲妯珫婊氬姩鏉＄殑灏哄*/
  /*瀹氫箟婊氬姩鏉¤建閬 鍐呴槾褰?鍦嗚*/
  /*瀹氫箟婊戝潡 鍐呴槾褰?鍦嗚*/
}
.tab-list .scroll::-webkit-scrollbar {
  width: 0px;
  opacity: 0;
  display: none;
}
.tab-list .scroll::-webkit-scrollbar-track {
  background-color: #fff;
  opacity: 0;
}
.tab-list .scroll::-webkit-scrollbar-thumb {
  width: 0px;
  border-radius: 0px;
  opacity: 0;
}
.tab-list .tab-ul {
  display: flex;
}
.tab-list .tab-ul li.item {
  flex-shrink: 0;
  height: 100px;
  line-height: 100px;
  font-size: 20px;
  margin-right: 56px;
  user-select: none;
  font-family: Light;
  font-weight: 300;
  position: relative;
  cursor: pointer;
}
.tab-list .tab-ul li.item::before {
  content: " ";
  height: 3px;
  width: 0px;
  background-color: #6B8CFF;
  position: absolute;
  left: 0px;
  bottom: 0px;
  transition: all 0.3s;
}
.tab-list .tab-ul li.item.active {
  color: #6B8CFF;
  border-bottom: 3px solid #6B8CFF;
  font-family: Light;
  font-weight: 500;
}
.tab-list .tab-ul li.item.active::before {
  display: none;
}
@media (min-width: 1200px) {
  .tab-list .tab-ul li.item:hover {
    color: #6B8CFF;
    font-family: Light;
    font-weight: 500;
  }
  .tab-list .tab-ul li.item:hover::before {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .tab-list .tab-ul {
    padding: 0px 24px;
  }
}
@media (max-width: 950px) {
  .tab-list .tab-ul {
    padding: 0px 24px;
  }
}
@media (max-width: 376px) {
  .tab-list .tab-ul {
    padding: 0px 24px;
  }
}
