.xiaobao-hero {
  position: relative;
  height: 680px;
  background-image: url('/uiFramework/commonResource/image/2025122611512594796.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.xiaobao-hero::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background-color: #c0b297;
  opacity: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
  height: 100%;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0px;
  align-items: stretch;
  justify-items: stretch;
  list-style: none;
  padding: 0;
  margin: 0;
  height: 100%;
}

.feature-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.feature-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: #c0b297;
  opacity: 0;
  transition: opacity .25s ease;
}

.feature-item:hover::before,
.feature-item:focus-within::before {
  opacity: .65;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.feature-circle {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 2px solid #7e2a23;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color .25s ease, transform .25s ease;
}

.feature-circle img {
  width: 44px;
  height: auto;
}

.feature-label {
  margin-top: 12px;
  color: #7e2a23;
  font-size: 20px;
  font-weight: bold;
}

.feature-card:hover .feature-circle,
.feature-card:focus .feature-circle {
  background-color: #c0b297;
  transform: translateY(-2px);
}

.feature-card:focus-visible .feature-circle {
  box-shadow: 0 0 0 3px #d7b263;
}