index.wxss 805 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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: 60rpx;
  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. .tabs__nav:first-child {
  22. margin-left: 30rpx;
  23. }
  24. .tabs__navs__wrap {
  25. position: relative;
  26. display: flex;
  27. flex-direction: row;
  28. flex-wrap: nowrap;
  29. }
  30. .tabs__navs__wrap .activeIndicator {
  31. width: 56rpx;
  32. height: 6rpx;
  33. position: absolute;
  34. bottom: 0;
  35. left: 28rpx;
  36. border-radius: 24rpx;
  37. background: linear-gradient(to right, #fe655c, #fa875b);
  38. box-shadow: 0rpx 4rpx 4rpx 0rpx rgba(255, 89, 0, 0.25);
  39. transition: all 1s ease-in-out;
  40. }