  .back-btn {
  /* 关键：绝对定位，让按钮强制靠最左侧，并垂直居中 */
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);

  /* 调整布局与尺寸 */
  display: inline-flex;
  align-items: center;
  gap: 10px;               /* 增大图标和文字间距 */
  padding: 12px 28px;      /* 增大内边距，让按钮看起来更大气 */
  
  /* 颜色与圆角 */
  background-color: #98FFD9;
  color: #4A4A4A;
  border: none;
  border-radius: 50px;
  
  /* 增大字号和字重 */
  font-size: 20px;          /* 字体从 16px 放大到 20px */
  font-weight: 600;
  font-family: system-ui, -apple-system, sans-serif;
  
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
}

/* 放大 SVG 图标 */
.back-icon {
  width: 24px;              /* 从 20px 放大到 24px */
  height: 24px;
}

/* 悬停与点击效果 */
.back-btn:hover {
  background-color: #7DE9C2;
}
.back-btn:active {
  /* 保持居中的同时加上点击微缩效果 */
  transform: translateY(-50%) scale(0.97);
}