index.wxss 433 B

123456789101112131415161718192021222324
  1. .header_nav {
  2. position: fixed;
  3. width: 100vw;
  4. background-color: #51C3D5;
  5. top: 0;
  6. left: 0;
  7. z-index: 99999;
  8. }
  9. /* 标题 */
  10. .header_nav_title {
  11. position: absolute;
  12. display: flex;
  13. width: 100%;
  14. font-size: 28rpx;
  15. align-items: center;
  16. justify-content: center;
  17. color: #ffffff;
  18. }
  19. /* 左侧账号选择 */
  20. .header_user_choice{
  21. position: absolute;
  22. font-size: 26rpx;
  23. left: 30rpx;
  24. }