Profile.scss 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  1. .card {
  2. display: flex;
  3. flex-direction: column;
  4. padding-left: 40px;
  5. padding-right: 40px;
  6. padding-top: 34px;
  7. padding-bottom: 34px;
  8. border-radius: 36px;
  9. border-color: #323232;
  10. border-width: 1px;
  11. border-style: solid;
  12. margin-left: 46px;
  13. margin-right: 46px;
  14. margin-bottom: 40px;
  15. position: relative;
  16. }
  17. .profile_card {
  18. display: flex;
  19. flex-direction: column;
  20. align-items: center;
  21. }
  22. .balance {
  23. display: flex;
  24. flex-direction: column;
  25. }
  26. .avatar {
  27. width: 160px;
  28. height: 160px;
  29. border-radius: 80px;
  30. background-color: #fff;
  31. display: flex;
  32. align-items: center;
  33. justify-content: center;
  34. // object-fit:contain;
  35. }
  36. .avatar_placeholder {
  37. width: 100px;
  38. height: 100px;
  39. }
  40. .nickname {
  41. font-size: 40px;
  42. color: #fff;
  43. margin-top: 24px;
  44. line-height: 40px;
  45. height: 40px;
  46. }
  47. .username {
  48. color: #9E9E9E;
  49. font-size: 28px;
  50. line-height: 32px;
  51. height: 32px;
  52. margin-top: 10px;
  53. }
  54. .title {
  55. font-size: 28px;
  56. line-height: 28px;
  57. color: #fff;
  58. }
  59. .desc {
  60. margin-top: 20px;
  61. color: #FFFFFF;
  62. opacity: 0.4;
  63. font-size: 24px;
  64. line-height: 32px;
  65. // flex: 1;
  66. }
  67. .px2Width {
  68. width: 1px;
  69. height: 50px;
  70. background-color: #fff;
  71. margin-left: 100px;
  72. }
  73. .px2Height {
  74. display: flex;
  75. width: 100px;
  76. height: 1px;
  77. background-color: #fff;
  78. }
  79. .px1Width {
  80. width: 2px;
  81. height: 50px;
  82. background-color: #fff;
  83. margin-left: 100px;
  84. -webkit-transform: scaleX(0.5);
  85. transform: scaleX(0.5);
  86. }
  87. .px1Height {
  88. display: flex;
  89. width: 100px;
  90. height: 2px;
  91. background-color: #fff;
  92. -webkit-transform: scaleY(0.5);
  93. transform: scaleY(0.5);
  94. }
  95. .px1Width::after {
  96. -webkit-transform: scaleX(0.5);
  97. transform: scaleX(0.5);
  98. }
  99. .px1Height::after {
  100. -webkit-transform: scaleY(0.5);
  101. transform: scaleY(0.5);
  102. }
  103. .profile_cell_space{
  104. margin-top: 36px;
  105. }
  106. .member_cell{
  107. width: 750px;
  108. height: 172px;
  109. box-sizing: border-box;
  110. }
  111. .profile_cell{
  112. height: 128px;
  113. display: flex;
  114. flex-direction: row;
  115. align-items: center;
  116. padding-left: 52px;
  117. padding-right: 42px;
  118. position: relative;
  119. color: #000;
  120. background-color: #fff;
  121. }
  122. .profile_cell_arrow{
  123. height: 34px;
  124. width: 34px;
  125. }
  126. .profile_cell_icon{
  127. width: 36px;
  128. height: 36px;
  129. }
  130. .profile_cell_line{
  131. position: absolute;
  132. right: 0;
  133. bottom: 0;
  134. height: 2px;
  135. -webkit-transform: scaleY(0.5);
  136. transform: scaleY(0.5);
  137. background-color: #B2B2B2;
  138. opacity: 0.4;
  139. left: 112px;
  140. }
  141. .a1{
  142. font-size: 40px;
  143. font-weight:100;
  144. }
  145. .a2{
  146. font-size: 40px;
  147. font-weight: 200;
  148. }
  149. .a3{
  150. font-size: 40px;
  151. font-weight: 300;
  152. }
  153. .a4{
  154. font-size: 40px;
  155. font-weight: 400;
  156. }
  157. .a5{
  158. font-size: 40px;
  159. font-weight: 500;
  160. }
  161. .a6{
  162. font-size: 40px;
  163. font-weight: 600;
  164. }
  165. .a7{
  166. font-size: 40px;
  167. font-weight: 700;
  168. }
  169. .a8{
  170. font-size: 40px;
  171. font-weight: 800;
  172. }
  173. .a9{
  174. font-size: 40px;
  175. font-weight: 900;
  176. }