index.less 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. @import '@mobile/assets/themes/base/mixin.less';
  2. .mine {
  3. @backgroundImage: linear-gradient(var(--navbar-background), var(--navbar-background) 3rem, transparent 3rem);
  4. .app-navbar {
  5. background-image: @backgroundImage;
  6. &__wrapper {
  7. color: #fff;
  8. background-color: transparent;
  9. }
  10. }
  11. &-header {
  12. color: #000;
  13. background-color: #fff;
  14. background-image: @backgroundImage;
  15. padding: 0 .36rem;
  16. &__wrapper {
  17. background-color: #fff;
  18. border-top-left-radius: .2rem;
  19. border-top-right-radius: .2rem;
  20. padding: .24rem;
  21. }
  22. .profile {
  23. display: flex;
  24. &-user {
  25. flex: 1;
  26. display: flex;
  27. align-items: center;
  28. .g-image--avatar {
  29. width: .8rem;
  30. height: .8rem;
  31. border-radius: 50%;
  32. font-size: 0;
  33. margin-right: .16rem;
  34. }
  35. &__info {
  36. flex: 1;
  37. padding-right: .32rem;
  38. .top {
  39. display: flex;
  40. align-items: center;
  41. font-size: .24rem;
  42. color: #A1B1C5;
  43. span {
  44. .mixin-text-overflow()
  45. }
  46. .van-icon {
  47. line-height: normal;
  48. margin-left: .04rem;
  49. }
  50. }
  51. .bottom {
  52. line-height: .4rem;
  53. font-size: .3rem;
  54. font-weight: bold;
  55. }
  56. }
  57. }
  58. &-account {
  59. display: flex;
  60. flex-direction: column;
  61. justify-content: center;
  62. span {
  63. line-height: .4rem;
  64. &:first-child {
  65. font-size: .24rem;
  66. color: #46D63C;
  67. &::before {
  68. content: '资金账户';
  69. color: #A1B1C5;
  70. margin-right: .12rem;
  71. }
  72. }
  73. &:last-child {
  74. font-size: .3rem;
  75. font-weight: bold;
  76. }
  77. }
  78. }
  79. }
  80. .bank {
  81. display: flex;
  82. justify-content: space-around;
  83. padding: .36rem 0;
  84. ul {
  85. li {
  86. display: flex;
  87. flex-direction: column;
  88. padding-bottom: .1rem;
  89. span {
  90. line-height: .4rem;
  91. &:first-child {
  92. font-size: .24rem;
  93. color: #A1B1C5;
  94. }
  95. &:last-child {
  96. font-size: .3rem;
  97. font-weight: bold;
  98. }
  99. }
  100. }
  101. }
  102. }
  103. .button {
  104. display: flex;
  105. justify-content: space-around;
  106. .van-button {
  107. width: 2.8rem;
  108. box-shadow: 0 .06rem .14rem 0 #e0e2e8;
  109. }
  110. }
  111. }
  112. &-iconbar {
  113. ul {
  114. display: flex;
  115. background-color: #fff;
  116. padding: .24rem;
  117. li {
  118. flex: 1;
  119. display: flex;
  120. flex-direction: column;
  121. align-items: center;
  122. .g-icon {
  123. font-size: .56rem;
  124. margin-bottom: .04rem;
  125. }
  126. }
  127. }
  128. }
  129. &-footer {
  130. text-align: center;
  131. padding: .2rem 0;
  132. .button-logout {
  133. width: 50%;
  134. border: 0;
  135. }
  136. }
  137. }