picker.wxss 580 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /* templates/picker/picker.wxss */
  2. .picker-container {
  3. position: fixed;
  4. width: 100%;
  5. height: 100%;
  6. top: 0;
  7. left: 0;
  8. background: rgba(0, 0, 0, .2);
  9. z-index: 99;
  10. }
  11. .picker-cancel {
  12. position: absolute;
  13. width: 100%;
  14. height: 100%;
  15. }
  16. .picker-list {
  17. position: absolute;
  18. width: 100%;
  19. height: auto;
  20. bottom: 0;
  21. left: 0;
  22. /* max-height: 80%; */
  23. background: #fff;
  24. z-index: 9;
  25. }
  26. .auto{
  27. height: auto;
  28. }
  29. .picker-li {
  30. padding: 30rpx;
  31. font-size: 30rpx;
  32. color: #393939;
  33. text-align: center
  34. }
  35. .picker-li-active {
  36. background: #FF6465;
  37. color: #fff;
  38. }