.breadcrumb-data .am-breadcrumb {
  padding: 20px 20px 20px 20px;
}
/* 主题*/
.main-search {
  width: 1200px;
  margin: 0 auto;
}
.main-search-head {
  display: flex;
  flex-direction: column;
  padding: 0 20px 0 20px;
}
.main-search-head .search-head-top {
  display: flex;
  width: 100%;
  height: 100%;
  gap: 1.8rem;
  padding-bottom: 16px;
}
.search-head-top .search-head-title {
  display: flex;
  flex-direction: column;
  padding: 24px;
  flex-grow: 1;
  background: white;
}
.search-head-top .search-head-title .search-head-title-top {
  display: flex;
  align-items: center;
  padding-bottom: 16px;
}
.search-head-top .search-head-title .search-head-title-main {
  padding:  14px 0;
  font-weight: bold;
  font-size: 14px;
}
.search-head-top .search-head-title .search-head-title-details p a {
  color: #0942c5;
  border-bottom: 1px solid #0942c5;;
}
.search-head-top .search-head-title .search-head-title-details p  {
 font-size: 12px;
}
.search-head-top .search-head-top-right {
  flex-shrink: 1;
  background: white;
  padding: 24px;
  flex-direction: column;
  justify-content: space-between;
}
.search-head-top .search-head-top-right h4 {
  font-weight: bold;
  white-space: nowrap;
  font-size: 18px;
}
.search-head-top .search-head-top-right .head-top-right-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 创建四列，每列宽度相等 */
}
.search-head-top .search-head-top-right .head-top-right-bottom a  {
  padding: 6px 16px;
  text-align: center;
}
.search-head-top .search-head-top-right .head-top-right-bottom a div:nth-of-type(1)  {
  width: 80px;
  height: 50px;
  position: relative;
}
.search-head-top .search-head-top-right .head-top-right-bottom div img  {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: contain;
  inset: 0;
  color: transparent;
}
.search-head-top .search-head-title .search-head-title-circuit {
  width: 60px;
  height: 60px;
}
.search-head-title-circuit img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.search-head-top .search-head-title h1 {
  font-size: 22px;
  font-weight: bold;
  padding-left: 16px;
}
.main-search-head .search-head-bottom {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 创建四列，每列宽度相等 */
  row-gap: 1rem;
  column-gap: 1.5rem;
}
.main-search-head .search-head-bottom a {
  display: flex;
  justify-content: space-between;
  background: white;
  padding: 6px 16px;
  border-radius: 6px;
  height: 43px;
  align-items: center;
  line-height: 16px;
  font-size: 12px;
}

.main-search-head .search-head-bottom a p:nth-of-type(1):hover {
  color: rgb(54 113 176 / var(--tw-text-opacity, 1));
}
.main-search-head .search-head-bottom a p:nth-of-type(2) {
  color: rgb(54 113 176 / var(--tw-text-opacity, 1));
}
.rxplore h2 {
  padding: 20px 0;
  line-height: 30px;
  font-size: 18px;
  font-weight: 400;
  text-align: center;
}
/* 筛选器区域 */
.main-search .main-search-category {
  margin-bottom: 12px;
  padding: 0 20px;
}

/* 顶部工具栏 */
.filter-toolbar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-toolbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-toggle-btn,
.filter-layout-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
  color: #333;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.filter-toggle-btn:hover,
.filter-layout-btn:hover {
  background: #f0f0f0;
}

.filter-toggle-btn i,
.filter-layout-btn i {
  font-size: 14px;
}

/* 筛选面板容器 */
.filter-panels-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.filter-panels-wrapper.collapsed {
  display: none;
}

/* 单个筛选面板 */
.filter-panel {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 320px;
}

.filter-panel-header {
  background: #005CA1;
  color: #fff;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  flex-shrink: 0;
}

.filter-panel-body {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  flex: 1;
}

.filter-search-box {
  padding: 8px 10px;
  flex-shrink: 0;
}

.filter-search-input {
  width: 100%;
  padding: 6px 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 12px;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s;
}

.filter-search-input:focus {
  border-color: #005CA1;
}

.filter-items-list {
  overflow-y: auto;
  flex: 1;
  padding: 4px 0;
}

.filter-items-list::-webkit-scrollbar {
  width: 5px;
}

.filter-items-list::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}

.filter-item {
  padding: 5px 14px;
  font-size: 12px;
  line-height: 1.6;
  transition: background 0.15s;
}

.filter-item a {
  color: #333;
  text-decoration: none;
  display: block;
}

.filter-item a:hover {
  color: #005CA1;
}

.filter-item-count {
  color: #999;
  font-size: 11px;
}

.filter-item-active {
  background: #005CA1;
}

.filter-item-active a {
  color: #fff;
  font-weight: 500;
}

.filter-item-active .filter-item-count {
  color: rgba(255, 255, 255, 0.8);
}

.filter-item-active a:hover {
  color: #fff;
}

/* 隐藏项 */
.filter-item.hide {
  display: none;
}

/* 清除筛选器区域 */
.clear-filters {
  padding: 8px 0 12px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.clear-all-btn {
  border: none;
  padding: 0;
  background: none;
}

.clear-all-btn a {
  color: #005CA1;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid #005CA1;
  transition: color 0.2s;
}

.clear-all-btn a:hover {
  color: #0d47a1;
  border-bottom-color: #0d47a1;
}

.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.active-filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e3f2fd;
  color: #1565C0;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
}

.active-filter-tag span {
  white-space: nowrap;
}

.active-filter-tag .remove-filter {
  color: #1565C0;
  font-size: 14px;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.active-filter-tag .remove-filter:hover {
  color: #0d47a1;
}

/* 结果*/
.main-search .main-search-result {
  padding: 0 20px;
}
.main-search .main-search-result .main-search-result-title {
  font-size: 16px;
  font-weight: 600;
  padding-bottom: 10px;
}
.main-search .main-search-result .main-search-result-content {
  display: flex;
  justify-content: space-between;
  background: white;
  gap: 1.5rem;
  height: 68px;
  margin-bottom: 16px;
}
.main-search-result-content .main-search-result-content-left {
  display: flex;
  flex-grow: 1;
  padding: 8px 16px;
  gap: 1.5rem;
}
.left-ad {
  display: flex;
  gap: 1rem;
}
.left-ad img {
  width: 150px;
  height: 48px;
  object-fit: contain;
}
.left-ad span {
  width: 24px;
  height: 16px;
  margin-left: 4px;
  font-size: .75rem;
  border-radius: .125rem;
  --tw-bg-opacity: 1;
  background-color: rgb(226 175 29 / var(--tw-bg-opacity, 1));
  text-align: center;
  color: white;
  line-height: 16px;
}
.left-vertical-line {
  background: #E0E0E0;
  width: 1px;
  height: 100%;
}
.left-mouser {
  display: flex;
  flex-direction: column;
  justify-content: center;
  white-space: nowrap;
  font-size: 12px;
}
.left-mouser a {
  display: block;
  width: 100%;
  font-weight: bold;
  font-size: 16px;
}
.left-stock {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 12.9px;
}
.left-price {
  display: flex;
  gap: 1rem;
}
.left-price .left-price-font {
  font-size: 12.9px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.left-price .left-price-font-medium {
  display: flex;
  --tw-text-opacity: 1;
  align-items: center;
  gap: .5rem;
  line-height: 1.4;
  font-weight: 500;
  color: rgb(13 82 161 / var(--tw-text-opacity, 1));
}
.left-price .left-price-font-medium .left-horizontal-line {
  margin: 0 5px;
  height: 1px;
  --tw-text-opacity: 1;
  width: 2rem;
  background: rgb(13 82 161 / var(--tw-text-opacity, 1));
}
.left-price .left-price-font-medium .price-text {
  text-align: right;
  width: 4rem;
}
.left-price .left-price-font-medium a {
  flex-grow: 1;
  --tw-text-opacity: 1;
  color: rgb(13 82 161 / var(--tw-text-opacity, 1));
}
.left-star {
  width: 18px;
}
.main-search-result-content .left-star div {
  display: flex;
  align-items: center;
  height: 100%;
}
.main-search-result-content .left-star img {
  width: 100%;
}
.left-visit-button button {
  --tw-bg-opacity: 1;
  padding: 12px 20px;
  color: white;
  font-size: 16px;
  border-radius: .25rem;
  border: none;
  line-height: 1.4;
  white-space: nowrap;
  background-color: rgb(54 113 176 / var(--tw-bg-opacity, 1));
}
.main-search-result-content .main-search-result-content-right {
  flex-shrink: 1;
  width: 260px;
  overflow: hidden;
  position: relative;
}
.main-search-result-content .main-search-result-content-right div {
  display: flex;
  align-items: end;
  height: 100%;
}
.table-table .introduction-top-left-img {
  width: 78px;
  height: 78px;
}
.main-search-result-content .main-search-result-content-right img {
  width: 100%;
  height: 60%;
}
/*表格*/
.main-search .main-search-table {
  /* padding: 0 20px; */
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-right-end {
  justify-content: end;
}

.text-right-green  {
  color: rgb(46 101 77 / var(--tw-text-opacity, 1));
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  border-bottom: 1px solid;
  border-color: rgb(46 101 77 / var(--tw-text-opacity, 1));
}

.text-right-grey  {
  color: #777;
}

.text-right-border {
  border-right: 1px solid;
  border-color: rgb(224 224 224 / var(--tw-border-opacity, 1));
}

.font-red{color: red !important;}

/* 商品列表表格 */
.product-table-wrapper, .page-wrapper {
  padding: 0 20px;
  overflow-x: auto;
}

.product-card-group {
  margin-bottom: 16px;
  border-radius: 8px;
  overflow: hidden;
  background: white;
  box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.12);
}

.product-card-group:last-child {
  margin-bottom: 0;
}

.product-table {
  width: 100%;
  min-width: 900px;
  font-size: 12px;
  table-layout: fixed;
  border-collapse: collapse;  /* 关键：让边框合并 */
  border: hidden;             /* 关键：隐藏表格自身的外边框 */
}

.product-table thead th {
  background: #0E90DB;
  color: #fff;
  font-weight: 600;
  padding: 10px 8px;
  text-align: left;
  font-size: 11px;
  line-height: 1.4;
  border: 1px solid #1e8e3a;
  white-space: nowrap;
}



.product-table tbody tr {
  transition: background-color 0.15s;
}

.product-table tbody tr:hover {
  background-color: #f5f9ff;
}

.product-table tbody td {
  padding: 8px;
  vertical-align: top;
  border: 1px solid #e0e0e0;
}



/* Checkbox column */
.col-checkbox {
  width: 30px !important;
  max-width: 30px !important;
  min-width: 30px !important;
  text-align: center;
  padding: 8px 4px !important;
  vertical-align: middle !important;
  overflow: hidden;
}

.col-checkbox input[type="checkbox"] {
  cursor: pointer;
  width: 14px;
  height: 14px;
  vertical-align: middle;
  position: initial;
}

/* Mfr Part column */
.col-part {
  width: 130px !important;
  max-width: 130px !important;
  min-width: 130px !important;
  overflow: hidden;
}

.part-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 130px;
  overflow: hidden;
}

.part-left {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow: hidden;
}

.part-image {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.part-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* 产品图标网格 */
.product-icon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  flex-shrink: 0;
}

.product-icon-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  cursor: pointer;
  transition: transform 0.15s;
}

.product-icon-item:hover {
  /* transform: scale(1.15); */
}

.product-icon-item .icon-img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.product-icon-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* 收藏切换 */
.favorite-toggle {
  cursor: pointer;
  text-decoration: none;
}

.favorite-toggle.is-collected .icon-img {
  /* filter: drop-shadow(0 0 2px rgba(255, 165, 0, 0.5)); */
}

.favorite-toggle:hover .icon-img {
  /* transform: scale(1.2); */
}

.part-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.datasheet-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #4A5357;
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
}

.datasheet-link:hover {
  text-decoration: underline;
}

.part-number {
  color: #333;
  font-weight: 600;
  font-size: 12px;
  text-decoration: none;
  display: block;
  max-width: 120px;
}

.part-number:hover {
  color: #0066cc;
  text-decoration: underline;
}

.part-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
  margin-top: 4px;
  font-size: 10px;
  overflow: hidden;
}

.part-meta span {
  white-space: nowrap;
  text-overflow: ellipsis;
  display: inline-block;
  /* max-width: 100%; */
}

.part-meta .meta-name {
  font-style: normal;
  color: #222;
  display: inline-block;
  width: 80px;
  flex-shrink: 0;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.part-meta .meta-value {
  font-style: normal;
  color: #66AAD8;
  display: inline-block;
  min-width: 40px;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Description column */
.col-desc {
  width: 150px !important;
  max-width: 150px !important;
  min-width: 150px !important;
  overflow: hidden;
}

.desc-content {
  
}

.desc-content p {
  margin: 0;
  font-size: 11px;
  color: #555;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.spec-list {
  margin-top: 4px;
}

.spec-item {
  font-size: 10px;
  color: #666;
  line-height: 1.5;
}

.spec-name {
  color: #333;
  font-weight: 500;
}

/* Quantity Available column */
.col-qty {
  width: 85px !important;
  max-width: 85px !important;
  min-width: 85px !important;
  text-align: center;
  overflow: hidden;
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 4px;
}

.product-table .qty-control .qty-input {
  width: 42px;
  height: 23px;
  border: 1px solid #ccc;
  border-radius: 3px 0 0 3px;
  text-align: center;
  font-size: 11px;
  padding: 0 2px;
  flex-shrink: 0;
}

.btn-add {
  background: #005CA1;
  color: #fff;
  border: none;
  border-radius: 0 3px 3px 0;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-add:hover {
  background: #005CA1;
}

.est-price {
  font-size: 10px;
  color: #666;
  white-space: nowrap;
  text-align: left;
}

.est-price strong {
  color: #2D98EC;
}

/* Price column */
.col-price {
  width: 110px !important;
  max-width: 110px !important;
  min-width: 110px !important;
  overflow: hidden;
}

.price-tiers {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.price-tier {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  gap: 8px;
}

.tier-qty {
  color: #333;
  font-weight: 500;
}

.tier-price {
  color: #333;
  white-space: nowrap;
}

/* Package / Case column */
.col-package {
  width: 80px !important;
  max-width: 80px !important;
  min-width: 80px !important;
  font-size: 11px;
  color: #555;
  overflow: hidden;
}

/* Tape package column */
.col-tape {
  width: 90px !important;
  max-width: 90px !important;
  min-width: 90px !important;
  font-size: 10px;
  color: #555;
  line-height: 1.4;
  overflow: hidden;
}

/* Qty min/max column */
.col-qty-min {
  width: 90px !important;
  max-width: 90px !important;
  min-width: 90px !important;
  font-size: 10px;
  color: #555;
  overflow: hidden;
}

.qty-range {
  display: flex;
  flex-direction: column;
  gap: 1px;
  overflow: hidden;
}

/* Product Status column */
.col-status {
  width: 70px !important;
  max-width: 70px !important;
  min-width: 70px !important;
  text-align: left;
  overflow: hidden;
}

.btn-buy {
  background: #005CA1;
  color: #fff;
  border: none;
  border-radius: 0 3px 3px 0;
  padding: 4px 16px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-buy:hover {
  background: #005CA1;
}

/* Updated column */
.col-updated {
  width: 60px !important;
  max-width: 60px !important;
  min-width: 60px !important;
  font-size: 11px;
  color: #555;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
}

/* Title row inside tbody */
.title-row th {
  background: #005CA1;
  color: #fff;
  font-weight: 600;
  padding: 10px 8px;
  text-align: left;
  font-size: 11px;
  line-height: 1.4;
  border: 1px solid #999;
  white-space: nowrap;
}


.title-row-1 th{
  background: #005CA1;
}

.title-row-2 th{
  background: #23AF4C !important;
}

.title-row-3 th{
  background: #005CA1 !important;
}

.title-row-4 th{
  background: #FE802B !important;
}

/* 供应商类型标签栏 */
.supplier-type-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #f5f5f5;
  border-radius: 6px;
  margin-bottom: 12px;
}

.supplier-type-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 4px;
  transition: background 0.2s;
  position: relative;
}



.supplier-type-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 3px;
  color: white;
  font-size: 12px;
  flex-shrink: 0;
}

.supplier-type-label {
  font-size: 13px;
  font-weight: 500;
  color: #333;
  white-space: nowrap;
}

.supplier-type-tip-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  color: #0F91DB;
  font-size: 10px;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  font-size: 20px;
}

.supplier-type-tip-trigger:hover {
  background: #fff;
}

.supplier-type-tip {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 100;
  min-width: 250px;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 10px 14px;
  font-size: 12px;
  color: #555;
  line-height: 1.5;
}

.supplier-type-item:last-child:hover .supplier-type-tip {
  display: block;
}

.supplier-type-tip:hover {
  display: block;
}

.supplier-type-tip::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 12px;
  width: 10px;
  height: 10px;
  background: white;
  border-left: 1px solid #e0e0e0;
  border-top: 1px solid #e0e0e0;
  transform: rotate(45deg);
}

/* 表格展开/折叠按钮容器 */
.table-toggle-wrapper {
    padding: 8px 12px;
    text-align: left;
    background: white;
    border-top: 1px solid #e0e0e0;
}

.product-card-group .table-toggle-btn {
    background: #fff;
    color: rgb(13 82 161 / var(--tw-text-opacity, 1));
    /* border: 1px solid rgb(13 82 161 / var(--tw-text-opacity, 1)); */
    border-radius: 6px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
}

.table-toggle-btn:hover {
    color: rgb(13 82 161 / var(--tw-text-opacity, 1));
}

.table-toggle-icon {
    transition: transform 0.3s ease;
    font-size: 14px;
}

/* 隐藏行的样式 */
.product-table .row-hidden {
    display: none;
}

/* 行展开/折叠过渡效果 */
.product-table tbody tr:not(.title-row):not(.row-hidden) {
    transition: opacity 0.2s ease;
}

/* 产品品牌头部 */
.product-brand-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 16px;
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    overflow: visible;
}

.brand-info {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 280px;
}

.brand-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.brand-name {
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.supplier-types {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    justify-content: center;
}

.supplier-type-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
}

.supplier-type-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    flex-shrink: 0;
}

.supplier-type-icon i {
    color: white;
    font-size: 14px;
}

.supplier-type-label {
    font-size: 13px;
    color: #333;
    white-space: nowrap;
}

.supplier-type-tip-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #f0f0f0;
    cursor: pointer;
    flex-shrink: 0;
}

.supplier-type-tip-trigger i {
    font-size: 15px;
    color: #2196F3;
}

.supplier-type-tip {
    display: none;
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 100;
    min-width: 200px;
}

.supplier-type-item:hover .supplier-type-tip {
    display: block;
}

.supplier-type-tip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: white;
    border-right: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    transform: translateX(-50%) rotate(45deg);
}

.supplier-type-tip-content {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

.request-quote-btn {
    display: inline-flex;
    align-items: center;
    background: #e8f5e9;
    color: #4CAF50;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.request-quote-btn:hover {
    background: #c8e6c9;
}

.request-quote-btn i {
    font-size: 14px;
}

.request-quote-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.request-quote-tip-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #f0f0f0;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.2s ease;
}



.request-quote-tip-trigger i {
    font-size: 18px;
    color: #2196F3;
}

.request-quote-tip-trigger-2 {
  background: #fff;
  border: 1px solid #999;
  color: #999;
  border-radius: 50%;
  width: 18px;
  height: 18px;
}

.request-quote-tip {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 100;
    min-width: 200px;
    max-width: 300px;
}

.request-quote-tip-trigger:hover + .request-quote-tip,
.request-quote-tip:hover {
    display: block;
}

.request-quote-tip::after {
    content: '';
    position: absolute;
    bottom: 100%;
    right: 8px;
    width: 10px;
    height: 10px;
    background: white;
    border-left: 1px solid #e0e0e0;
    border-top: 1px solid #e0e0e0;
    transform: rotate(45deg);
}

.request-quote-tip-content {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

/* 响应式样式 */
@media screen and (max-width: 1400px) {
  .filter-panels-wrapper {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media screen and (max-width: 1200px) {
  .filter-panels-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .main-search {
    width: 100%;
    padding: 0 10px;
  }
}

@media screen and (max-width: 992px) {
  .filter-panels-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .filter-toolbar {
    justify-content: flex-start;
  }
  
  .filter-toolbar-right {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 768px) {
  .filter-panels-wrapper {
    grid-template-columns: 1fr;
  }
  
  .filter-panel {
    max-height: 250px;
  }
  
  .filter-toggle-btn,
  .filter-layout-btn {
    padding: 5px 10px;
    font-size: 12px;
  }
}

@media screen and (max-width: 480px) {
  .filter-toolbar-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}
