collection.wxss 793 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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: #aaaaaa;
  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 .3s;
  35. color: #333333;
  36. }
  37. .collectionContent{
  38. width: 100%;
  39. text-align: center;
  40. position: absolute;
  41. top: 300rpx;
  42. color: #aaaaaa
  43. }