mine.wxss 852 B

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