12345678910111213141516171819202122232425262728293031323334 |
- /* pages/me/me.wxss */
- .container_c{
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- padding-top: 5rem;
- }
- .wd_img{
- width: 200rpx;
- height: 200rpx;
- border-radius: 50%;
- display: flex;
- align-items: center;
- justify-content: center;
- overflow: hidden;
- border: 12rpx solid #f6f6f6c7;
- background: rgb(255, 201, 164);
- margin-bottom: 20rpx;
- }
- .wd_img img{
- display: flex;
- width: 200rpx;
- height: 200rpx;
- }
- .wd_txt{
- font-size: 38rpx;
- color: #333;
- }
- .wd_btn{
- position: fixed;
- bottom: 20%;
- color: #333;
- }
|