.tabs-container {
    width: 100%;
    background-color: #f9fafb;
}

.tab-content{
  max-width: 1400px;
  margin: 0 auto;
}

.tabs-header-new {
  display: flex;
  justify-content: end;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  padding-bottom: 15px;
  /* border-bottom: 1px solid #e5e6eb; */
  padding: 15px 0;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #666;
  flex-shrink: 0;
}

.breadcrumb-item {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-item.active {
  color: #4a6fa5;
  font-weight: 600;
  cursor: default;
}

.breadcrumb-item:hover:not(.active) {
  color: #4a6fa5;
}

.breadcrumb-separator {
  margin: 0 8px;
  font-size: 12px;
  color: #ccc;
}

.tabs-nav-pc {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: nowrap;
  overflow: hidden;
  position: relative;
}

.tabs-tab-pc {
  gap: 8px;
  padding: 8px 18px;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  background-color: #f5f7fa;
  border-radius: 4px 4px 0 0;
  border: 1px solid transparent;
  white-space: nowrap;
  display: inline-block;
  padding: 10px 20px;
  cursor: pointer;
  text-decoration: none;
}

.tabs-tab-pc .tabs-tab-icon {
  font-size: 14px;
  color: #888;
  width: 16px;
  text-align: center;
}

.tabs-tab-pc:hover:not(.more-tab):not(.active) {
  background-color: #e8edf3;
  color: #4a6fa5;
}

.tabs-tab-pc:hover:not(.more-tab) .tabs-tab-icon {
  color: #4a6fa5;
}

.tabs-tab-pc.active {
  background-color: white;
  font-weight: 600;
  border-color: #e5e6eb #e5e6eb white #e5e6eb;
  margin-bottom: -1px;
  color: #1677ff; 
  border-bottom: 2px solid #1677ff;
}

.tabs-tab-pc.active .tabs-tab-icon {
  color: #4a6fa5;
}

.tabs-content{
  width: 1400px;
  margin:  0 auto;
}

.tabs-content-new {
  background-color: white;
  border-radius: 8px;
  /* box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05); */
  /* min-height: 400px; */
}

.tabs-panel {
  display: none;
  animation: fadeIn 0.3s ease;
}

.tabs-panel.active {
  display: block;
}

.empty-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 300px;
  color: #999;
  font-size: 16px;
  gap: 15px;
}

.empty-placeholder i {
  font-size: 40px;
  color: #ddd;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tabs-content-new {
  display: none;
  padding: 20px 0;
}

.tabs-content-new.active {
  display: block;
}
