.popup-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.5); z-index: 1000; opacity: 0; transition: opacity 0.3s ease; } .popup-container { position: fixed; bottom: 24rpx; left: 0; width: 100%; /* background-color: white; */ transform: translateY(100%); transition: transform 0.3s ease; /* padding-bottom: 140rpx; */ padding: 0 24rpx; box-sizing: border-box; } .popup-contain{ background-color: #fff; border-radius: 24rpx; } .popup-overlay.show { opacity: 1; } .popup-overlay.show .popup-container { transform: translateY(0); } .popup-header { padding: 16px; border-bottom: 1px solid #eee; } .popup-title { font-size: 18px; color: #333; } .popup-actions { display: flex; justify-content: space-between; align-items: center; } .cancel, .confirm { font-size: 16px; color: #007AFF; } .popup-content { padding: 16px; }