1234567891011121314151617181920212223242526272829303132 |
- /**index.wxss**/
- .userinfo {
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .userinfo-avatar {
- width: 128rpx;
- height: 128rpx;
- margin: 20rpx;
- border-radius: 50%;
- }
- .userinfo-nickname {
- color: #aaa;
- }
- .usermotto {
- margin-top: 200px;
- }
- .clear_fixed {
- height: 140rpx;
- }
- .free_bonus {
- position: fixed;
- z-index: 99;
- right: 4rpx;
- bottom: 228rpx;
- width: 86rpx;
- height: 108rpx;
- }
|