index.wxss 773 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. .tabs_box {
  2. display: flex;
  3. align-items: flex-end;
  4. justify-content: space-between;
  5. width: 100vw;
  6. height: 100rpx;
  7. background: #FFFFFF;
  8. }
  9. .tbas_list {
  10. width: 90%;
  11. display: flex;
  12. justify-content: space-around;
  13. font-size: 28rpx;
  14. /* margin-left: 44rpx; */
  15. margin: 0 auto;
  16. }
  17. .tbas_list>view {
  18. line-height: 32rpx;
  19. height: 60rpx;
  20. }
  21. /* .tbas_list>view:first-child {
  22. margin-left: 0;
  23. } */
  24. .active {
  25. position: relative;
  26. font-size: 32rpx;
  27. font-weight: 600;
  28. color: #4BBECF;
  29. }
  30. .active::before {
  31. position: absolute;
  32. content: '';
  33. display: block;
  34. width: 60rpx;
  35. height: 6rpx;
  36. background: #4DC2D4;
  37. border-radius: 3rpx;
  38. bottom: 0;
  39. left: 50%;
  40. transform: translate(-50%, 0);
  41. }