/* components/newPicker/newPicker.wxss */ .search { width: 78vw; text-align: center; margin: 30rpx auto; height: 80rpx; line-height: 80rpx; background: #eee; } .cancel { margin: 30rpx auto; height: 80rpx; line-height: 80rpx; font-size: 32rpx; color: #999; } .items { padding-left: 40rpx; height: 100rpx; line-height: 100rpx; border-bottom: 1rpx solid #eee; } .df { display: flex; } .aic { align-items: center; } .jcsb { justify-content: space-between; } .jcsa { justify-content: space-around; } .modal { position: absolute; bottom: 0; } .modal-in { animation: moveIn 0.3s 1 forwards; } @keyframes moveIn { from { right: -100vw; } to { right: 0; } } @keyframes moveOut { from { right: 0; } to { right: -100vw; } } .arrow { width: 20rpx; height: 20rpx; display: block; } .tac { text-align: center; } .arrow-box { justify-content: space-between; }