.navigation-box {
  width: 100%;
  max-width: 1320px;
  height: 75px;
  overflow-x: auto;
  overflow-y: hidden;
  position: relative;
  display: flex;
  box-sizing: border-box;
  padding: 0 22px;
  transition: top 0.2s;
}
.navigation-box::-webkit-scrollbar {
  height: 4px;    
}
.navigation-box::-webkit-scrollbar-thumb {
  border-radius: 10px;
  /* box-shadow: inset 0 0 5px rgba(0,0,0,0.2); */
  background: transparent;
}
.navigation-box::-webkit-scrollbar-track {
  /* box-shadow: inset 0 0 5px rgba(0,0,0,0.2); */
  border-radius: 0;
  background: transparent;

}
@media screen and (max-width: 992px) {
  .navigation-box {
    max-width: none;
  }
}
.navigation-link {
  white-space: nowrap;
  width: 100%;
  height: 100%;
  display: block;
  text-decoration: none;
  color: #303b60;
  transition: all 0.2s;
}
.navigation-item {
  /* flex: 1; */
  padding: 0 30px;
  /* min-width: 160px; */
  cursor: pointer;
  position: relative;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  color: #303b60;
  line-height: 75px;
}
@media screen and (max-width: 992px) {
  .navigation-box {
    height: 50px;
  }
  #navigation-seat {
    height: 50px !important;
  }
  .navigation-bg  {
    height: 50px !important;
  }
  .navigation-item {
    line-height: 50px;
    font-size: 14px;
  }
}
.navigation-item:hover .navigation-link {
  color: #8fc52e;
}
.navigation-bar {
  width: 100%;
  height: 5px;
  border-radius: 1px;
  background-color: #8fc52e;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: left 0.2s;
}

.pc-nav-fixed {
  position: fixed;
  z-index: 9;
}
.navigation-bg {
  width: 100vw;
  height: 75px;
  background-color: #fff;
  position: fixed;
  left: 0;
  z-index: 8;
  transition: top 0.2s;
}
