首次提交

This commit is contained in:
2026-08-06 16:01:04 +08:00
commit a0ca831a00
89 changed files with 55731 additions and 0 deletions
+118
View File
@@ -0,0 +1,118 @@
.app-shell {
width: min(1100px, calc(100% - 32px));
margin: 32px auto;
}
.app-header {
display: flex;
align-items: center;
justify-content: space-between;
gap: 24px;
margin-bottom: 16px;
}
.app-header h1 {
margin: 0 0 8px;
font-size: 28px;
}
.app-header p {
margin: 0;
color: #6b7280;
}
.app-header button {
flex: none;
padding: 9px 16px;
border: 1px solid #2563eb;
border-radius: 6px;
color: #fff;
background: #2563eb;
cursor: pointer;
}
.app-header button:disabled {
cursor: default;
opacity: 0.6;
}
.demo-notes {
display: flex;
gap: 8px;
margin-bottom: 16px;
padding: 12px 16px;
border: 1px solid #bfdbfe;
border-radius: 8px;
background: #eff6ff;
}
.amis-region {
min-height: 320px;
padding: 20px;
border: 1px solid #e5e7eb;
border-radius: 10px;
background: #fff;
box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}
.state-message {
padding: 32px;
text-align: center;
color: #6b7280;
}
.state-message.error {
color: #b91c1c;
}
@media (max-width: 700px) {
.app-header {
align-items: stretch;
flex-direction: column;
}
.demo-notes {
flex-direction: column;
}
}
.adminive-status-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 12px;
}
.adminive-status-grid > div {
display: flex;
flex-direction: column;
gap: 4px;
padding: 12px;
border: 1px solid #e5e7eb;
border-radius: 6px;
background: #f9fafb;
}
.adminive-status-grid strong {
color: #6b7280;
font-size: 12px;
font-weight: 600;
text-transform: uppercase;
}
.adminive-status-grid span {
color: #111827;
font-size: 16px;
}
@media (max-width: 800px) {
.adminive-status-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}
@media (max-width: 520px) {
.adminive-status-grid {
grid-template-columns: 1fr;
}
}
.adminive-object-status {
min-width: 300px;
padding: 4px 0;
}
.adminive-object-status-row {
display: flex;
align-items: center;
justify-content: space-between;
gap: 24px;
padding: 8px 4px;
border-bottom: 1px solid #e5e7eb;
}
.adminive-object-status-row:last-child {
border-bottom: 0;
}
.adminive-object-status-label {
color: #64748b;
}