
        /* S1主题 - 重构版样式 (无侧边栏) */
        :root {
            --s1-primary: #667eea;
            --s1-secondary: #764ba2;
            --s1-pink: #f093fb;
            --s1-gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --s1-gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            --s1-gradient-cool: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%);
            --s1-gradient-success: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
            --s1-gradient-danger: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
            --s1-text: #1e293b;
            --s1-text-muted: #64748b;
            --s1-bg: #f0f4ff;
            --s1-card-bg: #ffffff;
            --s1-border: rgba(102, 126, 234, 0.1);
            --s1-radius: 16px;
            --s1-radius-lg: 24px;
            --s1-shadow: 0 8px 32px rgba(102, 126, 234, 0.15);
            --s1-shadow-hover: 0 16px 48px rgba(102, 126, 234, 0.25);
        }
        
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background: var(--s1-bg);
            color: var(--s1-text);
            min-height: 100vh;
        }
        
        /* 顶部导航栏 */
        .s1-topnav {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            box-shadow: var(--s1-shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 0 32px;
        }
        
        .s1-topnav-inner {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 70px;
        }
        
        .s1-nav-left {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .s1-nav-item {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 20px;
            color: var(--s1-text-muted);
            text-decoration: none;
            border-radius: 50px;
            font-size: 15px;
            font-weight: 500;
            transition: all 0.3s ease;
            white-space: nowrap;
        }
        
        .s1-nav-item:hover {
            background: var(--s1-bg);
            color: var(--s1-primary);
        }
        
        .s1-nav-item.active {
            background: var(--s1-gradient-primary);
            color: #fff;
            box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
        }
        
        .s1-nav-item i {
            font-size: 20px;
        }
        
        .s1-nav-right {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .s1-user-dropdown {
            position: relative;
        }
        
        .s1-user-btn {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 16px 8px 8px;
            background: var(--s1-bg);
            border-radius: var(--s1-radius);
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .s1-user-btn:hover {
            background: var(--s1-gradient-cool);
        }
        
        .s1-user-btn .avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--s1-gradient-primary);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 14px;
        }
        
        .s1-user-btn span {
            font-size: 14px;
            font-weight: 500;
            color: var(--s1-text);
        }
        
        .s1-dropdown-menu {
            position: absolute;
            top: 100%;
            right: 0;
            margin-top: 8px;
            background: #fff;
            border-radius: var(--s1-radius);
            box-shadow: var(--s1-shadow-hover);
            min-width: 200px;
            padding: 8px;
            display: none;
            z-index: 1000;
        }
        
        .s1-dropdown-menu.show {
            display: block;
        }
        
        .s1-dropdown-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 16px;
            color: var(--s1-text);
            text-decoration: none;
            border-radius: 10px;
            transition: all 0.2s ease;
        }
        
        .s1-dropdown-item:hover {
            background: var(--s1-bg);
            color: var(--s1-primary);
        }
        
        .s1-dropdown-item i {
            font-size: 18px;
            color: var(--s1-text-muted);
        }
        
        .s1-dropdown-divider {
            height: 1px;
            background: var(--s1-border);
            margin: 8px 0;
        }
        
        /* Hero区域背景 */
        .s1-hero {
            background: linear-gradient(135deg, #e8f0fe 0%, #f5f0ff 50%, #fff0f5 100%);
            padding: 20px 32px 80px;
            position: relative;
            overflow: hidden;
        }
        
        .s1-hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 60%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 400'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' style='stop-color:%23667eea;stop-opacity:0.1'/%3E%3Cstop offset='100%25' style='stop-color:%23764ba2;stop-opacity:0.05'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect fill='url(%23g)' width='800' height='400'/%3E%3Cg fill='none' stroke='%23667eea' stroke-opacity='0.1' stroke-width='1'%3E%3Cpath d='M0 100 Q200 50 400 100 T800 100'/%3E%3Cpath d='M0 200 Q200 150 400 200 T800 200'/%3E%3Cpath d='M0 300 Q200 250 400 300 T800 300'/%3E%3C/g%3E%3C/svg%3E") no-repeat center right;
            background-size: cover;
            opacity: 0.6;
            pointer-events: none;
        }
        
        .s1-hero-inner {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        /* 主内容区 */
        .s1-main {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 32px 32px;
        }
        
        /* 公告栏 */
        .s1-announcement {
            background: var(--s1-card-bg);
            border-radius: var(--s1-radius-lg);
            padding: 24px 28px;
            margin-bottom: 24px;
            box-shadow: var(--s1-shadow);
            display: flex;
            align-items: center;
            gap: 20px;
            position: relative;
            overflow: hidden;
        }
        
        .s1-announcement::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 5px;
            background: var(--s1-gradient-cool);
        }
        
        .s1-announcement-icon {
            width: 56px;
            height: 56px;
            border-radius: var(--s1-radius);
            background: var(--s1-gradient-cool);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .s1-announcement-icon i {
            font-size: 28px;
            color: #fff;
        }
        
        .s1-announcement-title {
            font-weight: 600;
            font-size: 16px;
            margin-bottom: 4px;
        }
        
        .s1-announcement-text {
            color: var(--s1-text-muted);
            font-size: 14px;
        }
        
        /* 统计卡片 */
        .s1-stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-bottom: 32px;
            position: relative;
            z-index: 10;
        }
        
        .s1-stat-card {
            border-radius: var(--s1-radius-lg);
            padding: 28px;
            color: #fff;
            position: relative;
            overflow: hidden;
            box-shadow: var(--s1-shadow);
            display: flex;
            align-items: center;
            gap: 20px;
            transition: all 0.3s ease;
        }
        
        .s1-stat-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--s1-shadow-hover);
        }
        
        .s1-stat-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -30%;
            width: 100%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
        }
        
        .s1-stat-primary { background: var(--s1-gradient-primary); }
        .s1-stat-pink { background: var(--s1-gradient-cool); }
        .s1-stat-success { background: var(--s1-gradient-success); }
        .s1-stat-danger { background: var(--s1-gradient-danger); }
        
        /* 今日调用统计板块 */
        .s1-today-stats {
            background: var(--s1-gradient-primary);
            border-radius: var(--s1-radius-lg);
            padding: 28px;
            margin-top: -40px;
            margin-bottom: 32px;
            color: #fff;
            position: relative;
            overflow: hidden;
            box-shadow: var(--s1-shadow);
            z-index: 10;
        }
        
        .s1-today-stats::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 60%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
            pointer-events: none;
        }
        
        .s1-today-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 24px;
            position: relative;
            z-index: 1;
        }
        
        .s1-today-header h3 {
            font-size: 20px;
            font-weight: 700;
            margin: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .s1-today-header small {
            opacity: 0.8;
            font-size: 14px;
            display: block;
            margin-top: 4px;
        }
        
        .s1-today-header .date-icon {
            font-size: 48px;
            opacity: 0.3;
        }
        
        .s1-today-numbers {
            display: flex;
            gap: 48px;
            margin-bottom: 24px;
            position: relative;
            z-index: 1;
        }
        
        .s1-today-item {
            flex: 1;
        }
        
        .s1-today-value {
            font-size: 42px;
            font-weight: 700;
            line-height: 1;
            margin-bottom: 6px;
        }
        
        .s1-today-label {
            font-size: 14px;
            opacity: 0.85;
        }
        
        .s1-chart-container {
            background: rgba(255, 255, 255, 0.1);
            border-radius: var(--s1-radius);
            padding: 16px;
            height: 180px;
            position: relative;
            z-index: 1;
        }
        
        @media (max-width: 768px) {
            .s1-today-stats {
                padding: 20px;
                margin-top: -30px;
            }
            
            .s1-today-header {
                margin-bottom: 16px;
            }
            
            .s1-today-header h3 {
                font-size: 16px;
            }
            
            .s1-today-header small {
                font-size: 12px;
            }
            
            .s1-today-numbers {
                flex-direction: row;
                flex-wrap: wrap;
                gap: 12px;
                margin-bottom: 16px;
            }
            
            .s1-today-item {
                flex: 1 1 calc(33.33% - 8px);
                min-width: 80px;
                text-align: center;
            }
            
            .s1-today-value {
                font-size: 22px;
                margin-bottom: 4px;
            }
            
            .s1-today-label {
                font-size: 11px;
                line-height: 1.2;
            }
            
            .s1-today-header .date-icon {
                display: none;
            }
            
            .s1-chart-container {
                height: 140px;
                padding: 12px;
            }
        }
        
        @media (max-width: 480px) {
            .s1-today-stats {
                padding: 16px;
                margin-top: -25px;
                border-radius: var(--s1-radius);
            }
            
            .s1-today-numbers {
                gap: 8px;
            }
            
            .s1-today-item {
                flex: 1 1 calc(33.33% - 6px);
                min-width: 70px;
            }
            
            .s1-today-value {
                font-size: 18px;
            }
            
            .s1-today-label {
                font-size: 10px;
            }
            
            .s1-chart-container {
                height: 120px;
                padding: 10px;
            }
        }
        
        .s1-stat-icon {
            width: 64px;
            height: 64px;
            border-radius: var(--s1-radius);
            background: rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .s1-stat-icon i {
            font-size: 32px;
        }
        
        .s1-stat-value {
            font-size: 36px;
            font-weight: 700;
            line-height: 1;
        }
        
        .s1-stat-label {
            font-size: 14px;
            opacity: 0.9;
            margin-top: 4px;
        }
        
        /* 今日调用排行 */
        .s1-ranking-card {
            background: var(--s1-card-bg);
            border-radius: var(--s1-radius-lg);
            padding: 28px;
            margin-bottom: 32px;
            box-shadow: var(--s1-shadow);
        }
        
        .s1-ranking-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 16px;
            border-bottom: 1px solid var(--s1-border);
        }
        
        .s1-ranking-header h3 {
            font-size: 18px;
            font-weight: 700;
            margin: 0;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--s1-text);
        }
        
        .s1-ranking-header h3 i {
            color: #ffd700;
        }
        
        .s1-ranking-date {
            font-size: 13px;
            color: var(--s1-text-muted);
            background: var(--s1-bg);
            padding: 6px 12px;
            border-radius: 20px;
        }
        
        .s1-ranking-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .s1-ranking-item {
            display: flex;
            align-items: center;
            padding: 14px 0;
            border-bottom: 1px solid var(--s1-border);
            transition: all 0.3s ease;
        }
        
        .s1-ranking-item:last-child {
            border-bottom: none;
        }
        
        .s1-ranking-item:hover {
            background: var(--s1-bg);
            margin: 0 -28px;
            padding: 14px 28px;
            border-radius: var(--s1-radius);
        }
        
        .s1-ranking-num {
            width: 32px;
            height: 32px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 700;
            margin-right: 16px;
            flex-shrink: 0;
        }
        
        .s1-ranking-num.top1 {
            background: linear-gradient(135deg, #ffd700 0%, #ffb800 100%);
            color: #fff;
            box-shadow: 0 4px 12px rgba(255, 184, 0, 0.4);
        }
        
        .s1-ranking-num.top2 {
            background: linear-gradient(135deg, #c0c0c0 0%, #a8a8a8 100%);
            color: #fff;
            box-shadow: 0 4px 12px rgba(192, 192, 192, 0.4);
        }
        
        .s1-ranking-num.top3 {
            background: linear-gradient(135deg, #cd7f32 0%, #b87333 100%);
            color: #fff;
            box-shadow: 0 4px 12px rgba(205, 127, 50, 0.4);
        }
        
        .s1-ranking-num.normal {
            background: var(--s1-bg);
            color: var(--s1-text-muted);
        }
        
        .s1-ranking-info {
            flex: 1;
            min-width: 0;
        }
        
        .s1-ranking-name {
            font-weight: 600;
            font-size: 15px;
            color: var(--s1-text);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            margin-bottom: 4px;
        }
        
        .s1-ranking-endpoint {
            font-size: 12px;
            color: var(--s1-text-muted);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            font-family: 'Consolas', 'Monaco', monospace;
        }
        
        .s1-ranking-calls {
            font-size: 15px;
            font-weight: 700;
            color: var(--s1-primary);
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(161, 140, 209, 0.1));
            padding: 8px 16px;
            border-radius: 20px;
            margin-left: 16px;
            flex-shrink: 0;
        }
        
        .s1-ranking-btn {
            padding: 6px 12px;
            background: var(--s1-gradient-primary);
            color: #fff;
            border: none;
            border-radius: 8px;
            font-size: 12px;
            text-decoration: none;
            margin-left: 12px;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }
        
        .s1-ranking-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
        }
        
        .s1-empty-ranking {
            text-align: center;
            padding: 48px 20px;
            color: var(--s1-text-muted);
        }
        
        .s1-empty-ranking i {
            font-size: 56px;
            margin-bottom: 16px;
            opacity: 0.4;
            display: block;
        }
        
        .s1-empty-ranking p {
            font-size: 15px;
            margin: 0;
        }
        
        @media (max-width: 768px) {
            .s1-ranking-card {
                padding: 20px;
            }
            
            .s1-ranking-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
            }
            
            .s1-ranking-item:hover {
                margin: 0 -20px;
                padding: 14px 20px;
            }
            
            .s1-ranking-btn {
                display: none;
            }
        }
        
        /* API卡片网格 */
        .s1-section-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .s1-section-title i {
            color: var(--s1-primary);
        }
        
        .s1-api-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
            gap: 24px;
        }
        
        .s1-api-card {
            background: var(--s1-card-bg);
            border-radius: var(--s1-radius-lg);
            padding: 28px;
            box-shadow: var(--s1-shadow);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .s1-api-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--s1-shadow-hover);
        }
        
        .s1-api-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--s1-gradient-primary);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .s1-api-card:hover::before {
            opacity: 1;
        }
        
        .s1-api-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 12px;
        }
        
        .s1-api-title {
            font-size: 18px;
            font-weight: 700;
            color: var(--s1-text);
            margin: 0;
        }
        
        /* 状态徽章 */
        .s1-badge {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 500;
        }
        
        .s1-badge-success {
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(56, 239, 125, 0.1));
            color: #10b981;
        }
        
        .s1-badge-danger {
            background: linear-gradient(135deg, rgba(245, 87, 108, 0.1), rgba(240, 147, 251, 0.1));
            color: #f5576c;
        }
        
        .s1-badge-warning {
            background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(245, 158, 11, 0.1));
            color: #f59e0b;
        }
        
        .s1-badge-secondary {
            background: rgba(100, 116, 139, 0.1);
            color: #64748b;
        }
        
        /* 标签 */
        .s1-api-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 12px;
        }
        
        .s1-tag {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 12px;
        }
        
        .s1-tag-success {
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(56, 239, 125, 0.1));
            color: #10b981;
        }
        
        .s1-tag-warning {
            background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(245, 158, 11, 0.1));
            color: #f59e0b;
        }
        
        .s1-tag-purple {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
            color: var(--s1-primary);
        }
        
        .s1-tag-light {
            background: rgba(100, 116, 139, 0.08);
            color: var(--s1-text-muted);
        }

        .s1-auth-legend {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
            padding: 14px 18px;
            background: var(--s1-card-bg);
            border-radius: var(--s1-radius);
            box-shadow: var(--s1-shadow);
        }

        .s1-auth-legend-link {
            margin-left: auto;
            color: var(--s1-primary);
            font-size: 13px;
            text-decoration: none;
            font-weight: 600;
        }

        .s1-api-auth {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px;
            margin-bottom: 12px;
        }

        .s1-auth-preview {
            font-family: Consolas, monospace;
            font-size: 12px;
            color: var(--s1-text-muted);
            background: rgba(100, 116, 139, 0.08);
            padding: 4px 10px;
            border-radius: 8px;
        }
        
        .s1-api-desc {
            color: var(--s1-text-muted);
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 16px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .s1-api-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 16px;
            border-top: 1px solid var(--s1-border);
        }
        
        .s1-api-stats {
            display: flex;
            gap: 16px;
            font-size: 13px;
        }
        
        .s1-api-stats span {
            display: flex;
            align-items: center;
            gap: 4px;
            color: var(--s1-text-muted);
        }
        
        .s1-text-danger { color: #f5576c; }
        .s1-text-warning { color: #f59e0b; }
        
        .s1-flame {
            animation: flame 0.5s ease-in-out infinite alternate;
        }
        
        @keyframes flame {
            from { transform: scale(1); }
            to { transform: scale(1.2); }
        }
        
        /* 按钮 */
        .s1-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 10px 18px;
            border-radius: var(--s1-radius);
            font-size: 14px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        
        .s1-btn-primary {
            background: var(--s1-gradient-primary);
            color: #fff;
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
        }
        
        .s1-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
            color: #fff;
        }
        
        .s1-btn-sm {
            padding: 8px 14px;
            font-size: 13px;
        }
        
        /* 空状态 */
        .s1-empty-state {
            grid-column: 1 / -1;
            text-align: center;
            padding: 80px 20px;
            color: var(--s1-text-muted);
        }
        
        .s1-empty-state i {
            font-size: 80px;
            opacity: 0.3;
            margin-bottom: 20px;
            display: block;
        }
        
        /* 页脚 */
        .s1-footer {
            text-align: center;
            padding: 32px;
            color: var(--s1-text-muted);
            font-size: 14px;
        }
        
        .s1-footer a {
            color: var(--s1-primary);
            text-decoration: none;
        }
        
        /* 动画 */
        .s1-fade-in {
            animation: fadeIn 0.5s ease forwards;
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* 移动端菜单按钮 */
        .s1-mobile-menu-btn {
            display: none;
            width: 44px;
            height: 44px;
            border-radius: var(--s1-radius);
            background: var(--s1-bg);
            border: none;
            cursor: pointer;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--s1-text);
        }
        
        /* 移动端导航菜单 */
        .s1-mobile-nav {
            display: none;
            position: fixed;
            top: 70px;
            left: 0;
            right: 0;
            background: #fff;
            padding: 16px;
            box-shadow: var(--s1-shadow);
            z-index: 999;
            flex-direction: column;
            gap: 8px;
        }
        
        .s1-mobile-nav.show {
            display: flex;
        }
        
        .s1-mobile-nav .s1-nav-item {
            justify-content: flex-start;
            padding: 14px 20px;
        }
        
        /* 响应式 */
        @media (max-width: 1200px) {
            .s1-stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 992px) {
            .s1-nav-left {
                display: none;
            }
            
            .s1-mobile-menu-btn {
                display: flex;
            }
            
            .s1-topnav {
                padding: 0 16px;
            }
            
            .s1-hero {
                padding: 20px 16px 40px;
            }
            
            .s1-main {
                padding: 0 16px 32px;
            }
        }
        
        @media (max-width: 768px) {
            .s1-stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            
            .s1-stat-card {
                padding: 16px;
            }
            
            .s1-stat-icon {
                width: 44px;
                height: 44px;
            }
            
            .s1-stat-icon i {
                font-size: 22px;
            }
            
            .s1-stat-value {
                font-size: 24px;
            }
            
            .s1-stat-label {
                font-size: 12px;
            }
            
            .s1-api-grid {
                grid-template-columns: 1fr;
            }
            
            .s1-user-btn span {
                display: none;
            }
            
            .s1-announcement {
                flex-direction: column;
                text-align: center;
            }
        }
        
        @media (max-width: 480px) {
            .s1-stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 8px;
            }
            
            .s1-stat-card {
                padding: 12px;
                border-radius: var(--s1-radius);
                gap: 10px;
            }
            
            .s1-stat-icon {
                width: 36px;
                height: 36px;
            }
            
            .s1-stat-icon i {
                font-size: 18px;
            }
            
            .s1-stat-value {
                font-size: 20px;
            }
            
            .s1-stat-label {
                font-size: 11px;
            }
        }
        
        /* 搜索框 */
        .s1-search-box {
            display: flex;
            align-items: center;
            background: var(--s1-bg);
            border-radius: var(--s1-radius);
            padding: 0 16px;
            border: 2px solid transparent;
            transition: all 0.3s ease;
            margin-left: 16px;
        }
        
        .s1-search-box:focus-within {
            border-color: var(--s1-primary);
            background: #fff;
            box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
        }
        
        .s1-search-box i {
            color: var(--s1-text-muted);
            font-size: 18px;
        }
        
        .s1-search-box input {
            width: 200px;
            padding: 10px 12px;
            border: none;
            background: transparent;
            font-size: 14px;
            outline: none;
        }
        
        @media (max-width: 1100px) {
            .s1-search-box {
                display: none;
            }
        }
        
        /* 广告位样式 */
        .s1-ads-section {
            margin-bottom: 32px;
        }
        
        .s1-ads-title {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 18px;
            font-weight: 600;
            color: var(--s1-text);
            margin-bottom: 16px;
        }
        
        .s1-ads-title i {
            color: var(--s1-primary);
        }
        
        .s1-ads-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 16px;
        }
        
        .s1-ad-card {
            position: relative;
            background: var(--s1-card-bg);
            border-radius: var(--s1-radius);
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
            display: block;
            aspect-ratio: 16/9;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .s1-ad-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 24px rgba(102, 126, 234, 0.2);
            border-color: rgba(102, 126, 234, 0.2);
        }
        
        .s1-ad-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .s1-ad-card:hover img {
            transform: scale(1.05);
        }
        
        .s1-ad-placeholder {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--s1-text-muted);
            font-size: 14px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        
        .s1-ad-placeholder i {
            font-size: 32px;
            margin-bottom: 8px;
            opacity: 0.5;
        }
        
        .s1-ad-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 16px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .s1-ad-card:hover .s1-ad-overlay {
            opacity: 1;
        }
        
        .s1-ad-overlay-title {
            font-size: 15px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 6px;
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 100%;
        }
        
        .s1-ad-overlay-desc {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.8);
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 100%;
        }
        
        @media (max-width: 1200px) {
            .s1-ads-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        
        @media (max-width: 992px) {
            .s1-ads-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .s1-ads-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* 首页公告弹窗 */
        .s1-notice-overlay {
            position: fixed;
            inset: 0;
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 24px;
            background: rgba(15, 23, 42, 0.55);
            backdrop-filter: blur(4px);
            animation: s1NoticeFadeIn 0.25s ease;
        }

        .s1-notice-modal {
            width: min(520px, 100%);
            max-height: min(88vh, 720px);
            display: flex;
            flex-direction: column;
            background: var(--s1-card-bg);
            border-radius: var(--s1-radius-lg);
            box-shadow: 0 24px 64px rgba(15, 23, 42, 0.25);
            overflow: hidden;
            animation: s1NoticeSlideUp 0.28s ease;
        }

        .s1-notice-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 20px 24px;
            background: var(--s1-gradient-primary);
            color: #fff;
            flex-shrink: 0;
        }

        .s1-notice-header h3 {
            margin: 0;
            font-size: 18px;
            font-weight: 700;
        }

        .s1-notice-close {
            border: none;
            background: rgba(255, 255, 255, 0.18);
            color: #fff;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 20px;
            line-height: 1;
        }

        .s1-notice-close:hover {
            background: rgba(255, 255, 255, 0.28);
        }

        .s1-notice-body {
            flex: 1 1 auto;
            min-height: 0;
            padding: 24px;
            overflow-y: auto;
            overscroll-behavior: contain;
            -webkit-overflow-scrolling: touch;
            color: var(--s1-text);
            line-height: 1.8;
            font-size: 15px;
        }

        .s1-notice-body p {
            margin: 0 0 14px;
            color: var(--s1-text-muted);
        }

        .s1-notice-body p:last-child {
            margin-bottom: 0;
        }

        .s1-notice-body ol {
            margin: 0 0 14px;
            padding-left: 22px;
            color: var(--s1-text-muted);
        }

        .s1-notice-body li {
            margin-bottom: 8px;
        }

        .s1-notice-body a {
            color: var(--s1-primary);
            text-decoration: none;
        }

        .s1-notice-body a:hover {
            text-decoration: underline;
        }

        .s1-notice-rich .s1-notice-content p {
            margin: 0 0 12px;
        }

        .s1-notice-rich .s1-notice-content ol,
        .s1-notice-rich .s1-notice-content ul {
            margin: 0 0 12px;
            padding-left: 22px;
        }

        .s1-notice-rich .s1-notice-content li {
            margin-bottom: 8px;
        }

        .s1-notice-qr {
            margin-top: 16px;
            padding-top: 16px;
            border-top: 1px dashed rgba(102, 126, 234, 0.2);
            text-align: center;
        }

        .s1-notice-qr img {
            max-width: 220px;
            width: 100%;
            border-radius: 12px;
            border: 2px solid rgba(102, 126, 234, 0.12);
            background: #fff;
        }

        .s1-notice-qr p {
            margin: 10px 0 0;
            font-size: 14px;
            color: var(--s1-text-muted);
        }

        .s1-notice-time {
            margin-top: 16px;
            font-size: 13px;
            color: var(--s1-text-muted);
        }

        .s1-notice-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 16px 24px 20px;
            border-top: 1px solid var(--s1-border);
            background: #fafbff;
            flex-shrink: 0;
        }

        .s1-notice-check {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--s1-text-muted);
            font-size: 14px;
            cursor: pointer;
            user-select: none;
        }

        .s1-notice-check input {
            width: 16px;
            height: 16px;
            accent-color: var(--s1-primary);
        }

        .s1-notice-btn {
            border: none;
            border-radius: 999px;
            padding: 10px 22px;
            background: var(--s1-gradient-primary);
            color: #fff;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
        }

        .s1-notice-btn:hover {
            opacity: 0.92;
        }

        @keyframes s1NoticeFadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes s1NoticeSlideUp {
            from { opacity: 0; transform: translateY(16px) scale(0.98); }
            to { opacity: 1; transform: translateY(0) scale(1); }
        }

        @media (max-width: 768px) {
            .s1-notice-overlay {
                padding: 16px;
            }

            .s1-notice-modal {
                max-height: 92vh;
            }

            .s1-notice-body {
                padding: 18px 16px;
            }

            .s1-notice-footer {
                flex-direction: column;
                align-items: stretch;
            }

            .s1-notice-btn {
                width: 100%;
            }
        }
     