mine.wxss 2.6 KB

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