index.less 702 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. .tabsTitle {
  2. display: flex;
  3. align-items: center;
  4. height: 0.8rem;
  5. margin-bottom: 0.1rem;
  6. // padding-left: 0.4rem;
  7. // width: calc(100% - 0.4rem);
  8. overflow-x: auto;
  9. overflow-y: hidden;
  10. border-bottom: 0.015rem solid #bcbaba;
  11. &::-webkit-scrollbar {
  12. display: none;
  13. }
  14. // > .tabsItem {
  15. // border-right: 0.01rem solid #979797;
  16. // }
  17. // :last-child {
  18. // border-right: none;
  19. // }
  20. }
  21. .tabsItem {
  22. color: #3f3f40;
  23. font-size: 0.36rem;
  24. white-space: nowrap;
  25. }
  26. .active {
  27. color: #1755ff;
  28. }
  29. .small {
  30. height: inherit;
  31. width: 100%;
  32. border-bottom: none;
  33. .tabsItem {
  34. font-size: 0.28rem;
  35. font-weight: 600;
  36. &:last-child {
  37. padding-right: 0;
  38. }
  39. }
  40. }