// Figma 5965-5518：地图底部助手预览条
.wrap {
  position: relative;
  width: 100%;
  height: 234px;
  overflow: hidden;
  flex-shrink: 0;
  pointer-events: auto;
}

.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  pointer-events: none;
}

.profile {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 150px;
  height: 188px;
  object-fit: cover;
  object-position: center top;
  pointer-events: none;
}

.footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0 20px;
  box-sizing: border-box;
}

.row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 32px;
  box-sizing: border-box;
}

.title {
  margin: 0;
  font-family: 'PingFang SC', sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
}

.expandBtn {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;

  img {
    width: 32px;
    height: 32px;
    display: block;
  }

  &:active {
    opacity: 0.75;
  }
}

