navbar.wxss 719 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /* compone/navbar/navbar.wxss */
  2. .nav-wrap {
  3. position: fixed;
  4. width: 100%;
  5. top: 0;
  6. /* background: #F7F7F7;
  7. color: #000; */
  8. z-index: 999;
  9. }
  10. /* 标题要居中 */
  11. .nav-title {
  12. position: absolute;
  13. text-align: center;
  14. max-width: 400rpx;
  15. overflow: hidden;
  16. text-overflow: ellipsis;
  17. white-space: nowrap;
  18. top: 0;
  19. left: 0;
  20. right: 0;
  21. bottom: 0;
  22. margin: auto;
  23. font-size: 32rpx;
  24. /* color: #2c2b2b; */
  25. font-weight: 600;
  26. }
  27. .nav-capsule {
  28. display: flex;
  29. margin-top: 8rpx;
  30. align-items: center;
  31. margin-left: 30rpx;
  32. width: 140rpx;
  33. justify-content: space-between;
  34. height: 100%;
  35. }
  36. .back-pre, .back-home {
  37. width: 40rpx;
  38. height: 40rpx;
  39. margin-top: 1rpx;
  40. padding: 10rpx;
  41. }