index.css 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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; /* Exclude padding from height calculation if needed, or adjust */
  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; /* 14pt */
  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. .tag-status {
  70. font-size: 0.6875rem;
  71. color: #4CAF50;
  72. background-color: #F1F8E9;
  73. padding: 0.125rem 0.3125rem;
  74. border-radius: 0.1875rem;
  75. margin-right: 0.1875rem;
  76. }
  77. .item-value {
  78. font-size: 0.875rem; /* Changed to 14pt (28rpx) */
  79. color: #999;
  80. }
  81. .item-column {
  82. display: flex;
  83. flex-direction: column;
  84. }
  85. .item-row-left {
  86. display: flex;
  87. align-items: center;
  88. }
  89. .item-subtitle {
  90. font-size: 0.75rem; /* Changed to 12pt (24rpx) for better legibility */
  91. color: #999;
  92. margin-left: 0.625rem; /* Moved to right of title */
  93. margin-top: 0;
  94. }