Spaces:
Running
Running
File size: 2,411 Bytes
c993983 ab7559f c993983 ab7559f c993983 ab7559f c993983 ab7559f c993983 ab7559f c993983 ab7559f c993983 ab7559f c993983 ab7559f c993983 ab7559f c993983 ab7559f c993983 ab7559f c993983 ab7559f c993983 ab7559f c993983 ab7559f c993983 ab7559f c993983 ab7559f c993983 ab7559f c993983 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 | .scenario-comparison {
margin-top: 40px;
padding: 30px;
background: var(--bg);
border: 1px solid var(--border);
border-radius: 20px;
box-shadow: var(--shadow);
}
.sc-header {
margin-bottom: 24px;
}
.sc-header h2 {
font-size: 1.5rem;
color: var(--text-main);
margin-bottom: 6px;
font-weight: 700;
}
.sc-subtitle {
font-size: 0.9rem;
color: var(--text-muted);
}
.sc-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
gap: 24px;
}
.sc-card {
background: var(--surface);
border: 1px solid var(--border);
border-radius: 16px;
overflow: hidden;
transition: all 0.2s ease;
display: flex;
flex-direction: column;
}
.sc-card:hover {
border-color: var(--primary);
box-shadow: var(--shadow-lg);
transform: translateY(-2px);
}
.sc-card-header {
padding: 16px;
display: flex;
justify-content: space-between;
align-items: center;
}
.sc-card-header h3 {
font-size: 1.1rem;
font-weight: 600;
color: var(--text-main);
margin: 0;
}
.sc-tmin-tag {
background: var(--primary-light);
color: var(--primary);
padding: 2px 8px;
border-radius: 4px;
font-size: 0.75rem;
font-weight: 600;
}
.sc-map-preview {
height: 200px;
width: 100%;
border-top: 1px solid var(--border);
border-bottom: 1px solid var(--border);
overflow: hidden;
}
.sc-results {
padding: 16px;
flex: 1;
}
.sc-table {
width: 100%;
border-collapse: collapse;
font-size: 0.85rem;
}
.sc-table td {
padding: 6px 0;
color: var(--text-muted);
}
.sc-val {
text-align: right;
color: var(--text-main);
font-weight: 600;
}
.sc-success {
color: var(--success);
}
.sc-load-btn {
margin: 16px;
padding: 8px 16px;
background: var(--surface-active);
color: var(--text-main);
border: 1px solid var(--border);
border-radius: 8px;
font-size: 0.85rem;
font-weight: 600;
cursor: pointer;
transition: all 0.2s;
}
.sc-load-btn:hover {
background: var(--surface-hover);
color: var(--text-main);
border-color: var(--primary);
}
.sc-charts-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
gap: 24px;
margin-bottom: 40px;
}
.sc-chart-card {
background: var(--surface);
padding: 24px;
border-radius: 16px;
border: 1px solid var(--border);
box-shadow: var(--shadow);
transition: all 0.2s ease;
}
.sc-chart-card:hover {
box-shadow: var(--shadow-lg);
}
|