* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
        }
        
        .map-a-container {
            display: flex;
            height: 100vh;
            overflow: hidden;
            flex-direction: row;
        }
        
        .map-a-sidebar {
            width: 320px;
            background-color: #fff;
            box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
            z-index: 10;
            order: 1;
        }
        
        .map-a-header {
            padding: 20px;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .map-a-breadcrumb {
            font-size: 14px;
            color: #666;
            margin-bottom: 20px;
        }
        
        .map-a-breadcrumb a {
            color: #026dfe;
            text-decoration: none;
        }
        
        .map-a-breadcrumb a:hover {
            text-decoration: underline;
        }
        
        .map-a-city-name {
            font-size: 24px;
            font-weight: 600;
            color: #333;
            margin-bottom: 5px;
        }
        
        .map-a-city-subtitle {
            font-size: 14px;
            color: #666;
        }
        
        .map-a-content {
            flex: 1;
            padding: 20px;
            overflow-y: auto;
        }
        
        .map-a-city-image {
            width: 100%;
            height: 198px;
            border-radius: 8px;
            object-fit: cover;
            margin-bottom: 20px;
        }
        
        .map-a-description {
            font-size: 14px;
            line-height: 1.8;
            color: #555;
            margin-bottom: 30px;
        }
        
        .map-a-section-title {
            font-size: 18px;
            font-weight: 600;
            color: #333;
			margin-top:18px;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .map-a-links {
            list-style-type: none;
        }
        
        .map-a-links li {
            margin-bottom: 10px;
        }
        
        .map-a-links a {
            display: block;
            padding: 10px 15px;
            background-color: #f8f9fa;
            border-radius: 6px;
            color: #333;
            text-decoration: none;
            transition: all 0.3s; font-size:16px;
        }
        
        .map-a-links a:hover {
            background-color: #026dfe;
            color: white;
            transform: translateX(5px);
        }
        
        .map-a-main {
            flex: 1;
            position: relative;
            order: 2;
        }
        
        #mapContainer {
            width: 100%;
            height: 100%;
            background-color: #FAFAFA;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #026dfe;
        }
        
        .map-a-map-placeholder {
            text-align: center;
        }
        
        .map-a-map-placeholder i {
            font-size: 48px;
            margin-bottom: 10px;
            display: block;
        }
        
        /* 移动端样式 */
        @media (max-width: 768px) {
            .map-a-container {
                flex-direction: column;
                height: auto;
                min-height: 100vh;
            }
            
            .map-a-sidebar {
                width: 100%;
                height: auto;
                max-height: none;
                order: 2;
                overflow: visible;
            }
            
            .map-a-main {
                height: 60vh;
                order: 1;
            }
            
            .map-a-header {
                padding: 15px;
            }
            
            .map-a-content {
                padding: 15px;
                overflow: visible;
            }
            
            .map-a-city-name {
                font-size: 20px;
            }
            
            .map-a-links {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 8px;
            }
            
            .map-a-links li {
                margin-bottom: 0;
            }
            
            .map-a-links a {
                padding: 8px 6px;
                font-size: 16px;
                text-align: center;
                min-height: 60px;
                display: flex;
                align-items: center;
                justify-content: center;
                word-break: break-all;
            }
            
            .map-a-links a:hover {
                transform: translateY(-2px);
            }
        }
        
        /* 小屏手机适配 */
        @media (max-width: 480px) {
            .map-a-links {
                grid-template-columns: repeat(3, 1fr);
                gap: 8px;
            }
            
            .map-a-links a {
                font-size: 14px;
                padding: 6px 4px;
                min-height: 50px;
            }
			#mapContainer {
				height: 558px;
			}
			
			.map-a-city-image {
				height: 218px;
			}
        }
        
        /* 平板设备适配 */
        @media (min-width: 769px) and (max-width: 1024px) {
            .map-a-sidebar {
                width: 280px;
            }
            
            .map-a-city-image {
                height: 180px;
            }
        }