/* Shared semantic components for 招投标页面 (px units) */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  /* font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif; */
  background-color: #f3f4f6;
  line-height: 1.6;
  color: #111827;
  padding-top: 110px;
}

.crumb-wrap {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
  background: #fff;
  border-bottom: 1px solid #ececec;
}

.crumb {
  height: 46px;
  display: flex;
  align-items: center;
  color: #69707e;
  font-size: 14px;
  margin-left: -8px;
}

.crumb a {
  padding: 0 8px;
}

.crumb a:hover {
  color: #2e67d8;
}


/* Pagination */
/* .pagination-btn {
  padding: 0.5rem 0.75rem;
  border: 1px solid #e5e7eb;
  background: white;
  color: #374151;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s;
}

.pagination-btn:hover {
  background: #f3f4f6;
}

.pagination-btn.active {
  background: #2563eb;
  color: white;
  border-color: #2563eb;
}

.pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
} */

/* Navigation */
/* .navbar {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 50;
}

.navbar__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.navbar__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}

.navbar__brand {
  display: flex;
  align-items: center;
}

.navbar__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.navbar__logo-mark {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}

.navbar__title {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
}

.navbar__links {
  display: flex;
  gap: 32px;
  margin-left: 40px;
}

.navbar__link {
  color: #6b7280;
  font-weight: 500;
  padding-top: 4px;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.navbar__link--active {
  color: #2563eb;
  border-bottom-color: #2563eb;
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 16px;
} */

.btn-icon {
  background: none;
  border: none;
  color: #6b7280;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.btn-primary {
  background: #2563eb;
  color: #ffffff;
  padding: 12px 32px;
  border-radius: 12px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-reset {
  background: #f9fafb;
  color: #2563eb;
  padding: 12px 32px;
  border-radius: 12px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary--sm {
  padding: 8px 16px;
  border-radius: 8px;
}

.btn-ghost {
  background: none;
  border: none;
  color: #2563eb;
  cursor: pointer;
}

.btn-ghost:hover {
  color: #1d4ed8;
}

/* Icons */
.icon-20 {
  width: 20px;
  height: 20px;
}

.icon-24 {
  width: 24px;
  height: 24px;
}

.icon-16 {
  width: 16px;
  height: 16px;
}

.icon-muted {
  color: #9ca3af;
}

.icon-inherit {
  color: inherit;
}

/* Layout wrappers */
.page-section {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.section-inner {
  width: 1280px;
  margin: 0 auto;
  padding: 24px 32px;
}

.section-inner--compact {
  padding: 16px 32px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page-title {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
}

/* Search area */
.search-row {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.search-input {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 12px 16px;
  background: #f3f4f6;
  border-radius: 12px;
}

.search-icon {
  width: 20px;
  height: 20px;
  color: #9ca3af;
  margin-right: 12px;
  flex-shrink: 0;
}

.search-field {
  background: transparent;
  width: 100%;
  outline: none;
  border: none;
  font-size: 15px;
  color: #111827;
}

/* Filter panel */
.filter-panel {
  background: #f9fafb;
  border-radius: 12px;
  padding: 20px 24px;
  border: 1px solid #e5e7eb;
}

.filter-row {
  display: flex;
  align-items: flex-start;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid #e5e7eb;
}

.filter-row:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.filter-label {
  flex-shrink: 0;
  width: 80px;
  padding-top: 2px;
  color: #6b7280;
  font-size: 13px;
  font-weight: 600;
}

.filter-options {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  column-gap: 28px;
  row-gap: 6px;
}

.filter-options--compact {
  column-gap: 20px;
  row-gap: 6px;
}

.filter-options--dense {
  column-gap: 20px;
  row-gap: 6px;
}

.filter-options .custom_time {
  position: relative;
}

.filter-options #daterange {
  position: absolute;
  left: 0;
  top: 0;
  width: 260px;
  height: 26px;
  padding: 0 4px;
  background-color: #fff;
  border: 1px solid #dfe2e8;
  border-radius: 4px;
  font-size: 14px;
  color: #303133;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.filter-options #daterange input {
  width: 112px;
  height: 100%;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: none;
  text-align: center;
  outline: none;
  cursor: pointer;
}

.filter-options .custom-money-range {
  display: inline-flex;
  align-items: center;
  height: 26px;
  border: 1px solid #dfe2e8;
  border-radius: 4px;
  font-size: 14px;
  color: #303133;
  overflow: hidden;
}

.filter-options .custom-money-range input {
  width: 120px;
  height: 100%;
  border: none;
  padding: 0 20px;
}

.filter-options .custom-money-range input:focus {
  outline: none;
}

.filter-options .custom-money-range .lins {
  color: #303133;
  font-size: 14px;
}

.filter-option-checkbox,
.filter-option-checkbox a {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
}

.filter-options .custom-money-range .search_money_btn {
  height: 24px;
  cursor: pointer;
  background-color: #f5f7fa;
  border-left: 1px solid #dcdfe6;
  border-radius: 2px;
  color: #909399;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
}

.filter-option-checkbox a svg {
  margin-right: 10px;
}

.filter-link {
  color: #4b5563;
  font-size: 14px;
  text-decoration: none;
  padding: 2px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
  display: inline-flex;
  align-items: center;
}

.filter-link.active {
  color: #2563eb;
  font-weight: 600;
  border-bottom-color: #2563eb;
}

.filter-link--primary {
  color: #2563eb;
}

.filter-link:not(.filter-link-disabled):hover {
  color: #2563eb;
  border-bottom-color: #93c5fd;
}

.filter-link-disabled {
  color: #ddd;
  position: relative;
}

.filter-link-disabled:hover {
  cursor: pointer;
}

.filter-link-disabled:hover::after {
  content: "敬请期待";
  position: absolute;
  left: 50px;
  top: 26px;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  color: #eee;
  white-space: nowrap;
  background-color: #666;
  padding: 0 5px;
  border-radius: 3px;
  z-index: 99;
  font-size: 12px;
  line-height: 22px;
  opacity: 0.7;
}

.filter-count {
  margin-left: 6px;
  font-size: 12px;
  color: #9ca3af;
}

.filter-dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  display: inline-block;
  margin-right: 6px;
}

.filter-dot--blue {
  background: #3b82f6;
}

.filter-dot--amber {
  background: #f59e0b;
}

.filter-dot--pink {
  background: #cb185d;
}

.filter-dot--green {
  background: #15803d;
}


/* Stats */
.result-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 12px;
  padding-left: 8px;
}

/* .result-text {
  font-size: 14px;
  color: #6b7280;
} */

.result-count {
  font-size: 14px;
  color: #111827;
  font-weight: 600;
}

/* Cards / tables */
.card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
  overflow: hidden;
}

.card__body {
  overflow-x: auto;
}

/* .card__footer {
  padding: 16px 24px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: space-between;
} */

.text-subtle {
  font-size: 14px;
  color: #6b7280;
}

.pagination-ellipsis {
  color: #9ca3af;
}

/* Tags & badges */
.tag {
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tag-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.tag-label {
  font-size: 12px;
  color: #9ca3af;
}

.tag--fj {
  background: #dbeafe;
  color: #1d4ed8;
}

.tag--sz {
  background: #dcfce7;
  color: #15803d;
}

.tag--teal {
  background: #cffafe;
  color: #0e749e;
}

.tag--mh {
  background: #f3e8ff;
  color: #7c3aed;
}

.tag--lavender {
  background: #f3e8ff;
  color: #b55bf0;
}

.tag--tl {
  background: #fce7f3;
  color: #be185d;
}

.tag--gl {
  background: #ffedd5;
  color: #c2410c;
}
.tag--default {
  background: #F4F7FB;
  color: #334E6A;
}

.tag--magenta {
  background: #ffedd5;
  color: #c25f7a;
}

.tag--sl {
  background: #cffafe;
  color: #0e7490;
}

.location-row {
  display: flex;
  align-items: center;
  color: #111827;
}

.location-city {
  font-size: 12px;
  color: #6b7280;
  margin-top: 4px;
}

.location-icon {
  width: 16px;
  height: 16px;
  color: #9ca3af;
  margin-right: 4px;
  flex-shrink: 0;
}

.detail-btn {
  color: #2563eb;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: color 0.2s ease;
}

.detail-btn:hover {
  color: #1d4ed8;
}

.material-label {
  color: #6b7280;
  width: 48px;
  display: inline-block;
}

.material-val {
  color: #6b7280;
  display: inline-block;
}

.material-values {
  display: flex;
  align-items: center;
  font-size: 14px;
}

.material-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.stack-4 {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.text-body {
  color: #111827;
}

.text-strong-medium {
  color: #111827;
  /* font-weight: 500; */
  font-size: 16px;
}

.text-strong-sm {
  color: #4b5563;
  font-size: 14px;
}

.text-strong {
  color: #111827;
  font-size: 14px;
}

.text-primary {
  color: #2563eb;
}

.text-meta {
  font-size: 12px;
  color: #6b7280;
  margin-top: 4px;
}

/* .text-note {
  font-size: 12px;
  color: #9ca3af;
} */

.text-note--ml {
  margin-left: 6px;
}

.value-green {
  font-size: 18px;
  font-weight: 700;
  color: #16a34a;
}

.value-blue {
  font-size: 18px;
  font-weight: 700;
  color: #2563eb;
}

.text-clip-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.text-clip-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Helper classes */
.text-disabled {
  color: #999999;
}

/* .gap-8 {
  gap: 8px;
} */

.gap-32 {
  gap: 32px;
}

.mt-4 {
  margin-top: 4px;
}

.mt-8 {
  margin-top: 8px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-24 {
  margin-top: 24px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-24 {
  margin-bottom: 24px;
}

.pt-8 {
  padding-top: 8px;
}

.pt-12 {
  padding-top: 12px;
}

.pb-12 {
  padding-bottom: 12px;
}

.pl-24 {
  padding-left: 24px;
}

.pl-32 {
  padding-left: 32px;
}

.pr-24 {
  padding-right: 24px;
}

.pr-32 {
  padding-right: 32px;
}

.ml-6 {
  margin-left: 6px;
}

.w-20 {
  width: 20%;
}

.w-30 {
  width: 30%;
}

.w-28 {
  width: 28%;
}

.w-26 {
  width: 26%;
}

.w-24 {
  width: 24%;
}
.w-16 {
  width: 16%;
}

.w-18 {
  width: 18%;
}

.w-15 {
  width: 15%;
}

.w-14 {
  width: 14%;
}

.w-12 {
  width: 12%;
}

.w-10 {
  width: 10%;
}

.w-8 {
  width: 8%;
}

.w-6 {
  width: 6%;
}

.w-5 {
  width: 5%;
}

.is-clickable {
  cursor: pointer;
}

.industry-tags {
  flex-wrap: wrap;
  gap: 8px;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-center {
  display: flex;
  align-items: center;
}

.flex-wrap-gap {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
}

.supply-meta {
  display: flex;
  align-items: center;
  font-size: 14px;
}

.text-secondary {
  color: #6b7280;
}

.badge {
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table th {
  text-align: left;
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #6b7280;
  background-color: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
}

.data-table td {
  padding: 16px;
  border-bottom: 1px solid #e5e7eb;
  vertical-align: top;
}

.data-table tbody tr:hover {
  background: #f9fafb;
}

.table-support {
  font-size: 12px;
  color: #6b7280;
}

.checkbox-active {
  width: 12px;
  height: 12px;
  border-radius: 2px;
  border: 1px solid #2563eb;
  background: #2563eb;
  display: inline-block;
  margin-right: 6px;
}

.badge-pill {
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 5px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.badge-pill--tender {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.badge-pill--candidate {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.badge-pill--win {
  background: linear-gradient(135deg, #10b981, #059669);
}

.tag-industry {
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 6px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}

.text-muted-lg {
  color: #6b7280;
  font-size: 14px;
}

.text-muted {
  color: #6b7280;
  font-size: 12px;
}

.text-error {
  color: #ef4444;
}

.table-row-hover {
  transition: background-color 0.2s ease;
}

.table-row-hover:hover {
  background-color: #f9fafb;
}

.location-stack {
  display: flex;
  flex-direction: column;
}

.metadata-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}


.detail-icon {
  width: 20px;
  height: 20px;
}

.project-stage {
  font-size: 12px;
  color: #6b7280;
  margin-top: 4px;
}
