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