newPicker.wxss 836 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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. .btn {
  30. padding-left: 20rpx;
  31. border: 1px solid grey;
  32. height: 80rpx;
  33. line-height: 80rpx;
  34. width: 50vw;
  35. }
  36. .modal {
  37. position: absolute;
  38. bottom: 0;
  39. }
  40. .modal-in {
  41. animation: moveIn 0.3s 1 forwards;
  42. }
  43. @keyframes moveIn {
  44. from {
  45. right: -100vw;
  46. }
  47. to {
  48. right: 0;
  49. }
  50. }
  51. @keyframes moveOut {
  52. from {
  53. right: 0;
  54. }
  55. to {
  56. right: -100vw;
  57. }
  58. }