my.scss 3.4 KB

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