collection.wxss 499 B

1234567891011121314151617181920212223242526
  1. /* pages/collection/collection.wxss */
  2. .titleBar{
  3. width: 100%;
  4. height: 80rpx;
  5. /* 这个配色不对 */
  6. border-bottom: 1rpx solid #aaaaaa;
  7. display: flex;
  8. justify-content: space-around;
  9. align-items: center;
  10. font-size: 28rpx;
  11. overflow: hidden;
  12. }
  13. .itemTitle{
  14. width: auto;
  15. }
  16. .currtline {
  17. margin: -8rpx auto 0 auto;
  18. width: 100rpx;
  19. height: 1rpx;
  20. border-radius: 4rpx;
  21. }
  22. .currtline.active {
  23. background: #ff520f;
  24. transition: all .3s;
  25. }