index.wxss 452 B

1234567891011121314151617181920212223242526272829
  1. .gender-tabs {
  2. display: flex;
  3. margin-bottom: 20rpx;
  4. }
  5. .tab {
  6. font-size: 30rpx;
  7. margin-right: 60rpx;
  8. padding: 10rpx 0;
  9. position: relative;
  10. color: #999;
  11. }
  12. .tab.active {
  13. color: #333;
  14. font-weight: bold;
  15. }
  16. .tab.active:after {
  17. content: "";
  18. position: absolute;
  19. bottom: 0;
  20. left: 50%;
  21. transform: translateX(-50%);
  22. width: 40rpx;
  23. height: 6rpx;
  24. background: linear-gradient(to right, #007aff, #af97ed);
  25. border-radius: 3rpx;
  26. }