﻿:root {
  --bid-blue: #1b365d;
  --bid-blue-deep: #173e72;
  --bid-active: #6f69e5;
  --bid-tech: #5995fe;
  --bid-violet: #7b73ff;
  --bid-orange: #ff731b;
  --bid-bg: #f0f3ff;
  --bid-soft: #eaf4ff;
  --bid-card: rgba(255, 255, 255, .84);
  --bid-line: rgba(90, 148, 254, .16);
  --bid-text: #1b1e23;
  --bid-muted: #60728c;
  --bid-green: #37c29a;
  --bid-gray: #8f9bb3;
  --bid-shadow: 0 16px 42px rgba(90, 148, 254, .14);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 0;
}

body.bid-page {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  background: linear-gradient(180deg, #f0f3ff 0%, #fbf3ec 27%, #f0f3ff 62%, #d8e1ff 100%);
  color: var(--bid-text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

input,
button,
select,
textarea {
  font: inherit;
}

.bid-wrap {
  width: min(1400px, calc(100% - 32px));
  margin: 0 auto;
}

.bid-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid #f2f2f2;
}

.bid-nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.bid-brand {
  min-width: 178px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #5c78ff;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.bid-brand-mark {
  width: 52px;
  height: 32px;
  flex: 0 0 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(180deg, var(--bid-tech) 0%, var(--bid-violet) 100%);
  font-size: 18px;
  line-height: 1;
}

.bid-brand-logo {
  width: auto;
  height: 40px;
  max-width: 180px;
  flex: 0 0 auto;
  display: block;
  object-fit: contain;
}

.bid-mobile-toggle {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  border: 1px solid rgba(90, 148, 254, .2);
  border-radius: 50%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .9), rgba(240, 246, 255, .78));
  box-shadow: 0 8px 20px rgba(90, 148, 254, .1);
  cursor: pointer;
}

.bid-mobile-toggle span {
  width: 17px;
  height: 2px;
  border-radius: 2px;
  background: var(--bid-active);
  transition: transform .2s ease, opacity .2s ease;
}

.bid-header.is-mobile-open .bid-mobile-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.bid-header.is-mobile-open .bid-mobile-toggle span:nth-child(2) {
  opacity: 0;
}

.bid-header.is-mobile-open .bid-mobile-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.bid-nav-links {
  flex: 1;
  min-width: 0;
  display: none;
  align-items: center;
  gap: 34px;
  color: #434850;
  font-size: 16px;
  white-space: nowrap;
}

.bid-nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 74px;
}

.bid-nav-item > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 74px;
}

.bid-nav-links a:hover,
.bid-account a:hover {
  color: var(--bid-active);
}

.bid-nav-item.is-active > a {
  color: var(--bid-active);
}

.bid-nav-item.is-active > a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 15px;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--bid-active);
  transform: translateX(-50%);
}

.bid-nav-sub {
  position: absolute;
  top: calc(100% - 8px);
  left: 50%;
  z-index: 45;
  width: max-content;
  min-width: 150px;
  display: none;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 8px;
  border: 1px solid rgba(90, 148, 254, .16);
  border-radius: 10px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 16px 42px rgba(90, 148, 254, .16);
  transform: translateX(-50%);
}

.bid-nav-item:hover .bid-nav-sub,
.bid-nav-item:focus-within .bid-nav-sub {
  display: grid;
}

.bid-nav-sub a {
  min-height: 36px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 8px;
  color: #434850;
}

.bid-nav-sub a:hover {
  background: rgba(90, 148, 254, .08);
}

.bid-search {
  width: 250px;
  height: 38px;
  flex: 0 0 250px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(111, 105, 229, .22);
  border-radius: 20px;
  background: rgba(255, 255, 255, .76);
}

.bid-search input {
  min-width: 0;
  flex: 1;
  height: 100%;
  border: 0;
  outline: 0;
  padding: 0 12px;
  color: var(--bid-text);
  background: transparent;
}

.bid-search button {
  width: 66px;
  height: 32px;
  margin-right: 3px;
  border: 0;
  border-radius: 17px;
  color: #fff;
  background: linear-gradient(180deg, var(--bid-tech) 0%, var(--bid-violet) 100%);
  cursor: pointer;
}

.bid-search-trigger {
  min-width: 320px;
  height: 38px;
  flex: 0 1 380px;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid rgba(90, 148, 254, .2);
  border-radius: 20px;
  color: #45709c;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(245, 250, 255, .86));
  box-shadow: 0 10px 28px rgba(90, 148, 254, .12), inset 0 1px 0 rgba(255, 255, 255, .9);
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: border-color .2s ease, box-shadow .2s ease, color .2s ease, transform .2s ease;
}

.bid-search-trigger:hover {
  color: var(--bid-tech);
  border-color: rgba(90, 148, 254, .45);
  box-shadow: 0 14px 34px rgba(90, 148, 254, .18), inset 0 1px 0 rgba(255, 255, 255, .95);
  transform: translateY(-1px);
}

.bid-search-trigger::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-sizing: border-box;
}

.bid-search-trigger::after {
  content: "";
  width: 7px;
  height: 2px;
  margin-left: -12px;
  margin-top: 12px;
  border-radius: 2px;
  background: currentColor;
  transform: rotate(45deg);
}

.bid-account {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--bid-active);
  white-space: nowrap;
}

.bid-account a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(111, 105, 229, .42);
  border-radius: 18px;
  color: var(--bid-active);
}

.bid-account .bid-account-primary {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(180deg, #5a94fe 0%, #7975ff 100%);
}

.bid-account-menu {
  position: relative;
}

.bid-avatar-button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px 0 6px;
  border: 1px solid rgba(111, 105, 229, .24);
  border-radius: 20px;
  color: var(--bid-active);
  background: rgba(255, 255, 255, .82);
  cursor: pointer;
}

.bid-avatar-button img {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 50%;
  object-fit: cover;
  background: #eef3ff;
}

.bid-avatar-button span {
  max-width: 92px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bid-member-chip {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  min-width: 38px;
  padding: 0 7px;
  border-radius: 999px;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.bid-member-chip.is-member {
  color: #8a4b00;
  background: #fff0c2;
  border: 1px solid #ffd16a;
}

.bid-member-chip.is-basic {
  color: #596273;
  background: #f1f4f8;
  border: 1px solid #dbe3ee;
}

.bid-account-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 40;
  width: 232px;
  display: none;
  padding: 8px;
  border: 1px solid rgba(90, 148, 254, .16);
  border-radius: 10px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 16px 42px rgba(90, 148, 254, .18);
}

.bid-account-menu:hover .bid-account-dropdown,
.bid-account-menu:focus-within .bid-account-dropdown {
  display: grid;
  gap: 4px;
}

.bid-member-summary {
  padding: 10px;
  border-radius: 8px;
  background: #f7f9fc;
  border: 1px solid #e7edf6;
}

.bid-member-summary-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}

.bid-member-summary-head span {
  color: #222936;
  font-size: 14px;
  font-weight: 700;
}

.bid-member-summary-head em {
  color: #7b8594;
  font-size: 12px;
  font-style: normal;
  white-space: nowrap;
}

.bid-member-summary p {
  margin: 4px 0 0;
  color: #596273;
  font-size: 12px;
  line-height: 1.5;
}

.bid-account .bid-account-dropdown a {
  min-height: 36px;
  justify-content: flex-start;
  padding: 0 10px;
  border: 0;
  border-radius: 8px;
  color: #434850;
}

.bid-account .bid-account-dropdown a:hover {
  color: var(--bid-active);
  background: rgba(240, 246, 255, .9);
}

.bid-ggzb-user strong {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.bid-ggzb-member-left {
  color: #8a4b00;
}

.bid-hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 0;
  background:
    linear-gradient(138deg, rgba(255, 255, 255, .35) 0, rgba(255, 255, 255, .08) 44%, rgba(228, 238, 255, .35) 100%),
    linear-gradient(180deg, #ecf4ff 0, #f5f8ff 68%, #eff3ff 100%);
  background-size: 72px 72px, 72px 72px, auto;
  color: var(--bid-text);
}

/* Scheme 2: bidding information trade desk homepage */
:root {
  --bid-blue: #0b1f3a;
  --bid-blue-deep: #07182d;
  --bid-active: #2f80ed;
  --bid-tech: #2f80ed;
  --bid-violet: #20a67a;
  --bid-orange: #c9a968;
  --bid-bg: #f5f7fa;
  --bid-soft: #eef3f8;
  --bid-card: #ffffff;
  --bid-line: #e5eaf0;
  --bid-text: #172033;
  --bid-muted: #5b667a;
  --bid-green: #20a67a;
  --bid-gray: #8a94a6;
  --bid-shadow: 0 12px 32px rgba(11, 31, 58, .08);
}

body.bid-page {
  background: #f5f7fa;
  color: #172033;
}

.bid-header {
  background: rgba(255, 255, 255, .98);
  border-bottom: 1px solid #e5eaf0;
  box-shadow: none;
}

.bid-brand {
  color: #0b1f3a;
}

.bid-brand-mark,
.bid-account .bid-account-primary,
.bid-search button,
.bid-float-btn {
  background: #0b1f3a;
}

.bid-trade-page {
  background:
    linear-gradient(180deg, #f5f7fa 0%, #ffffff 46%, #f5f7fa 100%);
}

.bid-trade-hero {
  padding: 46px 0 28px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f5f7fa 100%);
  border-bottom: 1px solid #e5eaf0;
}

.bid-trade-shell {
  display: grid;
  grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

.bid-trade-copy {
  min-height: 330px;
  display: grid;
  align-content: center;
  padding: 28px 0;
}

.bid-trade-copy h1 {
  margin: 0;
  color: #0b1f3a;
  font-size: 46px;
  line-height: 1.14;
  letter-spacing: 0;
}

.bid-trade-copy p:not(.bid-kicker) {
  max-width: 330px;
  margin: 16px 0 0;
  color: #5b667a;
  font-size: 16px;
  line-height: 1.8;
}

.bid-trade-board {
  min-height: 330px;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 14px;
  padding: 20px;
  border: 1px solid #e5eaf0;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(11, 31, 58, .08);
}

.bid-trade-search {
  display: grid;
  gap: 14px;
}

.bid-trade-search-main,
.bid-trade-filter-row {
  display: grid;
  gap: 12px;
}

.bid-trade-search-main {
  grid-template-columns: 1.3fr 1fr 1fr;
}

.bid-trade-filter-row {
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  align-items: end;
}

.bid-trade-search label {
  min-width: 0;
  display: grid;
  gap: 7px;
  color: #5b667a;
  font-size: 13px;
  font-weight: 700;
}

.bid-trade-search input,
.bid-trade-search select {
  width: 100%;
  height: 44px;
  min-width: 0;
  padding: 0 12px;
  border: 1px solid #d9e0ea;
  border-radius: 6px;
  color: #172033;
  background: #ffffff;
  outline: 0;
}

.bid-trade-search input:focus,
.bid-trade-search select:focus {
  border-color: #2f80ed;
  box-shadow: 0 0 0 3px rgba(47, 128, 237, .12);
}

.bid-trade-actions {
  display: grid;
  grid-template-columns: auto auto;
  gap: 8px;
  align-items: center;
}

.bid-trade-actions button,
.bid-trade-actions a,
.bid-trade-view,
.bid-trade-main-head > a {
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  white-space: nowrap;
}

.bid-trade-actions button {
  min-width: 132px;
  border: 0;
  color: #ffffff;
  background: #0b1f3a;
  cursor: pointer;
}

.bid-trade-actions a,
.bid-trade-main-head > a {
  padding: 0 14px;
  border: 1px solid #d9e0ea;
  color: #5b667a;
  background: #ffffff;
}

.bid-trade-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.bid-trade-metrics div {
  min-height: 74px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 14px;
  border: 1px solid #e5eaf0;
  border-radius: 6px;
  background: #f8fafc;
}

.bid-trade-metrics strong {
  color: #0b1f3a;
  font-size: 17px;
}

.bid-trade-metrics span {
  color: #5b667a;
  font-size: 13px;
}

.bid-trade-section {
  padding: 34px 0;
}

.bid-trade-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.bid-trade-sidebar,
.bid-trade-main {
  border: 1px solid #e5eaf0;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(11, 31, 58, .05);
}

.bid-trade-sidebar {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 4px;
  padding: 12px;
}

.bid-trade-sidebar-head {
  display: grid;
  gap: 2px;
  padding: 8px 10px 12px;
  border-bottom: 1px solid #e5eaf0;
  margin-bottom: 6px;
}

.bid-trade-sidebar-head strong {
  color: #0b1f3a;
}

.bid-trade-sidebar-head span {
  color: #8a94a6;
  font-size: 13px;
}

.bid-trade-sidebar a {
  min-height: 42px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 0 10px;
  border-radius: 6px;
  color: #172033;
}

.bid-trade-sidebar a:hover,
.bid-trade-sidebar a.is-active {
  background: #eef3f8;
}

.bid-trade-sidebar em {
  color: #8a94a6;
  font-size: 12px;
  font-style: normal;
}

.bid-trade-main {
  min-width: 0;
  padding: 18px;
}

.bid-trade-main-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.bid-trade-main-head h2 {
  margin: 0;
  color: #0b1f3a;
  font-size: 24px;
  line-height: 1.28;
}

.bid-trade-list {
  display: grid;
  gap: 10px;
}

.bid-trade-row {
  min-height: 132px;
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr) 96px;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid #e5eaf0;
  border-radius: 8px;
  background: #ffffff;
}

.bid-trade-row:hover {
  border-color: rgba(47, 128, 237, .45);
  box-shadow: 0 10px 26px rgba(11, 31, 58, .07);
}

.bid-trade-state {
  display: grid;
  gap: 8px;
  align-content: center;
}

.bid-trade-state em {
  color: #5b667a;
  font-size: 13px;
  font-style: normal;
}

.bid-trade-info {
  min-width: 0;
}

.bid-trade-info h3 {
  margin: 0;
  color: #172033;
  font-size: 18px;
  line-height: 1.36;
}

.bid-trade-info p {
  display: -webkit-box;
  overflow: hidden;
  margin: 8px 0 10px;
  color: #5b667a;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.bid-trade-info dl {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.bid-trade-info div {
  min-width: 0;
}

.bid-trade-info dt {
  color: #8a94a6;
  font-size: 12px;
}

.bid-trade-info dd {
  margin: 2px 0 0;
  overflow: hidden;
  color: #172033;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bid-trade-view {
  border: 1px solid #0b1f3a;
  color: #0b1f3a;
  font-weight: 700;
}

.bid-badge {
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0 10px;
  border-radius: 999px;
  color: #ffffff;
  background: #2f80ed;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
}

.bid-badge-closing {
  background: #c9a968;
}

.bid-badge-closed {
  background: #8a94a6;
}

.bid-badge-awarded {
  background: #20a67a;
}

.bid-trade-section-soft {
  background: #ffffff;
  border-top: 1px solid #e5eaf0;
}

.bid-trade-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.bid-trade-feature-grid article {
  min-height: 170px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 22px;
  border: 1px solid #e5eaf0;
  border-radius: 8px;
  background: #f8fafc;
}

.bid-trade-feature-grid span {
  color: #c9a968;
  font-size: 13px;
  font-weight: 800;
}

.bid-trade-feature-grid h2 {
  margin: 0;
  color: #0b1f3a;
  font-size: 20px;
  line-height: 1.35;
}

.bid-trade-feature-grid p {
  margin: 0;
  color: #5b667a;
}

@media (max-width: 1100px) {
  .bid-trade-shell,
  .bid-trade-layout {
    grid-template-columns: 1fr;
  }

  .bid-trade-copy {
    min-height: 0;
    padding: 10px 0 0;
  }

  .bid-trade-copy p:not(.bid-kicker) {
    max-width: 720px;
  }

  .bid-trade-sidebar {
    position: static;
  }

  .bid-trade-search-main,
  .bid-trade-filter-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bid-trade-actions {
    grid-column: 1 / -1;
    justify-content: start;
  }
}

@media (max-width: 720px) {
  .bid-trade-hero {
    padding: 30px 0 22px;
  }

  .bid-trade-copy h1 {
    font-size: 32px;
  }

  .bid-trade-board,
  .bid-trade-main {
    padding: 14px;
  }

  .bid-trade-search-main,
  .bid-trade-filter-row,
  .bid-trade-metrics,
  .bid-trade-feature-grid,
  .bid-trade-info dl {
    grid-template-columns: 1fr;
  }

  .bid-trade-row {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .bid-trade-view {
    justify-self: start;
    padding: 0 16px;
  }

  .bid-trade-main-head {
    align-items: start;
    flex-direction: column;
  }
}

.bid-kicker {
  margin: 0 0 8px;
  color: var(--bid-active);
  font-weight: 700;
}

.bid-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 150px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(234, 242, 255, 0) 0%, rgba(240, 243, 255, .92) 100%);
}

.bid-hero-screen {
  position: relative;
  display: grid;
  gap: 20px;
  z-index: 1;
  padding-bottom: 30px;
  padding-top: 82px;
}

.bid-hero-intro {
  width: min(1040px, 100%);
  margin: 0 auto;
  text-align: center;
}

.bid-hero-intro h1 {
  margin: 0;
  color: #0f2e60;
  font-size: clamp(40px, 5vw, 58px);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.1px;
  text-align: center;
}

.bid-hero-intro .bid-hero-text {
  margin: 14px auto 0;
  max-width: 860px;
  text-align: center;
  color: #355173;
  font-size: 17px;
  line-height: 1.78;
  letter-spacing: 0;
}

.bid-hero-filter.bid-surface {
  margin: 2px auto 0;
  border: 1px solid rgba(20, 55, 114, .08);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, .9));
  box-shadow: 0 16px 42px rgba(15, 43, 87, .12);
}

.bid-hero-filter {
  width: min(1240px, 100%);
  margin: 22px auto 0;
  grid-template-columns: 1fr;
  padding: 16px;
  border-radius: 20px;
  gap: 14px;
}

.bid-hero-filter.bid-filter {
  grid-template-columns: 1fr;
}

.bid-hero-filter .bid-filter-grid-main {
  grid-template-columns: 1.2fr 1fr 1fr;
}

.bid-hero-filter .bid-filter-grid-main label {
  min-width: 0;
  font-weight: 500;
}

.bid-hero-filter .bid-filter-grid-core {
  grid-template-columns: minmax(160px, 1fr) minmax(160px, 1fr) minmax(180px, 1fr);
}

.bid-hero-filter .bid-filter-advanced summary {
  color: var(--bid-blue);
  font-weight: 600;
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 0;
}

.bid-hero-filter .bid-filter-advanced summary::-webkit-details-marker {
  display: none;
}

.bid-hero-filter .bid-filter-advanced summary::after {
  content: "▾";
  margin-left: 8px;
  color: var(--bid-active);
}

.bid-hero-filter .bid-filter-advanced[open] summary::after {
  content: "▴";
}

.bid-hero-filter .bid-filter-actions {
  justify-content: flex-start;
  gap: 10px;
  margin-top: 2px;
}

.bid-hero-filter .bid-filter-actions button,
.bid-hero-filter .bid-filter-actions a {
  min-height: 40px;
  border-radius: 999px;
}

.bid-hero-filter .bid-filter-actions button {
  min-width: 128px;
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(111, 105, 229, .24);
  background: linear-gradient(180deg, #6176ff 0%, #6f61ff 100%);
}

.bid-hero-filter .bid-filter-actions a {
  border: 1px solid rgba(90, 148, 254, .26);
  border-radius: 999px;
  padding: 0 16px;
}

.bid-hero-searchline {
  display: grid;
  grid-template-columns: minmax(240px, 2fr) minmax(210px, 1.2fr) minmax(210px, 1.2fr) 176px;
  gap: 12px;
  align-items: end;
}

.bid-hero-search-actions {
  display: flex;
  align-items: end;
  gap: 8px;
}

.bid-hero-search-actions button,
.bid-hero-search-actions a {
  height: 42px;
  border-radius: 999px;
}

.bid-hero-search-actions button {
  min-width: 116px;
  border: 0;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(180deg, #6176ff 0%, #6f61ff 100%);
}

.bid-hero-search-actions a {
  padding: 0 16px;
  border: 1px solid rgba(90, 148, 254, .26);
  color: var(--bid-muted);
}

.bid-hero-categories {
  width: min(1240px, 100%);
  margin: 12px auto 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.bid-top-category {
  min-height: 196px;
  display: grid;
  gap: 10px;
  align-content: start;
  align-self: stretch;
  padding: 16px;
  border: 1px solid rgba(90, 148, 254, .14);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, .9));
  box-shadow: 0 12px 30px rgba(90, 148, 254, .08);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.bid-top-category a {
  text-decoration: none;
}

.bid-top-category:hover {
  border-color: rgba(90, 148, 254, .42);
  box-shadow: 0 18px 40px rgba(90, 148, 254, .16);
  transform: translateY(-2px);
}

.bid-top-category strong {
  font-size: 17px;
  line-height: 1.32;
  color: #142f64;
}

.bid-top-category p {
  margin: 2px 0 0;
  min-height: 40px;
  font-size: 13px;
  line-height: 1.72;
  color: var(--bid-muted);
}

.bid-top-header {
  display: grid;
  gap: 8px;
}

.bid-top-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(160deg, #f3f8ff, #ddeaff);
  color: var(--bid-active);
  font-size: 22px;
  box-shadow: inset 0 0 0 1px rgba(90, 148, 254, .12);
  border: 1px solid rgba(90, 148, 254, .12);
  transition: background .2s ease;
}

.bid-top-icon,
.bid-top-category strong {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bid-sub-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 2px;
}

.bid-track-label {
  display: none;
}

.bid-sub-link {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border-radius: 999px;
  border: 1px solid rgba(90, 148, 254, .18);
  color: #48688e;
  font-size: 12px;
  background: rgba(240, 246, 255, .86);
  transition: transform .2s ease;
  white-space: nowrap;
  text-decoration: none;
}

.bid-top-category .bid-sub-categories small {
  color: #7b90ac;
  font-size: 12px;
  margin: 0;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
}

.bid-sub-link:hover {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(180deg, var(--bid-tech) 0%, var(--bid-violet) 100%);
  transform: translateY(-1px);
}

.bid-sub-empty {
  color: #8da5c2;
  font-size: 12px;
}

.bid-top-all {
  grid-column: 1 / -1;
  background: linear-gradient(180deg, rgba(96, 129, 249, .14), rgba(255, 255, 255, .88));
  border-color: rgba(90, 148, 254, .24);
}

.bid-top-all strong {
  font-size: 20px;
}

.bid-top-all .bid-top-icon {
  background: linear-gradient(160deg, rgba(255, 255, 255, .9), rgba(200, 219, 255, .92));
}

.bid-top-all .bid-top-icon,
.bid-top-all:hover .bid-top-icon {
  color: #4f63ff;
  box-shadow: inset 0 0 0 1px rgba(79, 99, 255, .2);
}

.bid-btn {
  min-width: 230px;
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  border: 1px solid transparent;
  border-radius: 32px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.bid-btn-primary {
  color: #fff;
  background: linear-gradient(180deg, var(--bid-tech) 0%, var(--bid-violet) 100%);
  box-shadow: 0 6px 16px rgba(121, 116, 255, .35);
}

.bid-btn-secondary {
  color: var(--bid-active);
  border-color: var(--bid-active);
  background: transparent;
}

.bid-btn:hover {
  transform: translateY(-2px);
}

.bid-full {
  width: 100%;
  min-width: 0;
}

.bid-console-preview,
.bid-hero-visual {
  width: min(1300px, 100%);
  margin: 38px auto 0;
  text-align: left;
  border-radius: 16px 16px 0 0;
  background: rgba(255, 255, 255, .28);
  box-shadow: 0 24px 64px rgba(90, 148, 254, .18);
}

.bid-console-preview {
  min-height: 392px;
  padding: 10px;
  position: relative;
  overflow: hidden;
}

.bid-console-preview::before {
  content: "";
  position: absolute;
  inset: 10px;
  pointer-events: none;
  border-radius: 12px 12px 0 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, .34), rgba(255, 255, 255, 0) 42%);
}

.bid-window-bar {
  position: relative;
  z-index: 1;
  height: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border-radius: 12px 12px 0 0;
  background: rgba(255, 255, 255, .38);
}

.bid-window-bar span {
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  border-radius: 50%;
}

.bid-window-bar span:nth-child(1) {
  background: #f06b6b;
}

.bid-window-bar span:nth-child(2) {
  background: #f0ba54;
}

.bid-window-bar span:nth-child(3) {
  background: #55c875;
}

.bid-window-bar em {
  flex: 1;
  max-width: 420px;
  height: 18px;
  margin-left: 24px;
  overflow: hidden;
  border-radius: 10px;
  background: rgba(255, 255, 255, .42);
  color: #8aa8cf;
  font-size: 12px;
  font-style: normal;
  line-height: 18px;
  text-align: center;
}

.bid-console-body {
  position: relative;
  z-index: 1;
  min-height: 330px;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  background: rgba(227, 242, 255, .66);
}

.bid-console-body aside {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 20px 16px;
  color: rgba(255, 255, 255, .72);
  background: var(--bid-blue-deep);
}

.bid-console-body aside strong {
  color: #fff;
  font-size: 14px;
}

.bid-console-body aside span {
  font-size: 12px;
}

.bid-console-main {
  min-width: 0;
  padding: 22px 26px;
}

.bid-console-toolbar {
  height: 36px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 0 12px;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(255, 255, 255, .68), rgba(210, 232, 255, .6));
}

.bid-console-toolbar span {
  height: 20px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 10px;
  color: #6b82a2;
  background: rgba(255, 255, 255, .64);
  font-size: 12px;
}

.bid-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.bid-stat {
  min-height: 86px;
  padding: 16px;
  border: 1px solid rgba(90, 148, 254, .14);
  border-radius: 4px;
  background: rgba(255, 255, 255, .38);
}

.bid-stat strong {
  min-height: 28px;
  display: block;
  color: var(--bid-active);
  font-size: 24px;
  line-height: 1.2;
}

.bid-stat span {
  color: #6b7a90;
}

.bid-console-table {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.bid-console-table span {
  height: 34px;
  border-radius: 6px;
  background: rgba(255, 255, 255, .38);
}

.bid-console-panels {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 18px;
  margin-top: 28px;
}

.bid-console-list {
  display: grid;
  gap: 12px;
}

.bid-console-list span {
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border-radius: 8px;
  color: #637997;
  background: rgba(255, 255, 255, .38);
}

.bid-console-list i {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: var(--bid-orange);
}

.bid-console-chart {
  min-height: 144px;
  display: flex;
  align-items: end;
  gap: 12px;
  padding: 18px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .36);
}

.bid-console-chart b {
  flex: 1;
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(180deg, rgba(123, 115, 255, .76), rgba(89, 149, 254, .38));
}

.bid-console-chart b:nth-child(1) { height: 42%; }
.bid-console-chart b:nth-child(2) { height: 72%; }
.bid-console-chart b:nth-child(3) { height: 54%; }
.bid-console-chart b:nth-child(4) { height: 86%; }

.bid-hero-visual {
  position: relative;
  overflow: hidden;
  padding: 10px;
}

.bid-hero-visual > img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}

.bid-hero-visual .bid-stat-grid {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
}

.bid-hero-visual .bid-stat {
  background: rgba(255, 255, 255, .84);
}

.bid-activity-band {
  position: relative;
  z-index: 2;
  background: linear-gradient(90deg, #fff3da 0%, #ffe2b3 100%);
  color: #b26b49;
}

.bid-activity-band .bid-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.bid-activity-band strong {
  color: #b85c2c;
  font-size: 18px;
}

.bid-activity-band span {
  flex: 1;
  color: #ba876e;
}

.bid-activity-band a {
  min-width: 112px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: #fff;
  background: var(--bid-orange);
  font-weight: 700;
  white-space: nowrap;
}

.bid-proof-strip {
  background: rgba(255, 255, 255, .66);
  border-bottom: 1px solid rgba(90, 148, 254, .14);
}

.bid-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
}

.bid-proof-grid div {
  min-height: 102px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 18px 22px;
  border-left: 1px solid rgba(90, 148, 254, .12);
}

.bid-proof-grid div:last-child {
  border-right: 1px solid rgba(90, 148, 254, .12);
}

.bid-proof-grid strong {
  color: var(--bid-blue);
  font-size: 18px;
}

.bid-proof-grid span {
  color: var(--bid-muted);
}

.bid-section {
  padding: 64px 0;
  background: rgba(255, 255, 255, .46);
}

.bid-section-muted {
  background: rgba(240, 246, 255, .72);
  border-top: 1px solid rgba(111, 105, 229, .12);
  border-bottom: 1px solid rgba(111, 105, 229, .12);
}

.bid-section-visual {
  background: rgba(241, 247, 255, .78);
}

.bid-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.bid-section h2,
.bid-detail-main h2,
.bid-side-box h2 {
  margin: 0;
  color: var(--bid-blue);
  font-size: 24px;
  line-height: 1.3;
}

.bid-section-head p {
  margin: 0;
  color: var(--bid-muted);
}

.bid-section-head-stack {
  display: block;
}

.bid-section-head-stack p {
  margin-top: 8px;
}

.bid-visual-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(420px, 1fr);
  gap: 38px;
  align-items: center;
}

.bid-visual-copy h2 {
  max-width: 650px;
  margin: 0;
  color: var(--bid-blue);
  font-size: 32px;
  line-height: 1.35;
}

.bid-visual-copy p {
  max-width: 620px;
  margin: 16px 0 0;
  color: var(--bid-muted);
}

.bid-feature-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.bid-feature-list span {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--bid-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
  color: var(--bid-blue);
}

.bid-visual-media {
  margin: 0;
  padding: 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .48);
  box-shadow: var(--bid-shadow);
}

.bid-visual-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 10px;
}

.bid-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.bid-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.bid-service-card,
.bid-flow-card {
  border: 1px solid var(--bid-line);
  border-radius: 10px;
  background: rgba(255, 255, 255, .82);
  box-shadow: var(--bid-shadow);
}

.bid-service-card {
  min-height: 218px;
  padding: 22px;
}

.bid-service-card span {
  width: 44px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(180deg, var(--bid-tech) 0%, var(--bid-violet) 100%);
  font-weight: 700;
}

.bid-service-card h3 {
  margin: 20px 0 10px;
  color: var(--bid-blue);
  font-size: 20px;
  line-height: 1.35;
}

.bid-service-card p {
  margin: 0;
  color: var(--bid-muted);
}

.bid-flow-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: stretch;
}

.bid-flow-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.bid-flow-line::before {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  top: 28px;
  height: 2px;
  background: rgba(90, 148, 254, .18);
}

.bid-flow-line::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 28px;
  width: calc(100% - 20px);
  height: 2px;
  transform-origin: left center;
  background: linear-gradient(90deg, var(--bid-tech), var(--bid-violet), var(--bid-orange));
}

.bid-flow-line div {
  position: relative;
  min-height: 126px;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 54px 16px 16px;
  border: 1px solid var(--bid-line);
  border-radius: 10px;
  background: rgba(255, 255, 255, .76);
}

.bid-flow-line div::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 18px;
  width: 22px;
  height: 22px;
  border: 5px solid #fff;
  border-radius: 50%;
  background: var(--bid-active);
  box-shadow: 0 0 0 1px rgba(90, 148, 254, .18);
}

.bid-flow-line strong {
  color: var(--bid-blue);
  font-size: 18px;
}

.bid-flow-line span,
.bid-flow-card p {
  color: var(--bid-muted);
}

.bid-flow-card {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 24px;
}

.bid-flow-card strong {
  color: var(--bid-blue);
  font-size: 22px;
}

.bid-flow-card p {
  margin: 0;
}

.bid-card,
.bid-row,
.bid-side-box,
.bid-filter,
.bid-detail-main {
  border: 1px solid var(--bid-line);
  border-radius: 10px;
  background: var(--bid-card);
  box-shadow: var(--bid-shadow);
}

.bid-card {
  min-height: 246px;
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.bid-card-top {
  min-height: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--bid-muted);
  font-size: 13px;
}

.bid-badge {
  min-width: 78px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: 17px;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
}

.bid-badge-ongoing,
.bid-badge- {
  background: linear-gradient(180deg, var(--bid-tech) 0%, var(--bid-violet) 100%);
}

.bid-badge-closing {
  background: var(--bid-orange);
}

.bid-badge-closed {
  background: var(--bid-gray);
}

.bid-badge-awarded {
  background: var(--bid-green);
}

.bid-card h3,
.bid-row h2,
.bid-row h3 {
  margin: 14px 0 8px;
  color: var(--bid-blue);
  font-size: 17px;
  line-height: 1.45;
}

.bid-card h3 a,
.bid-row h2 a,
.bid-row h3 a {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.bid-card p,
.bid-row p {
  margin: 0;
  color: var(--bid-muted);
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.bid-card dl {
  display: grid;
  gap: 8px;
  margin: 18px 0;
}

.bid-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(90, 148, 254, .12);
}

.bid-card dt {
  color: var(--bid-muted);
}

.bid-card dd {
  margin: 0;
  color: var(--bid-blue);
  text-align: right;
}

.bid-card-link,
.bid-row-action {
  margin-top: auto;
  color: var(--bid-active);
  font-weight: 700;
  white-space: nowrap;
}

.bid-list {
  display: grid;
  gap: 12px;
}

.bid-row {
  position: relative;
  overflow: hidden;
  min-height: 136px;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) 76px;
  gap: 18px;
  align-items: start;
  padding: 20px;
}

.bid-row::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--bid-tech), var(--bid-orange));
  opacity: .78;
}

.bid-card,
.bid-side-box,
.bid-filter,
.bid-detail-main {
  position: relative;
  overflow: hidden;
}

.bid-card::after,
.bid-side-box::after,
.bid-detail-main::after {
  content: "";
  position: absolute;
  right: -44px;
  top: -44px;
  width: 120px;
  height: 120px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 115, 27, .18), rgba(90, 148, 254, 0) 70%);
}

.bid-row-card {
  grid-template-columns: 88px minmax(0, 1fr) 92px;
}

.bid-row small {
  display: block;
  margin-top: 10px;
  color: var(--bid-muted);
}

.bid-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px 16px;
  margin-top: 12px;
  color: var(--bid-muted);
  font-size: 13px;
}

.bid-entry-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 36px;
}

.bid-chip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.bid-chip-grid a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid var(--bid-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
  color: var(--bid-blue);
}

.bid-cat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.bid-cat-card {
  min-height: 86px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 16px;
  border: 1px solid rgba(90, 148, 254, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 10px 28px rgba(90, 148, 254, .08);
}

.bid-cat-card strong {
  color: var(--bid-blue);
  font-size: 16px;
}

.bid-cat-card span {
  color: var(--bid-muted);
  font-size: 13px;
}

.bid-cat-card:hover {
  border-color: rgba(111, 105, 229, .34);
  color: var(--bid-active);
  background: #fff;
}

.bid-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.bid-faq-grid details {
  position: relative;
  min-height: 126px;
  overflow: hidden;
  padding: 20px 22px;
  border: 1px solid rgba(90, 148, 254, .18);
  border-radius: 14px;
  background:
    radial-gradient(circle at 92% 0%, rgba(90, 148, 254, .16), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, .9), rgba(244, 249, 255, .84));
  box-shadow: 0 14px 38px rgba(90, 148, 254, .1);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.bid-faq-grid details:hover,
.bid-faq-grid details[open] {
  border-color: rgba(111, 105, 229, .3);
  box-shadow: 0 18px 46px rgba(90, 148, 254, .14);
}

.bid-faq-grid details[open] {
  background:
    radial-gradient(circle at 92% 0%, rgba(123, 115, 255, .2), transparent 40%),
    linear-gradient(180deg, rgba(246, 250, 255, .98), rgba(255, 255, 255, .94));
}

.bid-faq-grid summary {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--bid-blue);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.bid-faq-grid summary::-webkit-details-marker {
  display: none;
}

.bid-faq-grid summary::after {
  content: "+";
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .26), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, var(--bid-tech), var(--bid-violet));
  box-shadow: 0 8px 18px rgba(121, 116, 255, .22);
  font-size: 18px;
  line-height: 1;
  transition: transform .2s ease;
}

.bid-faq-grid details[open] summary::after {
  content: "";
  transform: rotate(45deg);
}

.bid-faq-grid p {
  position: relative;
  z-index: 1;
  margin: 14px 50px 0 0;
  color: var(--bid-muted);
  font-size: 14px;
  line-height: 1.8;
}

.bid-review-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.bid-review-card {
  min-height: 188px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 20px;
  border: 1px solid rgba(90, 148, 254, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 12px 34px rgba(90, 148, 254, .08);
}

.bid-review-card strong {
  color: var(--bid-blue);
  font-size: 16px;
}

.bid-review-card p {
  margin: 0;
  color: #566a86;
}

.bid-review-card span {
  margin-top: auto;
  color: var(--bid-active);
  font-size: 13px;
}

.bid-steps {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--bid-muted);
}

.bid-page-head {
  position: relative;
  overflow: hidden;
  padding: 42px 0 34px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .32) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, .28) 1px, transparent 1px),
    linear-gradient(180deg, #d9ecff 0%, #f0f3ff 100%);
  background-size: 64px 64px, 64px 64px, auto;
  border-bottom: 1px solid rgba(111, 105, 229, .12);
}

.bid-page-head::after {
  content: "";
  position: absolute;
  right: max(24px, calc((100vw - 1400px) / 2));
  bottom: -52px;
  width: min(360px, 44vw);
  aspect-ratio: 16 / 10;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .7)),
    url("img/bid-hero-cover.jpg") center / cover no-repeat;
  border: 10px solid rgba(255, 255, 255, .42);
  border-radius: 14px;
  box-shadow: 0 24px 58px rgba(90, 148, 254, .18);
  opacity: .76;
  transform: rotate(-3deg);
}

.bid-page-head .bid-wrap {
  position: relative;
  z-index: 1;
}

.bid-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--bid-muted);
  font-size: 13px;
}

.bid-page-head h1 {
  margin: 0;
  color: var(--bid-blue);
  font-size: 34px;
  line-height: 1.25;
}

.bid-page-head p {
  margin: 10px 0 0;
  color: var(--bid-muted);
}

.bid-filter {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr)) 72px 56px;
  gap: 12px;
  align-items: end;
  padding: 16px;
  margin-bottom: 20px;
  box-shadow: none;
}

.bid-filter label {
  min-width: 0;
  display: grid;
  gap: 6px;
  color: var(--bid-muted);
  font-size: 13px;
}

.bid-filter input,
.bid-filter select,
.bid-form input,
.bid-form textarea {
  width: 100%;
  border: 1px solid rgba(90, 148, 254, .18);
  border-radius: 8px;
  background: #fff;
  color: var(--bid-text);
  outline: 0;
}

.bid-filter input,
.bid-filter select {
  height: 38px;
  padding: 0 10px;
}

.bid-filter button {
  height: 38px;
  border: 0;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(180deg, var(--bid-tech) 0%, var(--bid-violet) 100%);
  cursor: pointer;
}

.bid-filter > a {
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--bid-muted);
}

.bid-filter-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(90, 148, 254, .14);
  border-radius: 8px;
  background: #fff;
}

.bid-filter-head,
.bid-filter-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.bid-filter-head strong {
  display: block;
  color: var(--bid-blue);
  font-size: 18px;
}

.bid-filter-head span {
  display: block;
  margin-top: 4px;
  color: var(--bid-muted);
  font-size: 13px;
}

.bid-filter-head a,
.bid-filter-actions a {
  color: var(--bid-muted);
  white-space: nowrap;
}

.bid-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bid-active-filters a {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  border: 1px solid rgba(90, 148, 254, .18);
  border-radius: 15px;
  color: var(--bid-blue);
  background: rgba(240, 246, 255, .86);
  font-size: 13px;
}

.bid-active-filters em {
  color: var(--bid-muted);
  font-style: normal;
}

.bid-filter-grid {
  display: grid;
  gap: 12px;
}

.bid-filter-grid-main {
  grid-template-columns: 1.3fr 1fr 1.15fr .95fr .95fr;
}

.bid-filter-grid-advanced {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-top: 12px;
}

.bid-filter-advanced {
  border-top: 1px solid rgba(90, 148, 254, .12);
  padding-top: 12px;
}

.bid-filter-advanced summary {
  width: fit-content;
  cursor: pointer;
  color: var(--bid-blue);
  font-weight: 700;
}

.bid-filter-actions {
  justify-content: flex-start;
}

.bid-filter-actions button,
.bid-filter-actions a {
  min-width: 88px;
}

.bid-search-panel {
  grid-template-columns: minmax(0, 1fr) 96px;
}

.bid-pages {
  margin-top: 20px;
}

.bid-pages a,
.bid-pages span {
  min-width: 34px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 3px 6px 0;
  padding: 0 10px;
  border: 1px solid var(--bid-line);
  border-radius: 17px;
  background: rgba(255, 255, 255, .78);
}

.bid-title-line {
  display: flex;
  align-items: center;
  gap: 14px;
}

.bid-share-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 12px 14px;
  border: 1px solid var(--bid-line);
  border-radius: 10px;
  background: rgba(255, 255, 255, .72);
}

.bid-share-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--bid-muted);
  font-size: 13px;
  font-weight: 600;
  margin-right: 4px;
}

.bid-share-btn {
  appearance: none;
  border: 1px solid rgba(90, 148, 254, .22);
  border-radius: 8px;
  background: #fff;
  color: var(--bid-blue);
  height: 34px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}

.bid-share-btn:hover,
.bid-share-btn:focus {
  border-color: rgba(32, 193, 96, .45);
  color: #13a64d;
  background: rgba(32, 193, 96, .08);
  outline: none;
}

.bid-share-btn.bid-share-wechat,
.bid-share-btn.bid-share-timeline {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(180deg, #20c160 0%, #13a64d 100%);
}

.bid-share-btn.bid-share-wechat:hover,
.bid-share-btn.bid-share-timeline:hover,
.bid-share-btn.bid-share-wechat:focus,
.bid-share-btn.bid-share-timeline:focus {
  color: #fff;
  background: linear-gradient(180deg, #1bb557 0%, #109847 100%);
}

.bid-share-tip {
  min-height: 18px;
  color: var(--bid-muted);
  font-size: 12px;
}

.bid-share-tip.is-ok {
  color: #13a64d;
}

.bid-share-tip.is-error {
  color: #d94841;
}

.bid-key-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.bid-key-grid span,
.bid-info-table div,
.bid-side-box dl div,
.bid-attachment,
.bid-comment {
  border: 1px solid var(--bid-line);
  border-radius: 8px;
  background: rgba(240, 246, 255, .82);
}

.bid-key-grid span {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  color: var(--bid-blue);
}

.bid-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 20px;
  align-items: start;
}

.bid-detail-main {
  padding: 28px;
  box-shadow: none;
}

.bid-detail-main section + section {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(90, 148, 254, .12);
}

.bid-richtext {
  margin-top: 12px;
  color: var(--bid-text);
  overflow-wrap: anywhere;
}

.bid-reveal-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-top: 16px;
  min-height: 42px;
}

.bid-reveal-btn,
.bid-contact-reveal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.bid-reveal-btn {
  gap: 8px;
  min-width: 142px;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 20px;
  background: var(--bid-blue);
  color: #fff;
  font-weight: 700;
}

.bid-reveal-btn:hover {
  background: var(--bid-active);
}

.bid-info-table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.bid-info-table div,
.bid-side-box dl div {
  min-height: 54px;
  padding: 12px;
}

.bid-info-table span,
.bid-side-box dt {
  display: block;
  color: var(--bid-muted);
  font-size: 13px;
}

.bid-info-table strong,
.bid-side-box dd {
  display: block;
  margin: 4px 0 0;
  color: var(--bid-blue);
  font-weight: 700;
}

.bid-contact-mask-table div {
  position: relative;
  padding-right: 56px;
}

.bid-contact-reveal {
  position: absolute;
  right: 12px;
  top: 50%;
  width: 34px;
  height: 34px;
  margin-top: -17px;
  border-radius: 50%;
  background: rgba(90, 148, 254, .12);
  color: var(--bid-blue);
}

.bid-contact-reveal i {
  display: none;
}

.bid-contact-reveal::before {
  content: "";
  width: 18px;
  height: 11px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-sizing: border-box;
}

.bid-contact-reveal::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transform: rotate(-38deg);
}

.bid-contact-reveal:hover {
  background: var(--bid-blue);
  color: #fff;
}

.bid-side-box {
  position: sticky;
  top: 94px;
  padding: 20px;
  box-shadow: none;
}

.bid-side-box dl {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
}

.bid-side-box dd {
  margin-left: 0;
}

.bid-side-box .bid-btn {
  margin-top: 18px;
}

.bid-side-card {
  position: sticky;
  top: 94px;
  min-height: 210px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(90, 148, 254, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .84);
  box-shadow: 0 12px 34px rgba(90, 148, 254, .08);
}

.bid-side-card strong {
  color: var(--bid-blue);
  font-size: 18px;
}

.bid-side-card p {
  margin: 0;
  color: var(--bid-muted);
}

.bid-summary-box {
  margin-bottom: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(90, 148, 254, .16);
  border-radius: 8px;
  background: rgba(240, 246, 255, .78);
}

.bid-summary-box strong {
  color: var(--bid-blue);
}

.bid-summary-box p {
  margin: 8px 0 0;
  color: var(--bid-muted);
}

.bid-prev-next {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(90, 148, 254, .12);
  color: var(--bid-muted);
}

.bid-prev-next a {
  color: var(--bid-blue);
  font-weight: 700;
}

.bid-prev-next a:hover {
  color: var(--bid-active);
}

.bid-lock {
  padding: 14px 16px;
  border: 1px solid rgba(255, 115, 27, .28);
  border-radius: 8px;
  background: rgba(255, 243, 218, .76);
  color: var(--bid-blue);
}

.bid-contact-lock {
  position: relative;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: center;
  display: grid;
  column-gap: 14px;
  row-gap: 5px;
  min-height: 104px;
  margin-top: 14px;
  padding: 18px;
  border-color: rgba(90, 148, 254, .18);
  background: linear-gradient(180deg, rgba(240, 246, 255, .92) 0%, rgba(255, 255, 255, .9) 100%);
  box-shadow: 0 10px 28px rgba(90, 148, 254, .08);
}

.bid-contact-lock::before {
  content: "";
  grid-column: 1;
  grid-row: 1 / 3;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .34) 0%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(180deg, #5995fe 0%, #7b73ff 100%);
  box-shadow: 0 8px 18px rgba(121, 116, 255, .22);
}

.bid-contact-lock::after {
  content: "";
  position: absolute;
  left: 33px;
  top: 38px;
  width: 14px;
  height: 12px;
  border: 2px solid #fff;
  border-radius: 3px;
  box-sizing: border-box;
}

.bid-contact-lock strong,
.bid-contact-lock p {
  grid-column: 2;
}

.bid-contact-lock strong {
  color: var(--bid-blue);
  font-size: 17px;
  line-height: 1.35;
}

.bid-contact-lock p {
  margin: 0;
  color: var(--bid-muted);
}

.bid-lock-actions {
  grid-column: 3;
  grid-row: 1 / 3;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 0;
}

.bid-contact-lock .bid-btn {
  min-width: 128px;
  min-height: 40px;
  padding: 0 22px;
  border-radius: 22px;
  font-size: 15px;
}

.bid-contact-lock > .bid-btn {
  grid-column: 3;
  grid-row: 1 / 3;
}

.bid-auth-modal {
  position: fixed;
  inset: 0;
  z-index: 9998;
  box-sizing: border-box;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.bid-search-modal {
  position: fixed;
  inset: 0;
  z-index: 9997;
  box-sizing: border-box;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.bid-search-modal[aria-hidden="false"] {
  display: flex;
}

.bid-search-modal-open {
  overflow: hidden;
}

.bid-search-mask {
  position: absolute;
  inset: 0;
  background: rgba(13, 24, 43, .42);
  backdrop-filter: blur(8px);
}

.bid-search-dialog {
  position: relative;
  width: min(620px, 100%);
  padding: 34px 38px 36px;
  overflow: hidden;
  border: 1px solid rgba(90, 148, 254, .2);
  border-radius: 18px;
  background:
    radial-gradient(circle at 18% 0%, rgba(90, 148, 254, .16), transparent 34%),
    linear-gradient(180deg, rgba(244, 249, 255, .98), rgba(255, 255, 255, .96));
  box-shadow: 0 28px 80px rgba(29, 51, 92, .24);
}

.bid-search-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(90, 148, 254, .18);
  border-radius: 50%;
  color: var(--bid-muted);
  background: rgba(255, 255, 255, .72);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.bid-search-head {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-bottom: 22px;
  padding-right: 38px;
}

.bid-search-head > span {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .3), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, var(--bid-tech), var(--bid-violet));
  box-shadow: 0 12px 24px rgba(121, 116, 255, .24);
}

.bid-search-head strong {
  display: block;
  color: var(--bid-blue);
  font-size: 24px;
  line-height: 1.25;
}

.bid-search-head p {
  margin: 6px 0 0;
  color: var(--bid-muted);
  font-size: 14px;
}

.bid-search-modal-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 112px;
  gap: 12px;
}

.bid-search-field {
  position: relative;
  min-width: 0;
}

.bid-search-field-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  width: 16px;
  height: 16px;
  border: 2px solid #6b86a8;
  border-radius: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.bid-search-field-icon::after {
  content: "";
  position: absolute;
  right: -6px;
  bottom: -4px;
  width: 8px;
  height: 2px;
  border-radius: 2px;
  background: #6b86a8;
  transform: rotate(45deg);
}

.bid-search-modal-form input {
  width: 100%;
  height: 50px;
  padding: 0 16px 0 46px;
  border: 1px solid rgba(90, 148, 254, .22);
  border-radius: 10px;
  color: var(--bid-blue);
  background: rgba(255, 255, 255, .82);
  outline: none;
  font-size: 16px;
}

.bid-search-field:focus-within input {
  border-color: rgba(90, 148, 254, .62);
  box-shadow: 0 0 0 3px rgba(90, 148, 254, .12);
}

.bid-search-field:focus-within .bid-search-field-icon {
  border-color: var(--bid-tech);
}

.bid-search-field:focus-within .bid-search-field-icon::after {
  background: var(--bid-tech);
}

.bid-search-modal-form button {
  height: 50px;
  border: 0;
  border-radius: 25px;
  color: #fff;
  background: linear-gradient(180deg, var(--bid-tech), var(--bid-violet));
  box-shadow: 0 10px 22px rgba(121, 116, 255, .28);
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
}

.bid-auth-modal[aria-hidden="false"] {
  display: flex;
}

.bid-auth-modal-open {
  overflow: hidden;
}

.bid-auth-mask {
  position: absolute;
  inset: 0;
  background: rgba(13, 24, 43, .45);
  backdrop-filter: blur(8px);
}

.bid-auth-dialog {
  position: relative;
  width: min(492px, 100%);
  max-height: calc(100vh - 48px);
  padding: 32px 36px 34px;
  overflow-y: auto;
  border: 1px solid rgba(90, 148, 254, .2);
  border-radius: 18px;
  background:
    radial-gradient(circle at 18% 0%, rgba(90, 148, 254, .16), transparent 34%),
    linear-gradient(180deg, rgba(244, 249, 255, .98), rgba(255, 255, 255, .96));
  box-shadow: 0 28px 80px rgba(29, 51, 92, .24);
}

.bid-auth-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(90, 148, 254, .18);
  border-radius: 50%;
  color: var(--bid-muted);
  background: rgba(255, 255, 255, .72);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.bid-auth-modal-logo {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--bid-active);
  font-size: 24px;
  font-weight: 800;
}

.bid-auth-modal-logo img {
  width: auto;
  max-width: 210px;
  height: 42px;
  object-fit: contain;
}

.bid-auth-helper button {
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

.bid-auth-message {
  min-height: 22px;
  margin-bottom: 10px;
  color: var(--bid-muted);
  font-size: 14px;
  text-align: center;
}

.bid-auth-message.is-error {
  color: #d44b4b;
}

.bid-auth-message.is-success {
  color: #1b8d63;
}

.bid-auth-trust-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  margin: 0 0 12px;
  color: #55718d;
  font-size: 12px;
  text-align: left;
}

.bid-auth-trust-note strong,
.bid-auth-trust-note em {
  display: block;
  font-style: normal;
}

.bid-auth-trust-note strong {
  color: #1e9b68;
  font-size: 13px;
  line-height: 18px;
}

.bid-auth-trust-note em {
  color: #7890aa;
  line-height: 17px;
}

.bid-auth-wechat-brand-mark {
  position: relative;
  display: inline-block;
  flex: 0 0 34px;
  width: 34px;
  height: 30px;
}

.bid-auth-wechat-brand-mark::before,
.bid-auth-wechat-brand-mark::after {
  position: absolute;
  display: block;
  border-radius: 50%;
  content: "";
}

.bid-auth-wechat-brand-mark::before {
  top: 1px;
  left: 1px;
  width: 25px;
  height: 21px;
  background: #1aad70;
}

.bid-auth-wechat-brand-mark::after {
  right: 1px;
  bottom: 1px;
  width: 22px;
  height: 18px;
  background: #27c383;
  box-shadow: -3px 3px 0 -1px #27c383;
}

.bid-auth-wechat-brand-mark i,
.bid-auth-wechat-brand-mark i::after {
  position: absolute;
  z-index: 1;
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #fff;
  content: "";
}

.bid-auth-wechat-brand-mark i:first-child {
  top: 10px;
  left: 9px;
}

.bid-auth-wechat-brand-mark i:first-child::after {
  top: 0;
  left: 8px;
}

.bid-auth-wechat-brand-mark i:last-child {
  right: 8px;
  bottom: 8px;
}

.bid-auth-wechat-brand-mark i:last-child::after {
  top: 0;
  left: 8px;
}

.bid-auth-wechat {
  display: grid;
  justify-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px 12px;
  border: 1px solid rgba(26, 173, 112, .18);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(238, 255, 247, .92), rgba(255, 255, 255, .7));
}

.bid-auth-wechat-qr {
  position: relative;
  width: 198px;
  height: 196px;
  overflow: hidden;
  border: 1px solid rgba(26, 173, 112, .24);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(35, 142, 98, .12);
}

.bid-auth-wechat-loading {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  color: #7890aa;
  font-size: 12px;
}

#bid-auth-wechat-login {
  position: absolute;
  top: 15px;
  left: 50%;
  width: 300px;
  height: 400px;
  transform: translateX(-50%) scale(.82);
  transform-origin: top center;
}

#bid-auth-wechat-login iframe {
  display: block;
  width: 300px !important;
  height: 400px !important;
  border: 0;
}

.bid-auth-wechat p {
  margin: 0;
  color: #526d8d;
  font-size: 13px;
}

.bid-auth-password-toggle {
  border: 0;
  padding: 0;
  color: var(--bid-tech);
  background: transparent;
  cursor: pointer;
  font-size: 13px;
}

.bid-auth-password-fields {
  display: none;
  gap: 14px;
}

.bid-auth-modal-form.is-active.is-password-mode .bid-auth-wechat {
  display: none;
}

.bid-auth-modal-form.is-active.is-password-mode .bid-auth-password-fields {
  display: grid;
}

.bid-auth-modal-form {
  display: none;
  gap: 14px;
}

.bid-auth-modal-form.is-active {
  display: grid;
}

.bid-auth-modal-form label {
  display: grid;
  gap: 8px;
  margin: 0;
  color: var(--bid-blue);
  font-size: 14px;
  font-weight: 700;
}

.bid-auth-modal-form input {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(90, 148, 254, .2);
  border-radius: 8px;
  color: var(--bid-blue);
  background: rgba(255, 255, 255, .78);
  font-size: 15px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.bid-auth-modal-form input:focus {
  border-color: rgba(90, 148, 254, .62);
  box-shadow: 0 0 0 3px rgba(90, 148, 254, .12);
}

.bid-auth-vcode {
  grid-template-columns: minmax(0, 1fr) 120px;
  align-items: end;
}

.bid-auth-vcode span {
  grid-column: 1 / -1;
}

.bid-auth-vcode img {
  width: 120px;
  height: 46px;
  border: 1px solid rgba(90, 148, 254, .2);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  object-fit: cover;
}

.bid-auth-submit {
  width: 100%;
  height: 48px;
  margin-top: 6px;
  border: 0;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(180deg, var(--bid-tech) 0%, var(--bid-violet) 100%);
  box-shadow: 0 10px 22px rgba(121, 116, 255, .28);
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
}

.bid-auth-submit:disabled {
  cursor: default;
  opacity: .72;
}

.bid-auth-helper {
  min-height: 24px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--bid-muted);
  font-size: 14px;
}

.bid-auth-helper a,
.bid-auth-helper button {
  color: var(--bid-active);
}

.bid-vip-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  box-sizing: border-box;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.bid-vip-modal[aria-hidden="false"] {
  display: flex;
}

.bid-vip-modal-open {
  overflow: hidden;
}

.bid-vip-mask {
  position: absolute;
  inset: 0;
  background: rgba(13, 24, 43, .46);
  backdrop-filter: blur(8px);
}

.bid-vip-dialog {
  position: relative;
  z-index: 1;
  width: min(430px, 100%);
  padding: 28px 30px 30px;
  border: 1px solid rgba(25, 132, 255, .72);
  border-radius: 18px;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, .92) 0 72px, transparent 73px),
    linear-gradient(180deg, rgba(226, 243, 255, .98) 0%, rgba(246, 250, 255, .98) 100%);
  box-shadow: 0 24px 72px rgba(28, 79, 150, .24);
}

.bid-vip-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  color: #667991;
  background: rgba(255, 255, 255, .64);
  font-size: 22px;
  line-height: 30px;
}

.bid-vip-head {
  min-height: 62px;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: center;
  padding-right: 28px;
}

.bid-vip-head > span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(180deg, #5995fe 0%, #6d67fb 100%);
  font-weight: 800;
  letter-spacing: 0;
}

.bid-vip-head strong {
  display: block;
  color: var(--bid-blue);
  font-size: 24px;
  line-height: 1.2;
}

.bid-vip-head p,
.bid-vip-note {
  margin: 6px 0 0;
  color: #60728c;
  line-height: 1.6;
}

.bid-vip-qr {
  width: 212px;
  height: 212px;
  display: grid;
  place-items: center;
  margin: 24px auto 0;
  padding: 16px;
  border: 1px solid rgba(90, 148, 254, .2);
  border-radius: 14px;
  background: rgba(255, 255, 255, .72);
}

.bid-vip-qr img {
  width: 180px;
  height: 180px;
  object-fit: contain;
}

.bid-vip-qr-empty {
  display: grid;
  place-items: center;
  width: 180px;
  height: 180px;
  padding: 18px;
  border: 1px dashed rgba(90, 148, 254, .38);
  border-radius: 10px;
  color: #60728c;
  text-align: center;
  background: rgba(240, 246, 255, .72);
}

.bid-vip-note {
  text-align: center;
}

.bid-attachment {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  padding: 14px;
}

.bid-attachment a {
  color: var(--bid-active);
  font-weight: 700;
}

.bid-attachment-list fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.bid-attachment-list legend {
  display: none;
}

.bid-attachment-list ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bid-attachment-list li {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.bid-attach-file {
  min-width: 0;
  overflow-wrap: anywhere;
}

.bid-attach-actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.bid-attach-actions a {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 4px 10px;
  border: 1px solid rgba(21, 91, 199, .18);
  border-radius: 6px;
  background: #f5f9ff;
  line-height: 1.2;
}

.bid-muted {
  color: var(--bid-muted);
}

.bid-form {
  display: grid;
  gap: 14px;
}

.bid-form label {
  display: grid;
  gap: 6px;
  color: var(--bid-muted);
}

.bid-form input {
  height: 42px;
  padding: 0 12px;
}

.bid-form textarea {
  min-height: 140px;
  padding: 10px 12px;
  resize: vertical;
}

.bid-captcha {
  width: 120px;
  height: 40px;
  object-fit: contain;
  border: 1px solid var(--bid-line);
  border-radius: 8px;
}

.bid-comment-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.bid-comment {
  padding: 14px;
}

.bid-comment strong {
  color: var(--bid-blue);
}

.bid-comment span {
  margin-left: 10px;
  color: var(--bid-muted);
  font-size: 13px;
}

.bid-comment p {
  margin: 8px 0 0;
}

.bid-message-box {
  min-height: 180px;
}

.bid-sitemap ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.bid-sitemap li {
  overflow-wrap: anywhere;
}

.bid-footer {
  padding: 48px 0 26px;
  color: #53667f;
  background:
    linear-gradient(180deg, #ffffff 0%, #f5f8fc 100%);
  border-top: 1px solid rgba(90, 148, 254, .16);
}

.bid-footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  border: 1px solid rgba(90, 148, 254, .14);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(89, 149, 254, .1), rgba(55, 194, 154, .08)),
    rgba(255, 255, 255, .82);
  box-shadow: 0 18px 45px rgba(90, 148, 254, .1);
}

.bid-footer-brand {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 16px;
}

.bid-footer-mark {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #173e72 0%, #1fa889 100%);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 14px 30px rgba(23, 62, 114, .2);
}

.bid-footer strong {
  display: block;
  color: var(--bid-blue);
  font-size: 17px;
  line-height: 1.35;
}

.bid-footer p {
  margin: 8px 0 0;
  color: #72849f;
}

.bid-footer-brand p {
  max-width: 560px;
}

.bid-footer-action {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #60728c;
  font-size: 14px;
}

.bid-footer-action a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--bid-tech), #1fa889);
  box-shadow: 0 12px 26px rgba(31, 168, 137, .18);
}

.bid-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(280px, .9fr);
  gap: 30px;
  padding-top: 30px;
}

.bid-footer-nav-block {
  min-width: 0;
}

.bid-footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  margin-top: 14px;
}

.bid-footer-links a {
  min-width: 0;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-bottom: 1px solid rgba(90, 148, 254, .12);
  border-radius: 0;
  color: #5f7190;
  background: transparent;
  font-size: 14px;
  overflow-wrap: anywhere;
}

.bid-footer-links a:hover {
  color: var(--bid-active);
  border-color: rgba(111, 105, 229, .24);
  background: rgba(255, 255, 255, .56);
}

.bid-footer-note {
  padding: 4px 0 0;
}

.bid-footer-note p {
  padding-left: 12px;
  border-left: 3px solid rgba(31, 168, 137, .45);
}

.bid-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(90, 148, 254, .12);
  color: #7a8ba4;
  font-size: 13px;
}

.bid-showcase-section,
.bid-live-section,
.bid-scenario-section,
.bid-process-section,
.bid-faq-section,
.bid-voice-section,
.bid-directory-section {
  position: relative;
  overflow: hidden;
}

.bid-showcase-section {
  background: radial-gradient(circle at 12% 20%, rgba(90, 148, 254, .14), transparent 34%), linear-gradient(180deg, rgba(242, 247, 255, .72), rgba(255, 255, 255, .46));
}

.bid-showcase-layout {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 42px;
  align-items: center;
}

.bid-showcase-copy h2,
.bid-live-head h2,
.bid-scenario-section h2,
.bid-process-copy h2,
.bid-faq-intro h2,
.bid-voice-feature h2,
.bid-directory-main h2,
.bid-directory-process h2 {
  margin: 0;
  color: var(--bid-blue);
  line-height: 1.22;
}

.bid-showcase-copy h2 {
  max-width: 640px;
  font-size: 38px;
}

.bid-showcase-copy p:not(.bid-kicker),
.bid-process-copy p,
.bid-faq-intro p,
.bid-voice-feature p {
  color: var(--bid-muted);
}

.bid-showcase-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.bid-showcase-actions a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(90, 148, 254, .18);
  border-radius: 22px;
  color: var(--bid-active);
  background: rgba(255, 255, 255, .72);
  font-weight: 700;
}

.bid-showcase-actions a:first-child {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(180deg, var(--bid-tech), var(--bid-violet));
  box-shadow: 0 12px 26px rgba(121, 116, 255, .24);
}

.bid-showcase-product {
  position: relative;
  padding: 16px;
  border: 1px solid rgba(90, 148, 254, .18);
  border-radius: 22px;
  background: rgba(255, 255, 255, .62);
  box-shadow: 0 28px 78px rgba(90, 148, 254, .16);
}

.bid-showcase-product figure {
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
}

.bid-showcase-product img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.bid-showcase-metrics {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: -24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.bid-showcase-metrics span {
  min-height: 66px;
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 12px 14px;
  border: 1px solid rgba(90, 148, 254, .16);
  border-radius: 14px;
  color: var(--bid-muted);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 14px 34px rgba(90, 148, 254, .12);
}

.bid-showcase-metrics strong {
  color: var(--bid-blue);
}

.bid-live-section {
  background: linear-gradient(180deg, rgba(233, 243, 255, .78), rgba(244, 248, 255, .9));
}

.bid-live-board {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 32px;
}

.bid-live-head {
  position: sticky;
  top: 96px;
  align-self: start;
  min-height: 360px;
  display: grid;
  align-content: space-between;
  padding: 30px;
  border: 1px solid rgba(90, 148, 254, .18);
  border-radius: 22px;
  background: radial-gradient(circle at 82% 0%, rgba(123, 115, 255, .2), transparent 42%), rgba(255, 255, 255, .72);
  box-shadow: 0 18px 52px rgba(90, 148, 254, .12);
}

.bid-live-head p:last-child {
  margin: 0;
  color: var(--bid-muted);
}

.bid-live-list {
  display: grid;
  gap: 12px;
}

.bid-live-item {
  position: relative;
  min-height: 128px;
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr) 72px;
  gap: 20px;
  align-items: center;
  padding: 22px 24px;
  border: 1px solid rgba(90, 148, 254, .14);
  border-radius: 16px;
  background: rgba(255, 255, 255, .84);
  box-shadow: 0 14px 38px rgba(90, 148, 254, .08);
}

.bid-live-status {
  display: grid;
  gap: 12px;
  align-content: center;
}

.bid-live-status em {
  color: var(--bid-muted);
  font-size: 13px;
  font-style: normal;
}

.bid-live-content h3 {
  margin: 0 0 8px;
  color: var(--bid-blue);
  font-size: 18px;
}

.bid-live-content p {
  margin: 0;
  color: var(--bid-muted);
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.bid-live-content small {
  display: block;
  margin-top: 9px;
  color: #6b82a2;
}

.bid-live-action {
  justify-self: end;
  color: var(--bid-active);
  font-weight: 800;
}

.bid-scenario-section {
  background: linear-gradient(90deg, rgba(90, 148, 254, .08) 1px, transparent 1px), linear-gradient(180deg, rgba(90, 148, 254, .08) 1px, transparent 1px);
  background-size: 74px 74px;
}

.bid-scenario-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.bid-scenario-map::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 42px;
  height: 2px;
  background: linear-gradient(90deg, var(--bid-tech), var(--bid-violet), var(--bid-orange));
}

.bid-scenario-map article {
  position: relative;
  min-height: 230px;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 76px 22px 24px;
  border: 1px solid rgba(90, 148, 254, .16);
  border-radius: 18px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 16px 42px rgba(90, 148, 254, .1);
}

.bid-scenario-map span {
  position: absolute;
  top: 20px;
  left: 22px;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 7px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(180deg, var(--bid-tech), var(--bid-violet));
  box-shadow: 0 12px 26px rgba(121, 116, 255, .24);
  font-weight: 800;
}

.bid-scenario-map h3,
.bid-process-timeline strong,
.bid-voice-grid strong,
.bid-directory-list strong,
.bid-directory-process strong {
  color: var(--bid-blue);
}

.bid-scenario-map h3 {
  margin: 0;
  font-size: 21px;
}

.bid-scenario-map p {
  margin: 0;
  color: var(--bid-muted);
}

.bid-process-section {
  background: linear-gradient(180deg, rgba(238, 246, 255, .86), rgba(248, 251, 255, .9));
}

.bid-process-board {
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

.bid-process-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 32px;
  border-radius: 22px;
  color: #fff;
  background: radial-gradient(circle at 100% 0%, rgba(255, 255, 255, .28), transparent 34%), linear-gradient(180deg, #2967c8, #6658ef);
  box-shadow: 0 24px 70px rgba(70, 91, 220, .24);
}

.bid-process-copy .bid-kicker,
.bid-process-copy h2,
.bid-process-copy p {
  color: #fff;
}

.bid-process-copy .bid-btn {
  width: auto;
  min-width: 0;
  justify-self: start;
  min-height: 48px;
  font-size: 16px;
  background: rgba(255, 255, 255, .2);
  box-shadow: none;
}

.bid-process-timeline {
  display: grid;
  gap: 14px;
}

.bid-process-timeline div {
  position: relative;
  min-height: 122px;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 8px 18px;
  align-content: center;
  padding: 22px 24px;
  border: 1px solid rgba(90, 148, 254, .16);
  border-radius: 18px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 14px 36px rgba(90, 148, 254, .09);
}

.bid-process-timeline span {
  grid-row: 1 / 3;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(180deg, var(--bid-tech), var(--bid-violet));
  font-weight: 800;
}

.bid-process-timeline p {
  margin: 0;
  color: var(--bid-muted);
}

.bid-faq-board {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.bid-faq-intro {
  position: sticky;
  top: 96px;
  padding: 30px;
  border: 1px solid rgba(90, 148, 254, .16);
  border-radius: 22px;
  background: radial-gradient(circle at 0% 0%, rgba(90, 148, 254, .16), transparent 36%), rgba(255, 255, 255, .74);
  box-shadow: 0 18px 52px rgba(90, 148, 254, .1);
}

.bid-faq-list {
  display: grid;
  gap: 12px;
}

.bid-faq-list details {
  overflow: hidden;
  border: 1px solid rgba(90, 148, 254, .16);
  border-radius: 16px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 12px 32px rgba(90, 148, 254, .08);
}

.bid-faq-list summary {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 20px;
  color: var(--bid-blue);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.bid-faq-list summary::-webkit-details-marker {
  display: none;
}

.bid-faq-list summary::after {
  content: "+";
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(180deg, var(--bid-tech), var(--bid-violet));
  box-shadow: 0 8px 18px rgba(121, 116, 255, .2);
}

.bid-faq-list details[open] summary::after {
  content: "-";
}

.bid-faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--bid-muted);
}

.bid-voice-section {
  background: radial-gradient(circle at 90% 10%, rgba(255, 115, 27, .1), transparent 28%), linear-gradient(180deg, rgba(237, 245, 255, .78), rgba(255, 255, 255, .46));
}

.bid-voice-board {
  display: grid;
  grid-template-columns: 390px minmax(0, 1fr);
  gap: 28px;
}

.bid-voice-feature {
  min-height: 430px;
  display: grid;
  align-content: end;
  padding: 32px;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(180deg, rgba(25, 48, 86, .12), rgba(25, 48, 86, .62)), url("img/bid-hero-cover.jpg") center / cover;
  box-shadow: 0 24px 70px rgba(29, 51, 92, .18);
}

.bid-voice-feature .bid-kicker,
.bid-voice-feature h2,
.bid-voice-feature p {
  color: #fff;
}

.bid-voice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.bid-voice-grid article {
  min-height: 188px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(90, 148, 254, .14);
  border-radius: 18px;
  background: rgba(255, 255, 255, .84);
  box-shadow: 0 14px 36px rgba(90, 148, 254, .09);
}

.bid-voice-grid p {
  margin: 0;
  color: var(--bid-muted);
}

.bid-voice-grid span {
  color: var(--bid-active);
  font-size: 13px;
  font-weight: 700;
}

.bid-directory-section {
  background: linear-gradient(180deg, rgba(242, 247, 255, .8), rgba(255, 255, 255, .64));
}

.bid-directory-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 28px;
  align-items: stretch;
}

.bid-directory-main,
.bid-directory-process {
  padding: 30px;
  border: 1px solid rgba(90, 148, 254, .16);
  border-radius: 22px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 18px 52px rgba(90, 148, 254, .1);
}

.bid-directory-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.bid-directory-list a {
  min-height: 96px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 18px;
  border: 1px solid rgba(90, 148, 254, .12);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(244, 249, 255, .86), rgba(255, 255, 255, .72));
}

.bid-directory-list span,
.bid-directory-process span {
  color: var(--bid-muted);
}

.bid-directory-process ol {
  display: grid;
  gap: 16px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.bid-directory-process li {
  position: relative;
  display: grid;
  gap: 4px;
  padding-left: 38px;
}

.bid-directory-process li::before {
  content: counter(list-item);
  position: absolute;
  left: 0;
  top: 0;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(180deg, var(--bid-tech), var(--bid-violet));
  font-size: 12px;
  font-weight: 800;
}

.bid-float-tools {
  position: fixed;
  right: 18px;
  bottom: 24px;
  z-index: 80;
  display: grid;
  gap: 10px;
}

.bid-float-item {
  position: relative;
}

.bid-float-btn {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(111, 105, 229, .18);
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(180deg, #5a94fe 0%, #7975ff 100%);
  box-shadow: 0 14px 34px rgba(90, 148, 254, .22);
  cursor: pointer;
}

.bid-float-btn span {
  display: block;
  font-size: 13px;
  line-height: 1.15;
  text-align: center;
}

.bid-service-popover {
  position: absolute;
  right: 64px;
  bottom: 0;
  width: 214px;
  display: none;
  padding: 14px;
  border: 1px solid rgba(90, 148, 254, .18);
  border-radius: 10px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 18px 48px rgba(90, 148, 254, .22);
}

.bid-service-popover strong {
  display: block;
  margin-bottom: 10px;
  color: var(--bid-blue);
}

.bid-service-popover img {
  display: block;
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  background: #f4f7ff;
}

.bid-service-item:hover .bid-service-popover,
.bid-service-item:focus-within .bid-service-popover {
  display: block;
}

@media (prefers-reduced-motion: no-preference) {
  .bid-console-toolbar {
    position: relative;
  }

  .bid-console-toolbar::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 90px;
    transform: translateX(-120px);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .7), transparent);
    animation: bid-scan 4.8s ease-in-out infinite;
  }

  .bid-console-chart b {
    animation: bid-bars 3.8s ease-in-out infinite;
  }

  .bid-console-chart b:nth-child(2) {
    animation-delay: .18s;
  }

  .bid-console-chart b:nth-child(3) {
    animation-delay: .36s;
  }

  .bid-console-chart b:nth-child(4) {
    animation-delay: .54s;
  }

  .bid-flow-line::after {
    animation: bid-flow 5.2s ease-in-out infinite;
  }

  .bid-card,
  .bid-service-card,
  .bid-flow-card,
  .bid-visual-media,
  .bid-cat-card,
  .bid-review-card,
  .bid-row,
  .bid-float-btn {
    transition: transform .2s ease, box-shadow .2s ease;
  }

  .bid-card:hover,
  .bid-service-card:hover,
  .bid-visual-media:hover,
  .bid-cat-card:hover,
  .bid-review-card:hover,
  .bid-row:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 48px rgba(90, 148, 254, .18);
  }

  .bid-visual-media img,
  .bid-hero-visual > img {
    transition: transform .45s ease;
  }

  .bid-visual-media:hover img,
  .bid-hero-visual:hover > img {
    transform: scale(1.025);
  }

  .bid-float-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(90, 148, 254, .28);
  }

  .bid-page-head::after {
    animation: bid-float-card 8s ease-in-out infinite;
  }
}

@keyframes bid-float-card {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-8px) rotate(-2deg); }
}

@keyframes bid-scan {
  0%, 35% {
    transform: translateX(-120px);
  }

  70%, 100% {
    transform: translateX(560px);
  }
}

@keyframes bid-bars {
  0%, 100% {
    filter: saturate(1);
    opacity: .86;
  }

  50% {
    filter: saturate(1.2);
    opacity: 1;
  }
}

@keyframes bid-flow {
  0%, 18% {
    transform: scaleX(.12);
  }

  70%, 100% {
    transform: scaleX(1);
  }
}

@media (max-width: 1180px) {
  .bid-nav {
    gap: 18px;
  }

  .bid-nav-links {
    gap: 22px;
  }

  .bid-search {
    width: 220px;
    flex-basis: 220px;
  }

  .bid-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bid-hero-filter .bid-filter-grid-main {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .bid-hero-filter .bid-filter-grid-core {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bid-hero-categories {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .bid-hero-searchline {
    grid-template-columns: 1fr 1fr 1fr auto;
  }
}

@media (max-width: 980px) {
  .bid-header {
    background: rgba(246, 250, 255, .86);
    border-bottom: 1px solid rgba(90, 148, 254, .14);
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 28px rgba(90, 148, 254, .08);
  }

  .bid-nav {
    position: relative;
    min-height: 68px;
    flex-wrap: nowrap;
    gap: 10px;
    padding: 10px 0;
  }

  .bid-brand {
    flex: 1;
    min-width: 0;
    font-size: 18px;
  }

  .bid-brand-logo {
    max-width: 160px;
  }

  .bid-mobile-toggle {
    display: none;
  }

  .bid-search-trigger {
    order: 2;
    min-width: 42px;
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    margin-left: 0;
    padding: 0;
    border-radius: 50%;
  }

  .bid-search-trigger span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .bid-nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 60;
    width: 100%;
    display: none;
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 12px;
    overflow: visible;
    border: 1px solid rgba(90, 148, 254, .16);
    border-radius: 18px;
    color: var(--bid-blue);
    background:
      radial-gradient(circle at 14% 0%, rgba(90, 148, 254, .14), transparent 36%),
      linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(244, 249, 255, .94));
    box-shadow: 0 22px 60px rgba(29, 51, 92, .18);
    white-space: normal;
  }

  .bid-header.is-mobile-open .bid-nav-links {
    display: grid;
  }

  .bid-nav-item,
  .bid-nav-item > a {
    min-height: 42px;
    width: 100%;
  }

  .bid-nav-item {
    display: block;
  }

  .bid-nav-item > a {
    justify-content: space-between;
    padding: 0 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .56);
  }

  .bid-nav-item > a:hover,
  .bid-nav-item.is-active > a {
    background: rgba(229, 239, 255, .78);
  }

  .bid-nav-item.is-active > a::after {
    left: auto;
    right: 12px;
    bottom: 10px;
    width: 20px;
    transform: none;
  }

  .bid-nav-sub {
    position: static;
    width: 100%;
    min-width: 0;
    display: grid;
    margin-top: 6px;
    padding: 6px;
    border-radius: 12px;
    transform: none;
    box-shadow: none;
  }

  .bid-search {
    display: none;
  }

  .bid-account {
    order: 3;
    flex: 0 0 auto;
    justify-content: flex-end;
    gap: 8px;
  }

  .bid-account a {
    min-height: 34px;
    padding: 0 13px;
    border-radius: 17px;
    font-size: 14px;
  }

  .bid-avatar-button {
    padding-right: 8px;
  }

  .bid-avatar-button span {
    display: none;
  }

  .bid-hero {
    padding-top: 54px;
  }

  .bid-hero-titleline {
    flex-wrap: wrap;
  }

  .bid-console-preview {
    min-height: 320px;
  }

  .bid-console-body {
    grid-template-columns: 1fr;
  }

  .bid-console-body aside {
    display: none;
  }

  .bid-stat-grid,
  .bid-card-grid,
  .bid-proof-grid,
  .bid-faq-grid,
  .bid-entry-grid,
  .bid-visual-grid,
  .bid-flow-grid,
  .bid-detail-layout {
    grid-template-columns: 1fr 1fr;
  }

  .bid-footer-main {
    align-items: flex-start;
    flex-direction: column;
  }

  .bid-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bid-footer-note {
    grid-column: 1 / -1;
  }

  .bid-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .bid-review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bid-visual-grid,
  .bid-flow-grid {
    grid-template-columns: 1fr;
  }

  .bid-visual-copy h2 {
    font-size: 28px;
  }

  .bid-console-panels {
    grid-template-columns: 1fr;
  }

  .bid-filter {
    grid-template-columns: 1fr 1fr;
  }

  .bid-hero-filter .bid-filter-grid-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bid-hero-filter .bid-filter-grid-advanced {
    grid-template-columns: 1fr 1fr;
  }

  .bid-hero-filter .bid-filter-grid-core {
    grid-template-columns: 1fr 1fr;
  }

  .bid-hero-searchline {
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }

  .bid-hero-search-actions {
    grid-column: 1 / -1;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .bid-hero-categories {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .bid-search-panel {
    grid-template-columns: 1fr;
  }

  .bid-row,
  .bid-row-card {
    grid-template-columns: 1fr;
  }

  .bid-meta-grid,
  .bid-key-grid,
  .bid-info-table {
    grid-template-columns: 1fr;
  }

  .bid-detail-layout {
    grid-template-columns: 1fr;
  }

  .bid-side-box {
    position: static;
  }

  .bid-hero-visual .bid-stat-grid {
    position: static;
    margin-top: 12px;
  }

  .bid-activity-band .bid-wrap {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 14px 0;
  }

  .bid-flow-line {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bid-flow-line::before,
  .bid-flow-line::after {
    display: none;
  }
}

@media (max-width: 560px) {
  .bid-wrap {
    width: min(100% - 24px, 1400px);
  }

  .bid-nav {
    min-height: 62px;
  }

  .bid-brand {
    gap: 8px;
    font-size: 17px;
  }

  .bid-brand-mark {
    width: 46px;
    height: 30px;
    flex-basis: 46px;
    font-size: 16px;
  }

  .bid-brand-text {
    display: none;
  }

  .bid-brand-logo {
    max-width: 128px;
  }

  .bid-mobile-toggle {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .bid-search-trigger {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .bid-account {
    gap: 6px;
  }

  .bid-account a {
    min-height: 32px;
    padding: 0 11px;
    font-size: 13px;
  }

  .bid-page-head::after {
    display: none;
  }

  .bid-float-tools {
    right: 12px;
    bottom: 16px;
  }

  .bid-float-btn {
    width: 46px;
    height: 46px;
  }

  .bid-service-popover {
    right: 0;
    bottom: 56px;
    width: 184px;
  }

  .bid-service-popover img {
    width: 156px;
    height: 156px;
  }

  .bid-brand {
    min-width: 0;
    font-size: 18px;
  }

  .bid-brand-mark {
    width: 46px;
    height: 30px;
    flex-basis: 46px;
    font-size: 16px;
  }

  .bid-brand-logo {
    height: 34px;
    max-width: 148px;
  }

  .bid-account {
    width: auto;
    justify-content: flex-end;
  }

  .bid-account a {
    min-height: 32px;
    padding: 0 12px;
  }

  .bid-account-dropdown {
    right: 0;
    left: auto;
  }

  .bid-search {
    width: 100%;
    flex-basis: 100%;
  }

  .bid-hero {
    padding-top: 42px;
  }

  .bid-hero h1,
  .bid-hero-titleline h1 {
    font-size: 34px;
  }

  .bid-hero-titleline {
    gap: 12px;
  }

  .bid-hero-titleline span {
    height: 30px;
    font-size: 14px;
  }

  .bid-hero-text {
    font-size: 16px;
    line-height: 1.7;
  }

  .bid-hero-points {
    justify-content: stretch;
  }

  .bid-hero-points span {
    width: 100%;
    justify-content: center;
  }

  .bid-hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .bid-hero-filter.bid-filter-panel {
    padding: 12px;
  }

  .bid-hero-searchline {
    grid-template-columns: 1fr;
  }

  .bid-filter-grid-core {
    grid-template-columns: 1fr;
    display: grid;
  }

  .bid-hero-search-actions {
    width: 100%;
  }

  .bid-btn {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    font-size: 16px;
  }

  .bid-console-preview,
  .bid-hero-visual {
    margin-top: 28px;
    min-height: 0;
  }

  .bid-window-bar em {
    margin-left: 8px;
  }

  .bid-console-main {
    padding: 16px;
  }

  .bid-stat-grid,
  .bid-card-grid,
  .bid-proof-grid,
  .bid-service-grid,
  .bid-flow-line,
  .bid-entry-grid,
  .bid-chip-grid,
  .bid-cat-grid,
  .bid-faq-grid,
  .bid-review-grid,
  .bid-filter,
  .bid-hero-filter,
  .bid-filter-grid-main,
  .bid-filter-grid-advanced {
    grid-template-columns: 1fr;
  }

  .bid-hero-categories {
    grid-template-columns: 1fr;
  }

  .bid-filter-head,
  .bid-filter-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .bid-footer {
    padding: 34px 0 28px;
  }

  .bid-footer-brand,
  .bid-footer-action {
    align-items: flex-start;
    flex-direction: column;
  }

  .bid-footer-grid,
  .bid-footer-links {
    grid-template-columns: 1fr;
  }

  .bid-footer-note {
    grid-column: auto;
  }

  .bid-section {
    padding: 38px 0;
  }

  .bid-proof-grid div {
    min-height: 88px;
    border-right: 1px solid rgba(90, 148, 254, .12);
  }

  .bid-section-head {
    display: block;
  }

  .bid-section-head p {
    margin-top: 6px;
  }

  .bid-page-head h1 {
    font-size: 26px;
  }

  .bid-title-line {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .bid-share-bar {
    padding: 10px;
    gap: 8px;
  }

  .bid-share-btn {
    flex: 1 1 auto;
    justify-content: center;
    min-width: calc(50% - 8px);
  }

  .bid-detail-main {
    padding: 20px;
  }

  .bid-lock-actions {
    grid-column: 1 / -1;
    grid-row: auto;
    flex-direction: column;
  }

  .bid-contact-lock {
    grid-template-columns: 40px minmax(0, 1fr);
    min-height: 0;
    padding: 16px;
  }

  .bid-contact-lock::before {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .bid-contact-lock::after {
    left: 30px;
    top: 35px;
  }

  .bid-contact-lock strong,
  .bid-contact-lock p {
    grid-column: 2;
  }

  .bid-contact-lock > .bid-btn {
    grid-column: 1 / -1;
    grid-row: auto;
    width: 100%;
  }

  .bid-contact-lock .bid-btn {
    width: 100%;
    min-width: 0;
  }

  .bid-auth-modal {
    padding: 16px;
  }

  .bid-search-modal {
    padding: 16px;
  }

  .bid-search-dialog {
    padding: 28px 18px 24px;
    border-radius: 14px;
  }

  .bid-search-head {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
    margin-bottom: 18px;
    padding-right: 32px;
  }

  .bid-search-head > span {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .bid-search-head strong {
    font-size: 21px;
  }

  .bid-search-modal-form {
    grid-template-columns: 1fr;
  }

  .bid-search-modal-form input,
  .bid-search-modal-form button {
    height: 46px;
  }

  .bid-auth-dialog {
    max-height: calc(100vh - 32px);
    padding: 28px 18px 24px;
    overflow-y: auto;
    border-radius: 14px;
  }

  .bid-auth-modal-logo {
    margin-bottom: 18px;
    font-size: 21px;
  }

  .bid-auth-switch button {
    min-height: 40px;
    font-size: 15px;
  }

  .bid-auth-modal-form input,
  .bid-auth-vcode img {
    height: 44px;
  }

  .bid-auth-helper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .bid-vip-modal {
    padding: 16px;
  }

  .bid-vip-dialog {
    padding: 24px 18px 24px;
    border-radius: 14px;
  }

  .bid-vip-head {
    grid-template-columns: 48px 1fr;
    gap: 12px;
  }

  .bid-vip-head > span {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .bid-vip-head strong {
    font-size: 21px;
  }

  .bid-vip-qr {
    width: 196px;
    height: 196px;
    padding: 12px;
  }

  .bid-vip-qr img,
  .bid-vip-qr-empty {
    width: 172px;
    height: 172px;
  }

  .bid-visual-copy h2 {
    font-size: 24px;
  }

  .bid-service-card,
  .bid-flow-card {
    min-height: auto;
    padding: 18px;
  }
}

@media (max-width: 980px) {
  .bid-showcase-layout,
  .bid-live-board,
  .bid-process-board,
  .bid-faq-board,
  .bid-voice-board,
  .bid-directory-board {
    grid-template-columns: 1fr;
  }

  .bid-showcase-copy h2 {
    font-size: 32px;
  }

  .bid-showcase-metrics {
    position: static;
    margin-top: 12px;
  }

  .bid-live-head,
  .bid-faq-intro {
    position: static;
    min-height: 0;
  }

  .bid-live-item {
    grid-template-columns: 118px minmax(0, 1fr) 60px;
  }

  .bid-scenario-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bid-scenario-map::before {
    display: none;
  }

  .bid-directory-board {
    align-items: start;
  }
}

@media (max-width: 560px) {
  .bid-showcase-copy h2,
  .bid-live-head h2,
  .bid-scenario-section h2,
  .bid-process-copy h2,
  .bid-faq-intro h2,
  .bid-voice-feature h2,
  .bid-directory-main h2,
  .bid-directory-process h2 {
    font-size: 24px;
  }

  .bid-showcase-product,
  .bid-live-head,
  .bid-process-copy,
  .bid-faq-intro,
  .bid-voice-feature,
  .bid-directory-main,
  .bid-directory-process {
    padding: 18px;
    border-radius: 16px;
  }

  .bid-showcase-metrics,
  .bid-scenario-map,
  .bid-voice-grid,
  .bid-directory-list {
    grid-template-columns: 1fr;
  }

  .bid-live-item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px;
  }

  .bid-live-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  .bid-live-action {
    justify-self: start;
  }

  .bid-scenario-map article {
    min-height: 190px;
    padding: 72px 18px 20px;
  }

  .bid-process-timeline div {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .bid-process-timeline span {
    grid-row: auto;
  }

  .bid-faq-list summary {
    min-height: 62px;
    padding: 0 16px;
  }

  .bid-faq-list p {
    padding: 0 16px 18px;
  }

  .bid-voice-feature {
    min-height: 320px;
  }

  .bid-voice-grid article {
    min-height: auto;
    padding: 18px;
  }
}


/* Category filter: second and third level taxonomy */
.bid-category-filter-board {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.bid-category-filter-board-compact {
  margin: 18px 0 22px;
}

.bid-category-filter-group {
  border: 1px solid rgba(25, 32, 45, .10);
  border-radius: 18px;
  background: rgba(255, 255, 255, .72);
  overflow: hidden;
}

.bid-category-filter-group summary {
  cursor: pointer;
  padding: 14px 18px;
  font-weight: 800;
  color: #182033;
  background: linear-gradient(135deg, rgba(247, 249, 252, .96), rgba(238, 242, 247, .86));
}

.bid-category-filter-row {
  display: grid;
  grid-template-columns: minmax(130px, 190px) 1fr;
  gap: 12px;
  padding: 12px 14px;
  border-top: 1px solid rgba(25, 32, 45, .08);
}

.bid-category-filter-second,
.bid-category-filter-terms a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border-radius: 999px;
  text-decoration: none;
  transition: background-color .16s ease, color .16s ease, border-color .16s ease;
}

.bid-category-filter-second {
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(25, 32, 45, .16);
  background: #fff;
  color: #182033;
  font-weight: 700;
}

.bid-category-filter-terms {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bid-category-filter-terms a {
  padding: 0 12px;
  border: 1px solid rgba(25, 32, 45, .10);
  background: rgba(255, 255, 255, .62);
  color: #556070;
  font-size: 13px;
}

.bid-category-filter-second:hover,
.bid-category-filter-terms a:hover,
.bid-category-filter-second.is-active,
.bid-category-filter-terms a.is-active {
  border-color: rgba(16, 94, 255, .42);
  background: rgba(16, 94, 255, .10);
  color: #0f4fd6;
}

.bid-trade-home-list {
  margin-top: 0;
}

@media (max-width: 760px) {
  .bid-category-filter-row {
    grid-template-columns: 1fr;
  }

  .bid-category-filter-second {
    justify-content: flex-start;
  }
}

/* Homepage v2: original bid information desk */
.bid-home-v2 {
  background: #f5f7fa;
  color: #172033;
}

.bid-home-v2 a {
  text-decoration: none;
}

.bid-home-hero {
  padding: 56px 0 34px;
  border-bottom: 1px solid #e5eaf0;
  background:
    linear-gradient(90deg, rgba(11, 31, 58, .04) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #f5f7fa 100%);
  background-size: 48px 48px, auto;
}

.bid-home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .72fr);
  gap: 28px;
  align-items: stretch;
}

.bid-home-head {
  min-height: 380px;
  display: grid;
  align-content: center;
  padding: 38px;
  border: 1px solid #dfe6ef;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(11, 31, 58, .96), rgba(7, 24, 45, .96)),
    #0b1f3a;
  color: #ffffff;
}

.bid-home-eyebrow,
.bid-home-block-head span,
.bid-home-results-head span {
  margin: 0 0 10px;
  color: #c9a968;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.bid-home-head h1 {
  margin: 0;
  color: #ffffff;
  font-size: 52px;
  line-height: 1.1;
  letter-spacing: 0;
}

.bid-home-lead {
  max-width: 640px;
  margin: 18px 0 0;
  color: #d8e1ee;
  font-size: 17px;
  line-height: 1.85;
}

.bid-home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.bid-home-primary,
.bid-home-secondary,
.bid-home-search button,
.bid-home-results-head > a,
.bid-home-item-link,
.bid-home-all-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-weight: 800;
  white-space: nowrap;
}

.bid-home-primary,
.bid-home-search button {
  padding: 0 20px;
  border: 1px solid #c9a968;
  color: #0b1f3a;
  background: #c9a968;
}

.bid-home-secondary {
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, .24);
  color: #ffffff;
  background: rgba(255, 255, 255, .08);
}

.bid-home-search {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 24px;
  border: 1px solid #dfe6ef;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(11, 31, 58, .08);
}

.bid-home-search-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid #e5eaf0;
}

.bid-home-search-title strong {
  color: #0b1f3a;
  font-size: 19px;
}

.bid-home-search-title a,
.bid-home-results-head > a,
.bid-home-all-link {
  color: #2f80ed;
}

.bid-home-search label {
  min-width: 0;
  display: grid;
  gap: 7px;
  color: #5b667a;
  font-size: 13px;
  font-weight: 800;
}

.bid-home-search input,
.bid-home-search select {
  width: 100%;
  height: 46px;
  min-width: 0;
  padding: 0 12px;
  border: 1px solid #d9e0ea;
  border-radius: 6px;
  color: #172033;
  background: #ffffff;
  outline: 0;
}

.bid-home-search input:focus,
.bid-home-search select:focus {
  border-color: #2f80ed;
  box-shadow: 0 0 0 3px rgba(47, 128, 237, .12);
}

.bid-home-search-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.bid-home-search button {
  width: 100%;
  border-color: #0b1f3a;
  color: #ffffff;
  background: #0b1f3a;
  cursor: pointer;
}

.bid-home-brief {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.bid-home-brief div {
  min-height: 92px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 18px;
  border: 1px solid #e5eaf0;
  border-radius: 8px;
  background: #ffffff;
}

.bid-home-brief span {
  color: #5b667a;
  font-size: 13px;
}

.bid-home-brief strong {
  color: #0b1f3a;
  font-size: 26px;
  line-height: 1.1;
}

.bid-home-section {
  padding: 42px 0;
}

.bid-home-section-tight {
  padding-top: 34px;
}

.bid-home-workbench {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.bid-home-taxonomy,
.bid-home-results {
  border: 1px solid #e5eaf0;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(11, 31, 58, .05);
}

.bid-home-taxonomy {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 12px;
  padding: 18px;
}

.bid-home-block-head h2,
.bid-home-results-head h2 {
  margin: 0;
  color: #0b1f3a;
  font-size: 22px;
  line-height: 1.32;
  letter-spacing: 0;
}

.bid-home-all-link {
  justify-content: flex-start;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid #d9e0ea;
  color: #0b1f3a;
  background: #f8fafc;
}

.bid-home-category-list {
  display: grid;
  gap: 8px;
}

.bid-home-category {
  border-top: 1px solid #e5eaf0;
  padding-top: 8px;
}

.bid-home-category summary {
  cursor: pointer;
  color: #5b667a;
  font-weight: 800;
  list-style: none;
}

.bid-home-category summary::-webkit-details-marker {
  display: none;
}

.bid-home-category a {
  min-height: 38px;
  display: flex;
  align-items: center;
  margin-top: 6px;
  padding: 0 10px;
  border-radius: 6px;
  color: #172033;
}

.bid-home-category a:hover,
.bid-home-category a.is-active {
  color: #0b1f3a;
  background: #eef3f8;
}

.bid-home-results {
  min-width: 0;
  padding: 20px;
}

.bid-home-results-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.bid-home-results-head > a {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid #d9e0ea;
  color: #0b1f3a;
  background: #ffffff;
}

.bid-home-list {
  display: grid;
  gap: 10px;
}

.bid-home-item {
  min-height: 148px;
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) 92px;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid #e5eaf0;
  border-radius: 8px;
  background: #ffffff;
}

.bid-home-item:hover {
  border-color: rgba(47, 128, 237, .45);
}

.bid-home-item-status {
  display: grid;
  gap: 8px;
}

.bid-home-item-status em {
  color: #5b667a;
  font-size: 13px;
  font-style: normal;
}

.bid-home-item-body {
  min-width: 0;
}

.bid-home-item h3 {
  margin: 0;
  color: #172033;
  font-size: 18px;
  line-height: 1.36;
  letter-spacing: 0;
}

.bid-home-item p {
  display: -webkit-box;
  overflow: hidden;
  margin: 8px 0 10px;
  color: #5b667a;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.bid-home-item dl {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.bid-home-item dt {
  color: #8a94a6;
  font-size: 12px;
}

.bid-home-item dd {
  margin: 2px 0 0;
  overflow: hidden;
  color: #172033;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bid-home-item-link {
  border: 1px solid #0b1f3a;
  color: #0b1f3a;
}

.bid-home-guide-section {
  background: #ffffff;
  border-top: 1px solid #e5eaf0;
}

.bid-home-guide-head {
  margin-bottom: 16px;
}

.bid-home-guide {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.bid-home-guide article {
  min-height: 190px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 22px;
  border: 1px solid #e5eaf0;
  border-radius: 8px;
  background: #f8fafc;
}

.bid-home-guide article span {
  color: #c9a968;
  font-size: 13px;
  font-weight: 900;
}

.bid-home-guide h3 {
  margin: 0;
  color: #0b1f3a;
  font-size: 18px;
  line-height: 1.35;
}

.bid-home-guide p {
  margin: 0;
  color: #5b667a;
}

@media (max-width: 1100px) {
  .bid-home-hero-grid,
  .bid-home-workbench {
    grid-template-columns: 1fr;
  }

  .bid-home-head {
    min-height: 300px;
  }

  .bid-home-taxonomy {
    position: static;
  }

  .bid-home-guide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .bid-home-hero {
    padding: 30px 0 24px;
  }

  .bid-home-head {
    min-height: 0;
    padding: 26px 20px;
  }

  .bid-home-head h1 {
    font-size: 34px;
  }

  .bid-home-lead {
    font-size: 16px;
  }

  .bid-home-search,
  .bid-home-results,
  .bid-home-taxonomy {
    padding: 16px;
  }

  .bid-home-search-row,
  .bid-home-brief,
  .bid-home-guide,
  .bid-home-item dl {
    grid-template-columns: 1fr;
  }

  .bid-home-results-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .bid-home-item {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .bid-home-item-link {
    justify-self: start;
    padding: 0 16px;
  }
}

/* ===== 新版首页 Hero ===== */
.bid-hero-new {
  position: relative;
  overflow: hidden;
  padding: 60px 0 50px;
  background: linear-gradient(160deg, #f0f4ff 0%, #ffffff 40%, #f5f0ff 100%);
}

.bid-hero-new-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.bid-hero-new-bg-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
}

.bid-hero-new-bg-shape-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
  background: radial-gradient(circle, #667eea 0%, transparent 70%);
  animation: bid-hero-float 12s ease-in-out infinite;
}

.bid-hero-new-bg-shape-2 {
  width: 400px;
  height: 400px;
  bottom: -150px;
  left: -80px;
  background: radial-gradient(circle, #f093fb 0%, transparent 70%);
  animation: bid-hero-float 15s ease-in-out infinite reverse;
}

.bid-hero-new-bg-shape-3 {
  width: 300px;
  height: 300px;
  top: 30%;
  left: 55%;
  background: radial-gradient(circle, #4facfe 0%, transparent 70%);
  animation: bid-hero-float 10s ease-in-out infinite 2s;
}

@keyframes bid-hero-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.bid-hero-new-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.bid-hero-new-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
  color: #667eea;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.bid-hero-new-tag i {
  font-size: 16px;
}

.bid-hero-new-title {
  margin: 0 0 16px;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  color: #1a1a2e;
  letter-spacing: -0.5px;
}

.bid-hero-new-highlight {
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bid-hero-new-desc {
  margin: 0 auto 30px;
  max-width: 600px;
  font-size: 17px;
  line-height: 1.7;
  color: #5b667a;
}

/* Search bar */
.bid-hero-new-search {
  margin-bottom: 32px;
}

.bid-hero-new-search-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 24px rgba(102, 126, 234, 0.12);
  border: 1px solid rgba(102, 126, 234, 0.08);
}

.bid-hero-new-search-field {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border-right: 1px solid #eee;
  min-width: 0;
}

.bid-hero-new-search-field-grow {
  flex: 1;
}

.bid-hero-new-search-field:last-of-type {
  border-right: none;
}

.bid-hero-new-search-field i {
  color: #b0b8c8;
  font-size: 15px;
  flex-shrink: 0;
}

.bid-hero-new-search-field input,
.bid-hero-new-search-field select {
  border: 0;
  outline: 0;
  background: transparent;
  height: 42px;
  font-size: 14px;
  color: #333;
  min-width: 0;
  width: 100%;
}

.bid-hero-new-search-field input::placeholder {
  color: #b0b8c8;
}

.bid-hero-new-search-inner button {
  height: 44px;
  padding: 0 28px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}

.bid-hero-new-search-inner button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

/* Stats */
.bid-hero-new-stats {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}

.bid-hero-new-stat {
  min-width: 120px;
  padding: 14px 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(102, 126, 234, 0.08);
  text-align: center;
}

.bid-hero-new-stat strong {
  display: block;
  font-size: 26px;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.2;
}

.bid-hero-new-stat span {
  display: block;
  font-size: 13px;
  color: #8a94a6;
  margin-top: 4px;
}

/* Action buttons */
.bid-hero-new-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 28px;
}

.bid-hero-new-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.bid-hero-new-btn i {
  font-size: 16px;
}

a.bid-hero-new-btn {
  background: #1a1a2e;
  color: #fff;
}

a.bid-hero-new-btn:hover {
  background: #2d2d4a;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 26, 46, 0.15);
}

.bid-hero-new-btn-outline {
  background: transparent !important;
  border: 1.5px solid #d0d5e0;
  color: #555 !important;
}

.bid-hero-new-btn-outline:hover {
  border-color: #667eea !important;
  color: #667eea !important;
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.1) !important;
}

/* Hot categories */
.bid-hero-new-cates {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.bid-hero-new-cates span {
  font-size: 13px;
  color: rgba(26, 26, 46, 0.5);
}

.bid-hero-new-cates a {
  display: inline-block;
  padding: 5px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(26, 26, 46, 0.08);
  font-size: 13px;
  color: #555;
  transition: all 0.2s ease;
  text-decoration: none;
}

.bid-hero-new-cates a:hover {
  background: #667eea;
  border-color: #667eea;
  color: #fff;
}

/* ===== Hero内结果列表 ===== */
.bid-hero-new-listhead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 28px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(26, 26, 46, 0.08);
}

.bid-hero-new-listhead-left {
  text-align: left;
}

.bid-hero-new-listhead-tag {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #8a94a6;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.bid-hero-new-listhead-title {
  margin: 4px 0 0;
  font-size: 22px;
  font-weight: 800;
  color: #1a1a2e;
}

.bid-hero-new-listhead-all {
  font-size: 14px;
  color: #667eea;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.2s;
}

.bid-hero-new-listhead-all:hover {
  color: #764ba2;
}

.bid-hero-new-list {
  display: grid;
  gap: 6px;
  margin-top: 6px;
}

.bid-hero-new-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 16px;
  align-items: start;
  padding: 14px 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.25s ease;
  text-decoration: none;
  color: inherit;
}

.bid-hero-new-card:hover {
  background: rgba(255, 255, 255, 0.15);
}

.bid-hero-new-card-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}

.bid-hero-new-card-left em {
  font-size: 11px;
  color: rgba(26, 26, 46, 0.5);
  font-style: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bid-hero-new-card-mid {
  min-width: 0;
  text-align: left;
}

.bid-hero-new-card-mid h3 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a2e;
  line-height: 1.4;
}

.bid-hero-new-card-mid > p {
  margin: 0 0 8px;
  font-size: 13px;
  color: rgba(26, 26, 46, 0.6);
  line-height: 1.5;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.bid-hero-new-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
}

.bid-hero-new-card-meta span {
  font-size: 12px;
  color: rgba(26, 26, 46, 0.55);
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.bid-hero-new-card-meta i {
  font-size: 12px;
}

@media (max-width: 768px) {
  .bid-hero-new {
    padding: 40px 0 30px;
  }

  .bid-hero-new-title {
    font-size: 32px;
  }

  .bid-hero-new-desc {
    font-size: 15px;
  }

  .bid-hero-new-search-inner {
    flex-direction: column;
    padding: 12px;
  }

  .bid-hero-new-search-field {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #eee;
    padding: 0 0 8px;
  }

  .bid-hero-new-search-field:last-of-type {
    border-bottom: none;
  }

  .bid-hero-new-search-inner button {
    width: 100%;
  }

  .bid-hero-new-stats {
    flex-wrap: wrap;
  }

  .bid-hero-new-stat {
    min-width: calc(50% - 6px);
  }

  .bid-hero-new-actions {
    flex-direction: column;
    align-items: center;
  }

  .bid-hero-new-card {
    grid-template-columns: 1fr;
  }

  .bid-hero-new-card-left {
    flex-direction: row;
    align-items: center;
  }

  .bid-hero-new-card-meta {
    gap: 4px 10px;
  }
}

/* ===== 全部分类区域 ===== */
.bid-home-category-section {
  background: #ffffff;
  border-top: 1px solid #e5eaf0;
}

.bid-home-category-section .bid-home-block-head {
  margin-bottom: 20px;
}

.bid-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.bid-category-card {
  border: 1px solid #e5eaf0;
  border-radius: 10px;
  background: #f8fafc;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.bid-category-card:hover {
  border-color: rgba(47, 128, 237, 0.3);
  box-shadow: 0 8px 24px rgba(11, 31, 58, 0.06);
}

.bid-category-card-header {
  padding: 16px 20px 12px;
  border-bottom: 1px solid #e5eaf0;
  background: #fff;
}

.bid-category-card-header a {
  font-size: 17px;
  font-weight: 700;
  color: #0b1f3a;
  text-decoration: none;
}

.bid-category-card-header a:hover {
  color: #2f80ed;
}

.bid-category-card-body {
  padding: 12px 20px 16px;
  display: grid;
  gap: 10px;
}

.bid-track-row {
  display: grid;
  gap: 4px;
}

.bid-track-link {
  font-size: 13px;
  font-weight: 700;
  color: #5b667a;
  text-decoration: none;
}

.bid-track-link:hover {
  color: #2f80ed;
}

.bid-term-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.bid-term-link {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 10px;
  background: #eef3f8;
  color: #5b667a;
  font-size: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.bid-term-link:hover {
  background: #2f80ed;
  color: #fff;
}

@media (max-width: 768px) {
  .bid-category-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== 招标列表页全新设计 ===== */
.bid-list-hero {
  position: relative;
  overflow: hidden;
  padding: 36px 0 32px;
  background: linear-gradient(160deg, #f0f4ff 0%, #ffffff 40%, #f5f0ff 100%);
}

.bid-list-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.bid-list-hero-bg-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
}

.bid-list-hero-bg-shape-1 {
  width: 400px;
  height: 400px;
  top: -120px;
  right: -80px;
  background: radial-gradient(circle, #667eea 0%, transparent 70%);
}

.bid-list-hero-bg-shape-2 {
  width: 250px;
  height: 250px;
  bottom: -80px;
  left: -60px;
  background: radial-gradient(circle, #f093fb 0%, transparent 70%);
}

.bid-list-breadcrumb {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 13px;
  color: #8a94a6;
}

.bid-list-breadcrumb a {
  color: #667eea;
  text-decoration: none;
}

.bid-list-breadcrumb a:hover {
  color: #764ba2;
}

.bid-list-hero h1 {
  position: relative;
  z-index: 1;
  margin: 0 0 8px;
  font-size: 32px;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.2;
}

.bid-list-hero p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 15px;
  color: #5b667a;
  line-height: 1.6;
  max-width: 640px;
}

.bid-list-body {
  padding: 20px 0 48px;
  background: #f5f7fa;
  min-height: 400px;
}

.bid-list-filter {
  background: #fff;
  border: 1px solid rgba(102, 126, 234, 0.1);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.06);
}

.bid-list-filter-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(102, 126, 234, 0.08);
  margin-bottom: 14px;
}

.bid-list-filter-head-left strong {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  color: #1a1a2e;
}

.bid-list-filter-head-left strong i {
  color: #667eea;
}

.bid-list-filter-head-left span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: #8a94a6;
}

.bid-list-filter-reset {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: #8a94a6;
  text-decoration: none;
  white-space: nowrap;
  padding: 6px 14px;
  border: 1px solid rgba(102, 126, 234, 0.12);
  border-radius: 8px;
  transition: all 0.2s;
}

.bid-list-filter-reset:hover {
  color: #667eea;
  border-color: #667eea;
}

.bid-list-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.bid-list-active-filters a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(118, 75, 162, 0.08));
  color: #667eea;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.2s;
}

.bid-list-active-filters a:hover {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.18), rgba(118, 75, 162, 0.18));
}

.bid-list-active-filters em {
  font-style: normal;
  font-size: 14px;
  line-height: 1;
}

.bid-list-cate-filter {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(102, 126, 234, 0.08);
}

.bid-list-cate-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.bid-list-cate-track {
  flex-shrink: 0;
  min-width: 80px;
  font-size: 13px;
  font-weight: 700;
  color: #5b667a;
  text-decoration: none;
  padding: 4px 0;
}

.bid-list-cate-track:hover,
.bid-list-cate-track.is-active {
  color: #667eea;
}

.bid-list-cate-terms {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.bid-list-cate-terms a {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 12px;
  background: #f0f4ff;
  color: #5b667a;
  font-size: 12px;
  text-decoration: none;
  transition: all 0.2s;
}

.bid-list-cate-terms a:hover,
.bid-list-cate-terms a.is-active {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
}

.bid-list-filter-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr)) auto;
  gap: 10px;
  align-items: end;
}

.bid-list-filter-field {
  display: grid;
  gap: 5px;
}

.bid-list-filter-field label {
  font-size: 12px;
  font-weight: 600;
  color: #8a94a6;
}

.bid-list-filter-input {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 10px;
  border: 1px solid rgba(102, 126, 234, 0.12);
  border-radius: 8px;
  background: #fafbff;
  transition: border-color 0.2s;
}

.bid-list-filter-input:focus-within {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.bid-list-filter-input i {
  color: #b0b8c8;
  font-size: 14px;
  flex-shrink: 0;
}

.bid-list-filter-input input,
.bid-list-filter-input select {
  width: 100%;
  height: 38px;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 13px;
  color: #333;
  min-width: 0;
}

.bid-list-filter-input select {
  cursor: pointer;
}

.bid-list-filter-actions {
  display: flex;
  gap: 6px;
  align-items: end;
}

.bid-list-filter-actions button {
  height: 38px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.bid-list-filter-actions button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.bid-list-filter-actions a {
  height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(102, 126, 234, 0.12);
  border-radius: 8px;
  font-size: 13px;
  color: #8a94a6;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s;
}

.bid-list-filter-actions a:hover {
  color: #667eea;
  border-color: #667eea;
}

.bid-list-filter-advanced {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(102, 126, 234, 0.08);
}

.bid-list-filter-advanced summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #667eea;
  cursor: pointer;
  list-style: none;
  padding: 4px 0;
  transition: color 0.2s;
}

.bid-list-filter-advanced summary::-webkit-details-marker {
  display: none;
}

.bid-list-filter-advanced summary i {
  font-size: 11px;
  transition: transform 0.2s;
}

.bid-list-filter-advanced[open] summary i {
  transform: rotate(180deg);
}

.bid-list-filter-advanced-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.bid-list-items {
  display: grid;
  gap: 10px;
}

.bid-list-card {
  display: block;
  background: #fff;
  border: 1px solid rgba(102, 126, 234, 0.08);
  border-radius: 12px;
  padding: 20px 24px;
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
  box-shadow: 0 2px 12px rgba(102, 126, 234, 0.04);
}

.bid-list-card:hover {
  border-color: rgba(102, 126, 234, 0.28);
  box-shadow: 0 8px 28px rgba(102, 126, 234, 0.1);
  transform: translateY(-2px);
}

.bid-list-card-main {
  min-width: 0;
}

.bid-list-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.bid-list-card-industry {
  font-size: 12px;
  color: #8a94a6;
}

.bid-list-card h3 {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.45;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.bid-list-card:hover h3 {
  color: #667eea;
}

.bid-list-card-main > p {
  margin: 0 0 12px;
  font-size: 14px;
  color: #5b667a;
  line-height: 1.6;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.bid-list-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
}

.bid-list-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: #8a94a6;
}

.bid-list-card-meta i {
  font-size: 13px;
  color: #b0b8c8;
}

.bid-list-card-meta-lock i {
  color: #c9a968;
}

.bid-list-card-action {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: #667eea;
  transition: gap 0.2s;
}

.bid-list-card:hover .bid-list-card-action {
  gap: 8px;
}

.bid-list-pages {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.bid-list-pages a,
.bid-list-pages span {
  min-width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border: 1px solid rgba(102, 126, 234, 0.12);
  border-radius: 8px;
  background: #fff;
  font-size: 13px;
  color: #5b667a;
  text-decoration: none;
  transition: all 0.2s;
}

.bid-list-pages a:hover {
  border-color: #667eea;
  color: #667eea;
}

.bid-list-pages span {
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-color: transparent;
  color: #fff;
}

@media (max-width: 1100px) {
  .bid-list-filter-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .bid-list-filter-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .bid-list-filter-advanced-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .bid-list-hero {
    padding: 24px 0 20px;
  }

  .bid-list-hero h1 {
    font-size: 26px;
  }

  .bid-list-filter {
    padding: 14px;
  }

  .bid-list-filter-head {
    flex-direction: column;
  }

  .bid-list-filter-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bid-list-filter-advanced-grid {
    grid-template-columns: 1fr;
  }

  .bid-list-cate-row {
    flex-direction: column;
    gap: 4px;
  }

  .bid-list-card {
    padding: 16px;
  }

  .bid-list-card-meta {
    gap: 4px 12px;
  }
}

/* ============ 讯息网风格首页 v2 ============ */

/* 第一屏容器：快讯 + 搜索头条 */
.bid-hero {
  background: linear-gradient(160deg, #f0f3ff 0%, #faf8ff 40%, #f0f3ff 100%);
  border-bottom: 1px solid var(--bid-line);
}

/* 快讯条 */
.bid-ticker {
  height: 36px;
  line-height: 36px;
  overflow: hidden;
}
.bid-ticker-inner {
  display: flex;
  align-items: center;
  height: 36px;
  overflow: hidden;
}
.bid-ticker-label {
  background: #e74c3c;
  color: #fff;
  padding: 0 12px;
  height: 24px;
  line-height: 24px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.bid-ticker-list {
  flex: 1;
  overflow: hidden;
  padding-left: 14px;
  white-space: nowrap;
}
.bid-ticker-list a {
  display: inline-block;
  margin-right: 28px;
  font-size: 12px;
  color: #555;
  transition: color 0.3s;
}
.bid-ticker-list a:hover { color: var(--bid-tech); }

/* 头条内容 */
.bid-hero-body {
  padding: 32px 0 28px;
}
.bid-hero-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}
.bid-hero-text {
  flex-shrink: 0;
  width: 360px;
}
.bid-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--bid-tech);
  background: rgba(89,149,254,0.1);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.bid-hero-title {
  font-size: 34px;
  font-weight: 800;
  color: var(--bid-blue);
  margin: 0 0 10px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.bid-hero-highlight {
  background: linear-gradient(135deg, var(--bid-tech), var(--bid-violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bid-hero-desc {
  font-size: 14px;
  color: var(--bid-muted);
  margin: 0 0 16px;
  line-height: 1.6;
}


/* 搜索框区域 */
.bid-hero-search-box {
  flex: 1;
  min-width: 0;
  background: #fff;
  border-radius: 14px;
  padding: 20px 22px 16px;
  box-shadow: 0 8px 30px rgba(89,149,254,0.12);
}
.bid-hero-search-main {
  display: flex;
  gap: 8px;
}
.bid-hero-search-field {
  display: flex;
  align-items: center;
  background: #f5f7fa;
  border: 1.5px solid #e8ecf1;
  border-radius: 8px;
  padding: 0 12px;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.bid-hero-search-field:focus-within {
  border-color: var(--bid-tech);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(89,149,254,0.1);
}
.bid-hero-search-grow { flex: 1; min-width: 160px; }
.bid-hero-search-field i { color: var(--bid-gray); font-size: 15px; margin-right: 6px; flex-shrink: 0; }
.bid-hero-search-field input,
.bid-hero-search-field select {
  border: 0;
  background: transparent;
  height: 42px;
  line-height: 42px;
  outline: none;
  width: 100%;
  font-size: 14px;
  color: var(--bid-text);
}
.bid-hero-search-field select { cursor: pointer; min-width: 90px; }
.bid-hero-search-main button {
  height: 42px;
  line-height: 42px;
  padding: 0 24px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--bid-tech), var(--bid-violet));
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.3s, transform 0.2s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}
.bid-hero-search-main button:hover { opacity: 0.92; transform: translateY(-1px); }
.bid-hero-search-main button i { font-size: 14px; }
.bid-hero-hot {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
  font-size: 12px;
}
.bid-hero-hot span { color: var(--bid-muted); flex-shrink: 0; }
.bid-hero-hot a {
  color: var(--bid-muted);
  background: rgba(89,149,254,0.06);
  padding: 2px 10px;
  border-radius: 4px;
  transition: all 0.25s;
}
.bid-hero-hot a:hover { background: var(--bid-tech); color: #fff; }

/* 主体两栏布局 */
.bid-main-layout {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.bid-main-col { flex: 1; min-width: 0; }
.bid-side-col {
  width: 300px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: static !important;
  z-index: auto;
}

/* 状态标签栏 */
.bid-status-bar {
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--bid-line);
  border-radius: 10px;
  padding: 4px;
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}
.bid-status-tab {
  flex: 1;
  text-align: center;
  padding: 9px 6px;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 600;
  color: var(--bid-muted);
  transition: all 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.bid-status-tab i { font-size: 13px; }
.bid-status-tab:hover { color: var(--bid-tech); background: rgba(89,149,254,0.06); }
.bid-status-tab.is-active { background: var(--bid-tech); color: #fff; }
.bid-status-tab-hot { color: #e74c3c; }
.bid-status-tab-hot.is-active { background: #e74c3c; color: #fff; }

/* 信息流区块 */
.bid-feed {
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--bid-line);
  border-radius: 10px;
  overflow: hidden;
}
.bid-feed-header {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid var(--bid-line);
  gap: 8px;
}
.bid-feed-header span {
  font-size: 14px;
  font-weight: 700;
  color: var(--bid-blue);
}
.bid-feed-more {
  margin-left: auto;
  font-size: 12px;
  color: var(--bid-muted);
  transition: color 0.3s;
}
.bid-feed-more:hover { color: var(--bid-tech); }

/* 区块指示点 */
.bid-section-dot {
  width: 4px;
  height: 14px;
  border-radius: 2px;
  flex-shrink: 0;
}
.bid-dot-fire { background: #e74c3c; }
.bid-dot-urgent { background: #e67e22; }
.bid-dot-award { background: var(--bid-green); }
.bid-dot-cate { background: var(--bid-tech); }
.bid-dot-stat { background: #5995fe; }
.bid-dot-hot { background: #e67e22; }
.bid-dot-guide { background: var(--bid-violet); }
.bid-dot-tag { background: #9b59b6; }
.bid-feed-header-desc {
  font-size: 12px;
  color: var(--bid-muted);
  font-weight: 400;
  margin-left: auto;
}

/* 信息流列表 */
.bid-feed-list { padding: 0; }
.bid-feed-item {
  display: flex;
  align-items: stretch;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid #f0f2f5;
  background-color: transparent;
  transition: background-color 0.15s, box-shadow 0.15s;
}
.bid-feed-item:last-child { border-bottom: none; }
.bid-feed-item:hover {
  background: linear-gradient(90deg, rgba(89,149,254,0.06), rgba(255,255,255,0));
  box-shadow: inset 3px 0 0 rgba(47, 128, 237, .28);
}
.bid-feed-left {
  width: 68px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bid-feed-left .bid-badge { font-size: 11px; padding: 2px 6px; text-align: center; }
.bid-feed-body {
  flex: 1;
  min-width: 0;
}
.bid-feed-title-row {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.bid-feed-title {
  flex: 1;
  min-width: 0;
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
  color: var(--bid-text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.3s;
}
.bid-feed-item:hover .bid-feed-title { color: var(--bid-tech); }
.bid-feed-attach {
  min-height: 22px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0 7px;
  border: 1px solid rgba(47, 128, 237, .16);
  border-radius: 999px;
  color: #1f6feb;
  background: rgba(47, 128, 237, .07);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}
.bid-feed-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 14px;
  font-size: 11px;
  color: var(--bid-muted);
}
.bid-feed-meta span { display: inline-flex; align-items: center; gap: 3px; }
.bid-feed-meta i { font-size: 11px; }
.bid-feed-meta-end { color: #e67e22; }
.bid-feed-side {
  width: 92px;
  flex-shrink: 0;
  display: grid;
  align-content: center;
  justify-items: end;
  gap: 7px;
}
.bid-feed-tag {
  max-width: 92px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--bid-gray);
  background: #f2f4f8;
  padding: 2px 8px;
  border-radius: 4px;
  height: fit-content;
  margin-top: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.bid-feed-arrow {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #9aa9bd;
  background: rgba(89,149,254,0.06);
  transition: color 0.15s, background-color 0.15s, transform 0.15s;
}
.bid-feed-item:hover .bid-feed-arrow {
  color: #fff;
  background: var(--bid-tech);
  transform: translateX(2px);
}

/* 紧凑列表 */
.bid-feed-list-sm { padding: 0; }
.bid-feed-sm-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-bottom: 1px solid #f0f2f5;
  background-color: transparent;
  transition: background-color 0.15s;
}
.bid-feed-sm-item:last-child { border-bottom: none; }
.bid-feed-sm-item:hover { background: rgba(89,149,254,0.03); }
.bid-feed-sm-badge {
  font-size: 10px;
  color: #e67e22;
  background: #fef3e9;
  padding: 1px 6px;
  border-radius: 3px;
  font-weight: 600;
  flex-shrink: 0;
}
.bid-feed-sm-badge-award { color: var(--bid-green); background: #e8f8f2; }
.bid-feed-sm-title {
  flex: 1;
  font-size: 12px;
  color: var(--bid-text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.3s;
}
.bid-feed-sm-item:hover .bid-feed-sm-title { color: var(--bid-tech); }
.bid-feed-sm-date {
  font-size: 11px;
  color: var(--bid-gray);
  flex-shrink: 0;
}

/* 双栏并列 */
.bid-feed-row {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}
.bid-feed-col { flex: 1; min-width: 0; }

/* 侧栏卡片 */
.bid-side-card {
  position: static !important;
  top: auto !important;
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--bid-line);
  border-radius: 10px;
  overflow: hidden;
}
.bid-side-card-header {
  display: flex;
  align-items: center;
  padding: 11px 14px;
  border-bottom: 1px solid var(--bid-line);
  gap: 8px;
}
.bid-side-card-header span {
  font-size: 13px;
  font-weight: 700;
  color: var(--bid-blue);
}

/* 侧栏数据面板 */
.bid-side-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.bid-side-stat {
  text-align: center;
  padding: 14px 8px;
  border-right: 1px solid var(--bid-line);
  border-bottom: 1px solid var(--bid-line);
}
.bid-side-stat:nth-child(2n) { border-right: none; }
.bid-side-stat:nth-last-child(-n+2) { border-bottom: none; }
.bid-side-stat-num {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--bid-blue);
  line-height: 1.2;
  margin-bottom: 2px;
}
.bid-side-stat span {
  display: block;
  font-size: 11px;
  color: var(--bid-muted);
}

/* 侧栏分类 */
.bid-side-cates,
.bid-side-cate-tree {
  padding: 6px 8px 8px;
}

.bid-side-cate-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 10px;
  border-bottom: 1px solid #f0f2f5;
  border-radius: 7px;
  font-size: 13px;
  color: var(--bid-text);
  background-color: transparent;
  transition: background-color 0.2s, color 0.2s;
}
.bid-side-cate-item:last-child { border-bottom: none; }
.bid-side-cate-item:hover { background-color: rgba(89,149,254,0.04); color: var(--bid-tech); }
.bid-side-cate-item i { font-size: 12px; color: var(--bid-gray); }

.bid-side-cate-group,
.bid-side-cate-sub {
  border-bottom: 1px solid rgba(90, 148, 254, .12);
}

.bid-side-cate-group:last-child,
.bid-side-cate-sub:last-child {
  border-bottom: 0;
}

.bid-side-cate-group summary,
.bid-side-cate-sub summary {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 0 8px;
  border-radius: 7px;
  color: #24344d;
  cursor: pointer;
  list-style: none;
  font-size: 13px;
}

.bid-side-cate-group summary::-webkit-details-marker,
.bid-side-cate-sub summary::-webkit-details-marker {
  display: none;
}

.bid-side-cate-group summary:hover,
.bid-side-cate-sub summary:hover {
  color: var(--bid-tech);
  background: rgba(89, 149, 254, .07);
}

.bid-side-cate-group summary span,
.bid-side-cate-sub summary span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bid-side-cate-group summary i,
.bid-side-cate-sub summary i {
  flex: 0 0 auto;
  color: #8aa0ba;
  transition: transform .18s ease;
}

.bid-side-cate-group[open] > summary,
.bid-side-cate-sub[open] > summary {
  color: var(--bid-tech);
  background: linear-gradient(180deg, rgba(89, 149, 254, .1), rgba(255, 255, 255, .2));
}

.bid-side-cate-group[open] > summary i,
.bid-side-cate-sub[open] > summary i {
  transform: rotate(180deg);
}

.bid-side-cate-children {
  display: grid;
  gap: 4px;
  padding: 0 0 8px 10px;
}

.bid-side-cate-all,
.bid-side-cate-second,
.bid-side-cate-terms a {
  min-height: 30px;
  display: flex;
  align-items: center;
  min-width: 0;
  border-radius: 6px;
  color: #5f7190;
  font-size: 12px;
  line-height: 1.35;
}

.bid-side-cate-all,
.bid-side-cate-second {
  padding: 0 8px;
}

.bid-side-cate-all {
  color: #1477d4;
  background: rgba(89, 149, 254, .08);
}

.bid-side-cate-sub {
  margin-left: 2px;
  border-bottom-style: dashed;
}

.bid-side-cate-sub summary {
  min-height: 32px;
  padding: 0 8px;
  font-size: 12px;
}

.bid-side-cate-terms {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px;
  padding: 2px 0 8px 10px;
}

.bid-side-cate-terms a {
  padding: 0 7px;
  background: rgba(245, 248, 252, .9);
}

.bid-side-cate-all:hover,
.bid-side-cate-second:hover,
.bid-side-cate-terms a:hover {
  color: var(--bid-tech);
  background: rgba(89, 149, 254, .12);
}

.bid-side-cate-tree {
  display: grid;
  gap: 8px;
  padding: 10px;
  background:
    linear-gradient(180deg, rgba(245, 250, 255, .72), rgba(255, 255, 255, .58));
}

.bid-side-cate-group,
.bid-side-cate-sub {
  border-bottom: 0;
}

.bid-side-cate-group {
  position: relative;
  border: 1px solid rgba(90, 148, 254, .14);
  border-radius: 9px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 8px 18px rgba(90, 148, 254, .06);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.bid-side-cate-group:hover {
  border-color: rgba(90, 148, 254, .28);
  box-shadow: 0 12px 24px rgba(90, 148, 254, .1);
  transform: translateY(-1px);
}

.bid-side-cate-group[open] {
  border-color: rgba(90, 148, 254, .34);
  background:
    linear-gradient(180deg, rgba(239, 247, 255, .94), rgba(255, 255, 255, .84));
}

.bid-side-cate-group summary {
  min-height: 46px;
  padding: 6px 9px;
}

.bid-side-cate-title,
.bid-side-cate-subtitle {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
}

.bid-side-cate-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--bid-tech), #1fa889);
  box-shadow: 0 8px 18px rgba(31, 168, 137, .18);
}

.bid-side-cate-icon svg {
  width: 17px;
  height: 17px;
}

.bid-side-cate-title > span:last-child,
.bid-side-cate-subtitle {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bid-side-cate-toggle {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  position: relative;
  border-radius: 50%;
  background: rgba(90, 148, 254, .1);
  transition: background .2s ease, transform .2s ease;
}

.bid-side-cate-toggle::before,
.bid-side-cate-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9px;
  height: 2px;
  border-radius: 2px;
  background: #5d7da5;
  transform: translate(-50%, -50%);
}

.bid-side-cate-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.bid-side-cate-group[open] > summary .bid-side-cate-toggle,
.bid-side-cate-sub[open] > summary .bid-side-cate-toggle {
  background: rgba(31, 168, 137, .13);
  transform: rotate(180deg);
}

.bid-side-cate-group[open] > summary .bid-side-cate-toggle::after,
.bid-side-cate-sub[open] > summary .bid-side-cate-toggle::after {
  opacity: 0;
}

.bid-side-cate-children {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-4px);
  transition: max-height .32s ease, opacity .22s ease, transform .22s ease;
}

.bid-side-cate-group[open] > .bid-side-cate-children {
  max-height: 1200px;
  opacity: 1;
  transform: translateY(0);
  padding: 0 8px 10px 12px;
}

.bid-side-cate-all {
  min-height: 32px;
  margin: 0 0 6px 34px;
  padding: 0 10px;
  border: 1px solid rgba(90, 148, 254, .12);
  color: #1477d4;
  background: rgba(89, 149, 254, .08);
  font-weight: 700;
}

.bid-side-cate-sub {
  position: relative;
  margin-left: 14px;
  padding-left: 16px;
}

.bid-side-cate-sub::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 0;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(180deg, rgba(90, 148, 254, .28), rgba(31, 168, 137, .12));
}

.bid-side-cate-sub summary {
  min-height: 34px;
  padding: 0 7px;
  background: transparent;
}

.bid-side-cate-subtitle > span {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border: 2px solid rgba(31, 168, 137, .52);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(31, 168, 137, .08);
}

.bid-side-cate-sub > .bid-side-cate-terms {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-4px);
  transition: max-height .28s ease, opacity .2s ease, transform .2s ease;
}

.bid-side-cate-sub[open] > .bid-side-cate-terms {
  max-height: 520px;
  opacity: 1;
  transform: translateY(0);
}

.bid-side-cate-terms {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  padding: 4px 0 10px 9px;
}

.bid-side-cate-terms a {
  min-height: 28px;
  justify-content: center;
  padding: 0 7px;
  border: 1px solid rgba(90, 148, 254, .1);
  border-radius: 7px;
  color: #5b6e89;
  background: rgba(255, 255, 255, .72);
  transition: color .18s ease, background .18s ease, border-color .18s ease, transform .18s ease;
}

.bid-side-cate-terms a:hover,
.bid-side-cate-all:hover,
.bid-side-cate-second:hover {
  color: #116fbb;
  border-color: rgba(90, 148, 254, .22);
  background: linear-gradient(180deg, rgba(239, 247, 255, .95), rgba(255, 255, 255, .88));
  transform: translateY(-1px);
}

/* 侧栏指南 */
.bid-side-guide { padding: 6px 0; }
.bid-side-guide-item {
  display: flex;
  gap: 10px;
  padding: 8px 14px;
  border-bottom: 1px solid #f0f2f5;
  align-items: flex-start;
}
.bid-side-guide-item:last-child { border-bottom: none; }
.bid-side-guide-num {
  width: 22px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--bid-tech), var(--bid-violet));
  color: #fff;
}
.bid-side-guide-item div { flex: 1; min-width: 0; }
.bid-side-guide-item strong {
  display: block;
  font-size: 12px;
  color: var(--bid-text);
  margin-bottom: 1px;
}
.bid-side-guide-item p {
  font-size: 11px;
  color: var(--bid-muted);
  margin: 0;
}

/* 侧栏标签 */
.bid-side-tags {
  padding: 10px 12px;
  overflow: hidden;
}
.bid-side-tags a {
  display: inline-block;
  padding: 3px 10px;
  margin: 0 4px 6px 0;
  font-size: 11px;
  color: var(--bid-muted);
  background: #f2f4f8;
  border-radius: 4px;
  transition: background-color 0.2s, color 0.2s;
}
.bid-side-tags a:hover { background: var(--bid-tech); color: #fff; }

/* 全部分类导航条 */
.bid-cate-strip-wrap {
  position: relative;
}
.bid-cate-strip {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 4px 0;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #d0d5e0 transparent;
}
.bid-cate-strip::-webkit-scrollbar { height: 4px; }
.bid-cate-strip::-webkit-scrollbar-track { background: transparent; }
.bid-cate-strip::-webkit-scrollbar-thumb { background: #d0d5e0; border-radius: 4px; }
.bid-cate-strip-card {
  flex-shrink: 0;
  width: 170px;
  background: rgba(255,255,255,0.88);
  border: 1px solid var(--bid-line);
  border-radius: 10px;
  padding: 16px 14px 14px;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.bid-cate-strip-card:hover {
  box-shadow: 0 6px 20px rgba(89,149,254,0.14);
  transform: translateY(-3px);
  border-color: var(--bid-tech);
}
.bid-cate-strip-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(89,149,254,0.1), rgba(123,115,255,0.1));
  border-radius: 8px;
}
.bid-cate-strip-icon svg {
  width: 22px;
  height: 22px;
  color: var(--bid-tech);
}
.bid-cate-strip-top {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--bid-blue);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--bid-line);
  transition: color 0.25s, border-color 0.25s;
}
.bid-cate-strip-card:hover .bid-cate-strip-top {
  color: var(--bid-tech);
  border-color: var(--bid-tech);
}
.bid-cate-strip-children {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.bid-cate-strip-children a {
  font-size: 11px;
  color: var(--bid-muted);
  padding: 2px 7px;
  background: rgba(89,149,254,0.06);
  border-radius: 4px;
  transition: all 0.2s;
}
.bid-cate-strip-children a:hover {
  background: var(--bid-tech);
  color: #fff;
}
.bid-cate-strip-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 52px;
  border: 1px solid var(--bid-line);
  border-radius: 8px;
  background: rgba(255,255,255,0.92);
  color: var(--bid-gray);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.bid-cate-strip-btn:hover {
  color: var(--bid-tech);
  border-color: var(--bid-tech);
  box-shadow: 0 4px 14px rgba(89,149,254,0.18);
}
.bid-cate-strip-btn svg { width: 18px; height: 18px; }
.bid-cate-strip-prev { left: -14px; }
.bid-cate-strip-next { right: -14px; }
@media (max-width: 992px) {
  .bid-cate-strip-card { width: 150px; }
  .bid-cate-strip-btn { display: none !important; }
}

/* 空状态 */
.bid-empty {
  text-align: center;
  padding: 30px 16px;
  font-size: 13px;
  color: var(--bid-gray);
}

/* 移动端响应式 */
@media (max-width: 992px) {
  .bid-ticker { display: none; }
  .bid-hero-body { padding: 24px 0 20px; }
  .bid-hero-inner { flex-direction: column; gap: 24px; }
  .bid-hero-text { width: 100%; }
  .bid-hero-title { font-size: 26px; }
  .bid-hero-search-box { padding: 16px; }
  .bid-hero-search-main { flex-wrap: wrap; }
  .bid-hero-search-field { flex: 1 1 100%; }
  .bid-hero-search-grow { min-width: 0; }
  .bid-hero-search-main button { flex: 1; justify-content: center; }
  .bid-main-layout { flex-direction: column; }
  .bid-side-col {
    width: 100%;
  }
  .bid-status-bar { flex-wrap: wrap; }
  .bid-status-tab { flex: 1 1 45%; font-size: 11px; }
  .bid-feed-row { flex-direction: column; }
}

@media (max-width: 600px) {
  .bid-hero-title { font-size: 22px; }

  .bid-hero-search-field input,
  .bid-hero-search-field select { height: 38px; line-height: 38px; font-size: 13px; }
  .bid-hero-search-main button { height: 38px; line-height: 38px; font-size: 13px; }
  .bid-feed-item { flex-wrap: wrap; }
  .bid-feed-left { width: 100%; flex-direction: row; gap: 6px; }
  .bid-feed-title-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
  .bid-feed-side {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .bid-feed-tag { max-width: 70%; }
  .bid-feed-meta { gap: 3px 10px; }
}

/* ============ 首页三栏首屏：热门分类 + 横幅 + 注册 ============ */
.bid-ggzb-hero {
  padding: 18px 0 0;
  background: #fff;
}

.bid-ggzb-nav {
  height: 42px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 2px solid var(--bid-tech);
  border-radius: 5px;
  background: linear-gradient(180deg, #4b9bff 0%, var(--bid-tech) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .32);
}

.bid-ggzb-nav a {
  min-width: 0;
  flex: 1 1 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid rgba(255, 255, 255, .5);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.bid-ggzb-nav a:first-child {
  border-left: 0;
}

.bid-ggzb-nav a.is-active {
  margin: 3px 5px;
  height: calc(100% - 6px);
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 4px;
  background: linear-gradient(180deg, #fff 0%, #eef6ff 100%);
  color: var(--bid-tech);
}

.bid-ggzb-panel {
  min-height: 205px;
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr) 320px;
  border: 2px solid var(--bid-tech);
  border-top: 0;
  background: #e8f3ff;
}

.bid-ggzb-cates {
  padding: 12px 14px 14px;
  border-right: 1px solid rgba(47, 128, 237, .25);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 255, 255, .9), transparent 34%),
    linear-gradient(180deg, #eef7ff 0%, #dcebff 100%);
}

.bid-ggzb-cates h2,
.bid-ggzb-register h2 {
  margin: 0 0 8px;
  padding: 0;
  color: #1f2d3d;
  font-size: 14px;
  font-weight: 800;
  line-height: 26px;
}

.bid-ggzb-cates h2 {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bid-ggzb-cates h2::before {
  content: "";
  width: 4px;
  height: 16px;
  border-radius: 4px;
  background: linear-gradient(180deg, #2f80ed, #6aa7ff);
  box-shadow: 0 6px 14px rgba(47, 128, 237, .2);
}

.bid-ggzb-cate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  padding: 0;
}

.bid-ggzb-cate-grid a {
  min-width: 0;
  height: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 9px;
  border: 1px solid rgba(47, 128, 237, .16);
  border-radius: 8px;
  color: #29405f;
  background: linear-gradient(180deg, rgba(255, 255, 255, .86), rgba(244, 249, 255, .72));
  box-shadow: 0 8px 18px rgba(47, 128, 237, .06);
  font-size: 13px;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color .18s ease, box-shadow .18s ease, color .18s ease, transform .18s ease, background .18s ease;
}

.bid-ggzb-cate-grid a:hover {
  color: #1666c5;
  border-color: rgba(47, 128, 237, .36);
  background: linear-gradient(180deg, #fff, #f0f7ff);
  box-shadow: 0 12px 24px rgba(47, 128, 237, .13);
  transform: translateY(-1px);
}

.bid-ggzb-cate-icon {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  color: #fff;
  background: linear-gradient(135deg, #1f7be8 0%, #4da1ff 100%);
  box-shadow: 0 8px 16px rgba(47, 128, 237, .18);
}

.bid-ggzb-cate-icon svg {
  width: 15px;
  height: 15px;
}

.bid-ggzb-cate-name {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bid-ggzb-cate-grid a i {
  flex: 0 0 auto;
  color: #7c9bc1;
  font-style: normal;
  transition: transform .18s ease, color .18s ease;
}

.bid-ggzb-cate-grid a:hover i {
  color: #1666c5;
  transform: translateX(2px);
}

.bid-ggzb-banner {
  position: relative;
  min-width: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px 26px 34px;
  background:
    radial-gradient(circle at 76% 42%, rgba(255, 255, 255, .75) 0 5%, rgba(255, 255, 255, 0) 22%),
    linear-gradient(90deg, #d6ecff 0%, #eef8ff 48%, #d7f5ec 100%);
}

.bid-ggzb-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .22) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, .2) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .5;
}

.bid-ggzb-banner-copy,
.bid-ggzb-visual {
  position: relative;
  z-index: 1;
}

.bid-ggzb-banner-copy > span {
  display: inline-flex;
  padding: 4px 14px;
  border-radius: 3px;
  color: #ff8568;
  background: rgba(255, 255, 255, .44);
  font-size: 12px;
  font-weight: 700;
}

.bid-ggzb-banner-copy strong {
  display: block;
  margin-top: 12px;
  color: #1f3b61;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0;
}

.bid-ggzb-banner-copy strong span {
  color: var(--bid-tech);
}

.bid-ggzb-banner-copy p {
  margin: 11px 0 18px;
  color: #38526f;
  font-size: 14px;
}

.bid-ggzb-banner-copy a {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 18px;
  border-radius: 3px;
  color: #fff;
  background: linear-gradient(135deg, var(--bid-tech), var(--bid-violet));
  font-size: 13px;
  text-decoration: none;
}

.bid-ggzb-visual {
  width: 210px;
  height: 150px;
  flex: 0 0 210px;
}

.bid-ggzb-service-qr {
  position: relative;
  z-index: 1;
  width: 116px;
  flex: 0 0 116px;
  display: grid;
  justify-items: center;
  gap: 6px;
  padding: 10px 8px 8px;
  border: 1px solid rgba(47, 128, 237, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .68);
  box-shadow: 0 10px 24px rgba(47, 128, 237, .12);
}

.bid-ggzb-service-qr img {
  width: 92px;
  height: 92px;
  display: block;
  border-radius: 4px;
  object-fit: cover;
}

.bid-ggzb-service-qr span {
  color: var(--bid-muted);
  font-size: 12px;
  line-height: 1.2;
}

.bid-ggzb-ring {
  position: absolute;
  left: 16px;
  right: 4px;
  bottom: 16px;
  height: 84px;
  border: 14px solid rgba(47, 131, 247, .25);
  border-top-color: rgba(47, 131, 247, .64);
  border-radius: 50%;
  transform: rotate(-9deg);
  box-shadow: 0 16px 28px rgba(42, 122, 226, .22);
}

.bid-ggzb-tower {
  position: absolute;
  left: 83px;
  bottom: 44px;
  width: 54px;
  height: 58px;
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, #76c4ff, var(--bid-tech));
  box-shadow:
    -42px 26px 0 -16px #6cbaff,
    45px 22px 0 -18px #4ea5ff,
    0 16px 28px rgba(42, 122, 226, .18);
}

.bid-ggzb-pin {
  position: absolute;
  left: 92px;
  top: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50% 50% 50% 0;
  background: var(--bid-orange);
  transform: rotate(-45deg);
  box-shadow: 0 8px 18px rgba(255, 125, 100, .3);
}

.bid-ggzb-pin::after {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  background: #fff;
}

.bid-ggzb-register {
  padding: 9px 14px 12px;
  background: linear-gradient(180deg, #e7f2ff 0%, #edf8f5 100%);
}

.bid-ggzb-register h2 {
  height: 32px;
  margin: 0 0 9px;
  color: var(--bid-blue);
  font-size: 16px;
  font-weight: 800;
  text-align: center;
}

.bid-ggzb-register form {
  display: grid;
  gap: 11px;
}

.bid-ggzb-register label {
  height: 32px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0 10px;
  border: 1px solid #b7d6fb;
  border-radius: 3px;
  background: rgba(255, 255, 255, .42);
  color: #69819d;
}

.bid-ggzb-register input[type="text"],
.bid-ggzb-register input[type="password"] {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: #1f2d3d;
  font-size: 13px;
}

.bid-ggzb-register .bid-ggzb-vcode {
  height: 34px;
}

.bid-ggzb-vcode img {
  width: 86px;
  height: 30px;
  flex: 0 0 86px;
  display: block;
  border-radius: 3px;
  object-fit: cover;
  cursor: pointer;
}

.bid-ggzb-login-message {
  min-height: 18px;
  margin-top: -5px;
  color: #637896;
  font-size: 12px;
  line-height: 18px;
}

.bid-ggzb-login-message.is-error {
  color: #e24b35;
}

.bid-ggzb-login-message.is-success {
  color: #168b69;
}

.bid-ggzb-submit,
.bid-ggzb-register-link {
  height: 34px;
  border: 0;
  border-radius: 3px;
  color: #fff;
  background: linear-gradient(135deg, var(--bid-tech), var(--bid-violet));
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.bid-ggzb-register-link {
  color: var(--bid-tech);
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(47, 128, 237, .22);
}

.bid-ggzb-register p {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  color: #637896;
  font-size: 12px;
  line-height: 1.4;
}

.bid-ggzb-register p input {
  width: 13px;
  height: 13px;
  accent-color: var(--bid-tech);
}

.bid-ggzb-register p a {
  color: #637896;
  text-decoration: none;
}

.bid-home-wechat {
  min-height: 276px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bid-home-wechat-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  min-height: 42px;
}

.bid-home-wechat-heading h2 {
  height: auto;
  margin: 0;
  text-align: left;
  line-height: 20px;
}

.bid-home-wechat-heading p {
  margin: 1px 0 0;
  color: #7890aa;
  font-size: 11px;
}

.bid-home-wechat-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(145deg, #22c76a, #16a957);
  box-shadow: 0 7px 16px rgba(22, 169, 87, .2);
  font-size: 20px;
}

.bid-home-wechat-icon svg {
  width: 27px;
  height: 27px;
  display: block;
  fill: #fff;
}

.bid-home-wechat-icon .bid-home-wechat-eye {
  fill: #18ad58;
}

.bid-home-wechat-qr {
  position: relative;
  width: 198px;
  height: 196px;
  flex: 0 0 196px;
  overflow: hidden;
  margin: 4px auto 0;
  border: 1px solid rgba(47, 128, 237, .18);
  border-radius: 12px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 9px 24px rgba(30, 91, 151, .09);
}

.bid-home-wechat-qr-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 auto;
}

.bid-home-wechat-loading,
.bid-home-wechat-error {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #7890aa;
  font-size: 12px;
}

.bid-home-wechat-loading i,
.bid-home-wechat-error i {
  color: #20b765;
  font-size: 24px;
}

.bid-home-wechat-error a {
  color: var(--bid-tech);
  text-decoration: none;
}

#bid-home-wechat-login {
  position: absolute;
  top: 15px;
  left: 50%;
  width: 300px;
  height: 400px;
  transform: translateX(-50%) scale(.82);
  transform-origin: top center;
}

#bid-home-wechat-login iframe {
  display: block;
  width: 300px !important;
  height: 400px !important;
  border: 0;
}

.bid-home-wechat-message {
  min-height: 19px;
  margin-top: 8px;
  position: relative;
  z-index: 2;
  color: #526d8d;
  font-size: 12px;
  line-height: 19px;
}

.bid-home-wechat-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 12px;
}

.bid-home-wechat-links a,
.bid-home-wechat-links button {
  border: 0;
  padding: 0;
  color: var(--bid-tech);
  background: none;
  cursor: pointer;
  text-decoration: none;
}

.bid-home-wechat-links > * + *::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 10px;
  margin-right: 16px;
  vertical-align: -1px;
  background: rgba(82, 109, 141, .25);
}

.bid-ggzb-user {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(47, 128, 237, .18);
  border-radius: 6px;
  background: rgba(255, 255, 255, .58);
}

.bid-ggzb-user img {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 50%;
  object-fit: cover;
}

.bid-ggzb-user strong,
.bid-ggzb-user span {
  display: block;
}

.bid-ggzb-user strong {
  max-width: 210px;
  overflow: hidden;
  color: var(--bid-blue);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bid-ggzb-user span {
  margin-top: 3px;
  color: var(--bid-muted);
  font-size: 12px;
}

.bid-ggzb-user-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.bid-ggzb-user-meta span {
  min-width: 0;
  padding: 8px 6px;
  border: 1px solid rgba(47, 128, 237, .12);
  border-radius: 6px;
  background: rgba(255, 255, 255, .5);
  color: var(--bid-muted);
  font-size: 12px;
  text-align: center;
}

.bid-ggzb-user-meta b {
  display: block;
  margin-top: 2px;
  color: var(--bid-tech);
  font-size: 15px;
}

.bid-ggzb-user-actions {
  display: grid;
  gap: 9px;
  margin-top: 10px;
}

.bid-ggzb-user-actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.bid-ggzb-logout {
  height: 32px;
  color: var(--bid-muted);
  font-size: 12px;
}

@media (max-width: 1100px) {
  .bid-ggzb-panel {
    grid-template-columns: 250px minmax(0, 1fr);
  }

  .bid-ggzb-register {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(47, 128, 237, .25);
  }

  .bid-ggzb-register form {
    grid-template-columns: 1fr 1fr 180px auto;
    align-items: center;
  }

  .bid-home-wechat {
    min-height: 276px;
  }

  .bid-ggzb-login-message,
  .bid-ggzb-register p {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .bid-ggzb-nav {
    height: auto;
    flex-wrap: wrap;
  }

  .bid-ggzb-nav a {
    flex-basis: 25%;
    min-height: 38px;
    font-size: 13px;
  }

  .bid-ggzb-panel {
    grid-template-columns: 1fr;
  }

  .bid-ggzb-cates {
    border-right: 0;
    border-bottom: 1px solid #98caff;
  }

  .bid-ggzb-banner {
    min-height: 205px;
    padding: 24px 22px;
  }

  .bid-ggzb-banner-copy strong {
    font-size: 26px;
  }

  .bid-ggzb-visual {
    width: 150px;
    flex-basis: 150px;
    opacity: .9;
  }

  .bid-ggzb-service-qr {
    width: 104px;
    flex-basis: 104px;
  }

  .bid-ggzb-service-qr img {
    width: 78px;
    height: 78px;
  }

  .bid-ggzb-register form {
    grid-template-columns: 1fr;
  }
}

/* ========== le_pay 支付弹窗 / 套餐卡（对齐 VIP 弹窗气质） ========== */
.bid-pay-modal {
  position: fixed;
  inset: 0;
  z-index: 10020;
  box-sizing: border-box;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.bid-pay-modal[aria-hidden="false"] {
  display: flex;
}

.bid-pay-modal-open {
  overflow: hidden;
}

.bid-pay-mask {
  position: absolute;
  inset: 0;
  background: rgba(13, 24, 43, .48);
  backdrop-filter: blur(8px);
}

.bid-pay-dialog {
  position: relative;
  z-index: 1;
  width: min(460px, 100%);
  max-height: min(92vh, 720px);
  overflow: auto;
  padding: 26px 28px 28px;
  border: 1px solid rgba(25, 132, 255, .72);
  border-radius: 18px;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, .92) 0 72px, transparent 73px),
    linear-gradient(180deg, rgba(226, 243, 255, .98) 0%, rgba(246, 250, 255, .98) 100%);
  box-shadow: 0 24px 72px rgba(28, 79, 150, .24);
}

.bid-pay-dialog.is-wide {
  width: min(720px, 100%);
}

.bid-pay-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  color: #667991;
  background: rgba(255, 255, 255, .7);
  font-size: 22px;
  line-height: 30px;
  cursor: pointer;
}

.bid-pay-close:hover {
  color: #fff;
  background: var(--bid-blue);
}

.bid-pay-head {
  min-height: 58px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  padding-right: 36px;
}

.bid-pay-head > span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(180deg, #5995fe 0%, #6d67fb 100%);
  font-size: 22px;
}

.bid-pay-head strong {
  display: block;
  color: var(--bid-blue);
  font-size: 22px;
  line-height: 1.25;
}

.bid-pay-head p {
  margin: 6px 0 0;
  color: var(--bid-muted);
  font-size: 13px;
  line-height: 1.55;
}

.bid-pay-amount {
  margin: 18px 0 6px;
  text-align: center;
  color: var(--bid-blue);
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.bid-pay-amount small {
  margin-left: 4px;
  font-size: 15px;
  font-weight: 600;
  color: var(--bid-muted);
}

.bid-pay-subject {
  text-align: center;
  color: var(--bid-text);
  font-weight: 600;
}

.bid-pay-qr-wrap {
  width: 220px;
  height: 220px;
  display: grid;
  place-items: center;
  margin: 18px auto 0;
  padding: 14px;
  border: 1px solid rgba(90, 148, 254, .22);
  border-radius: 14px;
  background: rgba(255, 255, 255, .78);
}

.bid-pay-qr-wrap canvas,
.bid-pay-qr-wrap img {
  max-width: 100%;
  height: auto;
}

.bid-pay-status {
  margin: 14px 0 0;
  min-height: 22px;
  text-align: center;
  color: var(--bid-muted);
  font-size: 13px;
}

.bid-pay-status.is-ok {
  color: var(--bid-green);
  font-weight: 700;
}

.bid-pay-status.is-err {
  color: #d64545;
  font-weight: 600;
}

.bid-pay-tips {
  margin: 12px 0 0;
  text-align: center;
  color: #8f9bb3;
  font-size: 12px;
  line-height: 1.5;
}

.bid-pay-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 18px;
}

.bid-pay-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 132px;
  min-height: 40px;
  padding: 0 18px;
  border: 0;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 700;
  font-family: inherit;
  background: var(--bid-blue);
  color: #fff;
}

.bid-pay-btn:hover {
  background: var(--bid-active);
}

.bid-pay-btn.is-ghost {
  background: rgba(90, 148, 254, .12);
  color: var(--bid-blue);
}

.bid-pay-btn.is-ghost:hover {
  background: rgba(90, 148, 254, .2);
}

.bid-pay-btn:disabled {
  opacity: .55;
  cursor: not-allowed;
}

.bid-pay-pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.bid-pay-pkg-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 16px 14px;
  border: 1px solid rgba(90, 148, 254, .18);
  border-radius: 14px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 10px 28px rgba(90, 148, 254, .08);
  transition: border-color .15s ease, transform .15s ease;
}

.bid-pay-pkg-card:hover {
  border-color: rgba(111, 105, 229, .45);
  transform: translateY(-2px);
}

.bid-pay-pkg-card h3 {
  margin: 0;
  color: var(--bid-blue);
  font-size: 17px;
  font-weight: 800;
}

.bid-pay-pkg-price {
  color: var(--bid-active);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.1;
}

.bid-pay-pkg-price small {
  font-size: 13px;
  font-weight: 600;
  color: var(--bid-muted);
}

.bid-pay-pkg-meta {
  min-height: 40px;
  color: var(--bid-muted);
  font-size: 13px;
  line-height: 1.5;
  flex: 1;
}

.bid-pay-unlock-panel {
  margin-top: 18px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(90, 148, 254, .16);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(234, 244, 255, .92) 0%, rgba(255, 255, 255, .9) 55%, rgba(246, 240, 255, .88) 100%);
  box-shadow: 0 12px 32px rgba(90, 148, 254, .1);
}

.bid-pay-unlock-panel .bid-pay-unlock-title {
  margin: 0 0 6px;
  color: var(--bid-blue);
  font-size: 16px;
  font-weight: 800;
}

.bid-pay-unlock-panel .bid-pay-unlock-desc {
  margin: 0 0 14px;
  color: var(--bid-muted);
  font-size: 13px;
  line-height: 1.55;
}

.bid-pay-unlock-panel .bid-reveal-row {
  margin-top: 0;
}

/* 用户中心支付页 */
.le-pay-page .panel {
  border: 1px solid rgba(90, 148, 254, .14);
  border-radius: 16px;
  box-shadow: 0 14px 36px rgba(90, 148, 254, .08);
  overflow: hidden;
}

.le-pay-page .panel-body {
  padding: 22px 24px 28px;
}

.le-pay-stat {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 20px;
}

.le-pay-stat-card {
  flex: 1 1 160px;
  min-width: 140px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(90, 148, 254, .16);
  background: linear-gradient(180deg, rgba(234, 244, 255, .9), rgba(255, 255, 255, .92));
}

.le-pay-stat-card span {
  display: block;
  color: var(--bid-muted);
  font-size: 13px;
}

.le-pay-stat-card strong {
  display: block;
  margin-top: 6px;
  color: var(--bid-blue);
  font-size: 28px;
  font-weight: 800;
}

.le-pay-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
}

.le-pay-tabs a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(90, 148, 254, .1);
  color: var(--bid-blue);
  font-size: 13px;
  font-weight: 600;
}

.le-pay-tabs a.is-active,
.le-pay-tabs a:hover {
  background: var(--bid-blue);
  color: #fff;
}

.le-pay-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid rgba(90, 148, 254, .12);
  border-radius: 12px;
}

.le-pay-table th,
.le-pay-table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(90, 148, 254, .1);
  text-align: left;
  font-size: 13px;
  vertical-align: middle;
}

.le-pay-table th {
  background: rgba(234, 244, 255, .75);
  color: var(--bid-blue);
  font-weight: 700;
}

.le-pay-table tr:last-child td {
  border-bottom: 0;
}

.le-pay-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.le-pay-badge.is-paid {
  background: rgba(55, 194, 154, .14);
  color: #1f9d72;
}

.le-pay-badge.is-pending {
  background: rgba(255, 115, 27, .12);
  color: #d45f12;
}

.le-pay-badge.is-closed {
  background: rgba(143, 155, 179, .16);
  color: #60728c;
}

.le-pay-pager {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  margin-top: 16px;
}

.le-pay-pager a,
.le-pay-pager span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 10px;
  background: rgba(90, 148, 254, .1);
  color: var(--bid-blue);
  font-size: 13px;
  font-weight: 600;
}

.le-pay-pager a:hover,
.le-pay-pager span.is-cur {
  background: var(--bid-blue);
  color: #fff;
}

@media (max-width: 768px) {
  .bid-pay-dialog {
    padding: 22px 18px 22px;
  }

  .bid-pay-pkg-grid {
    grid-template-columns: 1fr;
  }

  .le-pay-table th:nth-child(n+4),
  .le-pay-table td:nth-child(n+4) {
    display: none;
  }
}
