my-fans.css 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  1. .wrap {
  2. width: 100%;
  3. display: flex;
  4. flex-direction: column;
  5. padding: 0 24rpx 20rpx;
  6. box-sizing: border-box;
  7. padding-top: calc(88rpx + var(--status-bar-height));
  8. }
  9. .header {
  10. width: 100%;
  11. height: calc(88rpx + var(--status-bar-height));
  12. position: fixed;
  13. top: 0;
  14. left: 0;
  15. z-index: 9999999;
  16. display: flex;
  17. flex-direction: column;
  18. box-sizing: border-box;
  19. padding: var(--status-bar-height) 0 0;
  20. background-color: #fff;
  21. }
  22. .header-top {
  23. width: 100%;
  24. height: 88rpx;
  25. display: flex;
  26. justify-content: space-between;
  27. align-items: center;
  28. background-color: #fff;
  29. position: relative;
  30. }
  31. .return {
  32. width: 19rpx;
  33. position: absolute;
  34. left: 24rpx;
  35. }
  36. .header-title {
  37. width: 100%;
  38. font-weight: 700;
  39. font-size: 16px;
  40. text-align: center;
  41. color: rgb(0, 0, 0);
  42. }
  43. .header-msg {
  44. color: #F2501A;
  45. font-size: 24rpx;
  46. position: absolute;
  47. right: 24rpx;
  48. }
  49. .list {
  50. width: 100%;
  51. display: flex;
  52. flex-direction: column;
  53. border-radius: 16rpx;
  54. background-color: #fff;
  55. padding: 28rpx 28rpx 36rpx;
  56. box-sizing: border-box;
  57. margin-top: 20rpx;
  58. }
  59. .item {
  60. width: 100%;
  61. display: flex;
  62. align-items: center;
  63. margin-bottom: 32rpx;
  64. }
  65. .item:last-child {
  66. margin-bottom: 0;
  67. }
  68. .sidebar {
  69. flex: 1;
  70. display: flex;
  71. flex-direction: column;
  72. }
  73. .name {
  74. width: 100%;
  75. color: #070707;
  76. font-size: 32rpx;
  77. font-weight: bold;
  78. margin-bottom: 4rpx;
  79. }
  80. .msg {
  81. width: 100%;
  82. color: #676767;
  83. font-size: 26rpx;
  84. }
  85. .avatar {
  86. width: 90rpx;
  87. height: 90rpx;
  88. border-radius: 50%;
  89. margin-right: 16rpx;
  90. }
  91. .mask {
  92. position: fixed;
  93. left: 0;
  94. right: 0;
  95. top: 0;
  96. height: 100vh;
  97. background-color: rgba(0, 0, 0, 0.38);
  98. z-index: 9998;
  99. }
  100. .window {
  101. position: fixed;
  102. width: calc(100% - 48rpx);
  103. top: 50%;
  104. left: 50%;
  105. transform: translate(-50%, -50%);
  106. border-radius: 20rpx;
  107. overflow: hidden;
  108. background-color: #fff;
  109. z-index: 9999;
  110. display: flex;
  111. flex-direction: column;
  112. }
  113. .window-top {
  114. width: 100%;
  115. height: 344rpx;
  116. display: flex;
  117. flex-direction: column;
  118. align-items: center;
  119. justify-content: space-between;
  120. padding: 50rpx 0 85rpx;
  121. box-sizing: border-box;
  122. }
  123. .window-label {
  124. width: 100%;
  125. display: flex;
  126. align-items: center;
  127. justify-content: center;
  128. }
  129. .window-input {
  130. width: calc(100% - 204rpx);
  131. height: 76rpx;
  132. line-height: 76rpx;
  133. margin: 0 86rpx 0 118rpx;
  134. border-bottom: 1px solid #E6E6E6;
  135. box-sizing: border-box;
  136. font-size: 32rpx;
  137. color: #F2501A;
  138. }
  139. .placeholder {
  140. color: #F2501A;
  141. }
  142. .window-bottom {
  143. width: 100%;
  144. display: flex;
  145. align-items: center;
  146. border-top: 1px solid #EEEEEE;
  147. box-sizing: border-box;
  148. }
  149. .window-bottom button {
  150. width: 50%;
  151. height: 106rpx;
  152. line-height: 106rpx;
  153. display: flex;
  154. justify-content: center;
  155. align-items: center;
  156. color: #ADADB0;
  157. font-size: 36rpx;
  158. border-radius: initial;
  159. border-right: 1px solid #EEEEEE;
  160. background-color: #fff;
  161. }
  162. .window-bottom button:last-child {
  163. border-right: none;
  164. color: #F2501A;
  165. }