index.wxss 505 B

12345678910111213141516171819202122232425
  1. .idCard {
  2. width: 600rpx;
  3. padding: 30rpx;
  4. margin: auto;
  5. display: -webkit-box;
  6. display: -webkit-flex;
  7. display: flex;
  8. -webkit-box-orient: vertical;
  9. -webkit-box-direction: normal;
  10. -webkit-flex-direction: column;
  11. flex-direction: column;
  12. -webkit-box-pack: center;
  13. -webkit-justify-content: center;
  14. justify-content: center;
  15. -webkit-box-align: center;
  16. -webkit-align-items: center;
  17. align-items: center;
  18. }
  19. .image-ava{
  20. width: 100rpx;
  21. height: 100rpx;
  22. border-radius: 50%;
  23. }