newPicker.wxss 947 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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. .aic {
  27. align-items: center;
  28. }
  29. .jcsb {
  30. justify-content: space-between;
  31. }
  32. .jcsa {
  33. justify-content: space-around;
  34. }
  35. .modal {
  36. position: absolute;
  37. bottom: 0;
  38. }
  39. .modal-in {
  40. animation: moveIn 0.3s 1 forwards;
  41. }
  42. @keyframes moveIn {
  43. from {
  44. right: -100vw;
  45. }
  46. to {
  47. right: 0;
  48. }
  49. }
  50. @keyframes moveOut {
  51. from {
  52. right: 0;
  53. }
  54. to {
  55. right: -100vw;
  56. }
  57. }
  58. .arrow {
  59. width: 20rpx;
  60. height: 20rpx;
  61. display: block;
  62. }
  63. .tac {
  64. text-align: center;
  65. }
  66. .arrow-box {
  67. justify-content: space-between;
  68. }