* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", Arial, sans-serif;
        }
        
        body {
            background-color: #FFFFFF;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            max-width: 100%;
            margin: 0 auto;
            padding: 8px 0px 0px 0px;
        }
        
        header {
            text-align: center;
            padding: 12px 0;
            background: linear-gradient(135deg, #3081ff 0%, #3081ff 51%, #4bc83e 100%);
            color: white;
            margin-bottom: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        
        h1 {
            font-size: 1.1rem;
            margin-bottom: 1px;
        }
        
        .description {
            font-size: 12px;color:#000; margin:0px 0px 10px 10px;
        }
		.description a { color:#000; text-decoration:none; }
		
		.citylist  {
			list-style-type: none;
            padding: 0;max-width: 88%;margin: 8px auto;
		}
		.citylist li {
			display: inline-block; padding:0px;
		}
		.citylist li a { color:#fafafa; text-decoration:none; font-size:16px;background: var(--ifm-breadcrumb-item-background-active);
    color: var(--ifm-breadcrumb-color-active); }
		.citylist li a:hover { color:#FFF; }
        
        .map-container {
            height: 518px;
            margin-bottom: 8px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            position: relative;
        }
        
        #map {
            width: 100%;
            height: 587px;
			overflow: hidden;
            position: relative;
        }
		#allmap {
            width: 100%;
            height: 600px;
        }
        
        .map-controls {
            position: absolute;
            top: 15px;
            right: 15px;
            z-index: 999;
        }
        
        .map-btn {
            background: white;
            border: none;
            width: 36px;
            height: 36px;
            border-radius: 4px;
            margin-bottom: 8px;
            cursor: pointer;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #333;
            font-size: 18px;
            transition: all 0.2s;
        }
        
        .map-btn:hover {
            background: #f0f0f0;
            transform: translateY(-2px);
        }
		
		.map-description {
            background: white;
            padding: 30px;
            margin-bottom: 30px;
        }
        
        .description-container {
            display: flex;
            align-items: flex-start;
            gap: 30px;
        }
        
        .mapimg {
            flex: 0 0 45%;
            max-width: 45%;
        }
        
        .mapimg img {
            width: 100%;
            height: auto;
            border-radius: 4px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }
        
        .text-content {
            flex: 1;
        }
        
        .map-description h2 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: #1f70fd;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }
        
        .map-description p {
            margin-bottom: 15px;
            line-height: 1.7;
        }
        
        .map-description a {
            color: #1f70fd;
            text-decoration: none;
            font-weight: 500;
        }
        
        .map-description a:hover {
            text-decoration: underline;
        }
        
        .provinces-section {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }
        
        h2 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: #1f70fd;
            text-align: center;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }
        
        .province-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            gap: 15px;
            list-style: none;
        }
        
        .province-list li a {
            display: block;
            padding: 10px 15px;
            background: #f8f8f8;
            border-radius: 4px;
            color: #333;
            text-decoration: none;
            text-align: center;
            transition: all 0.2s;
            font-weight: 500;
        }
        
        .province-list li a:hover {
            background: #1f70fd;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(30, 87, 153, 0.3);
        }
		.anchorBL {
            display: none !important;
        }
        
        footer {
            text-align: center;
            margin-top: 40px;
            padding: 20px;
            color: #666;
            font-size: 0.9rem;
        }
        .search-container {
            left: 10px;
            right: 10px;
            z-index: 1000;
            display: flex;
            gap: 8px;
			width:39%; margin:0px auto; margin-bottom:8px;
        }
        .search-input {
            flex: 1;
            padding: 8px 12px;
            border: 1px solid #ddd;
            border-radius:6px;
            font-size: 14px;
            background: rgba(255, 255, 255, 0.9);
            box-shadow: 0 2px 6px rgba(0,0,0,0.1); 
        }
		#searchResultPanel { height:auto; display:none; }
        @media (max-width: 768px) {
            .province-list {
                grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
            }
            
            h1 {
                font-size: 1.2rem;
            }
            
            .map-container {
                height: 400px;
            }
			.description-container {
                flex-direction: column;
            }
            
            .mapimg {
                flex: 1 1 100%;
                max-width: 100%;
            }
			.search-container {
			width:50%;
			}
        }