@charset "UTF-8";
/*========== header-top ===========*/
/*========== header-bottom ===========*/
/*========== others ===========*/
.site-header {
  width: 100%;
  position: relative;
  z-index: 1020;
}
.site-header .header-top {
  width: 100%;
  height: 60px;
  background-color: #0288D1;
}
.site-header .header-top .TopItemContainer {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 100px;
  /*================= 汉堡菜单 ===================*/
}
.site-header .header-top .TopItemContainer .LogoContainer {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  padding: 0.4rem;
}
.site-header .header-top .TopItemContainer .LogoContainer .LOGO {
  user-select: none;
  cursor: pointer;
}
.site-header .header-top .TopItemContainer .LogoContainer .LOGO img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.site-header .header-top .TopItemContainer .NavSearchContainer {
  min-width: 300px;
  max-height: 60px;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .site-header .header-top .TopItemContainer .NavSearchContainer {
    display: none;
  }
}
.site-header .header-top .TopItemContainer .OperationsContainer {
  min-width: 150px;
  height: 60px;
  display: flex;
  padding: 0 20px;
}
.site-header .header-top .TopItemContainer .OperationsContainer .OperationElement {
  width: 60px;
  height: 60px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.site-header .header-top .TopItemContainer .OperationsContainer .OperationElement:hover {
  background-color: #0277BD;
}
.site-header .header-top .TopItemContainer .OperationsContainer .SelectionElement {
  width: 60px;
  height: 60px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.site-header .header-top .TopItemContainer .OperationsContainer .OperationElement .OperationElementIconContainer {
  color: #B3E5FC;
  user-select: none;
}
@media screen and (max-width: 768px) {
  .site-header .header-top .TopItemContainer .OperationsContainer {
    display: none;
  }
}
.site-header .header-top .TopItemContainer .hamburger {
  position: relative;
  width: 30px;
  height: 30px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
}
.site-header .header-top .TopItemContainer .hamburger span {
  position: absolute;
  display: block;
  width: 100%;
  height: 3px;
  background-color: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.site-header .header-top .TopItemContainer .hamburger span:nth-child(1) {
  top: 6px;
}
.site-header .header-top .TopItemContainer .hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.site-header .header-top .TopItemContainer .hamburger span:nth-child(3) {
  bottom: 6px;
}
.site-header .header-top .TopItemContainer .hamburger.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.site-header .header-top .TopItemContainer .hamburger.active span:nth-child(2) {
  opacity: 0;
}
.site-header .header-top .TopItemContainer .hamburger.active span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}
@media screen and (max-width: 768px) {
  .site-header .header-top .TopItemContainer .hamburger {
    display: flex;
  }
}
.site-header .header-bottom {
  width: 100%;
  height: 60px;
  background-color: #01579B;
}
.site-header .header-bottom .NavItemContainer {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 100px;
}
.site-header .header-bottom .NavItemContainer .NavItem {
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 20px;
}
.site-header .header-bottom .NavItemContainer .NavItem .NavItemText {
  color: #E1F5FE;
  text-decoration: none;
  user-select: none;
}
.site-header .header-bottom .NavItemContainer .NavItem:hover {
  background-color: #0288D1;
}
.site-header .header-bottom .NavItemContainer .NavItem:hover .NavItemText {
  color: #00E5FA;
}

/*================= 导航条专用搜索框 =======================*/
.nav-search {
  width: 100%;
  display: flex;
  align-items: center;
  background: #f5f5f5;
  border-radius: 50px;
  padding: 2px 10px;
  user-select: none;
}
.nav-search .nav-search-input {
  border: none;
  background: transparent;
  padding: 8px 10px;
  flex: 1;
  border-radius: 50px;
  font-size: 14px;
  outline: none;
}
.nav-search .nav-search-btn {
  user-select: none;
  background: none;
  border: none;
  color: #333;
  font-size: 18px;
  cursor: pointer;
}
.nav-search .nav-search-btn:hover {
  color: #000;
}

/*================= 下拉菜单(最大二级下拉,可自行修改样式至无限下拉) =======================*/
.header-dropdown {
  position: relative;
}
.header-dropdown .header-dropdown-menu {
  position: absolute;
  top: 100%;
  z-index: 1000;
  display: none;
  max-width: 260px;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 0.5rem 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-height: 500px;
  overflow-y: auto;
}
.header-dropdown .header-dropdown-menu .header-dropdown-menu-item {
  list-style: none;
}
.header-dropdown .header-dropdown-menu .header-dropdown-menu-item a {
  display: block;
  width: 100%;
  padding: 0.5rem 1rem;
  color: #333333;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.3s ease, color 0.3s ease;
  overflow: hidden; /* 超出隐藏 */
  text-overflow: ellipsis; /* 显示省略号 */
}
.header-dropdown .header-dropdown-menu .header-dropdown-menu-item a.active {
  background-color: #007bff;
  color: #ffffff;
}
.header-dropdown .header-dropdown-menu .header-dropdown-menu-item:hover {
  background-color: #007bff;
  color: #ffffff;
}
.header-dropdown .header-dropdown-menu .header-dropdown-sub {
  position: relative;
}
.header-dropdown .header-dropdown-menu .header-dropdown-sub .header-dropdown-sub-menu {
  position: absolute;
  top: 0;
  left: 100%;
  z-index: 1000;
  display: none;
  min-width: 180px;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 0.5rem 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.header-dropdown .header-dropdown-menu .header-dropdown-sub .header-dropdown-sub-menu .header-dropdown-sub-menu-item {
  list-style: none;
}
.header-dropdown .header-dropdown-menu .header-dropdown-sub .header-dropdown-sub-menu .header-dropdown-sub-menu-item a {
  display: block;
  width: 100%;
  padding: 0.5rem 1rem;
  color: #333333;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.3s ease, color 0.3s ease;
  user-select: none;
}
.header-dropdown .header-dropdown-menu .header-dropdown-sub .header-dropdown-sub-menu .header-dropdown-sub-menu-item a:hover {
  background-color: #007bff;
  color: #ffffff;
}
.header-dropdown .header-dropdown-menu .header-dropdown-sub .header-dropdown-sub-menu .header-dropdown-sub-menu-item a.active {
  background-color: #007bff;
  color: #ffffff;
}
.header-dropdown .header-dropdown-menu .header-dropdown-sub.show .header-dropdown-sub-menu {
  display: block;
}
.header-dropdown.show .header-dropdown-menu {
  display: block;
}
@media (hover: hover) and (pointer: fine) {
  .site-header .header-bottom .header-dropdown:hover > .header-dropdown-menu {
    display: block;
  }
}

/*================= Mega菜单 =======================*/
/*================= Mega菜单内容展示 =======================*/
.mega-menu-area {
  position: absolute;
  top: 100%;
  left: 160%;
}
.mega-menu-area .header-mega-menu {
  min-width: 700px;
  position: absolute;
  top: 0;
  display: none;
  background-color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 4px;
  padding: 0.5rem 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1005;
}
.mega-menu-area.show .header-mega-menu {
  display: block;
}
.mega-menu-area .product-container {
  padding: 20px;
}
.mega-menu-area .product-container .category-title {
  position: relative;
}
.mega-menu-area .product-container .category-title h4:before {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  height: 1px;
  width: 100%;
  background-color: #01579B;
}
.mega-menu-area .product-container .product-list {
  display: flex;
  flex-direction: column;
}
.mega-menu-area .product-container .product-list .sub-category-container {
  display: flex;
  border-bottom: 1px solid lightgray;
}
.mega-menu-area .product-container .product-list .sub-category-container .sub-category-title {
  display: flex;
  justify-content: center;
  font-weight: bold;
  padding: 50px;
  border-right: 1px solid lightgray;
}
.mega-menu-area .product-container .product-list .sub-category-container .products {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}
.mega-menu-area .product-container .product-list .sub-category-container .products li {
  list-style-type: none;
  padding: 10px;
}
.mega-menu-area .product-container .product-list .sub-category-container .products li a {
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: black;
  font-size: 12px;
}
.mega-menu-area .product-container .product-list .sub-category-container .products li:hover {
  background-color: #4586ba;
}

.currency-option {
  padding: 2px 10px 2px 10px;
  cursor: pointer;
}

.language-option {
  padding: 2px 10px 2px 10px;
  cursor: pointer;
}

/*# sourceMappingURL=commonHeader.css.map */

.header-lang-emoji {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
}
