top-dropdown.wxss 601 B

1234567891011121314151617181920212223242526272829303132333435
  1. .tui-dropdown-box {
  2. width: 100%;
  3. position: fixed;
  4. box-sizing: border-box;
  5. border-bottom-right-radius: 24rpx;
  6. border-bottom-left-radius: 24rpx;
  7. transform: translateZ(0);
  8. overflow: hidden;
  9. visibility: hidden;
  10. transition: all 0.3s ease-in-out;
  11. z-index: 998;
  12. top:0;
  13. }
  14. .tui-dropdown-show {
  15. visibility: visible;
  16. }
  17. .tui-dropdown-mask {
  18. position: fixed;
  19. top: 0;
  20. left: 0;
  21. right: 0;
  22. bottom: 0;
  23. background: rgba(0, 0, 0, 0.6);
  24. z-index: 996;
  25. transition: all 0.3s ease-in-out;
  26. opacity: 0;
  27. visibility: hidden;
  28. }
  29. .tui-mask-show {
  30. opacity: 1;
  31. visibility: visible;
  32. }