tabs.wxss 567 B

1234567891011121314151617181920212223242526272829303132333435
  1. .scroll-view_H{
  2. white-space: nowrap;
  3. position: fixed;
  4. top: 80rpx;
  5. left: 0;
  6. z-index: 10;
  7. }
  8. .scroll-view-item{
  9. height: 300rpx;
  10. }
  11. .scroll-view-item_H{
  12. position: relative;
  13. display: inline-block;
  14. padding: 10rpx 28rpx;
  15. height: 40rpx;
  16. font-size: 28rpx;
  17. color: #777777;
  18. background: #2b2b2b;
  19. }
  20. .scroll-view-item_H:after {
  21. content: '';
  22. position: absolute;
  23. width: 70%;
  24. height: 4rpx;
  25. left: 15%;
  26. bottom: 6rpx;
  27. background: transparent;
  28. }
  29. .scroll-view-item_H.active {
  30. color: #fff
  31. }
  32. .scroll-view-item_H.active:after {
  33. background: #fff;
  34. }