| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- body {
- background-color: #F8F8F8;
- font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
- }
- .custom-header {
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- height: 2.75rem;
- padding-top: var(--status-bar-height);
- background-color: #fff;
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding-left: 0.9375rem;
- padding-right: 0.9375rem;
- box-sizing: content-box;
- z-index: 100;
- }
- .header-placeholder {
- height: calc(2.75rem + var(--status-bar-height));
- }
- .back-icon {
- width: 1.25rem;
- height: 1.25rem;
- }
- .header-title {
- font-size: 0.875rem;
- font-weight: bold;
- color: #333;
- }
- .header-right {
- width: 1.25rem;
- }
- .container {
- padding: 0.625rem 0.9375rem;
- }
- .section-title-security {
- font-size: 0.75rem;
- color: #999;
- margin-bottom: 0.625rem;
- margin-top: 0.625rem;
- padding-left: 0.3125rem;
- }
- .group-card {
- background-color: #fff;
- border-radius: 0.625rem;
- padding: 0 0.9375rem;
- margin-bottom: 0.9375rem;
- }
- .list-item {
- display: flex;
- justify-content: space-between;
- align-items: center;
- height: 3.125rem;
- border-bottom: 1px solid #F5F5F5;
- }
- .list-item.no-border {
- border-bottom: none;
- }
- .item-title {
- font-size: 0.875rem;
- color: #333;
- }
- .item-right {
- display: flex;
- align-items: center;
- }
- .arrow-icon {
- width: 0.875rem;
- height: 0.875rem;
- opacity: 0.5;
- margin-left: 0.3125rem;
- }
- .item-value {
- font-size: 0.875rem;
- color: #999;
- }
|