tui-tabs.wxss 989 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. .tui-tabs-view {
  2. width: 100%;
  3. box-sizing: border-box;
  4. display: flex;
  5. align-items: center;
  6. justify-content: space-between;
  7. z-index: 9999;
  8. }
  9. .tui-tabs-relative {
  10. position: relative;
  11. }
  12. .tui-tabs-fixed {
  13. position: fixed;
  14. left: 0;
  15. }
  16. .tui-tabs-fixed::before,
  17. .tui-tabs-relative::before {
  18. content: '';
  19. position: absolute;
  20. border-bottom: 1rpx solid #eaeef1;
  21. -webkit-transform: scaleY(0.5);
  22. transform: scaleY(0.5);
  23. bottom: 0;
  24. right: 0;
  25. left: 0;
  26. }
  27. .tui-unlined::before {
  28. border-bottom: 0 !important
  29. }
  30. .tui-tabs-item {
  31. display: flex;
  32. align-items: center;
  33. justify-content: center;
  34. }
  35. .tui-tabs-disabled {
  36. opacity: .6;
  37. }
  38. .tui-tabs-title {
  39. display: flex;
  40. align-items: center;
  41. justify-content: center;
  42. position: relative;
  43. z-index: 2;
  44. }
  45. .tui-tabs-active {
  46. transition: all 0.15s ease-in-out;
  47. }
  48. .tui-tabs-slider {
  49. border-radius: 40rpx;
  50. position: absolute;
  51. left: 0;
  52. transition: all 0.15s ease-in-out;
  53. z-index: 0;
  54. }