12345678910111213141516171819202122232425 |
- .idCard {
- width: 600rpx;
- padding: 30rpx;
- margin: auto;
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -webkit-flex-direction: column;
- flex-direction: column;
- -webkit-box-pack: center;
- -webkit-justify-content: center;
- justify-content: center;
- -webkit-box-align: center;
- -webkit-align-items: center;
- align-items: center;
- }
- .image-ava{
- width: 100rpx;
- height: 100rpx;
- border-radius: 50%;
- }
|