navbar.wxss 912 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /* 顶部要固定定位 标题要居中 自定义按钮和标题要和右边微信原生的胶囊上下对齐 */
  2. .nav-wrap {
  3. position: fixed;
  4. width: 100%;
  5. top: 0;
  6. background: #2D59E6;
  7. color: #fff;
  8. z-index: 9999999;
  9. }
  10. /* 标题要居中 */
  11. .nav-title {
  12. position: absolute;
  13. text-align: center;
  14. overflow: hidden;
  15. text-overflow: ellipsis;
  16. max-width: 400rpx;
  17. white-space: nowrap;
  18. top: 0;
  19. left: 0;
  20. right: 0;
  21. bottom: 0;
  22. margin: auto;
  23. font-size: 36rpx;
  24. color: #fff;
  25. }
  26. .nav-capsule {
  27. display: flex;
  28. align-items: center;
  29. margin-left: 30rpx;
  30. width: 140rpx;
  31. justify-content: space-between;
  32. height: 100%;
  33. }
  34. .navbar-v-line {
  35. width: 1px;
  36. height: 32rpx;
  37. background-color: #e5e5e5;
  38. }
  39. .back-pre, .back-home {
  40. width: 32rpx;
  41. height: 36rpx;
  42. margin-top: 4rpx;
  43. padding: 10rpx;
  44. }
  45. .nav-capsule .back-home {
  46. width: 36rpx;
  47. height: 40rpx;
  48. margin-top: 3rpx;
  49. }