* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
}
.container {
    position: relative;
 
    height: 100vh;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.map-container {
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

#gansuMap {
    width: 100%;
    height: 100%;
    max-width: 900px;
    max-height: 700px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

/* 地图轮廓样式 */
.province-path {
    fill: #d4c4a0;
    stroke: #8b7355;
    stroke-width: 2;
    transition: all 0.3s ease;
}

.province-path:hover {
    fill: #c4b490;
    stroke-width: 3;
}

/* 内环（洞）样式 */
.province-hole {
    fill: #f0e6d2;
    fill-rule: evenodd;
}

/* 城市标记点 */
.city-marker {
    fill: #d32f2f;
    stroke: #fff;
    stroke-width: 2;
    cursor: default;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.city-marker.highlighted {
    fill: #ff6b6b;
    r: 7;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* 城市标签 */
.city-label {
    font-size: 14px;
    fill: #fff;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    -webkit-user-select: none;
    user-select: none;
    text-anchor: middle; /* 确保文本水平居中 */
}

/* 可点击的城市标签 */
.city-label.city-clickable {
    pointer-events: all;
    cursor: pointer;
    transition: fill 0.2s ease;
}

.city-label.city-clickable:hover {
    fill: #ffeb3b;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
}

/* 城市区域（可点击） */
.city-area {
    pointer-events: all;
    cursor: pointer;
    fill: transparent;
    transition: fill 0.2s ease;
}

.city-area:hover,
.city-area.hovered {
    fill: rgba(255, 235, 59, 0.3);
    stroke: rgba(255, 235, 59, 1);
    stroke-width: 3;
}

/* 高亮区域 */
.highlight-rect {
    fill: rgba(139, 115, 85, 0.4);
    stroke: #ffd700;
    stroke-width: 2;
    stroke-dasharray: 5, 5;
    animation: dash 3s linear infinite;
}

@keyframes dash {
    to {
        stroke-dashoffset: -20;
    }
}

/* 信息面板 */
.info-panel {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    background: rgba(139, 115, 85, 0.85);
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    writing-mode: vertical-rl;
    text-orientation: upright;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.info-title {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 5px;
}

.info-subtitle {
    font-size: 18px;
    color: #f4d19e;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    letter-spacing: 3px;
}

.info-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.province-name {
    font-size: 20px;
    color: #fff;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 3px;
}

.info-stats {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stat-label {
    font-size: 16px;
    color: #f4d19e;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1;
}

.stat-unit {
    font-size: 18px;
    color: #f4d19e;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* 右侧信息面板样式 */
.right-panel {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.panel-title {
    font-size: 28px;
    color: #fff;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-align: center;
}

#content-container {
    width: 100%;
    max-width: 1200px;
    height: 275px;
    position: relative;
    overflow: hidden;
}

.content-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 30px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    color: #fff;
    text-align: center;
    border-radius: 10px;
}

.content-item.active {
    opacity: 1;
    z-index: 10;
}

.content-item h3 {
    font-size: 16px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.content-item p {
    font-size: 16px;
    line-height: 2;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* 十个不同背景的内容样式 */
.content-1 {

}

.content-2 {

}

.content-3 {
  
}

.content-4 {
   
}

.content-5 {
  
}

.content-6 {
    
}

.content-7 {
  
}

.content-8 {
   
}

.content-9 {
    
}

.content-10 {
   
}

.content-11 {
   
}

.content-12 {
    
}

.content-13 {
    
}

.content-14 {
   
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .map-container {
        width: 100%;
    }
    
    .right-panel {
        width: 100%;
    }
    
    .info-panel {
        width: 150px;
        padding: 20px 15px;
        right: 20px;
    }
    
    .stat-number {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    
    .map-container {
        width: 100%;
        height: 70%;
    }
    
    .right-panel {
        width: 100%;
        height: 30%;
    }
    
    #content-container {
        height: 200px;
    }
    
    .info-panel {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 90%;
        writing-mode: horizontal-tb;
        margin-top: 20px;
    }
}

<!--ecms sync check [sync_thread_id="3bcee7cc5a424330844ab778a62d31c1" sync_date="2025-12-08 14:12:18" check_sum="3bcee7cc5a424330844ab778a62d31c1]-->