index.wxss 876 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. .i-tabs-tab {
  2. flex: 1;
  3. display: flex;
  4. width: 100%;
  5. -webkit-box-pack: center;
  6. justify-content: center;
  7. -webkit-box-align: center;
  8. align-items: center;
  9. -webkit-box-orient: vertical;
  10. -webkit-box-direction: normal;
  11. flex-direction: column;
  12. text-align: center;
  13. position: relative;
  14. z-index:2
  15. }
  16. .i-tabs-tab-bar {
  17. display: block;
  18. width: 100%;
  19. height: 8rpx;
  20. border-radius: 8rpx;
  21. background: 0 0;
  22. position: absolute;
  23. bottom: 15rpx;
  24. left: 0;
  25. z-index: -1;
  26. background: #9DDB52!important;
  27. }
  28. .i-tabs-tab-title {
  29. box-sizing: border-box;
  30. font-size: 30rpx;
  31. font-family: PingFang SC, PingFang SC-Medium;
  32. font-weight: 500;
  33. text-align: center;
  34. color: #666666;
  35. letter-spacing: -1rpx;
  36. }
  37. .i-tabs-tab-title-current {
  38. font-size: 32rpx;
  39. font-weight: 700;
  40. color: #1A1A1A;
  41. }
  42. .i-tabs-tab-scroll {
  43. display: inline-block;
  44. width: 60px
  45. }