| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- 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: border-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: 1rem;
- font-weight: bold;
- color: #333;
- }
- .header-right {
- width: 1.25rem;
- }
- .container {
- padding: 0.625rem 0.9375rem;
- }
- .logo-area {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- padding: 1.875rem 0;
- }
- .app-logo {
- width: 5rem;
- height: 5rem;
- border-radius: 0.9375rem;
- margin-bottom: 0.625rem;
- /* gradient background is usually part of the logo image itself, assuming logo.png is complete */
- }
- .app-name {
- font-size: 1.125rem;
- font-weight: bold;
- color: #333;
- margin-bottom: 0.3125rem;
- }
- .app-version {
- font-size: 0.875rem;
- color: #999;
- }
- .group-card {
- background-color: #fff;
- border-radius: 0.625rem;
- padding: 0 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;
- }
- .badge-yellow {
- width: 1.125rem;
- height: 1.125rem;
- background-color: #FFC107;
- color: #fff;
- font-size: 0.75rem;
- line-height: 1.125rem;
- text-align: center;
- border-radius: 0.1875rem;
- }
|