|
|
@@ -125,35 +125,65 @@
|
|
|
flex: 1;
|
|
|
}
|
|
|
|
|
|
-/* ─── Missing ApigId Prompt ─── */
|
|
|
-.missing-apig-prompt {
|
|
|
- text-align: center;
|
|
|
- padding: 48px 24px;
|
|
|
+/* ─── API Service List ─── */
|
|
|
+.apig-list-section {
|
|
|
margin-bottom: 24px;
|
|
|
}
|
|
|
-.missing-apig-prompt .prompt-icon {
|
|
|
- width: 56px; height: 56px;
|
|
|
- margin: 0 auto 16px;
|
|
|
- color: var(--neon);
|
|
|
- opacity: 0.6;
|
|
|
+.apig-list-title {
|
|
|
+ margin: 0 0 16px; font-size: 16px;
|
|
|
+ font-weight: 700; color: var(--text-bright);
|
|
|
+ letter-spacing: 1px;
|
|
|
}
|
|
|
-.missing-apig-prompt .prompt-icon svg { width: 100%; height: 100%; }
|
|
|
-.missing-apig-prompt h3 {
|
|
|
- margin: 0 0 12px; font-size: 20px;
|
|
|
- font-weight: 700; color: var(--success);
|
|
|
+.apig-list-loading {
|
|
|
+ text-align: center; padding: 32px;
|
|
|
+ color: var(--text-dim); font-size: 14px;
|
|
|
}
|
|
|
-.missing-apig-prompt p {
|
|
|
- margin: 0 0 8px; font-size: 14px;
|
|
|
- color: var(--text-dim); line-height: 1.6;
|
|
|
+.apig-list-grid {
|
|
|
+ display: flex; flex-direction: column; gap: 12px;
|
|
|
}
|
|
|
-.missing-apig-prompt code {
|
|
|
- padding: 2px 8px; font-size: 13px;
|
|
|
- background: rgba(0,212,255,0.1);
|
|
|
- border: 1px solid rgba(0,212,255,0.2);
|
|
|
- border-radius: 4px; color: var(--neon);
|
|
|
+.apig-list-card {
|
|
|
+ padding: 20px 24px;
|
|
|
+ cursor: pointer;
|
|
|
+ border: 1px solid transparent;
|
|
|
+ position: relative;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ gap: 6px;
|
|
|
}
|
|
|
-.missing-apig-prompt .example-url {
|
|
|
- margin-top: 16px; font-size: 13px;
|
|
|
+.apig-list-card:hover {
|
|
|
+ border-color: var(--neon);
|
|
|
+ box-shadow:
|
|
|
+ 4px 4px 8px var(--shadow-dark),
|
|
|
+ -4px -4px 8px var(--shadow-light),
|
|
|
+ 0 0 12px var(--neon-glow);
|
|
|
+ transform: translateY(-1px);
|
|
|
+}
|
|
|
+.apig-list-card-title {
|
|
|
+ font-size: 16px; font-weight: 700;
|
|
|
+ color: var(--text-bright);
|
|
|
+}
|
|
|
+.apig-list-card-desc {
|
|
|
+ font-size: 13px; color: var(--text-dim);
|
|
|
+ line-height: 1.4;
|
|
|
+ overflow: hidden; text-overflow: ellipsis;
|
|
|
+ white-space: nowrap;
|
|
|
+}
|
|
|
+.apig-list-card-price {
|
|
|
+ font-size: 18px; font-weight: 700;
|
|
|
+ color: var(--neon); margin-top: 4px;
|
|
|
+}
|
|
|
+.apig-list-card-price .symbol { font-size: 12px; }
|
|
|
+.apig-list-card-arrow {
|
|
|
+ position: absolute;
|
|
|
+ right: 20px; top: 50%;
|
|
|
+ transform: translateY(-50%);
|
|
|
+ font-size: 20px; color: var(--neon);
|
|
|
+ opacity: 0.4; transition: opacity 0.2s;
|
|
|
+}
|
|
|
+.apig-list-card:hover .apig-list-card-arrow { opacity: 1; }
|
|
|
+.apig-list-empty {
|
|
|
+ text-align: center; padding: 32px;
|
|
|
+ color: var(--text-dim); font-size: 14px;
|
|
|
}
|
|
|
|
|
|
/* ─── API Info Card ─── */
|