index.css 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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: border-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: 1rem;
  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. .logo-area {
  40. display: flex;
  41. flex-direction: column;
  42. align-items: center;
  43. justify-content: center;
  44. padding: 1.875rem 0;
  45. }
  46. .app-logo {
  47. width: 5rem;
  48. height: 5rem;
  49. border-radius: 0.9375rem;
  50. margin-bottom: 0.625rem;
  51. /* gradient background is usually part of the logo image itself, assuming logo.png is complete */
  52. }
  53. .app-name {
  54. font-size: 1.125rem;
  55. font-weight: bold;
  56. color: #333;
  57. margin-bottom: 0.3125rem;
  58. }
  59. .app-version {
  60. font-size: 0.875rem;
  61. color: #999;
  62. }
  63. .group-card {
  64. background-color: #fff;
  65. border-radius: 0.625rem;
  66. padding: 0 0.9375rem;
  67. }
  68. .list-item {
  69. display: flex;
  70. justify-content: space-between;
  71. align-items: center;
  72. height: 3.125rem;
  73. border-bottom: 1px solid #F5F5F5;
  74. }
  75. .list-item.no-border {
  76. border-bottom: none;
  77. }
  78. .item-title {
  79. font-size: 0.875rem;
  80. color: #333;
  81. }
  82. .item-right {
  83. display: flex;
  84. align-items: center;
  85. }
  86. .arrow-icon {
  87. width: 0.875rem;
  88. height: 0.875rem;
  89. opacity: 0.5;
  90. margin-left: 0.3125rem;
  91. }
  92. .badge-yellow {
  93. width: 1.125rem;
  94. height: 1.125rem;
  95. background-color: #FFC107;
  96. color: #fff;
  97. font-size: 0.75rem;
  98. line-height: 1.125rem;
  99. text-align: center;
  100. border-radius: 0.1875rem;
  101. }