center.scss 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. .user-box{
  2. // height: 400rpx;
  3. overflow: hidden;
  4. background:url(../../static/img/center-bg.png) no-repeat;
  5. background-size: 100% auto;
  6. background-position: left bottom;
  7. padding-bottom: 106rpx;
  8. text-align: center;
  9. .avatar-wrap{
  10. padding-top: 100rpx;
  11. }
  12. .user-name{
  13. font-size: 56rpx;
  14. font-weight: 400;
  15. color: #FFFFFF;
  16. line-height: 78rpx;
  17. letter-spacing: 2rpx;
  18. }
  19. .user-post{
  20. font-size: 30rpx;
  21. font-weight: 400;
  22. color: #FFFFFF;
  23. line-height: 42rpx;
  24. letter-spacing: 1px;
  25. }
  26. }
  27. .statistics{
  28. margin: -80rpx 30rpx 20rpx;
  29. border-radius: 5rpx;
  30. padding: 34rpx 24rpx 32rpx;
  31. background-color: #fff;
  32. .number{
  33. font-size: 70rpx;
  34. font-family: Rubik-Regular, Rubik;
  35. font-weight: 400;
  36. color: #FF8B00;
  37. line-height: 82rpx;
  38. letter-spacing: 2rpx;
  39. }
  40. .text{
  41. font-size: 26rpx;
  42. font-family: PingFangSC-Regular, PingFang SC;
  43. font-weight: 400;
  44. color: #7C7C7C;
  45. line-height: 31rpx;
  46. }
  47. .all{
  48. position: relative;
  49. .number{
  50. color: #5175FF;
  51. }
  52. &::after{
  53. content: '';
  54. width: 1rpx;
  55. height: 80%;
  56. background-color: #B9B9B9;
  57. position: absolute;
  58. left: 0;
  59. top: 20rpx;
  60. }
  61. }
  62. }
  63. .feature-list{
  64. background-color: #fff;
  65. margin: 20rpx 30rpx;
  66. border-radius: 5rpx;
  67. padding: 20rpx 35rpx;
  68. .feature-item{
  69. display: flex;
  70. justify-content: space-between;
  71. align-items: center;
  72. padding: 29rpx 0;
  73. border-bottom: 1px solid #EAEAEA;
  74. &:last-of-type{border-bottom: 0;}
  75. .feature-left{
  76. display: flex;
  77. align-items: center;
  78. font-size: 26rpx;
  79. font-family: PingFangSC-Regular, PingFang SC;
  80. font-weight: 400;
  81. color: #555555;
  82. }
  83. image{
  84. width: 29rpx;
  85. // height: 32rpx;
  86. margin-right: 30rpx;
  87. }
  88. .feature-right{
  89. .badge{
  90. height: 30rpx;
  91. line-height: 30rpx;
  92. padding: 0 20rpx;
  93. background-color: #FF5656;
  94. color: #fff;
  95. border-radius: 20rpx;
  96. margin-right: 15rpx;
  97. }
  98. }
  99. }
  100. }