newPicker.wxss 982 B

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