mine.scss 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. .wrapper {
  2. display: flex;
  3. flex-direction: column;
  4. align-items: center;
  5. width: 100%;
  6. padding: 40rpx 0 100rpx;
  7. }
  8. .portrait {
  9. width: 169rpx;
  10. height: 169rpx;
  11. border-radius: 50%;
  12. overflow: hidden;
  13. image {
  14. display: block;
  15. width: 100%;
  16. height: 100%;
  17. background: pink;
  18. }
  19. }
  20. .nickname-wrap {
  21. display: flex;
  22. justify-content: center;
  23. align-items: center;
  24. width: 100%;
  25. margin-top: 23rpx;
  26. input {
  27. width: 100%;
  28. font-size: 36rpx;
  29. color: rgba(51, 51, 51, 1);
  30. text-align: center;
  31. }
  32. text {
  33. font-size: 36rpx;
  34. color: rgba(51, 51, 51, 1);
  35. }
  36. image {
  37. margin-left: 10rpx;
  38. width: 26rpx;
  39. height: 28rpx;
  40. background: pink;
  41. }
  42. }
  43. .account {
  44. margin-top: 11rpx;
  45. line-height: 38rpx;
  46. font-size: 24rpx;
  47. color: rgba(153, 153, 153, 1);
  48. }
  49. .main {
  50. padding-top: 31rpx;
  51. }
  52. .business-account {
  53. display: flex;
  54. justify-content: space-between;
  55. flex-direction: column;
  56. width: 690rpx;
  57. min-height: 232rpx;
  58. padding: 37rpx 34rpx 29rpx;
  59. margin-bottom: 20rpx;
  60. border-radius: 20rpx;
  61. background: green;
  62. .describe {
  63. line-height: 48rpx;
  64. line-height: 36rpx;
  65. color: rgba(255, 255, 255, 1);
  66. }
  67. .box {
  68. display: flex;
  69. align-items: center;
  70. }
  71. &-name-wrap {
  72. width: calc(100% - 208rpx);
  73. }
  74. &-name {
  75. line-height: 44rpx;
  76. font-size: 28rpx;
  77. color: rgba(255, 255, 255, 1);
  78. word-break: break-all;
  79. word-wrap: break-word;
  80. }
  81. .dashboard {
  82. display: flex;
  83. align-items: center;
  84. margin-top: 8rpx;
  85. view {
  86. line-height: 30rpx;
  87. font-size: 20rpx;
  88. color: rgba(255, 255, 255, 1);
  89. &:nth-of-type(2) {
  90. margin-left: 20rpx;
  91. }
  92. }
  93. }
  94. button.btn[type="default"] {
  95. width: 208rpx;
  96. height: 66rpx;
  97. border-radius: 20rpx;
  98. background-color: rgba(255, 255, 255, 1);
  99. font-size: 26rpx;
  100. color: rgba(107, 133, 89, 1);
  101. }
  102. }
  103. .list {
  104. display: flex;
  105. align-items: center;
  106. width: 690rpx;
  107. height: 100rpx;
  108. padding-left: 38rpx;
  109. margin-bottom: 16rpx;
  110. background: rgba(255, 255, 255, 1);
  111. box-shadow: 0 12rpx 98rpx 0 rgba(55, 55, 55, 0.05);
  112. .label {
  113. width: 31rpx;
  114. height: 38rpx;
  115. background: pink;
  116. }
  117. .value {
  118. margin-left: 23px;
  119. line-height: 44rpx;
  120. font-size: 32rpx;
  121. color: rgba(51, 62, 99, 1);
  122. }
  123. }