
#mapdiv {
    display: none;

}


textarea {
    border: 1px solid #0078A8;
    outline: none;
    padding: 0;
    margin: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: none;
    background-color: #f4f4f4;
}

/* 左侧固定区域 */
.map-div {
    position: fixed;
    left: 0;

    width: 50%;
    height: 89vh;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    /*padding: 15px; !* 添加内边距 *!*/
    box-sizing: border-box; /* 确保padding不影响总宽度 */
}

/* 地图区域占80%高度 */
#maplet {
    height: 80%;
    background-color: #f0f0f0; /* 可选样式 */
    flex-shrink: 0;
}

/* 地图信息区域占20%高度 */
#maphinx {
    height: 20%;
    flex-shrink: 0;
    margin-top: 10px; /* 与地图的间距 */
}

/* 文本区域样式 */
#mapinfo {
    height: 100%;
    width: 100%;
    border: 1px solid #0078A8;
    background-color: #f4f4f4;
    color: saddlebrown;
    resize: none; /* 禁止调整大小 */
    box-sizing: border-box;
    padding: 10px;
}

/* 右侧可滚动区域 */
.scrollable-content {
    margin-left: 50%;
    height: 89vh;
    overflow-y: auto;
    /*padding: 20px;*/
    box-sizing: border-box;
}

/* 响应式设计：小屏幕适配 */
@media (max-width: 768px) {
    .col-sm-6:first-child {
        position: relative;
        width: 100%;
        height: auto;
    }

    .scrollable-content {
        margin-left: 0;
        height: auto;
        width: 100% !important;
    }

    #maplet {
        height: 300px; /* 移动端固定高度 */
    }

    #maphinx {
        height: 150px; /* 移动端固定高度 */
    }
}

location {
    display: inline;
    /* font-size: 36px; */
    color: #D02090;
    font-weight: bold;
    cursor: crosshair;
}

.simple {
    display: flex; /* 将容器设置为Flex布局 */
    flex-wrap: wrap; /* 允许子项换行 */
    list-style: none; /* 去除列表默认的黑点[5,9,10](@ref) */
    padding: 0; /* 移除默认内边距 */
    margin: 0; /* 移除默认外边距 */
    gap: 10px; /* 可选：设置项目之间的间距 */
}

.simple li {
    /* 可选：为每个列表项设置样式，如内边距、背景色等 */
    padding: 8px 15px;
    background-color: #f0f0f0;
    border-radius: 4px;
}

.simple li p {
    margin-bottom: 0
}

geofea {
    display: inline;
    /* font-size: 36px; */
    color: #227722;
    /*color: #D2691E;*/
    /*color: #A52A2A	;*/
    /*color: #FF1493;*/
    /*color: #D2691E;*/
    /*color: ForestGreen;*/
    /*color: SeaGreen;*/
    /*color: MediumSeaGreen;*/
    /*color: MediumSeaGreen;*/
    /*color: LightSeaGreen;*/
    /*color: DarkCyan;*/
    font-weight: bold;
    cursor: crosshair;
}

geoname {
    display: inline;
    /* font-size: 36px; */
    color: #227722;
    /*color: #D2691E;*/
    /*color: #A52A2A	;*/
    /*color: #FF1493;*/
    /*color: #D2691E;*/
    /*color: ForestGreen;*/
    /*color: SeaGreen;*/
    /*color: MediumSeaGreen;*/
    /*color: MediumSeaGreen;*/
    /*color: LightSeaGreen;*/
    /*color: DarkCyan;*/
    font-weight: bold;
    cursor: crosshair;
}


.bd-sidebar-primary {

    width: 45%;
    /*scroll-auto: False;*/
    overflow: hidden;
}

/*.bd-sidebar {*/
/*    width: 55%;*/
/*}*/

#navbar-center {
    width: 100%;
}

/* Change the default width of secondary sidebar */
.bd-sidebar-secondary {
    width: 30%;
}

/* Maximum the main content */
.bd-main .bd-content .bd-article-container {
    max-width: 100%;
    /* default is 60em */
}

/* Set full page width  */
.bd-page-width {
    max-width: 100%;
    /* default is 88rem */
}