#fix-header {
  height: 56px;
  max-height: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: fixed;
  background: white;
  top: 0;
  left: 0;
  width: 100%;
  transition: all 0.4s;
  z-index: 999;
}
@media (min-width: 1280px) {
  #fix-header {
    height: 70px;
  }
}
#fix-header .navbar-dropdown {
  cursor: pointer;
  position: relative;
}
#fix-header .navbar-dropdown:hover .navbar-dropdown-tit {
  color: #f50;
}
#fix-header .navbar-dropdown:hover .navbar-dropdown-tit::after {
  width: 100%;
}
#fix-header .navbar-dropdown:hover .navbar-dropdown-tit svg {
  transform: rotate(180deg);
}
#fix-header .navbar-dropdown:hover .navbar-dropdown-menu {
  max-height: -webkit-max-content;
  max-height: -moz-max-content;
  max-height: max-content;
  opacity: 1;
  visibility: visible;
}
#fix-header .navbar-dropdown .navbar-dropdown-tit svg {
  transition: all linear 0.24s;
}
#fix-header .navbar-dropdown .navbar-dropdown-menu {
  width: 356px;
  position: absolute;
  top: 70px;
  left: 16px;
  border-radius: 8px;
  border: 1px solid #ECECEC;
  background: #FFF;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
  list-style: none;
  padding: 12px 24px;
  max-height: 0;
  visibility: hidden;
  opacity: 0;
  transition: all linear 0.24s;
}
#fix-header .navbar-dropdown .navbar-dropdown-menu li {
  position: relative;
  padding: 12px 8px 12px 36px;
  border-radius: 12px;
}
#fix-header .navbar-dropdown .navbar-dropdown-menu li::after {
  content: none !important;
}
#fix-header .navbar-dropdown .navbar-dropdown-menu li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #515455;
  position: absolute;
  left: 24px;
  top: calc(50% - 2px);
}
#fix-header .navbar-dropdown .navbar-dropdown-menu li:hover {
  background: rgba(255, 236, 227, 0.7);
}
#fix-header .navbar-dropdown .navbar-dropdown-menu li a {
  font-size: 16px;
  font-weight: 600;
  color: #515455;
}
#fix-header .navbar-dropdown .navbar-dropdown-menu li a:hover {
  color: #515455 !important;
  text-decoration: none;
}
#fix-header .lft .fw-bold {
  font-size: 15px;
}
@media (min-width: 1600px) {
  #fix-header .lft .fw-bold {
    font-size: 18px;
  }
}
@media (min-width: 1280px) {
  #fix-header .rgt .fix-list {
    height: 70px;
  }
}
#fix-header .rgt .fix-list > li {
  height: 100%;
  padding: 0 8px;
  position: relative;
  font-size: 16px;
  font-weight: 380;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -1px;
}
@media (min-width: 1280px) {
  #fix-header .rgt .fix-list > li {
    padding: 0 24px;
  }
}
@media (min-width: 1600px) {
  #fix-header .rgt .fix-list > li {
    font-size: 18px;
  }
}
#fix-header .rgt .fix-list > li > a {
  position: relative;
}
#fix-header .rgt .fix-list > li > a::after {
  content: "";
  width: 0;
  height: 2px;
  background: #f50;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all linear 0.4s;
}
#fix-header .rgt .fix-list > li > a:hover {
  color: #f50 !important;
  text-decoration: none;
}
#fix-header .rgt .fix-list > li > a:hover::after {
  width: 100%;
}
#fix-header .rgt .fix-list > li:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 16px;
  background: #6B6B6B;
  position: absolute;
  right: 0;
  top: calc(50% - 8px);
}/*# sourceMappingURL=fix-nav.css.map */