:root {
  --main-color: #005bac;
  --main-hover: #024990;
  --text-color: #333;
  --text-light: #666;
  --border: #eee;
  --bg-light: #f7f7f7;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  --transition: 0.3s;
  --body-container: 1600px;
}
body {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: var(--text-color);
  background: #fff;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  text-decoration: none;
}
p {
  margin-bottom: 0;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  max-width: var(--body-container);
}
.cut-spac > [class^="col-"] {
  padding: 5px;
}
.page-btn {
  display: inline-block;
  padding: 10px 55px 10px 25px;
  border-radius: 5px;
  background-color: var(--main-color);
  position: relative;
  width: 100%;
  max-width: 150px;
}
.page-btn a {
  color: #fff;
  font-size: 12px;
}
.page-btn:hover {
  background-color: var(--main-hover);
}
.page-btn a em {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 100%;
  background-color: #22222252;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.page-btn a em::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 10px;
  width: 20px;
  height: 20px;
  border: 2px solid #fff;
  border-radius: 50%;
}
.page-btn a em::after {
  content: "";
  position: absolute;
  top: 19px;
  left: 17px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateX(-1px) rotate(45deg);
}
/* nav hm-topbar */
.hm-topbar {
  height: 90px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2001;
  display: flex;
  align-items: center;
  /* background: rgba(255, 255, 255, .08);
     border-bottom: 1px solid rgba(255, 255, 255, .2);*/
  color: #fff;
  transition:
    background var(--transition),
    color var(--transition),
    border var(--transition);
}
.hm-topbar-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hm-topbar-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}
.hm-topbar-logo img {
  max-height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: var(--transition);
  padding-right: 15px;
}
.hm-topbar-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 22px;
}
.hm-topbar-info {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.hm-topbar-icon {
  font-size: 16px;
}
.hm-topbar a {
  color: inherit;
  font-size: 15px;
}
.hm-social {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hm-social a {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  border: 1px solid currentColor;
  border-radius: 50%;
  transition: var(--transition);
}
.hm-social a:hover {
  color: var(--main-color);
}
.hm-topbar-language {
  position: relative;
}
.hm-topbar-language-btn {
  height: 30px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 8px;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 13px;
  cursor: pointer;
}
.hm-topbar-language-arrow {
  font-size: 8px;
  transition: transform var(--transition);
}
.hm-topbar-language.open .hm-topbar-language-arrow {
  transform: rotate(180deg);
}
.hm-topbar-language-menu {
  position: absolute;
  top: 100%;
  right: 0;
  width: 130px;
  padding: 6px 0;
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  z-index: 10000;
}
.hm-topbar-language.open .hm-topbar-language-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.hm-topbar-language-menu a {
  display: block;
  padding: 8px 15px;
  color: #333;
  font-size: 13px;
}
.hm-topbar-language-menu a:hover {
  background: #f5f8fc;
  color: var(--main-color);
}
.hm-page-inner .hm-topbar-wrapper .hm-btn {
  display: none;
}
.hm-page-inner .hm-topbar-logo img {
  display: none;
}
.hm-page-inner .hm-nav-logo {
  display: block;
}
.hm-page-inner .hm-nav-wrapper .hm-btn {
  display: flex;
}
.hm-page-inner .hm-menu {
  justify-content: center;
}
.hm-page-home .hm-topbar-wrapper .hm-btn {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.316);
}
.hm-btn {
  height: 46px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--main-color);
  color: #fff;
  border-radius: 4px;
  white-space: nowrap;
  transition: var(--transition);
}
.hm-btn:hover {
  background: var(--main-hover);
  color: #fff;
}
.hm-btn:hover a {
  color: #fff;
}
.hm-page-home .hm-topbar {
  /* background: rgba(255, 255, 255, .08);
     border-bottom-color: rgba(255, 255, 255, .2);*/
  color: #fff;
}
.hm-page-inner .hm-topbar {
  position: relative;
  background: var(--main-color);
  border-bottom: 1px solid var(--border);
  color: #fff;
  height: 40px;
}
.hm-header-wrap {
  position: relative;
  z-index: 2000;
}
.hm-nav-header {
  position: absolute;
  top: 90px;
  left: 0;
  width: 100%;
  height: 75px;
  /* background: rgba(255, 255, 255, .08);
     border-bottom: 1px solid rgba(255, 255, 255, .25);*/
  z-index: 2000;
  transition:
    background var(--transition),
    box-shadow var(--transition),
    height var(--transition);
}
.hm-page-inner .hm-nav-header {
  position: relative;
  top: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  /* box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05); */
}
.hm-nav-header.hm-scrolled {
  position: fixed;
  top: 0;
  left: 0;
  height: 75px;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  animation: hmNavDown 0.3s ease;
}
@keyframes hmNavDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.hm-page-inner .hm-nav-header.hm-scrolled {
  position: fixed;
  top: 0;
}
.hm-nav-logo,
.hm-nav-wrapper .hm-btn {
  display: none;
}
.hm-scrolled .hm-nav-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}
.hm-scrolled .hm-btn {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}
.hm-scrolled .hm-nav-logo img {
  max-height: 45px;
  width: auto;
  margin-right: 25px;
  transition: var(--transition);
}
.hm-nav-wrapper {
  height: 75px;
  display: flex;
  align-items: center;
  position: relative;
}
.hm-nav {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.hm-scrolled .hm-menu {
  justify-content: center;
}
.hm-scrolled .hm-nav {
  justify-content: center;
}
.hm-scrolled .hm-item {
  border-top: none;
  flex: none;
}
.hm-page-inner .hm-item {
  flex: none;
}
.hm-menu {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 1;
  gap: 25px;
}
.hm-item {
  position: relative;
  flex: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.hm-scrolled .hm-item > a {
  padding-right: 25px;
}
.hm-item > a {
  height: 55px;
  padding-left: 10px;
  padding-right: 42px;
  display: flex;
  align-items: center;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  transition: var(--transition);
  position: relative;
  letter-spacing: 0.3em;
}
.hm-nav-header.hm-scrolled .hm-item > a,
.hm-page-inner .hm-item > a {
  color: var(--text-color);
}
.hm-item > a:hover {
  color: #fff;
  text-shadow: 0 2px 8px rgba(225, 225, 225, 0.5);
}
.hm-page-inner .hm-item > a:hover {
  color: var(--main-hover);
  text-shadow: 0 2px 8px rgba(225, 225, 225, 0.5);
}
.hm-page-inner .hm-nav-header,
.hm-page-inner .hm-nav-wrapper {
  height: 90px;
}
.hm-arrow {
  width: 8px;
  height: 8px;
  display: inline-block;
  margin-left: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-3px);
  transition: var(--transition);
  position: absolute;
  right: 15px;
}
.hm-item:hover > .hm-arrow {
  border-color: var(--main-color);
}
.hm-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  padding: 15px 0;
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: var(--transition);
  z-index: 9999;
}
.hm-item:hover > .hm-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.hm-submenu li {
  position: relative;
}
.hm-submenu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 25px;
  font-size: 15px;
  white-space: nowrap;
  color: var(--text-color);
}
.hm-submenu a:hover {
  background: #f5f8fc;
  color: var(--main-color);
}
.hm-submenu .hm-submenu {
  top: 0;
  left: 100%;
  transform: translateX(15px);
}
.hm-submenu li:hover > .hm-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.hm-submenu .hm-arrow {
  width: 7px;
  height: 7px;
  transform: rotate(-45deg);
}
.hm-mega-item {
  position: static !important;
}
.hm-mega-menu {
  position: absolute;
  top: 75px;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: var(--transition);
  z-index: 9999;
}
.hm-mega-item:hover > .hm-mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.hm-mega-container {
  max-width: 1200px;
  margin: auto;
  padding: 35px 20px;
  display: flex;
  gap: 35px;
}
.hm-mega-image {
  width: 260px;
  flex-shrink: 0;
}
.hm-mega-image a {
  display: block;
  width: 100%;
  overflow: hidden;
}
.hm-mega-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 15px;
  border: 2px solid var(--border);
  padding: 15px;
  background: #fff;
  box-shadow:
    rgba(0, 0, 0, 0.12) 0px 1px 3px,
    rgba(0, 0, 0, 0.24) 0px 1px 2px;
  transition: transform 0.5s ease;
}
.hm-mega-image img:hover {
  transform: scale(1.08);
}
.hm-mega-image p,
.hm-mega-column p {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 15px;
}
.hm-mega-column {
  flex: 1;
}
.hm-mega-image p::after,
.hm-mega-column p::after {
  content: "";
  display: block;
  width: 35px;
  height: 2px;
  background: var(--main-color);
  margin-top: 8px;
}
.hm-mega-column a {
  display: block;
  padding-top: 12px;
  color: var(--text-light);
  font-size: 15px;
}
.hm-mega-column span a {
  font-size: 13px;
  margin-top: 10px;
  color: var(--main-color);
}
.hm-mega-column a:hover {
  color: var(--main-color);
}
.hm-menu-btn,
.hm-mobile-nav,
.hm-drawer,
.hm-mask,
.hm-mobile-quote {
  display: none;
}
@media (min-width: 1200px) {
  .hm-nav {
    display: flex !important;
  }
  .hm-menu {
    display: flex !important;
  }
  .hm-mobile-nav,
  .hm-menu-btn {
    display: none !important;
  }
  .hm-mega-item {
    position: static !important;
  }
  .hm-mega-menu {
    display: block;
  }
}


@media (max-width: 1199px) {
  .hm-nav-logo {
    display: none;
  }
  .hm-nav-wrapper .hm-btn {
    display: none !important;
  }
  .hm-topbar {
    position: relative;
    height: 45px;
  }
  .hm-topbar-wrapper {
    padding: 0 1px;
  }
  .hm-topbar-logo a,.hm-topbar-language,
  .hm-social,
  .hm-topbar-right .hm-btn {
    display: none;
  }
  .hm-topbar-logo p{
      padding-right: 20px;
      font-size: 13px;
  }
  .hm-topbar a{
      font-size: 13px;
  }
  .hm-topbar-right {
    margin-left: auto;
    justify-content: space-between;
    
  }
  .hm-topbar-info {
    display: flex;
  }
  .hm-topbar-language-btn {
    padding: 0 5px;
  }
  .hm-page-home .hm-topbar,
  .hm-page-inner .hm-topbar {
    background: var(--main-color);
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, 0.2);
  }
  .hm-nav-header {
    position: relative;
    top: 0;
    left: 0;
    height: 75px;
    background: #fff !important;
    border-bottom: 1px solid var(--border);
    z-index: 2000;
  }
  .hm-page-inner .hm-nav-header {
    position: relative;
    top: 0;
  }
  .hm-nav-wrapper {
    height: 75px;
    padding: 0 1px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .hm-nav-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    margin-right: auto;
  }
  .hm-nav-logo img {
    max-height: 45px;
    filter: none !important;
  }
  .hm-nav,
  .hm-quote {
    display: none;
  }
  .hm-menu-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 0;
    padding: 0;
    background: none;
    cursor: pointer;
    color: #333;
  }
  .hm-menu-text {
    font-size: 14px;
    font-weight: 600;
    color: #333;
  }
  .hm-icon {
    width: 25px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .hm-icon i {
    width: 100%;
    height: 2px;
    background: #333;
    transition: 0.3s;
  }
  .hm-menu-btn.active .hm-icon i:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .hm-menu-btn.active .hm-icon i:nth-child(2) {
    opacity: 0;
  }
  .hm-menu-btn.active .hm-icon i:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  .hm-mask {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
  }
  .hm-mask.active {
    opacity: 1;
    visibility: visible;
  }
  .hm-drawer {
    display: flex;
    flex-direction: column;
    position: fixed;
    right: 0;
    top: 0;
    width: 340px;
    max-width: 90%;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    overflow-y: auto;
    transform: translateX(100%);
    transition: 0.35s;
  }
  .hm-drawer.active {
    transform: translateX(0);
  }
  .hm-drawer-header {
    height: 70px;
    padding: 0 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    border-bottom: 1px solid var(--border);
    background: #fff;
  }
  .hm-drawer-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
  }
  .hm-close {
    border: 0;
    background: none;
    font-size: 35px;
    line-height: 1;
    color: #333;
    cursor: pointer;
  }
  .hm-mobile-nav {
    display: block;
    padding: 15px 25px;
    flex: 0 0 auto;
  }
  .hm-mobile-nav .hm-menu {
    display: block;
  }
  .hm-mobile-nav .hm-item {
    position: relative;
    border-bottom: 1px solid var(--border);
  }
  .hm-mobile-nav .hm-item > a {
    height: 55px;
    padding-right: 55px;
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #333;
  }
  .hm-mobile-nav .hm-arrow {
    display: none !important;
  }
  .hm-mobile-toggle {
    display: flex;
    position: absolute;
    right: 0;
    top: 6px;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 4px;
    cursor: pointer;
    z-index: 5;
  }
  .hm-mobile-toggle::before,
  .hm-mobile-toggle::after {
    content: "";
    position: absolute;
    background: #333;
    transition: 0.25s;
  }
  .hm-mobile-toggle::before {
    width: 14px;
    height: 2px;
  }
  .hm-mobile-toggle::after {
    width: 2px;
    height: 14px;
  }
  .hm-mobile-toggle.active::after {
    opacity: 0;
  }
  .hm-mobile-nav .hm-submenu {
    display: none;
    position: static;
    width: 100%;
    min-width: 0;
    padding: 0;
    background: var(--bg-light);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .hm-mobile-nav .hm-submenu li {
    border-bottom: 1px solid #e8e8e8;
  }
  .hm-mobile-nav .hm-submenu a {
    height: auto;
    padding: 13px 15px;
    font-size: 14px;
    color: #333;
  }
  .hm-mobile-nav .hm-submenu .hm-submenu a {
    padding-left: 35px;
  }
  .hm-mobile-nav .hm-submenu .hm-submenu .hm-submenu a {
    padding-left: 50px;
  }
  .hm-mobile-nav .hm-mega-item {
    position: relative !important;
  }
  .hm-mobile-nav .hm-mega-menu {
    display: none;
    position: static;
    width: 100%;
    background: var(--bg-light);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .hm-mobile-nav .hm-mega-container {
    display: block;
    padding: 15px 0;
  }
  .hm-mobile-nav .hm-mega-image {
    width: 100%;
    padding: 10px 20px;
  }
  .hm-mobile-nav .hm-mega-image img {
    width: 100%;
    /* height: 160px; */
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
  }
  .hm-mobile-nav .hm-mega-column {
    padding: 10px 20px;
  }
  .hm-mobile-nav .hm-mega-column p {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
  }
  .hm-mobile-nav .hm-mega-column a {
    padding: 8px 0;
    font-size: 14px;
    color: #333;
  }
  .hm-mobile-quote {
    display: block;
    flex-shrink: 0;
    margin: 12px 20px 25px;
  }
  .hm-mobile-quote .hm-btn {
    width: 100%;
    height: 48px;
    display: flex;
  }
  body.hm-lock {
    overflow: hidden;
  }
}
@media (max-width: 480px) {
  .hm-drawer {
    width: 290px;
  }
  .hm-mobile-nav {
    padding: 15px 20px;
  }
  .hm-topbar-left .hm-topbar-info {
    font-size: 12px;
  }
}
.foot {
  padding: 50px 20px;
  background-color: #333;
}
.foot-info {
  width: 100%;
}
.foot-logo img {
  width: 180px;
  filter: brightness(0) invert(1);
  margin-bottom: 15px;
}
.foot-info span {
  color: #fff;
  font-weight: 600;
  display: inline-block;
  width: 100%;
  max-width: 80px;
  border-bottom: 1px solid #999;
  padding-bottom: 10px;
}
.foot-info ul {
  width: 100%;
  float: left;
  margin-top: 25px;
  margin-bottom: 25px;
}
.foot-info ul li a {
  display: block;
  width: 100%;
  padding: 5px 0;
  margin-bottom: 10px;
  position: relative;
  font-size: 14px;
  color: #eee !important;
}
.adds::before {
  content: "\f041";
  font-family: "FontAwesome";
  position: absolute;
  left: -20px;
}
.tels::before {
  content: "\f095";
  font-family: "FontAwesome";
  position: absolute;
  left: -20px;
}
.emls::before {
  content: "\f003";
  font-family: "FontAwesome";
  position: absolute;
  left: -20px;
}
.media-img a {
  display: block;
  width: 30.333%;
  float: left;
  color: #eee !important;
  margin-right: 3%;
  margin-top: 25px;
  font-size: 14px;
  text-align: center;
  margin-bottom: 15px;
}
.media-img a img {
  margin-bottom: 5px;
}
.beian {
  display: inline-block;
  width: 100%;
  border-top: 1px solid #525252;
  padding-top: 25px;
}
.beian span {
  display: block;
  float: left;
  padding-right: 25px;
  color: #ddd;
  font-size: 13px;
  padding-bottom: 15px;
}
.beian span a {
  color: #c3c3c3;
}
.backtop {
  display: block;
  position: fixed;
  right: 20px;
  bottom: 20px;
  background-color: var(--main-color);
  padding: 15px 20px;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  cursor: pointer;
  z-index: 999;
}
.backtop.show {
  opacity: 1;
  visibility: visible;
}
.backtop a {
  color: #fff;
}
@media (max-width: 480px) {
  .backtop {
    padding: 5px 15px;
  }
}
.navbanner {
  width: 100%;
  position: relative;
}
.navbanner-img {
  width: 100%;
}
.navbanner-img img {
  width: 100%;
  object-fit: cover;
  min-height: 230px;
}
.navbanner-text {
  width: 100%;
  display: flex;
  position: absolute;
  top: 25%;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.navbanner-text span {
  width: 100%;
  text-align: center;
  font-size: 50px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.3em;
  text-shadow: 0 2px 8px rgba(225, 225, 225, 0.5);
  margin-bottom: 15px;
}
.navbanner-text a {
  color: #eee;
  font-size: 14px;
  padding-right: 5px;
  letter-spacing: 0.2em;
  line-height: 2;
}
.navbanner-text a::after {
  content: ">";
  padding-left: 5px;
}
.navbanner-text a:last-child:after {
  display: none;
}
.pages-nums {
  width: 100%;
  display: block;
  margin-top: 50px;
  margin-bottom: 10px;
}
.pagination {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px !important;
}
.pagination a {
  display: inline-block;
  line-height: 26px;
  height: 30px;
  font-size: 14px;
  min-width: 30px;
  color: var(--main-color);
  font-weight: 700;
  text-align: center;
  background: #ffffff;
  border: 2px solid var(--main-color);
  text-transform: capitalize;
  transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
}
.page-num-current {
  background-color: var(--main-color) !important;
  color: #ffffff !important;
}
.page-num {
  display: none;
}
.pagination a:hover,
.pagination a.active {
  color: #ffffff;
  border-color: var(--main-hover);
  background-color: var(--main-hover);
}
.detail-navs {
  width: 100%;
  padding: 10px;
}
.detail-nav {
  width: 100%;
  max-width: var(--body-container);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding-left: 20px;
}
.detail-nav a {
  font-size: 14px;
  color: var(--text-light);
}
.detail-nav a::after {
  content: ">";
  padding-left: 5px;
  padding-right: 5px;
}
.detail-nav a:last-child::after {
  display: none;
}
