header {
  width: 100%;
  background-color: #fff;
}
header .nav-bar {
  max-width: 1120px;
  height: 45px;
  line-height: 45px;
  margin: 0 auto;
  display: flex;
  padding: 0 10px;
}
header .nav-bar .nav-left {
  min-width: 100px;
  text-align: center;
}
header .nav-bar .nav-left .logo {
  display: flex;
}
header .nav-bar .nav-left .logo p {
  margin-left: 23px;
  margin-bottom: 0px;
}
header .nav-bar .nav-left .logo img {
  width: 25px;
  margin-bottom: 5px;
}
header .nav-bar .nav-center {
  margin-left: auto;
  width: 80%;
  min-width: 275px;
  height: 45px;
  font-size: 16px;
  font-weight: 600;
}
header .nav-bar .nav-center #iconImg {
  margin-left: 5px;
  margin-bottom: 5px;
  width: 14px;
}
header .nav-bar .nav-center h2 {
  font-size: 1.25rem;
}
header .nav-bar .nav-center li {
  width: 19%;
  min-width: 75px;
  height: 45px;
  line-height: 45px;
  float: left;
  text-align: center;
  margin-right: 4px;
}
header .nav-bar .nav-center li a {
  position: relative;
  width: 100%;
  line-height: 30px;
  display: inline-block;
  color: #000;
  -moz-border-radius: 6px;
  border-radius: 6px;
  background-color: transparent;
  font-weight: normal;
}
header .nav-bar .nav-center li .lib {
  font-weight: bold;
}
header .nav-bar .nav-center li:nth-child(2) {
  min-width: 77px;
}
header .nav-bar .nav-center li:nth-child(2) .nav-product {
  max-width: 1200px;
  position: absolute;
  top: 45px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -9999;
  opacity: 0;
  visibility: hidden;
  background: #f4f4f4;
  padding-left: 2%;
  padding-right: 2%;
  padding-bottom: 20px;
  margin-top: 0;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
}
header .nav-bar .nav-center li:nth-child(2) .nav-product hr {
  margin-top: 20px;
  margin-bottom: 10px;
}
header .nav-bar .nav-center li:nth-child(2) .nav-product h2 {
  margin-top: 1rem;
}
header .nav-bar .nav-center li:nth-child(2) .nav-product .row {
  text-align: center;
  font-size: 12px;
}
header .nav-bar .nav-center li:nth-child(2) .nav-product .row .thumbnail {
  background-color: #fff;
  border-radius: 4%;
  margin-top: 20px;
}
header .nav-bar .nav-center li:nth-child(2) .nav-product .row .thumbnail img {
  width: 80%;
  padding: 5% 15%;
}
header .nav-bar .nav-center li:nth-child(2) .nav-product .row .thumbnail .title {
  height: 60px;
  padding: 0 10px;
  font-size: 0.75rem;
  color: #26447D;
  line-height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .nav-bar .nav-center li:nth-child(2) .nav-product .row .thumbnail:hover {
  box-shadow: 0px 0px 5px rgba(0, 137, 255, 0.5);
  transform: scale(1.06);
}
header .nav-bar .nav-center li:nth-child(2) .nav-product.productActive {
  z-index: 9999;
  visibility: visible;
  animation: opacity 0.3s ease-out forwards;
}
header .nav-bar .nav-center li:nth-child(2):hover .nav-product {
  z-index: 9999;
  visibility: visible;
  animation: opacity 0.3s ease-out forwards;
}
header .nav-bar .nav-center li:nth-child(2):hover a #iconImg {
  content: url("../icon/chevron-up.svg");
}
header .nav-bar .nav-right {
  margin-left: auto;
}
header .nav-bar .nav-right .burger {
  display: none;
  width: 30px;
  height: 100%;
  background-color: transparent;
  float: right;
  border: 0;
  outline: none;
  padding-right: 5px;
}
header .nav-bar .nav-right .burger div {
  height: 2px;
  background-color: black;
  margin: 4px;
}
header .nav-bar .nav-right .burger.burger-active div {
  background-color: red;
  transition: 0.1s ease-in-out 0.2s;
}
header .nav-bar .nav-right .burger.burger-active .top-line {
  transform: rotate(45deg) translate(4.5px, 4px);
}
header .nav-bar .nav-right .burger.burger-active .bottom-line {
  transform: rotate(-45deg) translate(4.5px, -4px);
}
header .nav-bar .nav-right .burger.burger-active .middle-line {
  opacity: 0;
  transform: translateX(10px);
  transition: 0.1s ease-in-out;
}
header .promotion-dialog {
  display: none;
  text-align: center;
  width: 600px;
  position: fixed;
  border: #ebebeb solid 1px;
  left: 50%;
  top: 50%;
  background: #ffffff;
  background-image: url("../icon/promotion_bg.webp");
  box-shadow: 0px 0px 10px rgba(0, 137, 255, 0.5);
  border-radius: 15px;
  z-index: 9999;
  transform: translate(-50%, -50%);
}
header .promotion-dialog .promotion-appTitle {
  height: 60px;
  line-height: 60px;
  background-color: rgba(238, 247, 255, 0.7);
  font-size: 1.1rem;
  border-radius: 15px 15px 0 0;
}
header .promotion-dialog .promotion-image {
  width: 20%;
  margin: 10px;
}
header .promotion-dialog .promotion-appDescription {
  font-size: 1rem;
  padding: 0 10%;
}
header .promotion-dialog .promotion-content {
  font-size: 1.25rem;
}
header .promotion-dialog .promotion-content span {
  font-size: 2rem;
  font-weight: 600;
}
header .promotion-dialog .promotion-content li {
  display: inline-block;
}
header .promotion-dialog .promotion-content li:first-child {
  font-weight: 600;
}
header .promotion-dialog .promotion-btn {
  height: 50px;
}
header .promotion-dialog .promotion-btn a {
  color: #FFF;
  font-size: 1rem;
  font-weight: 600;
  background-color: #4EADFF;
  width: 60%;
  height: 34px;
  line-height: 34px;
  display: block;
  margin: 0 20%;
  border-radius: 17px;
}
header .promotion-dialog .promotion-close {
  position: absolute;
  right: -10px;
  top: -10px;
}
header .promotion-dialog .promotion-close img {
  width: 25px;
  vertical-align: top;
}
header .promotion-bg {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 9998;
}
@keyframes opacity {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0.25;
  }
  50% {
    opacity: 0.5;
  }
  75% {
    opacity: 0.75;
  }
  100% {
    opacity: 1;
  }
}
@media screen and (max-width: 705px) {
  header .nav-bar {
    width: 100%;
  }
  header .nav-bar .nav-left {
    text-align: left;
    padding-left: 1%;
  }
  header .nav-bar .nav-center {
    display: none;
    position: absolute;
    left: 0;
    width: 100%;
    min-width: 0;
    height: auto;
    max-height: calc(100vh - 45px);
    max-height: calc(100dvh - 45px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 8px 16px 16px;
    background-color: #fff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
  }
  header .nav-bar .nav-center.mobile-menu-open {
    display: block;
    z-index: 9999 !important;
  }
  header .nav-bar .nav-center > ul {
    margin: 0;
    list-style: none;
  }
  header .nav-bar .nav-center > ul > li {
    float: none;
    text-align: left;
    height: auto;
    line-height: normal;
    width: 100%;
    margin-right: 0;
    border-bottom: 1px solid #eee;
  }
  header .nav-bar .nav-center > ul > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    padding: 8px 4px;
  }
  header .nav-bar .nav-center li.product .nav-product {
    display: none !important;
    position: static;
    transform: none;
    width: 100%;
    padding: 0 0 12px;
    box-shadow: none;
    border-radius: 0;
    background: #fff;
  }
  header .nav-bar .nav-center li.product .nav-product.productActive {
    display: block !important;
    opacity: 1;
    visibility: visible;
    animation: none;
  }
  header .nav-bar .nav-center li.product .nav-product h2 {
    margin: 12px 0;
    font-size: 14px;
    text-align: left;
    color: #666;
  }
  header .nav-bar .nav-center li.product .nav-product hr {
    margin: 16px 0;
  }
  header .nav-bar .nav-center li.product .nav-product .row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
  }
  header .nav-bar .nav-center li.product .nav-product .row > div {
    max-width: 100%;
    min-width: 0;
    padding: 0;
  }
  header .nav-bar .nav-center li.product .nav-product .row .thumbnail {
    height: 100%;
    margin-top: 0;
    padding: 12px 8px;
    border-radius: 10px;
    background: #f6f7f9;
  }
  header .nav-bar .nav-center li.product .nav-product .row .thumbnail img {
    width: 48px;
    height: 48px;
    padding: 0;
    object-fit: contain;
  }
  header .nav-bar .nav-center li.product .nav-product .row .thumbnail .title {
    height: auto;
    min-height: 36px;
    margin-top: 8px;
    padding: 0;
    font-size: 13px;
    line-height: 18px;
    overflow-wrap: anywhere;
  }
  header .nav-bar .nav-center li.product .nav-product .row .thumbnail:hover {
    box-shadow: none;
    transform: none;
  }
  header .nav-bar .nav-center li.product > a #iconImg {
    content: url("../icon/chevron-down.svg");
  }
  header .nav-bar .nav-center li.product > a[aria-expanded="true"] #iconImg {
    content: url("../icon/chevron-up.svg");
  }
  header .nav-bar .nav-center .lia:hover::before {
    border-width: 0 0 0 !important;
  }
  header .nav-bar .nav-right {
    height: 45px;
  }
  header .nav-bar .nav-right .burger {
    display: block;
    width: 44px;
    padding: 0;
  }
  header .nav-bar .nav-right .burger div {
    width: 20px;
    margin: 4px auto;
  }
}
@media screen and (max-width: 600px) {
  header .promotion-dialog {
    width: 90%;
  }
  header .promotion-dialog .promotion-appTitle {
    font-size: 0.8rem;
  }
  header .promotion-dialog .promotion-appDescription {
    font-size: 0.75rem;
  }
  header .promotion-dialog .promotion-content {
    font-size: 1rem;
  }
  header .promotion-dialog .promotion-content span {
    font-size: 1.2rem;
  }
}
/*# sourceMappingURL=header_20260910_2.css.map */