No Description

index.css 651B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /**
  2. * @file index.css
  3. * @author swan
  4. */
  5. .logo {
  6. width: 375rpx;
  7. height: 60rpx;
  8. background-image: url("../../images/smartapp.png");
  9. background-size: 375rpx;
  10. }
  11. .userinfo {
  12. display: flex;
  13. flex-direction: column;
  14. align-items: center;
  15. margin-top: 380rpx;
  16. width: 100%;
  17. }
  18. .userinfo-login-btn {
  19. font-size: 11px;
  20. }
  21. .userinfo-message {
  22. display: flex;
  23. justify-content: space-between;
  24. align-items: center;
  25. width: 40%;
  26. }
  27. .userinfo-avatar {
  28. margin: 20rpx;
  29. border-radius: 50%;
  30. width: 88rpx;
  31. height: 88rpx;
  32. }
  33. .userinfo-nickname {
  34. display: block;
  35. color: #aaa;
  36. width: 150rpx;
  37. }