index.wxss 552 B

12345678910111213141516171819202122232425262728293031
  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. display: flex;
  22. position: absolute;
  23. font-size: 26rpx;
  24. top: 50%;
  25. left: 30rpx;
  26. transform: translate(0,-50%);
  27. }
  28. .header_user_choice>view{
  29. max-width: 230rpx;
  30. }