index.wxss 835 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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_list11 {
  18. justify-content: flex-start !important;
  19. }
  20. .tbas_list>view {
  21. line-height: 32rpx;
  22. height: 60rpx;
  23. }
  24. /* .tbas_list>view:first-child {
  25. margin-left: 0;
  26. } */
  27. .active {
  28. position: relative;
  29. font-size: 32rpx;
  30. font-weight: 600;
  31. color: #4BBECF;
  32. }
  33. .active::before {
  34. position: absolute;
  35. content: '';
  36. display: block;
  37. width: 60rpx;
  38. height: 6rpx;
  39. background: #4DC2D4;
  40. border-radius: 3rpx;
  41. bottom: 0;
  42. left: 50%;
  43. transform: translate(-50%, 0);
  44. }