/* 商会商机 · 厚街本地化精准撮合（独立样式，避免污染主表） */
.deals-banner {
  background: linear-gradient(135deg, #e8f1fb, #f7fafd);
  border: 1px solid #cce0f5;
  border-left: 4px solid #3c81dc;
  border-radius: 10px;
  padding: 16px 20px;
  margin: 24px 0;
  font-size: 14px;
  color: #14365f;
  line-height: 1.75;
}
.deals-banner b { color: #1e4e8c; }

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}
.filter-btn {
  padding: 10px 18px;
  background: #fff;
  border: 1.5px solid #cfd8dc;
  border-radius: 24px;
  cursor: pointer;
  font-size: 14px;
  color: #37474f;
  transition: all .2s;
  font-family: inherit;
}
.filter-btn:hover { border-color: #3c81dc; color: #3c81dc; }
.filter-btn.active {
  background: #3c81dc;
  color: #fff;
  border-color: #3c81dc;
}

.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.deal-card {
  background: #fff;
  border: 1px solid #e3e8ef;
  border-radius: 14px;
  padding: 24px;
  transition: all .3s;
  position: relative;
  box-shadow: 0 4px 14px rgba(20, 54, 95, .06);
}
.deal-card:hover {
  box-shadow: 0 12px 30px rgba(60, 129, 220, .14);
  transform: translateY(-3px);
}

.deal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 8px;
}
.deal-type {
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 14px;
}
.deal-type-supply { background: #e8f5e9; color: #2e7d32; }
.deal-type-demand { background: #e3f2fd; color: #1565c0; }
.deal-type-both   { background: #f3e5f5; color: #6a1b9a; }

.deal-industry {
  font-size: 12px;
  color: #78909c;
  background: #f5f7fa;
  padding: 4px 10px;
  border-radius: 10px;
}

.deal-card h3 {
  font-size: 18px;
  margin: 8px 0 6px;
  color: #14365f;
  font-weight: 700;
  line-height: 1.5;
}
.deal-company {
  font-size: 13px;
  color: #5b6472;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px dashed #e3e8ef;
}
.deal-desc {
  font-size: 14px;
  color: #1f2937;
  line-height: 1.75;
  margin-bottom: 18px;
}
.deal-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.deal-date { font-size: 12px; color: #90a4ae; }

.deals-empty {
  text-align: center;
  padding: 48px 24px;
  color: #78909c;
  font-size: 15px;
  background: #f5f7fa;
  border-radius: 10px;
}

.publish-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}
.publish-step {
  background: #fff;
  border: 1px solid #e3e8ef;
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
  transition: all .3s;
}
.publish-step:hover {
  box-shadow: 0 8px 20px rgba(60, 129, 220, .1);
  transform: translateY(-2px);
}
.publish-step .step-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #1e4e8c, #3c81dc);
  color: #fff;
  border-radius: 50%;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 18px;
  box-shadow: 0 4px 12px rgba(30, 78, 140, .3);
}
.publish-step h3 {
  font-size: 17px;
  color: #14365f;
  margin: 8px 0 12px;
  font-weight: 700;
}
.publish-step p {
  font-size: 14px;
  color: #5b6472;
  line-height: 1.75;
  margin-bottom: 16px;
}

@media (max-width: 760px) {
  .publish-box { grid-template-columns: 1fr; }
  .deals-grid  { grid-template-columns: 1fr; }
  .filter-bar  { gap: 8px; }
  .filter-btn  { padding: 8px 14px; font-size: 13px; }
}