mine.wxss 729 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. /* pages/mine/mine.wxss */
  2. .bg{
  3. position: relative;
  4. }
  5. .bg image{
  6. width: 100%;
  7. }
  8. .bg>view{
  9. width: 100%;
  10. position: absolute;
  11. top: 0;
  12. left: 0;
  13. text-align: center;
  14. }
  15. .photo{
  16. width: 120rpx;
  17. height: 120rpx;
  18. border-radius: 100%;
  19. display: block;
  20. margin: 50rpx auto 10rpx;
  21. overflow: hidden;
  22. }
  23. .nickname{
  24. color: #fff;
  25. font-size: 32rpx;
  26. }
  27. .info{
  28. margin: 25px 0;
  29. padding: 0 130rpx;
  30. position: relative;
  31. }
  32. .info view{
  33. color: #333;
  34. font-size: 32rpx;
  35. }
  36. .info text{
  37. color: #999;
  38. font-size: 24rpx;
  39. }
  40. .icon{
  41. width: 80rpx;
  42. position: absolute;
  43. left: 30rpx;
  44. top: 0;
  45. bottom: 0;
  46. margin: auto;
  47. }
  48. .goto{
  49. width: 48rpx;
  50. position: absolute;
  51. right: 30rpx;
  52. top: 0;
  53. bottom: 0;
  54. margin: auto;
  55. }