/* ActionSheet 修复样式 */
.van-action-sheet {
  z-index: 2000;
}

.van-action-sheet__item {
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.van-action-sheet__cancel {
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

/* 修复 iOS Safari 上的滚动问题 */
.van-action-sheet__content {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}

/* 修复 Android 上的点击穿透问题 */
.van-overlay {
  touch-action: none;
}
