newPicker.wxss 723 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /* components/newPicker/newPicker.wxss */
  2. .search {
  3. width: 78vw;
  4. text-align: center;
  5. margin: 30rpx auto;
  6. height: 80rpx;
  7. line-height: 80rpx;
  8. background: #eee;
  9. }
  10. .cancel {
  11. margin: 30rpx auto;
  12. height: 80rpx;
  13. line-height: 80rpx;
  14. font-size: 32rpx;
  15. color: #999;
  16. }
  17. .items {
  18. padding-left: 40rpx;
  19. height: 100rpx;
  20. line-height: 100rpx;
  21. border-bottom: 1rpx solid #eee;
  22. }
  23. .df {
  24. display: flex;
  25. }
  26. .jcsa {
  27. justify-content: space-around;
  28. }
  29. .modal {
  30. position: absolute;
  31. bottom: 0;
  32. }
  33. .modal-in {
  34. animation: moveIn 0.3s 1 forwards;
  35. }
  36. @keyframes moveIn {
  37. from {
  38. right: -100vw;
  39. }
  40. to {
  41. right: 0;
  42. }
  43. }
  44. @keyframes moveOut {
  45. from {
  46. right: 0;
  47. }
  48. to {
  49. right: -100vw;
  50. }
  51. }