collection.wxss 732 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /* pages/collection/collection.wxss */
  2. .titleBar {
  3. width: 100%;
  4. height: 80rpx;
  5. /* 这个配色不对 */
  6. border-bottom: 1rpx solid #f1f1f1;
  7. display: flex;
  8. justify-content: space-between;
  9. align-items: center;
  10. font-size: 28rpx;
  11. overflow: hidden;
  12. }
  13. .itemTitle {
  14. width: 200rpx;
  15. height: 100%;
  16. text-align: center;
  17. line-height: 80rpx;
  18. position: relative;
  19. color: #aaa;
  20. }
  21. .active:after {
  22. content: '';
  23. width: 40rpx;
  24. height: 8rpx;
  25. position: absolute;
  26. bottom: 0rpx;
  27. left: 70rpx;
  28. border-radius: 15rpx;
  29. background: #ff520f;
  30. }
  31. .active {
  32. font-size: 32rpx;
  33. font-weight: 700;
  34. transition: all 0.3s;
  35. color: #333;
  36. }
  37. .collectionContent {
  38. width: 90%;
  39. margin: 0rpx auto;
  40. margin-top: 10rpx;
  41. }