.hero-banner {
  width: 100%
}

.hero-banner img {
  width: 100%;
  height: auto;
  display: block
}


.acquire-section {
  margin-top: 32px;
  padding: 28px 0
}

.acquire-container {
  width: 80%;
  margin: 0 auto
}

.acquire-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px
}

.acquire-head-left {
  display: inline-flex;
  flex-direction: column
}

.acquire-card-title {
  font-size: 24px;
  color: #3f3939;
  font-weight: 500;
  text-align: center
}

.deposit-title-text {
  color: #940f17;
  font-size: 24px;
  font-weight: 600
}

.deposit-title-line {
  display: block;
  width: 1.5em;
  height: 2px;
  background-color: #7e2a23;
  border-radius: 2px;
  margin-top: 6px;
}

/* 招聘单位卡片网格 */
.branch-grid {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 32px;
}

.branch-item {
  position: relative;
}

.branch-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
  text-decoration: none;
  background-color: #fff;
  background-image: url('/uiFramework/commonResource/image/2025122410122749875.png');
  background-repeat: no-repeat;
  background-size: 320px auto;
  background-position: center;
  border-radius: 16px;
  padding: 24px 32px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .06);
  overflow: hidden;
}

.branch-card::after {
  content: none;
  display: none;
}

.branch-icon {
  flex: 0 0 auto;
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background-color: #d7b263;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 12px rgba(215, 178, 99, .35);
  margin-left: 20%;
}

.branch-icon img {
  width: 40px;
  height: 40px;
  display: block;
}

.branch-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.branch-title {
  color: #3f3939;
  font-size: 24px;
  font-weight: 500;
}

.branch-count {
  margin-top: 8px;
  color: #89211c;
  font-size: 14px;
}

.branch-card:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, .08);
}