 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
        }
        .content {
            display: flex;
            flex-direction: column;
            gap: 30px;
			 border-top:1px #333 solid;
        }
        
        @media (min-width: 992px) {
            .content {
                flex-direction: row;
            }
            
            .map-section {
                flex: 3;
            }
            
            .info-section {
                flex: 2;
            }
        }
        
        .map-container {
            width: 100%;
            height: 500px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            position: relative;
        }
        
        #map {
            width: 100%;
            height: 100%;
        }
        
        .info-section {
            background: white;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        }
        
        .info-card h2 {
            color: #2c3e50;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #3498db;
        }
        
        .info-item {
            margin-bottom: 18px;
            padding-bottom: 18px;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .info-item:last-child {
            border-bottom: none;
        }
        
        .info-label {
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 5px;
            display: flex;
            align-items: center;
        }
        
        .info-label i {
            margin-right: 8px;
            color: #3498db;
        }
        
        .info-value {
            color: #555;
            padding-left: 24px;
        }
        
        .controls {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 25px;
        }
        
        .btn {
            padding: 10px 18px;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .btn-primary {
            background-color: #3498db;
            color: white;
        }
        
        .btn-primary:hover {
            background-color: #2980b9;
        }
        
        .btn-secondary {
            background-color: #ecf0f1;
            color: #34495e;
        }
        
        .btn-secondary:hover {
            background-color: #d5dbdb;
        }
        
        .btn i {
            margin-right: 6px;
        }
        
        .instructions {
            margin-top: 25px;
            padding: 15px;
            background-color: #f8f9fa;
            border-radius: 8px;
            font-size: 0.95rem;
            color: #666;
        }
        
        .instructions h3 {
            color: #2c3e50;
            margin-bottom: 8px;
            font-size: 1.1rem;
        }
        
        /* 自定义信息窗口样式 - 修改为圆角并增加箭头大小 */
        .custom-info-window {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            max-width: 450px;
            padding: 15px;
            font-family: 'Microsoft YaHei', sans-serif;
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            position: relative;
        }
        
        /* 添加箭头 - 增大尺寸 */
        .custom-info-window::after {
            content: '';
            position: absolute;
            bottom: -25px; /* 增大箭头长度 */
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 0;
            border-left: 15px solid transparent; /* 增大箭头宽度 */
            border-right: 15px solid transparent; /* 增大箭头宽度 */
            border-top: 25px solid white; /* 增大箭头高度 */
            filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.01));
			
			
        }
		
		
        
        .logo-section {
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
           
          
        }
        
        .logo-section img {
            width: 50px;
            height: 50px;
            object-fit: contain;
        }
        
        .info-content {
            flex: 1;
            min-width: 0;
        }
        
        .info-content h3 {
            margin: 5px 0 0px 0;
            color: #2c3e50;
            font-size: 18px;
            font-weight: normal;
            line-height:18px;
            padding-bottom: 0px;
        }
        
        .info-content p {
            margin:0px 0px 8px 0;
            color: #555;
            font-size: 15px;
            line-height:16px;
        }
        
        .info-content strong {
            color: #333;
            font-weight: 600;
        }
        
        .address {
            display: block;
            padding: 8px 10px 0 0;
            font-size: 14px;
            line-height: 1.5;
            color: #444;
            font-weight: 500;
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 5px;
            margin-top: 10px;
            padding-top: 10px;
            border-top: 1px dashed #eee;
        }
        
        .close-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            background: none;
            border: none;
            font-size: 20px;
            cursor: pointer;
            color: #95a5a6;
            transition: color 0.2s;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: #f8f9fa;
        }
        
        .close-btn:hover {
            color: #e74c3c;
            background: #eef2f7;
        }
        
        .logo {
            width: 120px;
            margin: 0 auto 15px;
            display: block;
        }
        
        .loading {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 1.2rem;
            color: #7f8c8d;
            background: white;
            padding: 15px 25px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }
        
        @media (max-width: 768px) {
            .map-container {
                height: 400px;
            }
            
            h1 {
                font-size: 1.8rem;
            }
            
            .controls {
                justify-content: center;
            }
            
            .custom-info-window {
                max-width: 280px;
                flex-direction: column;
                gap: 10px;
            }
            
            .logo-section {
                align-self: center;
            }
        }
        
        /* 高德地图信息窗口自定义样式覆盖 */
        .amap-info-content {
            border-radius: 12px !important;
            overflow: visible !important;
            padding: 0 !important;
            background: transparent !important;
            border: none !important;
            box-shadow: none !important;
        }
        
        .amap-info-sharp {
            display: none !important; /* 隐藏默认箭头 */
        }