mine.acss 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. /* pages/mine/mine.wxss */
  2. page {
  3. background-color: white;
  4. }
  5. /* 顶部 */
  6. .top-area {
  7. position: relative;
  8. width: 100%;
  9. height: 646rpx;
  10. /* background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.05) 0.01%, rgba(162, 202, 170, 0.18) 40.63%, rgba(236, 241, 255, 0.71) 95.06%); */
  11. display: flex;
  12. align-items: center;
  13. flex-direction: column;
  14. }
  15. /* 波浪背景 */
  16. .wave {
  17. position: absolute;
  18. width: 100%;
  19. height: 100%;
  20. opacity: 0.4;
  21. /* filter: blur(4px) drop-shadow(0px 2px 4px rgba(206, 217, 242, 0.41)); */
  22. }
  23. /* 头像&名字 */
  24. .avator-area {
  25. width: 100%;
  26. flex: 0.6;
  27. display: flex;
  28. justify-content: center;
  29. align-items: center;
  30. flex-direction: column;
  31. }
  32. .avator-area > .avator {
  33. position: relative;
  34. width: 120rpx;
  35. height: 120rpx;
  36. border-radius: 70rpx;
  37. border: 8rpx solid #d4dbea;
  38. overflow: hidden;
  39. }
  40. .avator > image {
  41. width: 100%;
  42. height: 100%;
  43. padding-left: 1rpx;
  44. }
  45. .avator-area > .name {
  46. color: #383d4d;
  47. font-size: 40rpx;
  48. font-weight: 700;
  49. line-height: 60rpx;
  50. margin-top: 10rpx;
  51. letter-spacing: 2rpx;
  52. }
  53. .avator-area > .name-no {
  54. color: #566189;
  55. font-size: 34rpx;
  56. font-weight: 500;
  57. line-height: 60rpx;
  58. margin-top: 40rpx;
  59. letter-spacing: 2rpx;
  60. }
  61. .name-no > text {
  62. margin: 0 112rpx;
  63. display: block;
  64. }
  65. /* 手机&身份证 */
  66. .msg-area {
  67. width: 100%;
  68. flex: 0.4;
  69. display: flex;
  70. justify-content: flex-start;
  71. flex-direction: column;
  72. }
  73. .msg-area > view {
  74. display: flex;
  75. justify-content: space-between;
  76. padding: 0 70rpx;
  77. font-size: 28rpx;
  78. line-height: 50rpx;
  79. }
  80. .msg-area button {
  81. min-width: 200rpx;
  82. height: 68rpx;
  83. border-radius: 40rpx;
  84. background: rgba(255, 255, 255, 0.3);
  85. border: 1px solid #8695b6;
  86. line-height: 68rpx;
  87. color: #8695b6;
  88. font-size: 30rpx;
  89. margin-top: 20rpx;
  90. }
  91. /* 下部 */
  92. .bottom-area {
  93. background-color: white;
  94. min-height: 500rpx;
  95. border-radius: 40rpx 40rpx 0 0;
  96. transform: translateY(-50rpx);
  97. }
  98. .bottom-area > .title {
  99. font-size: 34rpx;
  100. font-weight: 500;
  101. line-height: 48rpx;
  102. padding: 64rpx 0 0 28rpx;
  103. }
  104. /* 功能区 */
  105. .component-area {
  106. position: relative;
  107. width: 100%;
  108. }
  109. .component-area > .component {
  110. width: 33%;
  111. height: 174rpx;
  112. display: flex;
  113. justify-content: center;
  114. align-items: center;
  115. flex-direction: column;
  116. margin-top: 48rpx;
  117. float: left;
  118. }
  119. .component > image {
  120. width: 110rpx;
  121. height: 116rpx;
  122. }
  123. .component > text {
  124. color: #8695b6;
  125. font-size: 28rpx;
  126. }
  127. .type {
  128. padding: 5rpx 10rpx;
  129. background: #4689ee;
  130. border-radius: 4px;
  131. color: #bcdefe;
  132. font-size: 12px;
  133. margin-left: 10rpx;
  134. }