/* 全局重置 */
.geo-2026-dimensions,
.geo-2026-dimensions * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Microsoft YaHei", sans-serif;
}

.geo-2026-dimensions {
    background: white
    padding: 30px 20px;
    min-height: 100vh;
}

.geo-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

/* 右侧内容区域 */
.geo-content-column {
    flex: 1;
    min-width: 0;
}

.geo-header {
    margin-top: 50px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    text-align: center;
}

.geo-title {
    font-size: 36px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
}

.geo-year-comparison {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 8px 20px;
    border-radius: 6px;
    /*box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);*/
    /*border: 1px solid #e3e8ff;*/
    font-size: 18px;
    font-weight: 700;
}

.geo-year-2025 {
    color: #3949ab;
}

.geo-year-2026 {
    color: #ff6d00;
}

.geo-arrow {
    color: #7986cb;
    font-weight: bold;
}

/* 表格样式 - 紧凑布局 */
.geo-table-container {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: auto;
    margin-bottom: 80px;
}

.geo-dimensions-table {
    width: 100%;
    min-width: 1000px;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 17px;
}

.geo-dimensions-table thead {
    background: linear-gradient(90deg, #efe9ff 0%, #ad52ff 100%);
    position: sticky;
    top: 0;
    z-index: 10;
}

.geo-dimensions-table th {
    padding: 14px 12px;
    text-align: center;
    vertical-align: middle;
    color: #111111;
    font-weight: 600;
    font-size: 18px;
    border: none;
    white-space: nowrap;
    
    
}

.geo-col-index {
    width: 50px;
    text-align: center;
    font-size: 17px;
}

.geo-col-dimension {
    width: 150px;
}

.geo-col-focus {
    width: 250px;
}

.geo-col-upgrade-type {
    width: 120px;
}

.geo-col-upgrade {
    width: auto;
}

/* 表格行样式 */
.geo-row {
    border-bottom: 1px solid #f0f4ff;
    transition: background-color 0.15s ease;
    align-items: center;
    height: 80px; 
}

.geo-row:hover {
    background-color: #f8fbff;
}

.geo-row:nth-child(even) {
    background-color: #fafcff;
}

.geo-row:nth-child(even):hover {
    background-color: #f2f7ff;
}

/* 表格单元格 */
.geo-cell-index,
.geo-cell-dimension,
.geo-cell-focus,
.geo-cell-upgrade-type,
.geo-cell-upgrade {
    padding: 14px 12px;
    vertical-align: middle;
    border-right: 2px solid #f0f4ff;
}

.geo-cell-index {
    text-align: center;
    vertical-align: middle;
    font-weight: 600;
    color: #3949ab;
    background: #f8fbff;
    font-size: 17px;
    height: 80px;
}

.geo-cell-dimension {
    border-left: 3px solid #5c6bc0;
}

.geo-dimension-name {
    display: flex;
    flex-direction: column;
}

.geo-dimension-text {
    color: #2c387e;
    font-weight: 600;
    font-size: 17px;
    line-height: 1.3;
    background: linear-gradient(270deg, #CB38FF 0%, #682FFF 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    vertical-align: middle;
    
}

.geo-cell-focus {
    color: #546e7a;
    line-height: 1.5;
    font-size: 17px;
}

.geo-cell-upgrade-type {
    text-align: center;
}

.geo-upgrade-badge {
    display: inline-block;
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2;
    white-space: nowrap;
    text-align: center;
    vertical-align: middle;
}

/* 升级类型颜色 */
.geo-type-new { background-color: #00c853; }
.geo-type-emphasis { background-color: #2979ff; }
.geo-type-upgrade { background-color: #7b1fa2; }
.geo-type-focus { background-color: #ff6d00; }
.geo-type-enhance { background-color: #d32f2f; }
.geo-type-standard { background-color: #546e7a; }
.geo-type-innovate { background-color: #c2185b; }

.geo-cell-upgrade {
    color: #37474f;
    line-height: 1.5;
}

.geo-upgrade-details p {
    margin-bottom: 6px;
    font-size: 17px;
    line-height: 1.5;
}

.geo-upgrade-details p:last-child {
    margin-bottom: 0;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .geo-container {
        flex-direction: column;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .geo-2026-dimensions {
        padding: 20px 15px;
    }
    
    .geo-title {
        font-size: 22px;
    }
    
    .geo-dimensions-table th,
    .geo-cell-index,
    .geo-cell-dimension,
    .geo-cell-focus,
    .geo-cell-upgrade-type,
    .geo-cell-upgrade {
        padding: 12px 10px;
        font-size: 17px;

    }
    
    .geo-dimension-text {
        font-size: 17px;
    }
    
    .geo-upgrade-details p {
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .geo-title {
        font-size: 20px;
    }
    
    .geo-year-comparison {
        padding: 6px 16px;
        font-size: 13px;
    }
}