center.scss 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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. margin-top: 14rpx;
  21. display: inline-block;
  22. padding: 0 24rpx;
  23. font-size: 30rpx;
  24. font-weight: 400;
  25. color: #FFFFFF;
  26. line-height: 42rpx;
  27. letter-spacing: 1px;
  28. border: 1px solid #fff;
  29. border-radius: 20rpx;
  30. }
  31. }
  32. .statistics{
  33. margin: -80rpx 30rpx 20rpx;
  34. border-radius: 5rpx;
  35. padding: 34rpx 24rpx 32rpx;
  36. background-color: #fff;
  37. .number{
  38. font-size: 70rpx;
  39. font-family: Rubik-Regular, Rubik;
  40. font-weight: 400;
  41. color: #FF8B00;
  42. line-height: 82rpx;
  43. letter-spacing: 2rpx;
  44. }
  45. .text{
  46. font-size: 26rpx;
  47. font-family: PingFangSC-Regular, PingFang SC;
  48. font-weight: 400;
  49. color: #7C7C7C;
  50. line-height: 31rpx;
  51. }
  52. .all{
  53. position: relative;
  54. .number{
  55. color: #5175FF;
  56. }
  57. &::after{
  58. content: '';
  59. width: 1rpx;
  60. height: 80%;
  61. background-color: #B9B9B9;
  62. position: absolute;
  63. left: 0;
  64. top: 20rpx;
  65. }
  66. }
  67. }
  68. .feature-list{
  69. background-color: #fff;
  70. margin: 20rpx 30rpx;
  71. border-radius: 5rpx;
  72. padding: 20rpx 35rpx;
  73. .feature-item{
  74. display: flex;
  75. justify-content: space-between;
  76. align-items: center;
  77. padding: 29rpx 0;
  78. border-bottom: 1px solid #EAEAEA;
  79. &:last-of-type{border-bottom: 0;}
  80. .feature-left{
  81. display: flex;
  82. align-items: center;
  83. font-size: 34rpx;
  84. font-family: PingFangSC-Regular, PingFang SC;
  85. font-weight: 400;
  86. color: #555555;
  87. }
  88. image{
  89. width: 60rpx;
  90. // height: 32rpx;
  91. margin-right: 30rpx;
  92. }
  93. .feature-right{
  94. .badge{
  95. height: 30rpx;
  96. line-height: 30rpx;
  97. padding: 0 20rpx;
  98. background-color: #FF5656;
  99. color: #fff;
  100. border-radius: 20rpx;
  101. margin-right: 15rpx;
  102. }
  103. }
  104. }
  105. }