/* ========== 招标信息 - Banner ========== */
.page-banner--bidding {
  background: url("../images_WZ/regulationsSearch/bg.jpg") center / cover no-repeat;
}

/* ========== 招标信息 - 布局 ========== */
.bidding-layout,
.bidding-layout *,
.bidding-layout *::before,
.bidding-layout *::after {
  box-sizing: border-box;
}

.bidding-layout {
  width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  column-gap: 20px;
  align-items: start;
}

/* ---------- 左侧分类 ---------- */
.bidding-sidebar {
  width: 260px;
  flex-shrink: 0;
  background: #f6f6f6;
  overflow: hidden;
  grid-row: 1 / -1;
}

.bidding-sidebar__header {
  height: 70px;
  line-height: 70px;
  text-align: left;
  padding-left: 40px;
  background: url("../images_WZ/regulationsSearch/header.png") center / cover no-repeat;
  color: #fff;
  font-weight: bold;
  font-size: 22px;
}

.bidding-sidebar__list {
  list-style: none;
  padding: 0;
  background: #f6f6f6;
}

.bidding-sidebar__item {
  position: relative;
  padding: 20px 40px 20px 40px;
  font-size: 16px;
  color: #333;
  cursor: pointer;
  background: #f6f6f6;
  border-bottom: 1px solid #fff;
  transition: color 0.2s;
}

.bidding-sidebar__item:last-child {
  border-bottom: none;
}

.bidding-sidebar__item:hover {
  color: #c21116;
}

.bidding-sidebar__item.is-active {
  color: #c21116;
  font-weight: bold;
}

.bidding-sidebar__item.is-active::after {
  content: "";
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: url("../images_WZ/regulationsSearch/right.png") center / contain no-repeat;
}

/* ---------- 右侧主内容 ---------- */
.bidding-main {
  grid-column: 2;
  background: #fff;
  border: 1px solid #e5e5e5;
  padding: 24px 30px 30px;
  min-height: 600px;
  box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.1);
}

.bidding-layout > .query-page {
  grid-column: 2;
  width: auto;
  margin: 24px 0 0;
  text-align: center;
}

.bidding-main .policy-search {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #E3E9F5;
}

/* ---------- 列表 ---------- */
.bidding-list {
  list-style: none;
}

.bidding-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dotted #e5e5e5;
  font-size: 14px;
  line-height: 1.5;
}

.bidding-list li:last-child {
  border-bottom: none;
}

.bidding-list li::before {
  content: "";
  display: inline-block;
  width: 11px;
  height: 11px;
  margin-right: 10px;
  flex-shrink: 0;
  background: url("../images_WZ/regulations/icon.png") center / contain no-repeat;
}

.bidding-list li .name {
  flex: 1;
  margin-right: 30px;
  color: #333;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bidding-list li .name:hover {
  color: #c21116;
}

.bidding-list li .date {
  flex-shrink: 0;
  width: 100px;
  color: #999;
  text-align: right;
}