index.wxss 464 B

123456789101112131415161718192021222324252627
  1. .wux-selectable {
  2. position: relative;
  3. display: inline-block
  4. }
  5. .wux-selectable__input {
  6. position: absolute;
  7. top: 0;
  8. left: 0;
  9. opacity: 0;
  10. width: 100%;
  11. height: 100%;
  12. z-index: 2;
  13. border: 0 none;
  14. -webkit-appearance: none;
  15. -moz-appearance: none;
  16. appearance: none
  17. }
  18. .wux-selectable__icon {
  19. display: inline-block;
  20. font-size: 0;
  21. vertical-align: middle;
  22. position: relative;
  23. top: 0;
  24. left: 0;
  25. margin-left: 10rpx;
  26. margin-right: 10rpx
  27. }