        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, #121212 0%, #1e1e1e 100%);
            color: #fff;
            min-height: 100vh;
            line-height: 1.6;
        }
        
        /* 主要内容区域 */
        .main-content {
            padding: 30px 20px;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .title-section {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .main-title {
            font-size: 40px;
            font-weight: 800;
            margin-bottom: 10px;
            background: linear-gradient(to right, #4d8eff, #7daaff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
        }
        
        .subtitle {
            color: #a0a0a0;
            font-size: 17px;
            line-height: 1.6;
            margin-bottom: 20px;
            font-weight: 400;
        }
        
        /* API详情卡片 */
        .api-detail-card {
            background: linear-gradient(145deg, #202020 0%, #1b1b1b 100%);
            border-radius: 18px;
            padding: 30px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(70, 70, 70, 0.3);
            margin-bottom: 30px;
        }
        
        .api-detail-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        }
        
        .api-detail-title {
            font-size: 28px;
            font-weight: 600;
            color: #e8eaed;
            letter-spacing: 0.5px;
        }
        
        .api-detail-calls {
            background: linear-gradient(135deg, #4d8eff, #3b78e5);
            border-radius: 20px;
            padding: 7px 15px;
            font-size: 14px;
            font-weight: 700;
        }
        
        .api-detail-description {
            color: #aaa;
            font-size: 16px;
            line-height: 1.7;
            margin-bottom: 30px;
        }
        
        /* 详情区块 */
        .detail-section {
            margin-bottom: 30px;
        }
        
        .section-title {
            font-size: 20px;
            font-weight: 600;
            color: #7daaff;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .section-title i {
            margin-right: 10px;
            font-size: 18px;
        }
        
        .request-url-container {
            position: relative;
            margin-bottom: 15px;
        }
        
        .request-url {
            background: rgba(0, 0, 0, 0.3);
            padding: 15px 50px 15px 15px;
            border-radius: 8px;
            font-family: 'Courier New', monospace;
            font-size: 16px;
            color: #7daaff;
            word-break: break-all;
            border-left: 4px solid #4d8eff;
        }
        
        .copy-btn {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(125, 170, 255, 0.2);
            border: none;
            color: #7daaff;
            padding: 5px 10px;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .copy-btn:hover {
            background: rgba(125, 170, 255, 0.3);
        }
        
        .copy-btn i {
            margin-right: 5px;
        }
        
        .request-method {
            display: inline-block;
            padding: 5px 10px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 14px;
            margin-right: 10px;
        }
        
        .method-get {
            background: rgba(77, 142, 255, 0.2);
            color: #7daaff;
            border: 1px solid rgba(77, 142, 255, 0.5);
        }
        
        .method-post {
            background: rgba(66, 165, 245, 0.2);
            color: #42a5f5;
            border: 1px solid rgba(66, 165, 245, 0.5);
        }
        
        .url-example {
            margin-top: 10px;
            color: #888;
            font-size: 14px;
        }
        
        .url-example a {
            color: #7daaff;
            text-decoration: none;
        }
        
        .url-example a:hover {
            text-decoration: underline;
        }
        
        /* 参数表格 */
        .params-table {
            width: 100%;
            border-collapse: collapse;
            margin: 15px 0;
        }
        
        .params-table th, .params-table td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        }
        
        .params-table th {
            background: rgba(255, 255, 255, 0.05);
            color: #7daaff;
            font-weight: 600;
            font-size: 15px;
        }
        
        .params-table td {
            color: #ccc;
            font-size: 15px;
        }
        
        .params-table tr:hover td {
            background: rgba(255, 255, 255, 0.03);
        }
        
        .param-name {
            color: #7daaff;
            font-family: 'Courier New', monospace;
        }
        
        .param-required {
            color: #ff6b6b;
            font-size: 13px;
        }
        
        .param-optional {
            color: #aaa;
            font-size: 13px;
        }
        
        /* 示例返回 */
        .response-example {
            background: #1a1a1a;
            border-radius: 8px;
            padding: 15px;
            font-family: 'Courier New', monospace;
            font-size: 14px;
            color: #ccc;
            line-height: 1.6;
            overflow-x: auto;
            border-left: 4px solid #4d8eff;
            margin-top: 15px;
        }
        
        /* 注意事项 */
        .note-item {
            display: flex;
            margin-bottom: 10px;
            padding-left: 20px;
            position: relative;
            color: #ccc;
        }
        
        .note-item:before {
            content: "•";
            position: absolute;
            left: 0;
            color: #7daaff;
            font-size: 20px;
            line-height: 1;
        }
        
        /* 返回按钮 */
        .back-button {
            display: inline-block;
            padding: 12px 25px;
            background: linear-gradient(135deg, #4d8eff, #3b78e5);
            color: white;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 16px;
            margin-top: 20px;
        }
        
        .back-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(77, 142, 255, 0.3);
        }
        
        /* 页脚样式 - 与Index.php一致 */
        footer {
            text-align: center;
            padding: 30px 20px;
            color: #a0a0a0;
            font-size: 14px;
            line-height: 1.6;
            margin-top: 50px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
        }
        
        /* 新增的分割线 */
        footer::before {
            content: "";
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80%;
            height: 1px;
            background: rgba(255, 255, 255, 0.1);
        }
        
        .footer-section {
            margin-bottom: 20px;
        }
        
        .footer-title {
            font-size: 18px;
            font-weight: 600;
            color: #7daaff;
            margin-bottom: 15px;
        }
        
        .footer-text {
            margin-bottom: 10px;
        }
        
        .footer-link {
            color: #7daaff;
            text-decoration: none;
        }
        
        .footer-link:hover {
            text-decoration: underline;
        }
        
        .copyright {
            margin-top: 20px;
            font-size: 13px;
        }
        
        /* 响应式调整 */
        @media (max-width: 768px) {
            .main-content {
                padding: 25px 15px;
            }
            
            .main-title {
                font-size: 34px;
            }
            
            .api-detail-card {
                padding: 20px;
            }
            
            .api-detail-title {
                font-size: 24px;
            }
            
            .params-table th, .params-table td {
                padding: 10px;
                font-size: 14px;
            }
            
            footer::before {
                width: 90%;
            }
        }
        
        @media (max-width: 480px) {
            .api-detail-header {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .api-detail-calls {
                margin-top: 10px;
            }
            
            .request-url {
                padding-right: 40px;
                font-size: 14px;
            }
            
            .copy-btn {
                padding: 3px 6px;
                font-size: 12px;
            }
        }
        
        /* 复制成功提示 */
        .copy-notification {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.8);
            color: #fff;
            padding: 10px 20px;
            border-radius: 5px;
            z-index: 1000;
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .copy-notification.show {
            opacity: 1;
        }