index.css 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  1. body {
  2. background-color: #F8F8F8;
  3. font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  4. }
  5. .custom-header {
  6. position: fixed;
  7. top: 0;
  8. left: 0;
  9. width: 100%;
  10. height: 2.75rem;
  11. padding-top: var(--status-bar-height);
  12. background-color: #fff;
  13. display: flex;
  14. align-items: center;
  15. justify-content: space-between;
  16. padding-left: 0.9375rem;
  17. padding-right: 0.9375rem;
  18. box-sizing: content-box;
  19. z-index: 100;
  20. }
  21. .header-placeholder {
  22. height: calc(2.75rem + var(--status-bar-height));
  23. }
  24. .back-icon {
  25. width: 1.25rem;
  26. height: 1.25rem;
  27. }
  28. .header-title {
  29. font-size: 0.875rem; /* 14pt */
  30. font-weight: bold;
  31. color: #333;
  32. }
  33. .header-right {
  34. width: 1.25rem;
  35. }
  36. .container {
  37. padding: 0.625rem 0.9375rem;
  38. }
  39. .group-card {
  40. background-color: #fff;
  41. border-radius: 0.625rem;
  42. padding: 0 0.9375rem;
  43. margin-bottom: 0.9375rem;
  44. }
  45. .list-item {
  46. display: flex;
  47. justify-content: space-between;
  48. align-items: center;
  49. height: 3.125rem;
  50. border-bottom: 1px solid #F5F5F5;
  51. }
  52. .list-item.no-border {
  53. border-bottom: none;
  54. }
  55. .item-title {
  56. font-size: 0.875rem;
  57. color: #333;
  58. }
  59. .item-right {
  60. display: flex;
  61. align-items: center;
  62. }
  63. .arrow-icon {
  64. width: 0.875rem;
  65. height: 0.875rem;
  66. opacity: 0.5;
  67. margin-left: 0.3125rem;
  68. }
  69. .user-avatar {
  70. width: 2rem; /* Smaller avatar */
  71. height: 2rem;
  72. border-radius: 50%;
  73. }
  74. .item-value {
  75. font-size: 0.875rem;
  76. color: #999;
  77. }
  78. .item-value-black {
  79. font-size: 0.875rem;
  80. color: #333;
  81. font-weight: 500;
  82. }
  83. .tag-blue-outline {
  84. font-size: 0.75rem;
  85. color: #2979FF;
  86. border: 1px solid #2979FF;
  87. padding: 0.125rem 0.625rem;
  88. border-radius: 0.9375rem;
  89. background-color: #fff;
  90. }
  91. /* Popup Styles */
  92. .popup-mask {
  93. position: fixed;
  94. top: 0;
  95. left: 0;
  96. width: 100%;
  97. height: 100%;
  98. background-color: rgba(0,0,0,0.5);
  99. z-index: 999;
  100. display: flex;
  101. align-items: flex-end;
  102. }
  103. .popup-content {
  104. width: 100%;
  105. background-color: #fff;
  106. border-top-left-radius: 0.625rem;
  107. border-top-right-radius: 0.625rem;
  108. padding-bottom: 0.9375rem; /* Safe area */
  109. }
  110. .popup-title {
  111. text-align: center;
  112. font-size: 0.875rem;
  113. color: #999;
  114. padding: 0.9375rem 0;
  115. border-bottom: 1px solid #eee;
  116. }
  117. .popup-item {
  118. text-align: center;
  119. font-size: 1rem;
  120. color: #333;
  121. padding: 0.9375rem 0;
  122. border-bottom: 1px solid #eee;
  123. }
  124. .popup-cancel {
  125. text-align: center;
  126. font-size: 1rem;
  127. color: #333;
  128. padding: 0.9375rem 0;
  129. margin-top: 0.625rem;
  130. border-top: 0.3125rem solid #f5f5f5;
  131. }
  132. .popup-header-row {
  133. display: flex;
  134. justify-content: space-between;
  135. padding: 0.9375rem;
  136. border-bottom: 1px solid #eee;
  137. }
  138. .popup-btn-cancel { font-size: 0.875rem; color: #666;
  139. }
  140. .popup-title-text { font-size: 1rem; font-weight: bold; color: #333;
  141. }
  142. .popup-btn-confirm { font-size: 0.875rem; color: #FF5722; font-weight: bold;
  143. }
  144. /* 级联城市选择器(与我要加入页面一致) */
  145. .picker-body {
  146. display: flex;
  147. height: 15.625rem;
  148. }
  149. .timeline-area {
  150. width: 7.5rem;
  151. padding: 0.625rem;
  152. background: #f8f8f8;
  153. border-right: 1px solid #eee;
  154. overflow-y: auto;
  155. }
  156. .timeline-item {
  157. display: flex;
  158. align-items: center;
  159. padding: 0.5rem 0;
  160. font-size: 0.8125rem;
  161. color: #666;
  162. }
  163. .timeline-item.active {
  164. color: #FF5722;
  165. font-weight: bold;
  166. }
  167. .timeline-dot {
  168. width: 0.5rem;
  169. height: 0.5rem;
  170. border-radius: 50%;
  171. background: #ccc;
  172. margin-right: 0.375rem;
  173. flex-shrink: 0;
  174. }
  175. .timeline-item.active .timeline-dot {
  176. background: #FF5722;
  177. }
  178. .list-area {
  179. flex: 1;
  180. height: 100%;
  181. }
  182. .list-area .list-item {
  183. padding: 0.75rem 0.9375rem;
  184. font-size: 0.875rem;
  185. color: #333;
  186. border-bottom: 1px solid #f5f5f5;
  187. }