navbar.wxss 562 B

12345678910111213141516171819202122232425262728293031323334
  1. /* components/navbar/navbar.wxss */
  2. .nav-wrap {
  3. border-bottom: 1rpx solid rgba(0, 0, 0, 0.1);
  4. }
  5. .nav-wrap .nav-info {
  6. display: flex;
  7. align-items: center;
  8. position: relative;
  9. background-color: red;
  10. }
  11. .nav-wrap .nav-info .device-pic {
  12. margin-right: 12rpx;
  13. position: absolute;
  14. top: 0;
  15. left: 34rpx;
  16. display: flex;
  17. align-items: center;
  18. z-index: 999;
  19. width: 40rpx;
  20. }
  21. .nav-wrap .nav-info .device-pic .capsule {
  22. height: 36rpx;
  23. }
  24. .nav-title {
  25. width: 100%;
  26. text-align: center;
  27. font-size: 35rpx;
  28. color: #000;
  29. font-weight: bold;
  30. }