* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "HarmonyOS Sans SC", sans-serif;
  outline: none !important;
  /* overflow: hidden; */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
html {
  font-size: 16px;
}
@media screen and (max-width: 1644px) {
  html {
    font-size: 15px;
  }
}
@media screen and (max-width: 1440px) {
  html {
    font-size: 14.5px;
  }
  .header .headerContent {
    width: 100%;
  }
  #footer .footerTop-content,
  #footer .footerBottom-content {
    width: 100%;
  }
}
@media screen and (max-width: 1200px) {
  html {
    font-size: 14px;
  }
  .header .headerContent {
    width: 100%;
  }
}
@media screen and (max-width: 992px) {
  html {
    font-size: 12px;
  }
}

a {
  text-decoration: none;
  color: inherit;
}
ul li {
  list-style: none;
}
/* ?????? */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}
@font-face {
  font-family: "HarmonyOS Sans SC";
  src: url("HarmonyOS_Sans_SC_Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
.container {
  width: 100%;
  position: relative;
}

/* ????????? */
img {
  max-width: 100%;
  height: auto;
}

.header {
  width: 100%;
  background-color: #fff;
}
.header .headerContent {
  width: 87.5rem;
  margin: 0 auto;
  height: 5.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .headerLeft img {
  width: 14rem;
  height: 2.8125rem;
}
.headerNav {
  display: flex;
  align-items: center;
  gap: 3.5rem;
}
.headerNav a {
  font-family: HarmonyOS Sans SC;
  font-weight: 500;
  font-size: 1.25rem;
  color: #000000;
  text-decoration: none;
  position: relative;
  padding-bottom: 0.5rem;
}
.headerNav a:hover {
  color: #002a91;
}
.headerNav a.active {
  color: #002a91;
}
.headerNav a.active::after {
  content: "";
  position: absolute;
  bottom: -1.5625rem;
  left: 0;
  right: 0;
  height: 0.375rem;
  background: #002a91;
}
.headerRight {
  display: flex;
  align-items: center;
}
.headerRight .header-search {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.headerRight .searchIcon {
  width: 1.6875rem;
  height: 1.6875rem;
}
/* ??? */
.tabbar {
  display: none;
}
.tabbar .tabkeshi {
  width: 75rem;
  margin: 0 auto;
}
.tabbar .tabbar-item:nth-child(1) {
  margin-left: 2.5rem;
}
.tabbar .tabbar-item {
  position: relative;
  display: inline-block;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
}

.tabbar .tabbar-item a {
  color: #fff;
  text-decoration: none;
}

.tabbar .tabbar-item:hover::after {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #2e71d9;
}

/* ???????? */
.tabbar .tabbar-item.active {
  background-color: #1a5bbf !important;
}

.tabbar .tabbar-item.active a {
  color: #fff !important;
}

/* ??hover??????active?? */
.tabbar .tabbar-item.active:hover {
  background-color: #1a5bbf !important;
}

.tabbar .tabbar-item.active:hover a {
  color: #fff !important;
}

.tabbar .tabbar-item:hover .dropdown {
  display: block;
}

.tabbar .tabbar-item .dropdown:hover {
  display: block;
}

.tabbar .tabbar-item:first-child::before {
  display: none;
}

/* 移动端下拉导航菜单遮罩 */
.mobile_nav_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile_nav_overlay.show {
  opacity: 1;
  visibility: visible;
}

/* 移动端下拉导航菜单 */
.mobile_nav_dropdown {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-height: 70%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.mobile_nav_dropdown.show {
  transform: translateY(0);
}

.mobile_nav_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #eee;
}

.mobile_nav_logo {
  height: 1.8rem;
  width: auto;
}

.mobile_nav_actions {
  display: flex;
  gap: 1rem;
}

.mobile_nav_search_btn,
.mobile_nav_close {
  width: 2.5rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 3rem;
  color: #000;
}

.mobile_nav_search_btn img {
  width: 1.5rem;
  height: 1.5rem;
}

.mobile_nav_search_box {
  margin: 1.5rem;
  position: relative;
}

.mobile_nav_search_box input {
  width: 100%;
  height: 3.25rem;
  border: 1px solid #000;
  border-radius: 1.625rem;
  padding: 0 3.5rem 0 1.5rem;
  font-size: 1.25rem;
  background: #fff;
}

.mobile_nav_search_box .search_icon {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
}

.mobile_nav_links {
  padding: 0 1.5rem;
}

.mobile_nav_links .nav_link {
  display: block;
  padding: 1.125rem 0;
  font-size: 1.5rem;
  color: #000;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile_nav_links .nav_link:hover {
  color: #002a91;
}

.mobile_nav_links .nav_link:last-child {
  border-bottom: none;
}

/* ?? */
#footer {
  width: 100%;
}
#footer .footer {
  width: 100%;
}
#footer .footerTop {
  width: 100%;
  background-color: #002a91;
  padding: 5rem 0;
}
#footer .footerTop-content {
  width: 87.5rem;
  margin: 0 auto;
  text-align: center;
}
#footer .footerTop-content h3 {
  font-family: HarmonyOS Sans SC;
  font-weight: 900;
  font-size: 3.125rem;
  color: #ffffff;
  margin-bottom: 1.75rem;
}
#footer .footerTop-content p {
  font-family: HarmonyOS Sans SC;
  font-size: 2.875rem;
  margin: 0.5rem 0;
  font-weight: 900;
  color: #61cdff;
}
#footer .footer-qrcode {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1.75rem;
}
#footer .footer-qrcode img {
  width: 10rem;
  height: 10rem;
  background: #ffffff;
  border-radius: 0.5rem;
}
#footer .footer-qrcode span {
  font-family: HarmonyOS Sans SC;
  font-weight: 400;
  font-size: 1.25rem;
  color: #ffffff;
  margin-top: 0.9375rem;
}
#footer .footerBottom {
  width: 100%;
  background-color: #111111;
  padding: 2.5rem 0;
}
#footer .footerBottom-content {
  width: 87.5rem;
  margin: 0 auto;
}
#footer .footer-contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #333333;
  margin-bottom: 2rem;
}
#footer .footer-contact .footer-logo {
  width: 14rem;
  height: 2.8125rem;
  margin-right: auto;
}
#footer .contact-items-wrapper {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  gap: 6rem;
}
#footer .contact-items-container {
  display: flex;
  justify-content: flex-end;
  gap: 8.125rem;
  width: 100%;
}
#footer .contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
#footer .footerBottom-content {
  position: relative;
}
#footer .back-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

#footer .back-top img {
  width: 2.5rem;
  height: 2.5rem;
}
#footer .contact-item img {
  width: 3.125rem;
  height: 3.125rem;
}
#footer .contact-item div {
  display: flex;
  flex-direction: column;
}
#footer .contact-title {
  font-family: HarmonyOS Sans SC;
  font-weight: bold;
  font-size: 1.5rem;
  color: #ffffff;
}
#footer .contact-subtitle {
  font-family: HarmonyOS Sans SC;
  font-weight: 400;
  font-size: 1rem;
  color: #ffffff;
}

#footer .footer-info {
  display: flex;
  justify-content: space-between;
}
#footer .footer-left {
  width: 35%;
}
#footer .footer-logo {
  width: 10rem;
  height: 2.5rem;
}
#footer .footer-company {
  font-family: HarmonyOS Sans SC;
  font-weight: bold;
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
}
#footer .footer-address,
#footer .footer-phone,
#footer .footer-email,
#footer .footer-mailbox {
  font-family: HarmonyOS Sans SC;
  font-weight: bold;
  font-size: 1.125rem;
  color: #ffffff;
  margin-bottom: 1rem;
}
#footer .footer-address span,
#footer .footer-phone span,
#footer .footer-email span,
#footer .footer-mailbox span {
  font-weight: 400;
}
#footer .footer-center {
  display: flex;
  gap: 8rem;
}
#footer .footer-column {
  display: flex;
  flex-direction: column;
}
#footer .footer-column h4 {
  font-family: HarmonyOS Sans SC;
  font-weight: bold;
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
}
#footer .footer-column a {
  font-family: HarmonyOS Sans SC;
  font-weight: 400;
  font-size: 1.125rem;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 1rem;
}
#footer .footer-column a:hover {
  color: #5aafff;
}
#footer .footer-copyright {
  display: flex;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid #333333;
  margin-top: 2rem;
}
#footer .footer-copyright span {
  font-family: HarmonyOS Sans SC;
  font-weight: 400;
  font-size: 1rem;
  color: #ffffff;
}
#footer .footer-copyright a {
  color: #ffffff;
}

/*/* ??????? */
.custom-select {
  position: relative;
  width: 12rem;
  display: flex;
  align-items: center;
}

.select-trigger {
  background: #ffffff;
  border-radius: 4px;
  border: 1px solid #e6e6e6;
  width: 12rem;
  height: 2.375rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 1rem;
  position: relative;
  box-sizing: border-box;
  padding: 0 0.75rem;
  color: #333;
}
#footer .footer-plus-brand {
  display: flex;
  margin-bottom: 0.5rem;
}
.footer-plus-brand .youjian {
  width: 0.375rem;
  height: 0.625rem;
  position: absolute;
  right: 0.625rem;
}

.select-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 0 0 4px 4px;
  border-top: none;
  display: none;
  z-index: 1000;
}

.select-options.show {
  display: block;
}

.option {
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
  transition: background-color 0.2s;
}

.option:hover {
  background-color: #f5f5f5;
}

.option.selected {
  background-color: #e3f2fd;
  color: #2e71d9;
}

.mobile_header,
.mobile_header_tabber_content {
  display: none;
}
@media (max-width: 920px) {
  .mobile_header,
  .mobile_header_tabber_content {
    display: block;
  }
  .header {
    display: none;
  }
  #tabbar {
    display: none;
  }

  .mobile_header {
    width: 100%;
    position: relative;
  }
  .mobile_header_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5625rem 1.875rem;
  }

  .mobile_header_left img {
    height: 1.8rem;
    width: auto;
  }
  .mobile_header_right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
  .mobile_header_search,
  .mobile_header_nav {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mobile_header_search img,
  .mobile_header_nav img {
    width: 1.5rem;
    height: 1.5rem;
  }
  .mobile_header_search_box {
    display: none;
    padding: 10px 20px;
    background: #fff;
    border-top: 1px solid #ddd;
  }
  .mobile_header_search_box.show {
    display: block;
  }
  .mobile_header_search_box input {
    width: 100%;
    height: 2.5rem;
    border: 1px solid #ddd;
    border-radius: 1.25rem;
    padding: 0 1rem;
    font-size: 1rem;
  }
  .mobile_header_tabber_content {
    position: fixed;
    width: 100%;
    height: 100%;
    inset: 0;
    overflow: hidden;
    z-index: 9999;
    display: none;
  }
  .mobile_header_tabber_bg {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99999;
  }
  .mobile_header_tabbar {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    z-index: 999999;
    background: rgba(46, 113, 185);
  }
  .mobile_header_tabbar .headerLeft {
    margin: 1.25rem;
  }
  .mobile_header_tabbar .headerLeft img {
    width: 100%;
    object-fit: contain;
  }
  .mobile_header_tabbar .mobile_nav_ul {
    list-style-type: none;
    margin: 0;
    padding: 0 15px;
    width: 100%;
    background-color: transparent;
  }
  .mobile_header_tabbar .mobile_nav_ul .mobile_nav_li {
    width: 100%;
    text-align: left;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    padding: 12px 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    cursor: pointer;
    transition: color 0.2s ease;
  }
  .mobile_header_tabbar .mobile_nav_ul .mobile_nav_li:hover,
  .mobile_header_tabbar .mobile_nav_ul .mobile_nav_li.active {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
  }
  .mobile_header_tabbar .mobile_nav_ul .mobile_nav_li a {
    color: inherit;
    text-decoration: none;
    display: block;
  }
  .mobile_header_tabbar .mobile_nav_ul .mobile_nav_li .mobile_nav_one_li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  .mobile_header_tabbar .mobile_nav_ul .mobile_nav_li .arrow-icon {
    width: 7px;
    height: 10px;
    transition: transform 0.3s ease;
    filter: brightness(0) invert(1);
  }
  .mobile_header_tabbar .mobile_nav_ul .mobile_nav_li.expanded .arrow-icon {
    transform: rotate(90deg);
  }
  .mobile_header_tabbar .mobile_nav_ul .mobile_nav_two_li {
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 20px;
    /* margin-top: 5px;
    margin-bottom: 5px; */
  }
  .mobile_header_tabbar
    .mobile_nav_ul
    .mobile_nav_li.expanded
    .mobile_nav_two_li {
    max-height: 500px;
  }
  .mobile_header_tabbar .mobile_nav_ul .mobile_nav_two_li li {
    padding: 8px 10px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    border-top: none;
  }
  .mobile_header_tabbar .mobile_nav_ul .mobile_nav_two_li li:hover,
  .mobile_header_tabbar .mobile_nav_ul .mobile_nav_two_li li.active {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
  }
  .mobile_header_tabbar .mobile_nav_ul .mobile_nav_li:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .mobile_nav_two_li {
    display: none;
    padding-left: 0.5rem;
    list-style: none;
    margin: 0;
  }
  .mobile_nav_li.has-submenu.expanded .mobile_nav_two_li {
    display: block;
  }
  .mobile_nav_three div {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .mobile_nav_three ul {
    display: block;
    padding-left: 1rem;
    list-style: none;
    margin: 0;
  }

  .mobile_nav_three .arrow-three-icon {
    transition: transform 0.3s ease;
    width: 7px;
    height: 10px;
    filter: brightness(0) invert(1);
    transform: rotate(90deg);
  }
  .mobile_nav_three.third-expanded .arrow-three-icon {
    transform: rotate(0deg);
  }
  .nav_three_active_text {
    color: #2e71d9 !important;
  }
  .mobile_nav_li.active {
    color: #2e71d9;
  }
  .mobile_nav_two_li li.active {
    color: #2e71d9;
  }
  .mobile_nav_three ul li.active {
    color: #2e71d9;
  }
  #footer {
    overflow: hidden;
  }
  .footer {
    width: 100%;
  }
  #footer .footerOne {
    height: 18.25rem;
  }
  #footer .footerOne .first,
  .theer {
    width: 100%;
    padding: 0 10px;
  }
  #footer .footerOne .dier {
    width: 100%;
    padding: 0 10px;
    flex-wrap: wrap;
    row-gap: 10px;
  }
  .mobile_header_nav {
    /* filter: brightness(0) invert(1); */
    width: 2rem;
  }
  .mobile_header_nav img {
    width: 100%;
  }

  .custom-select,
  .select-trigger {
    width: 23rem;
  }

  @media (max-width: 850px) {
    .custom-select,
    .select-trigger {
      width: 18rem;
    }
  }
  @media (max-width: 680px) {
    .custom-select,
    .select-trigger {
      width: 15rem;
    }
  }

  @media (max-width: 480px) {
    /* ???? */
    /* .active{
  background: #1a5bbf !important;
} */
    .mobileShow {
      display: block;
    }

    .mobileShow1 {
      -webkit-animation: slide-left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
        both;
      animation: slide-left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    }
    .mobileHide {
      -webkit-animation: slide-right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
        both;
      animation: slide-right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    }
    @-webkit-keyframes slide-left {
      0% {
        -webkit-transform: translateX(100px);
        transform: translateX(100px);
      }
      100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
      }
    }
    @keyframes slide-left {
      0% {
        -webkit-transform: translateX(100px);
        transform: translateX(100px);
      }
      100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
      }
    }
    @-webkit-keyframes slide-right {
      0% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
      }
      100% {
        -webkit-transform: translateX(400px);
        transform: translateX(400px);
      }
    }
    @keyframes slide-right {
      0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
      }
      100% {
        -webkit-transform: translateX(400px);
        transform: translateX(400px);
      }
    }
  }
}

@media screen and (max-width: 1440px) {
  .header .headerContent {
    width: 100%;
    padding: 0 1.875rem;
  }
  #footer .footerTop-content,
  #footer .footerBottom-content {
    width: 100%;
    padding: 0 1.875rem;
  }
  #footer .back-top {
    width: 2.5rem;
    height: 2.5rem;
    position: fixed;
    bottom: 11rem;
    right: 5rem;
  }
}
@media screen and (max-width: 1200px) {
  .header .headerContent {
    width: 100%;
    padding: 0 1.875rem;
  }
  #footer .footerTop-content,
  #footer .footerBottom-content {
    width: 100%;
    padding: 0 1.875rem;
  }
  #footer .back-top {
    width: 2.5rem;
    height: 2.5rem;
    position: fixed;
    bottom: 11rem;
    right: 5rem;
  }
}

@media (max-width: 1024px) {
  .header .headerContent {
    width: 100%;
    padding: 0 1.875rem;
  }
  .headerNav {
    gap: 2rem;
  }
  #footer .back-top {
    width: 2.5rem;
    height: 2.5rem;
    position: fixed;
    bottom: 11rem;
    right: 5rem;
  }
}

@media (max-width: 920px) {
  .header {
    display: none;
  }
  #footer .footer-contact {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  #footer .footer-contact .footer-logo {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  #footer .back-top {
    width: 2.5rem;
    height: 2.5rem;
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
  }
  #footer .footer-info {
    flex-wrap: wrap;
    gap: 2rem;
  }
  #footer .footer-left {
    width: 100%;
  }
  #footer .footer-center {
    width: 100%;
    gap: 4rem;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .headerNav {
    gap: 1rem;
  }
  .headerNav a {
    font-size: 0.875rem;
  }
  #footer .footerTop-content {
    width: 100%;
    padding: 1.875rem;
  }
  #footer .footerTop-content h3 {
    font-size: 2rem;
  }
  #footer .footerTop-content p {
    font-size: 1.75rem;
  }
  #footer .footer-qrcode img {
    width: 10rem;
    height: 10rem;
  }
  #footer .contact-items-container {
    gap: 0;
    justify-content: space-between;
    width: 100%;
  }
  #footer .footer-contact {
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0 2rem 0;
    gap: 1rem;
  }
  #footer .footer-contact .footer-logo {
    width: auto;
    height: 1.8rem;
    margin-right: 0;
    margin-bottom: 0;
  }
  #footer .back-top {
    width: 2.5rem;
    height: 2.5rem;
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
  }
  #footer .contact-items-wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 1rem;
    margin-top: 1rem;
  }
  #footer .contact-item {
    text-align: left;
  }
  #footer .contact-item img {
    width: 3rem;
    height: 3rem;
  }
  #footer .contact-title {
    font-size: 1.5rem;
  }
  #footer .contact-subtitle {
    font-size: 0.8rem;
  }
  #footer .footer-center {
    gap: 1.5rem;
    width: 100%;
    flex-wrap: wrap;
  }
  #footer .footer-column {
    min-width: 6rem;
  }
  #footer .footer-copyright {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
}

@media (max-width: 560px) {
  #footer .footer-contact {
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0 2rem 0;
  }
  #footer .footer-contact .footer-logo {
    width: auto;
    height: 1.8rem;
    margin-right: 0;
    margin-bottom: 1.25rem;
  }
  #footer .back-top {
    width: 2.5rem;
    height: 2.5rem;
    position: fixed;
    bottom: 11rem;
    right: 1.5rem;
  }
  #footer .contact-items-wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 1rem;
    margin-top: 1rem;
  }
  #footer .contact-item {
    text-align: left;
  }
  #footer .footer-center {
    gap: 1.5rem;
  }
  #footer .footer-column {
    min-width: 6rem;
  }
}

@media (max-width: 480px) {
  #footer .contact-items-container {
    gap: 0;
    width: 100%;
    justify-content: space-between;
  }
  /* #footer .footerTop-content h3 {
    font-size: 1rem;
  }
  #footer .footerTop-content p {
    font-size: 0.875rem;
  }
  #footer .footer-qrcode img {
    width: 5rem;
    height: 5rem;
  }
  #footer .footer-company,
  #footer .footer-address,
  #footer .footer-phone,
  #footer .footer-email,
  #footer .footer-mailbox {
    font-size: 0.75rem;
  } */
}
@media (max-width: 375px) {
  #footer .footerTop-content h3 {
    font-size: 1.8rem;
    white-space: nowrap;
  }
  #footer .footerTop-content p {
    font-size: 1.7rem;
  }
  #footer .contact-title {
    font-size: 1.2rem;
    white-space: nowrap;
  }
}
