index.wxss 933 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. .tabs {
  2. position: relative;
  3. padding-right: 10rpx;
  4. }
  5. .tabs__nav {
  6. position: relative;
  7. padding-bottom: 16rpx;
  8. margin-right: 50rpx;
  9. font-size: 28rpx;
  10. font-weight: bold;
  11. line-height: 44rpx;
  12. flex-shrink: 0;
  13. transition: all 0.6s ease;
  14. color: #666;
  15. padding-top:10rpx;
  16. }
  17. .tabs__nav.active {
  18. font-weight: bold;
  19. font-size: 30rpx;
  20. }
  21. /* ::-webkit-scrollbar{
  22. width: 0;
  23. height: 0;
  24. color: transparent;
  25. } */
  26. .tabs__nav:first-child {
  27. margin-left: 30rpx;
  28. }
  29. .tabs__navs__wrap {
  30. position: relative;
  31. display: flex;
  32. flex-direction: row;
  33. flex-wrap: nowrap;
  34. }
  35. .tabs__navs__wrap .activeIndicator {
  36. width: 56rpx;
  37. height: 6rpx;
  38. position: absolute;
  39. bottom: 0;
  40. left: 28rpx;
  41. border-radius: 24rpx;
  42. background: linear-gradient(to right, #fe655c, #fa875b);
  43. box-shadow: 0rpx 4rpx 4rpx 0rpx rgba(255, 89, 0, 0.25);
  44. transition: all 1s ease-in-out;
  45. }