添加流量地图

This commit is contained in:
CN-JS-HuiBai
2026-04-05 01:17:45 +08:00
parent 2fc84f999c
commit af83f42d26
8 changed files with 281 additions and 6 deletions

View File

@@ -586,11 +586,17 @@ input:checked+.slider:before {
/* ---- Charts Section ---- */
.charts-section {
display: grid;
grid-template-columns: 1fr;
grid-template-columns: 3fr 2fr;
gap: 16px;
margin-bottom: 24px;
}
@media (max-width: 1200px) {
.charts-section {
grid-template-columns: 1fr;
}
}
.chart-card {
background: var(--bg-card);
border: 1px solid var(--border-color);
@@ -748,6 +754,24 @@ input:checked+.slider:before {
color: var(--accent-cyan);
}
/* ---- Globe Card ---- */
.globe-card {
display: flex;
flex-direction: column;
}
.globe-body {
flex: 1;
min-height: 280px;
position: relative;
overflow: hidden;
cursor: grab;
}
.globe-body:active {
cursor: grabbing;
}
/* ---- Gauges ---- */
.gauges-container {
display: flex;