* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', Arial, sans-serif;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}



h1 {
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 10px;
}

.subtitle {
    text-align: center;
    opacity: 0.9;
    font-size: 1.1em;
}

.map-container {
    display: flex;
    gap: 20px;
    height: 600px;
}

#map {
    flex: 3;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.info-panel {
    flex: 1;
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow-y: auto;
}

.panel-title {
    font-size: 1.3em;
    color: #2a5298;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}

.location-list {
    list-style: none;
	padding-left:0;
}

.location-item {
    padding: 12px;
    margin: 8px 0;
    background: #f8f9fa;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.location-item:hover {
    background: #e3f2fd;
    transform: translateX(5px);
}

.location-name {
    font-weight: bold;
    color: #1e3c72;
}

.location-desc {
    font-size: 0.9em;
    color: #666;
    margin-top: 5px;
}

.controls {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.search-box button,.controls button{
    flex: 1;
    min-width: 120px;
    padding: 12px;
    border: none;
    border-radius: 6px;
    background: #2a5298;
    color: white;
    cursor: pointer;
    transition: background 0.3s;
}

.search-box button:hover,.controls button:hover{
    background: #1e3c72;
}

.search-box {
    margin: 20px 0;
    display: flex;
    gap: 10px;
}

input {
    flex: 1;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 1em;
}

footer {
    text-align: center;
    margin-top: 20px;
    padding: 20px;
    color: #666;
    font-size: 0.9em;
	line-height: 150%;
}
footer p a,footer p a:hover{
	text-decoration: none;
	color: inherit;
}


@media (max-width: 768px) {
    .map-container {
        flex-direction: column;
        height: auto;
    }
    
    #map {
        height: 400px;
    }
}