index.wxss 783 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. .navlist {
  2. position: relative;
  3. display: flex;
  4. flex-direction: row;
  5. flex-wrap: nowrap;
  6. align-items: center;
  7. margin-left: 20rpx;
  8. margin-right: 20rpx;
  9. margin-bottom: 20rpx;
  10. }
  11. .navlist .item {
  12. width: 120rpx;
  13. flex-shrink: 0;
  14. text-align: center;
  15. }
  16. .navlist .item .name {
  17. font-size: 32rpx;
  18. color: #303133;
  19. line-height: 1;
  20. }
  21. .navlist .item .tag {
  22. font-size: 24rpx;
  23. color: #909399;
  24. margin-top: 10rpx;
  25. line-height: 36rpx;
  26. }
  27. .navlist .item.active .name {
  28. font-weight: bold;
  29. }
  30. .navlist .item.active .tag {
  31. background: rgb(255, 69, 68);
  32. color: #FFFFFF;
  33. border-radius: 20rpx;
  34. }
  35. .split-line {
  36. width: 1rpx;
  37. height: 30rpx;
  38. background-color: #E5E5E5;
  39. margin-right: calc((100% - 121rpx * 4) / 6);
  40. margin-left: calc((100% - 121rpx * 4) / 6);
  41. }