| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- /* pages/mine/mine.wxss */
- page{
- background: #F1F1F1;
- font-family: PingFang SC;
- }
- .avatar{
- width:50%;
- margin:60rpx auto;
- text-align: center;
- }
- .avatar view:first-child{
- width:100%;
- height: 140rpx;
- }
- .avatar image{
- width:140rpx;
- height: 100%;
- border-radius: 50%;
- }
- .avatar .nickname{
- font-size: 28rpx;
- color: #333333;
- padding-top:30rpx;
- }
- .avatar .nickname text{
- padding:0rpx;
- margin:0rpx;
- }
- .list{
- padding:0 30rpx;
- }
- .list .list-item{
- height:88rpx;
- line-height: 88rpx;
- background:#ffffff;
- border-radius: 20rpx;
- margin-bottom:20rpx;
- padding:0 30rpx;
- font-size: 28rpx;
- color: #333333;
- position:relative;
- }
- .list .list-item image{
- width: 14rpx;
- height: 28rpx;
- text-align: right;
- position:absolute;
- right:30rpx;
- top:30rpx;
- }
|