mine.wxss 782 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /* pages/mine/mine.wxss */
  2. page{
  3. background: #F1F1F1;
  4. font-family: PingFang SC;
  5. }
  6. .avatar{
  7. width:50%;
  8. margin:60rpx auto;
  9. text-align: center;
  10. }
  11. .avatar view:first-child{
  12. width:100%;
  13. height: 140rpx;
  14. }
  15. .avatar image{
  16. width:140rpx;
  17. height: 100%;
  18. border-radius: 50%;
  19. }
  20. .avatar .nickname{
  21. font-size: 28rpx;
  22. color: #333333;
  23. padding-top:30rpx;
  24. }
  25. .avatar .nickname text{
  26. padding:0rpx;
  27. margin:0rpx;
  28. }
  29. .list{
  30. padding:0 30rpx;
  31. }
  32. .list .list-item{
  33. height:88rpx;
  34. line-height: 88rpx;
  35. background:#ffffff;
  36. border-radius: 20rpx;
  37. margin-bottom:20rpx;
  38. padding:0 30rpx;
  39. font-size: 28rpx;
  40. color: #333333;
  41. position:relative;
  42. }
  43. .list .list-item image{
  44. width: 14rpx;
  45. height: 28rpx;
  46. text-align: right;
  47. position:absolute;
  48. right:30rpx;
  49. top:30rpx;
  50. }