12345678910111213141516171819202122232425262728293031323334 |
- /* pages/index/index.wxss */
- /**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;
- }
|