my.scss 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. @import "@/libs/css/layout.scss";
  2. .container-view {
  3. padding: 36rpx 32rpx 264rpx;
  4. box-sizing: border-box;
  5. .user-switch-row {
  6. display: flex;
  7. align-items: center;
  8. justify-content: flex-end;
  9. .name-wrap {
  10. font-family: DIN, DIN;
  11. font-weight: 500;
  12. font-size: 32rpx;
  13. color: #060809;
  14. display: flex;
  15. align-items: center;
  16. &:active {
  17. opacity: .8;
  18. }
  19. &::before {
  20. content: "";
  21. width: 48rpx;
  22. height: 48rpx;
  23. margin-right: 16rpx;
  24. background: url('https://qiniu.bms16.com/FghCVNMWDBKJpqbIrqoxT-de9Has');
  25. background-size: 100%;
  26. }
  27. &::after {
  28. content: "";
  29. width: 28rpx;
  30. height: 28rpx;
  31. margin-left: 10rpx;
  32. background: url('https://qiniu.bms16.com/FvLGTjPNELdBiqcSf6S2G4GLSElS');
  33. background-size: 100%;
  34. }
  35. }
  36. .message {
  37. width: 48rpx;
  38. height: 48rpx;
  39. &:active {
  40. opacity: .8;
  41. }
  42. }
  43. }
  44. .user-info-wrap {
  45. margin: 54rpx auto 48rpx;
  46. display: flex;
  47. flex-direction: column;
  48. align-items: center;
  49. .head-img {
  50. width: 144rpx;
  51. height: 144rpx;
  52. border-radius: 50%;
  53. }
  54. .user-name {
  55. font-family: DIN, DIN;
  56. font-weight: bold;
  57. font-size: 40rpx;
  58. color: #060809;
  59. margin: 12rpx 0 8rpx;
  60. }
  61. .e-mail {
  62. font-family: Futura, Futura;
  63. font-weight: 500;
  64. font-size: 24rpx;
  65. color: #060809;
  66. }
  67. }
  68. .common-tabs {
  69. display: flex;
  70. justify-content: space-between;
  71. .item {
  72. // width: 216rpx;
  73. flex: 1;
  74. margin-right: 22rpx;
  75. height: 216rpx;
  76. background: #FFFFFF;
  77. border-radius: 40rpx;
  78. display: flex;
  79. flex-direction: column;
  80. align-items: center;
  81. justify-content: center;
  82. &:last-child {
  83. margin-right: 0;
  84. }
  85. .icon {
  86. width: 80rpx;
  87. height: 80rpx;
  88. margin-bottom: 30rpx;
  89. }
  90. .name {
  91. font-family: PingFangSC, PingFang SC;
  92. font-weight: bold;
  93. font-size: 32rpx;
  94. color: #060809;
  95. line-height: 32rpx;
  96. }
  97. }
  98. }
  99. .tabs-wrap {
  100. width: 100%;
  101. background: #FFFFFF;
  102. border-radius: 40rpx;
  103. margin-top: 24rpx;
  104. padding: 8rpx 32rpx;
  105. .tab-item {
  106. display: flex;
  107. align-items: center;
  108. padding: 32rpx 0;
  109. border-bottom: 2PX solid #F1F4F5;
  110. &:last-child {
  111. border-bottom: none;
  112. }
  113. .icon {
  114. width: 64rpx;
  115. height: 64rpx;
  116. margin-right: 16rpx;
  117. }
  118. .name {
  119. font-family: PingFangSC, PingFang SC;
  120. font-weight: bold;
  121. font-size: 32rpx;
  122. color: #060809;
  123. }
  124. }
  125. }
  126. }