index.scss 4.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. .Page.Mine {
  2. background: #fff;
  3. > scroll-view {
  4. width: 100%;
  5. height: 100%;
  6. .PageContent {
  7. position: relative;
  8. overflow: hidden;
  9. min-height: 100vh;
  10. > .Content {
  11. position: relative;
  12. overflow: hidden;
  13. > .UserInfo {
  14. position: relative;
  15. overflow: hidden;
  16. padding: 0 30px;
  17. margin-top: 30px;
  18. > .UserIcon {
  19. width: 120px;
  20. height: 120px;
  21. position: relative;
  22. overflow: hidden;
  23. background: #eee;
  24. border-radius: 100%;
  25. margin: 0 auto;
  26. z-index: 2;
  27. > image {
  28. width: 100%;
  29. height: 100%;
  30. }
  31. }
  32. > .OtherInfo {
  33. position: relative;
  34. overflow: hidden;
  35. background: #193c83;
  36. border-radius: 24px;
  37. margin-top: -60px;
  38. z-index: 1;
  39. > .Name {
  40. padding: 90px 20px 0;
  41. > view {
  42. position: relative;
  43. z-index: 2;
  44. > text {
  45. display: block;
  46. text-align: center;
  47. font-size: 34px;
  48. color: #fff;
  49. line-height: 40px;
  50. }
  51. > view {
  52. margin-top: 20px;
  53. border-top: 2px dashed rgba(255, 255, 255, 0.3);
  54. text-align: center;
  55. font-size: 0;
  56. white-space: nowrap;
  57. padding: 20px 0;
  58. > text {
  59. display: inline-block;
  60. vertical-align: middle;
  61. font-size: 28px;
  62. color: #fff;
  63. line-height: 40px;
  64. &.iconfont {
  65. width: 36px;
  66. line-height: 36px;
  67. background: #fff;
  68. border-radius: 100%;
  69. color: #193c83;
  70. margin-right: 10px;
  71. }
  72. }
  73. }
  74. }
  75. > .Role {
  76. width: 200px;
  77. position: absolute;
  78. right: -55px;
  79. top: 20px;
  80. font-size: 22px;
  81. color: #193c83;
  82. line-height: 50px;
  83. background: #fff602;
  84. text-align: center;
  85. transform: rotateZ(45deg);
  86. -webkit-transform: rotateZ(45deg);
  87. z-index: 3;
  88. }
  89. > .New {
  90. font-size: 90px;
  91. font-weight: bold;
  92. color: rgba(255, 255, 255, 0.1);
  93. display: inline-block;
  94. position: absolute;
  95. z-index: 1;
  96. right: 30px;
  97. top: 30px;
  98. }
  99. > .iconfont {
  100. font-size: 200px;
  101. color: rgba(255, 255, 255, 0.1);
  102. display: inline-block;
  103. position: absolute;
  104. z-index: 1;
  105. left: 30px;
  106. top: 10px;
  107. }
  108. }
  109. }
  110. }
  111. > .MenuList {
  112. position: relative;
  113. overflow: hidden;
  114. margin-top: 20px;
  115. > view {
  116. position: relative;
  117. overflow: hidden;
  118. border-top: 20px solid #f8f8f8;
  119. &:first-child {
  120. border: none;
  121. }
  122. > .flex-h {
  123. align-items: center;
  124. padding: 0 30px;
  125. &:first-child {
  126. >view {
  127. border: none;
  128. }
  129. }
  130. > .Icon {
  131. width: 44px;
  132. height: 44px;
  133. margin-right: 20px;
  134. position: relative;
  135. overflow: hidden;
  136. >image {
  137. width: 100%;
  138. height: 100%;
  139. }
  140. }
  141. > .flex-h {
  142. align-items: center;
  143. border-top: 2px solid #eee;
  144. > text {
  145. font-size: 32px;
  146. line-height: 100px;
  147. &.iconfont {
  148. color: #ccc;
  149. font-size: 40px;
  150. }
  151. }
  152. }
  153. }
  154. }
  155. }
  156. }
  157. }
  158. }
  159. }