抖音c端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 rivejä
830 B

  1. .i-tabs {
  2. display: flex;
  3. width: 100%;
  4. height: 48px;
  5. line-height: 48px;
  6. box-sizing: border-box;
  7. position: relative;
  8. justify-content: space-around;
  9. align-items: center;
  10. -webkit-box-align: center;
  11. /* background: #fff */
  12. }
  13. .i-tabs::after {
  14. content: '';
  15. position: absolute;
  16. top: 0;
  17. left: 0;
  18. width: 200%;
  19. height: 200%;
  20. transform: scale(.5);
  21. transform-origin: 0 0;
  22. pointer-events: none;
  23. box-sizing: border-box;
  24. /* border: 0 solid #e9eaec; */
  25. border-bottom-width: 1px
  26. }
  27. .i-tabs-scroll {
  28. display: block;
  29. overflow-x: auto;
  30. margin-bottom: 22rpx;
  31. white-space: nowrap;
  32. /* box-shadow:0 0 2px 0 rgba(211,211,211,0.50); */
  33. /* border-bottom: 1rpx solid #eeeeee; */
  34. }
  35. .i-tabs-fixed {
  36. position: fixed;
  37. top: 0;
  38. z-index: 2
  39. }