123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- /* 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;
- }
- .vi_inp{
- display: flex;
- flex-direction: row;
- height: 100rpx;
- line-height: 100rpx;
- border-bottom: 1rpx solid rgb(247, 247, 247);
- color: #333;
- font-size: 32rpx;
- }
- .vi_inp input{
- height: 100rpx;
- line-height: 100rpx;
- padding-left: 20rpx;
- }
|