picker.wxss 554 B

1234567891011121314151617181920212223242526272829303132333435
  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: 60%;
  20. bottom: 0;
  21. left: 0;
  22. /* max-height: 80%; */
  23. background: #fff;
  24. z-index: 9;
  25. }
  26. .picker-li {
  27. padding: 30rpx;
  28. font-size: 30rpx;
  29. color: #393939;
  30. text-align: center
  31. }
  32. .picker-li-active {
  33. background: #FF6465;
  34. color: #fff;
  35. }