index.css 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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;
  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. .section-title-security {
  40. font-size: 0.75rem;
  41. color: #999;
  42. margin-bottom: 0.625rem;
  43. margin-top: 0.625rem;
  44. padding-left: 0.3125rem;
  45. }
  46. .group-card {
  47. background-color: #fff;
  48. border-radius: 0.625rem;
  49. padding: 0 0.9375rem;
  50. margin-bottom: 0.9375rem;
  51. }
  52. .list-item {
  53. display: flex;
  54. justify-content: space-between;
  55. align-items: center;
  56. height: 3.125rem;
  57. border-bottom: 1px solid #F5F5F5;
  58. }
  59. .list-item.no-border {
  60. border-bottom: none;
  61. }
  62. .item-title {
  63. font-size: 0.875rem;
  64. color: #333;
  65. }
  66. .item-right {
  67. display: flex;
  68. align-items: center;
  69. }
  70. .arrow-icon {
  71. width: 0.875rem;
  72. height: 0.875rem;
  73. opacity: 0.5;
  74. margin-left: 0.3125rem;
  75. }
  76. .item-value {
  77. font-size: 0.875rem;
  78. color: #999;
  79. }