index.wxss 504 B

1234567891011121314151617181920212223242526272829
  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. left: 30rpx;
  25. }
  26. .header_user_choice>view{
  27. max-width: 230rpx;
  28. }