index.wxss 767 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. .wux-tabbar {
  2. position: relative;
  3. z-index: 500;
  4. width: 100%;
  5. background-color: #fff;
  6. box-sizing: border-box
  7. }
  8. .wux-tabbar-wrap {
  9. width: 100%;
  10. min-height: 92rpx;
  11. box-sizing: border-box
  12. }
  13. .wux-tabbar--bottom {
  14. position: fixed;
  15. left: 0;
  16. bottom: 0
  17. }
  18. .wux-tabbar--bottom::after {
  19. content: " ";
  20. position: absolute;
  21. left: 0;
  22. top: 0;
  23. right: 0;
  24. height: 1PX;
  25. border-top: 1PX solid #d9d9d9;
  26. color: #d9d9d9;
  27. transform-origin: 0 0;
  28. transform: scaleY(.5)
  29. }
  30. .wux-tabbar--top {
  31. position: fixed;
  32. left: 0;
  33. top: 0
  34. }
  35. .wux-tabbar--top::after {
  36. content: " ";
  37. position: absolute;
  38. left: 0;
  39. bottom: 0;
  40. right: 0;
  41. height: 1PX;
  42. border-bottom: 1PX solid #d9d9d9;
  43. color: #d9d9d9;
  44. transform-origin: 0 100%;
  45. transform: scaleY(.5)
  46. }