newPicker.wxss 867 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. animation: moveUp 0.3s 1 forwards;
  40. }
  41. .modal-down {
  42. animation: moveDown 0.3s 1 forwards;
  43. }
  44. @keyframes moveUp {
  45. from {
  46. top: 100vh;
  47. }
  48. to {
  49. top: 0;
  50. }
  51. }
  52. @keyframes moveDown {
  53. from {
  54. top: 0;
  55. }
  56. to {
  57. top: 100vh;
  58. }
  59. }