.all_content {
    width: 100%;
    display: flex;
}

.left_content {
    width: 30%;
    padding: 20px;
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.map_content {
    width: 70%;
    height: 100%;
    position: relative;
}

.line_select {
    display: flex;
    width: 100%;
}

/* 选择框样式 */
.select-box {
    width: 48.5%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.line_select .select-box:first-child {
    margin-right: 3%;
}

.search-input {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.btn-search {
    background-color: var(--theme-color-orange);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    margin-bottom: 20px;
}

.btn-search:hover {
    background-color: #e65a00;
}

/* 经销商列表 */
.service-list {
    max-height: 460px;
    overflow-y: auto;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.service-item {
    padding: 15px;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.service-item:last-child {
    border-bottom: none;
}

.service-item h3 {
    color: #333;
    margin-bottom: 8px;
    font-size: 16px;
}

.service-item p {
    color: #666;
    font-size: 14px;
    margin-bottom: 8px;
}

.service-item span {
    font-weight: bold;
}

.service-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.service-actions button {
    padding: 6px 12px;
    font-size: 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.btn-navigate,
.btn-call,
.btn-share {
    background-color: var(--theme-color-orange);
    color: white;
}

/* 地图容器样式 */
#mapContainer {
    width: 100%;
    height: 72.5vh;

}

@media screen and (min-width: 992px) {}

@media screen and (max-width: 991px) {
     .all_content{
        flex-wrap: wrap;
    }
       .left_content{
        width: 100%;
    }
    .service-list {
        max-height: 260px;
    }
}<!--耗时1774803885.8703秒-->