my.scss 3.4 KB

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