/* Start custom CSS *//* 容器样式 */
  .container {
    width: 100%;
  }

  .tabs-container * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  /* Tabs切换栏 */
  .tabs-container {
    width: 100%;
    height: 40px;
    background-color: #ffffff;
    display: flex;
    z-index: 3;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
  }

  .tab {
    flex: 1 1 auto;
    padding: 0 10px;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 300;
    border-bottom: 1px solid #ccc;
  }

  .tab.active {
    font-weight: 600;
    border-bottom: 1px solid #2A1911;
  }

  /* Swiper内容区域 */
  .swiper-container {
    overflow: hidden;
    width: 100%;
    height: auto;
  }
  
  .swiper-wrapper {
    display: flex;
    gap: 0; /* 兼容老版本 Swiper */
  }

  /* 隐藏滚动条 */
  .tabs-container::-webkit-scrollbar {
    display: none;
  }

  .tabs-container {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
  }/* End custom CSS */