me.wxss 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. /* dispatcher/pages/me/me.wxss */
  2. @import '../../../templates/footer/footer.wxss';
  3. .header {
  4. padding: 40rpx 30rpx;
  5. background: #fff;
  6. display: flex;
  7. justify-content: space-between;
  8. align-items: center;
  9. }
  10. .header-row {
  11. display: flex;
  12. justify-content: flex-start;
  13. align-items: center;
  14. margin-top: 18rpx;
  15. }
  16. .header-row:nth-of-type(1) {
  17. margin-top: 0;
  18. }
  19. .header-col {
  20. display: flex;
  21. flex-direction: column;
  22. justify-content: flex-start;
  23. align-items: flex-start;
  24. }
  25. .header-flex {
  26. flex: 1;
  27. display: flex;
  28. justify-content: flex-start;
  29. align-items: center;
  30. }
  31. .header-images {
  32. position: relative;
  33. margin-right: 30rpx;
  34. }
  35. .header-image {
  36. width: 148rpx;
  37. height: 148rpx;
  38. border-radius: 200rpx;
  39. }
  40. .header-icon {
  41. position: absolute;
  42. right: 0;
  43. bottom: 0;
  44. width: 40rpx;
  45. height: 40rpx;
  46. }
  47. .header-text-black {
  48. font-size: 38rpx;
  49. color: #333;
  50. }
  51. .header-button {
  52. border-radius: 100rpx;
  53. border: 1rpx solid rgba(0,183,255,1);
  54. font-size: 30rpx;
  55. color: #00B7FF;
  56. padding: 8rpx 20rpx;
  57. margin-left: 20rpx;
  58. }
  59. .header-icon-two {
  60. width: 30rpx;
  61. height: 34rpx;
  62. margin-right: 14rpx;
  63. }
  64. .header-text {
  65. font-size: 28rpx;
  66. color: #999;
  67. }
  68. .header-arrow {
  69. width: 14rpx;
  70. height: 24rpx;
  71. }
  72. .section-list {
  73. margin: 20rpx;
  74. background:rgba(255,255,255,1);
  75. border-radius: 18rpx;
  76. }
  77. .section-li {
  78. display: flex;
  79. justify-content: space-between;
  80. align-items: center;
  81. padding: 30rpx;
  82. border-bottom: solid 1rpx #e6e6e6;
  83. cursor: pointer;
  84. }
  85. .section-li:nth-last-of-type(1) {
  86. border-bottom: solid 1rpx transparent;
  87. }
  88. .section-arrow {
  89. width: 14rpx;
  90. height: 24rpx;
  91. }
  92. .section-icon {
  93. width: 36rpx;
  94. height: 36rpx;
  95. margin-right: 20rpx;
  96. }
  97. .section-text {
  98. font-size: 30rpx;
  99. color: #666;
  100. }
  101. .modal-container {
  102. position: fixed;
  103. top: 0;
  104. left: 0;
  105. width: 100%;
  106. height: 100%;
  107. background: rgba(0, 0, 0, 0.5);
  108. z-index: 999;
  109. }
  110. .modal-wrapper {
  111. position: absolute;
  112. top: 240rpx;
  113. left: 50%;
  114. width: 710rpx;
  115. transform: translateX(-50%);
  116. background: rgba(255,255,255,1);
  117. border-radius: 18rpx;
  118. }
  119. .modal-wrapper::after {
  120. content: "";
  121. position: absolute;
  122. left: 60rpx;
  123. top: -20rpx;
  124. border-left: solid 20rpx transparent;
  125. border-right: solid 20rpx transparent;
  126. border-bottom: solid 25rpx #fff;
  127. }
  128. .modal-li {
  129. border-bottom: solid 1rpx #E6E6E6;
  130. display: flex;
  131. justify-content: space-between;
  132. align-items: center;
  133. padding: 40rpx;
  134. }
  135. .modal-li:nth-last-of-type(1) {
  136. border-bottom: none;
  137. }
  138. .modal-row {
  139. display: flex;
  140. justify-content: flex-start;
  141. align-items: center;
  142. }
  143. .modal-image {
  144. width: 98rpx;
  145. height: 98rpx;
  146. border-radius: 200rpx;
  147. margin-right: 30rpx;
  148. }
  149. .modal-text {
  150. font-size: 32rpx;
  151. color: #999;
  152. }
  153. .modal-icon {
  154. width: 30rpx;
  155. height: 24rpx;
  156. margin-left: 30rpx;
  157. }