/* 充电网络页面样式 */

.chargenet-page {
    width: 100%;
    min-height: calc(100vh - 60px);
    background-color: #fff;
    position: relative;
}

/* 地图控制栏 */
.map-controls {
    position: absolute;
    top: 10px;
    left: 60px;
    right: 60px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.controls-left {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #fff;
    padding: 0 20px;
    height: 60px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.controls-right {
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 0 20px;
    height: 60px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.control-select {
    height: 36px;
    padding: 0 30px 0 20px;
    border: none;
    background-color: transparent;
    font-size: 18px;
    font-family: PingFang SC-Regular, PingFang SC;
    color: #000;
    appearance: none;
    background-image: url(/assets/img/wangluo/FigmaDDSSlicePNGcd96016505c02bfb4e13113b1c05bda2.png);
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 13px 13px;
    cursor: pointer;
    outline: none;
}

.control-select:focus {
    outline: none;
}

.control-btn {
    display: flex;
    align-items: center;
    gap: 3px;
    background: transparent;
    border: none;
    font-size: 18px;
    font-family: PingFang SC-Regular, PingFang SC;
    color: #000;
    cursor: pointer;
    padding: 0;
    margin-left: 44px;
}

.control-btn img {
    width: 21px;
    height: 21px;
}

.control-btn span {
    margin-left: 3px;
}

.search-input {
    width: 144px;
    height: 18px;
    border: none;
    background: transparent;
    font-size: 18px;
    font-family: PingFang SC-Regular, PingFang SC;
    color: #000;
    outline: none;
    padding: 0;
}

.search-input::placeholder {
    color: #999;
}

.search-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn img {
    width: 22px;
    height: 22px;
}

/* 地图容器 */
.map-container {
    width: 100%;
    height: calc(100vh - 60px);
    background: url(/assets/img/wangluo/FigmaDDSSlicePNGcc81125d0a6b201da49ecf55f1e9ffdc.png) center center no-repeat;
    background-size: cover;
    position: relative;
    margin-top: 60px;
}

.map-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #666;
    font-size: 18px;
}

/* 响应式设计 */
@media screen and (max-width: 1024px) {
    .map-controls {
        left: 20px;
        right: 20px;
        flex-direction: column;
        align-items: stretch;
    }

    .controls-left,
    .controls-right {
        width: 100%;
        justify-content: center;
    }

    .control-select {
        flex: 1;
        min-width: 100px;
    }

    .control-btn {
        margin-left: 20px;
    }

    .search-input {
        flex: 1;
        min-width: 150px;
    }
}

@media screen and (max-width: 768px) {
    .map-controls {
        top: 5px;
        left: 10px;
        right: 10px;
    }

    .controls-left {
        flex-wrap: wrap;
        height: auto;
        padding: 10px;
        gap: 10px;
    }

    .controls-right {
        width: 100%;
        margin-top: 10px;
    }

    .control-select {
        font-size: 16px;
        padding: 0 25px 0 15px;
    }

    .control-btn {
        font-size: 16px;
        margin-left: 10px;
    }

    .control-btn img {
        width: 18px;
        height: 18px;
    }

    .search-input {
        font-size: 16px;
    }

    .map-container {
        height: calc(100vh - 200px);
        margin-top: 200px;
    }
}

