
.tabserch_bus {
display: block;
width: 100%;
  list-style: none;
  margin: 20px 0 0 0;
  padding: 0;
}
.tabserch_bus li{
  box-sizing: border-box;
  text-align: center;
  padding: 10px;
  color: #666;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-bottom: 24px;
  width: 100%;
}
.tabserch_bus li.select {
  color: #25398D;
  border-bottom: solid 3px #25398D;
}
.tabserch_bus li:hover {
  opacity: 0.8;
}
@media (min-width: 768px) {
  .tabserch_bus li{

    font-size: 18px;
    letter-spacing: 0.2rem;
  }
}
@media (max-width: 767.98px) {
  .tabserch_bus li{

    font-size: 14px;
  }
}

