a:hover { color: #2980b9; }

        .nav-inner { display: flex; justify-content: space-between; align-items: center; width: 100%; }
        .site-brand { font-weight: bold; font-size: 1.2em; color: #333; display: flex; align-items: center; gap: 10px; }
        .site-brand img { height: 32px; width: auto; }

        /* 主体内容区域 */
        .main-content {
            margin-top: 30px;
            margin-bottom: 50px;
        }

        /* 顶部 API 信息卡片 */
        .api-hero-card {
            background: #fff;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.03);
            margin-bottom: 20px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .api-header {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            border-bottom: 1px solid #f0f0f0;
            padding-bottom: 20px;
        }
        .api-icon {
            width: 64px;
            height: 64px;
            background: #e3f2fd; /* 浅蓝背景 */
            color: #52cfd3;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            flex-shrink: 0;
        }
        .api-title-box { flex: 1; }
        .api-title { margin: 0; font-size: 1.5em; font-weight: bold; color: #333; }
        .api-meta { margin-top: 8px; font-size: 0.9em; color: #888; display: flex; align-items: center; gap: 15px; }
        .badge { display: inline-block; padding: 2px 8px; border-radius: 4px; font-size: 12px; font-weight: normal; }
        .badge-green { background: #e6fffa; color: #00b894; border: 1px solid #b2f5ea; }
        .badge-blue { background: #e3f2fd; color: #1976d2; border: 1px solid #bbdefb; }
        
        .api-desc { color: #555; font-size: 15px; }

        /* 内容区块 */
        .content-block {
            background: #fff;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.03);
            margin-bottom: 30px; /* 增加间距 */
        }

        /* 标题样式 */
        h2 {
            font-size: 1.4em;
            margin-top: 0;
            margin-bottom: 25px;
            padding-left: 12px;
            border-left: 5px solid #52cfd3;
            color: #2c3e50;
            font-weight: 700;
        }
        h3 { font-size: 1.1em; color: #444; margin-top: 25px; margin-bottom: 15px; border-bottom: 1px dashed #eee; padding-bottom: 10px; }

        /* 接口信息行 */
        .info-row { margin-bottom: 15px; font-size: 15px; display: flex; align-items: baseline; }
        .info-label { color: #666; margin-right: 10px; width: 80px; flex-shrink: 0; font-weight: bold; }
        .code-box {
            background: #f8f9fa;
            border: 1px solid #eee;
            padding: 4px 8px;
            border-radius: 4px;
            font-family: Consolas, Monaco, monospace;
            color: #d63384;
            word-break: break-all;
        }
        .method-tag {
            display: inline-block;
            background: #e3f2fd;
            color: #52cfd3;
            padding: 4px 10px;
            border-radius: 4px;
            font-weight: bold;
            font-size: 0.9em;
        }

        /* 表格样式 */
        .api-table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 20px;
            font-size: 14px;
        }
        .api-table th, .api-table td {
            border: 1px solid #eee;
            padding: 12px 15px;
            text-align: left;
        }
        .api-table th {
            background-color: #f9fafb;
            color: #555;
            font-weight: 600;
        }
        .api-table tr:hover { background-color: #fafafa; }
        
        /* 针对移动端表格的样式 */
.table-responsive {
    /* 允许容器水平滚动 */
    overflow-x: auto; 
    /* 保持宽度为 100% */
    width: 100%;
    /* 可选：隐藏滚动条，但仍可滚动 */
    -webkit-overflow-scrolling: touch; /* 优化 iOS 上的滚动体验 */
}

/* 确保表格本身不会被强制压缩 */
.table-responsive table {
    /* 确保表格有足够的宽度来展示内容，可以尝试最小宽度，或直接不设置 */
    min-width: 600px; /* 示例，根据实际情况调整 */
    width: 100%; /* 如果表格内容本身不宽，设置 100% */
    border-collapse: collapse;
}

        /* 响应式 */
        @media (max-width: 768px) {
            .api-header { flex-direction: column; align-items: center; text-align: center; }
            .api-meta { justify-content: center; }
            .content-block { padding: 20px; }
            .info-row { flex-direction: column; }
            .info-label { margin-bottom: 5px; }
        }