        :root {
            --primary-color: #4a89dc;
            --primary-light: #eaf0fa;
            --secondary-color: #3a71c4;
            --accent-color: #5a9cec;
            --success-color: #4cc9f0;
            --warning-color: #f72585;
            --dark-color: #1e1e2e;
            --light-color: #f8fafc;
            --text-color: #334155;
            --text-light: #64748b;
            --border-color: #e2e8f0;
            --card-bg: #ffffff;
            --card-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
            --radius: 12px;
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
            color: var(--text-color);
            line-height: 1.6;
            min-height: 100vh;
            padding: 20px;
        }
		
		/*顶部logo*/
		.logo-icon_1 {
			background:linear-gradient(135deg,#ffffff,#ffffff);
        }
		.logo-icon_img {
            height:50px;
			width:50px;
        }

        .api-doc-container {
            width: 100%;
            max-width: 1600px;
            margin: 5rem auto;
            background: var(--card-bg);
            border-radius: var(--radius);
            box-shadow: var(--card-shadow);
            overflow: hidden;
            position: relative;
        }

        .api-header {
            background: linear-gradient(120deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 2.5rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .api-header::before {
            content: "";
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }

        .api-header::after {
            content: "";
            position: absolute;
            bottom: -80px;
            left: -80px;
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.07);
            border-radius: 50%;
        }

        .api-title {
            position: relative;
            z-index: 2;
        }

        .api-title h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            letter-spacing: -0.5px;
        }

        .api-title .subtitle {
            font-size: 1.1rem;
            opacity: 0.9;
            max-width: 700px;
            margin-top: 0.75rem;
        }

        .api-meta {
            display: flex;
            gap: 1.5rem;
            margin-top: 1.5rem;
            flex-wrap: wrap;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.95rem;
            background: rgba(255, 255, 255, 0.15);
            padding: 8px 16px;
            border-radius: 50px;
        }

        .api-content {
            padding: 2rem;
            /*display: grid;*/
            grid-template-columns: 1fr 350px;
            gap: 2rem;
        }

        .main-content {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .info-card {
            background: var(--card-bg);
            padding: 1.75rem;
            border-radius: var(--radius);
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
            border: 1px solid var(--border-color);
            transition: var(--transition);
        }

        .info-card:hover {
            box-shadow: 0 10px 25px -5px rgba(74, 137, 220, 0.1), 0 8px 10px -6px rgba(74, 137, 220, 0.1);
        }

        .section-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: var(--dark-color);
            position: relative;
            padding-bottom: 0.75rem;
        }

        .section-title::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--primary-color);
            border-radius: 3px;
        }

        .info-item {
            margin-bottom: 1.5rem;
            display: flex;
            flex-wrap: wrap;
            align-items: flex-start;
        }

        .info-label {
            font-weight: 600;
            color: var(--primary-color);
            min-width: 120px;
            margin-right: 1rem;
            font-size: 0.95rem;
            opacity: 0.95;
        }

        .info-value {
            flex: 1;
            color: var(--text-color);
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
            align-items: center;
        }

        .info-description {
            flex: 1;
            color: var(--text-color);
            line-height: 1.7;
            font-size: 1rem;
        }

        .api-address {
            position: relative;
            background: var(--primary-light);
            border-radius: 8px;
            color: var(--primary-color);
            font-weight: 500;
            border: 1px solid rgba(74, 137, 220, 0.2);
            padding: 1rem 1.25rem;
            font-family: 'Courier New', monospace;
            font-size: 0.95rem;
            overflow-wrap: break-word;
            word-break: break-all;
        }

        .copy-btn {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            cursor: pointer;
            font-size: 0.9rem;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-left: auto;
            flex-shrink: 0;
        }

        .copy-btn:hover {
            background: var(--secondary-color);
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(74, 137, 220, 0.25);
        }

        pre {
            background: #f8fafc;
            padding: 1.5rem;
            border-radius: 8px;
            position: relative;
            margin-top: 1rem;
            border: 1px solid var(--border-color);
            font-size: 0.95rem;
            overflow-x: auto;
            color: var(--dark-color);
            font-family: 'Fira Code', monospace;
            line-height: 1.5;
        }

        .badge {
            padding: 0.4rem 0.8rem;
            font-weight: 600;
            font-size: 0.85rem;
            border-radius: 6px;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }

        .bg-primary {
            background-color: var(--primary-color) !important;
            color: white;
        }

        .bg-success {
            background-color: #10b981 !important;
            color: white;
        }

        .bg-info {
            background-color: var(--accent-color) !important;
            color: white;
        }

        .bg-warning {
            background-color: #f59e0b !important;
            color: white;
        }

        .bg-purple {
            background-color: #8b5cf6 !important;
            color: white;
        }

        .bg-secondary {
            background-color: #64748b !important;
            color: white;
        }

        .auth-info {
            background: rgba(234, 240, 250, 0.5);
            border-radius: 8px;
            padding: 1rem;
            margin-bottom: 1rem;
        }

        .auth-info-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 0.75rem;
        }

        .auth-info-item:last-child {
            margin-bottom: 0;
        }

        .auth-icon {
            color: var(--primary-color);
            font-size: 1.1rem;
            min-width: 24px;
        }

        .test-api-btn {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 0.75rem;
            width: 100%;
            justify-content: center;
            box-shadow: 0 4px 6px rgba(74, 137, 220, 0.2);
        }

        .test-api-btn:hover {
            background: var(--secondary-color);
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(74, 137, 220, 0.25);
        }

        .api-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
            border-radius: 8px;
            overflow: hidden;
        }

        .api-table th {
            background-color: var(--primary-light);
            color: var(--primary-color);
            font-weight: 600;
            text-align: left;
            padding: 1rem;
            border-bottom: 2px solid var(--border-color);
        }

        .api-table td {
            padding: 1rem;
            border-bottom: 1px solid var(--border-color);
            vertical-align: top;
        }

        /* Markdown表格样式 */
        #apiDocumentation table {
            border: 1px solid #e2e8f0;
            border-collapse: separate;
            border-spacing: 0;
            width: 100%;
            margin: 1.5rem 0;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
            background: white;
        }

        #apiDocumentation table th,
        #apiDocumentation table td {
            border: 1px solid #e2e8f0;
            padding: 12px 15px;
            text-align: left;
            transition: all 0.2s ease;
        }

        #apiDocumentation table th {
            background-color: #f8fafc;
            font-weight: 600;
            color: #334155;
            border-bottom: 2px solid #e2e8f0;
        }

        #apiDocumentation table tr:nth-child(even) {
            background-color: #f8fafc;
        }

        #apiDocumentation table tr:hover td {
            background-color: #f1f5f9;
        }

        .api-table tr:last-child td {
            border-bottom: none;
        }

        .api-table tr:hover {
            background-color: rgba(74, 137, 220, 0.03);
        }

        .code-block {
            position: relative;
        }

        .method-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            z-index: 2;
            padding: 0.3rem 0.8rem;
            border-radius: 4px;
            font-weight: 600;
            font-size: 0.85rem;
        }

        .method-get {
            background: #10b981;
            color: white;
        }

        .method-post {
            background: #f59e0b;
            color: white;
        }

        .endpoint-card {
            background: white;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.03);
            border: 1px solid var(--border-color);
        }

        .endpoint-header {
            background: var(--primary-light);
            padding: 1.25rem;
            border-bottom: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .endpoint-method {
            font-weight: 700;
            color: var(--primary-color);
        }

        .endpoint-url {
            font-family: 'Courier New', monospace;
            font-size: 0.95rem;
            color: var(--text-color);
        }

        .endpoint-body {
            padding: 1.25rem;
        }

        .endpoint-title {
            font-weight: 600;
            margin-bottom: 0.75rem;
            color: var(--dark-color);
        }

        .param-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .card-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 1.25rem;
            color: var(--dark-color);
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .card-title i {
            color: var(--primary-color);
            font-size: 1.2rem;
        }

        .response-badge {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .response-success {
            background: #10b98120;
            color: #10b981;
            border: 1px solid #10b98140;
        }

        .response-error {
            background: #ef444420;
            color: #ef4444;
            border: 1px solid #ef444440;
        }

        .status-dot {
            display: inline-block;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            margin-right: 0.5rem;
        }

        .dot-active {
            background: #10b981;
        }

        .dot-inactive {
            background: #ef4444;
        }

        .tag {
            display: inline-flex;
            align-items: center;
            padding: 0.25rem 0.75rem;
            background: #e2e8f0;
            border-radius: 50px;
            font-size: 0.85rem;
            color: var(--text-light);
            gap: 0.4rem;
        }

        /* 连通性测试弹窗 */
        .connectivity-test {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 1000;
            width: 300px;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transform: translateX(0);
            transition: transform 0.5s ease, opacity 0.5s ease;
            opacity: 1;
        }

        .connectivity-test.hidden {
            transform: translateX(120%);
            opacity: 0;
        }

        .connectivity-header {
            padding: 15px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: #4a89dc;
            color: white;
        }

        .connectivity-title {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
            font-size: 16px;
        }

        .connectivity-close {
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            font-size: 18px;
        }

        .connectivity-body {
            padding: 15px;
            background: white;
            color: #333;
        }

        .connectivity-status {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
            font-weight: 500;
        }

        .status-success {
            color: #10b981;
        }

        .status-error {
            color: #ef4444;
        }

        .connectivity-details {
            background: #f8f9fa;
            padding: 10px;
            border-radius: 6px;
            font-size: 13px;
            font-family: monospace;
            max-height: 150px;
            overflow-y: auto;
        }

        .connectivity-footer {
            padding: 10px 15px;
            background: #f8f9fa;
            text-align: right;
            border-top: 1px solid #eaeaea;
        }

        .connectivity-time {
            font-size: 12px;
            color: #6c757d;
        }

        /* 测试弹窗样式 */
        .test-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }

        .test-modal-content {
            background: white;
            border-radius: 12px;
            width: 90%;
            max-width: 700px;
            padding: 2rem;
            position: relative;
            max-height: 90vh;
            overflow-y: auto;
        }

        .test-modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #64748b;
        }

        .test-modal-title {
            margin-bottom: 1.5rem;
            color: var(--primary-color);
        }

        .test-form-group {
            margin-bottom: 1.5rem;
        }

        .test-form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .test-form-input {
            width: 100%;
            padding: 10px;
            border-radius: 8px;
            border: 1px solid var(--border-color);
        }

        .test-form-textarea {
            width: 100%;
            height: 150px;
            padding: 10px;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            font-family: monospace;
            resize: vertical;
        }

        .test-form-btn {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            transition: var(--transition);
        }

        .test-form-btn:hover {
            background: var(--secondary-color);
        }

        .test-form-btn:disabled {
            background: #94a3b8;
            cursor: not-allowed;
        }

        .test-result {
            margin-top: 1.5rem;
            padding: 1rem;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            background: #f8fafc;
            max-height: 300px;
            overflow-y: auto;
        }

        .test-result pre {
            margin: 0;
            background: none;
            border: none;
            padding: 0;
        }

        .test-result-success {
            border-color: #bbf7d0;
            background: #f0fdf4;
        }

        .test-result-error {
            border-color: #fecaca;
            background: #fef2f2;
        }

        .test-status {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--border-color);
        }

        .test-status-success {
            color: #10b981;
        }

        .test-status-error {
            color: #ef4444;
        }

        @media (max-width: 900px) {
            .api-content {
                grid-template-columns: 1fr;
            }

            .param-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .api-header {
                padding: 1.75rem 1.5rem;
            }

            .api-content {
                padding: 1.5rem;
            }

            .api-title h1 {
                font-size: 2rem;
            }

            .api-meta {
                gap: 0.75rem;
            }

            .info-item {
                flex-direction: column;
                gap: 0.5rem;
            }

            .info-label {
                margin-bottom: 0.25rem;
            }

            .connectivity-test {
                width: calc(100% - 40px);
                left: 20px;
                right: 20px;
                top: 20px;
            }
        }

        .decoration {
            position: absolute;
            z-index: 1;
        }

        .decoration-circle {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            border: 2px solid rgba(255, 255, 255, 0.2);
        }

        .decoration-triangle {
            width: 0;
            height: 0;
            border-left: 20px solid transparent;
            border-right: 20px solid transparent;
            border-bottom: 35px solid rgba(255, 255, 255, 0.15);
        }