/* V69 选择伙伴：列表可上下滚动 */

.pet-picker-scroll-v69{
  max-height:min(58vh, 520px) !important;
  overflow-y:auto !important;
  overflow-x:hidden !important;
  overscroll-behavior:contain;
  -webkit-overflow-scrolling:touch;

  padding-right:3px;
  padding-bottom:18px;

  scrollbar-width:none;
}

.pet-picker-scroll-v69::-webkit-scrollbar{
  display:none;
}

/* iPhone 矮屏 */
@media (max-height:760px){
  .pet-picker-scroll-v69{
    max-height:50vh !important;
  }
}

/* 防止弹窗把列表裁掉 */
#modalContent:has(.pet-picker-scroll-v69){
  overflow:visible !important;
}

#modal:has(.pet-picker-scroll-v69){
  overflow:hidden !important;
}
