tabs.wxss 592 B

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