.header-menu {
    display: none;
}
.header-menu-icon {
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
}
.header-menu-mark {
    display: none;
    position: absolute;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100vw;
    height: 0;
    transition: all  linear .3s;
    background: rgba(23, 25, 29, 0.95);
}
.header-menu-mark-close {
    width: 94%;
    height: 5.3%;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-size: 24px;
    color: #fff;

}
.header-menu-mark-content {
    width: 100%;
    margin: 0 auto;
    color: #fff;
    font-size: 12px;
    height: calc(100% - 100px);
}
.header-menu-mark-list {
    padding: 0 0 0 30px;
    width: calc(100% - 30px);
    height: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
}
.header-menu-mark-content ul {
    width: 100%;
    list-style: none;
    margin: 0;
}
.header-menu-mark-item {
    width: 100%;
    overflow: hidden;
    color: #fff;
    font-size: 13px;
    line-height: 46px;
}
.header-menu-mark-item > a {
    width: calc(100% - 50px);
    float: left;
    display: block;
    text-align: left;
    color: inherit;
    text-decoration: none;
    font-size: inherit;
    line-height: inherit;
    height: inherit;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: tahoma, arial, "Microsoft YaHei";
}
.header-menu-mark-item-active > a {
    border-bottom: 1px solid #fff;
}

.sidebar-mobile {
    display: none;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    z-index: 900;
}


  /* 底部区域 */
  footer {
      /* background: #b30000; */
      background-image: url('../img/footer.png');
      color: #fff;
      padding: 50px 0 20px;
      /* margin-top: 80px; */
      position: relative;
  }

  footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: #ffd700;
  }

  .footer-wrapper {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      gap: 40px;
  }

  .footer-info {
      flex: 1;
      min-width: 300px;
  }

  .footer-info p {
      margin-bottom: 12px;
      font-size: 14px;
      /* display: flex; */
      align-items: center;
      gap: 10px;
      text-align: center;
  }

  .footer-info p i {
      color: #ffd700;
      width: 20px;
      text-align: center;
  }

  .footer-qr {
    position: absolute;
    left: 80%;
    transform: translateX(calc(-100% - 1rem));
    display: flex;
    gap: 1rem;
  
  }

  .footer-qr-item {
      text-align: center;
  }

  .footer-qr img {
      width: 70px;
      border-radius: 8px;
      margin-top: 15px;
      border: 3px solid #fff;
      transition: transform 0.3s ease;
  }

  .footer-qr img:hover {
      transform: scale(1.05);
  }

  .footer-qr span {
      font-size: 14px;
      display: block;
  }

  .footer-copyright {
      text-align: center;
      margin-top: 40px;
      font-size: 12px;
      color: #f2f2f2;
      padding-top: 20px;
      border-top: 1px solid rgba(255,255,255,0.1);
  }

@media (max-width: 500px) {
      .header-top {
        width: 95%;
        height: 83px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 0 auto;
      }
      .header-menu {
        display: block;
      }
      .header-menu-mark {
        display: block;
    }
    .sidebar-mobile {
        display: block;
    }
    .banner-img {
        object-fit: fill;
      }
      .banner {
        height: 200px;
      }
      .banner-img, .banner-content {
        height: 200px;
      }
      .header-logo {
        width: 138px;
        height: 38px;
        margin: 0;
      }
      .header-phone {
        width: 0;
        display: none;
      }
      .nav-bar {
        display: none;
      }
      .sidebar {
        display: none;
      }
      .store-swiper-wrapper {
        height: 20% !important;
      }
      .values-container {
        gap: 15px;
        flex-wrap: wrap;
      }
      .store-img {
        height: 120px;
      }
      .footer-qr {
        display: none;
      }
      .footer {
        padding: 0px 0 15px;
      }
      
}