tabs.scss 830 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. .tabs {
  2. position: relative;
  3. display: flex;
  4. width: 750rpx;
  5. height: 90rpx;
  6. background: #fff;
  7. .item {
  8. flex: 1;
  9. display: flex;
  10. align-items: center;
  11. justify-content: center;
  12. .title {
  13. position: relative;
  14. font-size: 28rpx;
  15. font-family: PingFang SC-Bold, PingFang SC;
  16. font-weight: bold;
  17. color: #999999;
  18. letter-spacing: 2rpx;
  19. .badge {
  20. position: absolute;
  21. top: 50%;
  22. right: -30rpx;
  23. }
  24. }
  25. .acTitle {
  26. color: var(--assist);
  27. }
  28. }
  29. .my-bor-bot {
  30. position: absolute;
  31. width: 128rpx;
  32. height: 4rpx;
  33. background: #0486FE;
  34. left: 0;
  35. bottom: 0;
  36. }
  37. }