body {
      margin: 0;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto;
    }

    #mapjun-map {
      width: 100%;
      height: 600px;
    }

    /* 弹窗 */
    .ol-popup {
      position: absolute;
      background: rgba(255, 255, 255, 0.95);
      border-radius: 18px;
      min-width: 250px;
      transform: translate(-50%, -120%);
      pointer-events: none;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
      backdrop-filter: blur(15px);
    }

    .popup-content {
      padding: 16px 20px;
      /* 设定最小宽度，但不能超过屏幕或容器宽度 */
      min-width: 280px; 
      max-width: 500px; /* 改为 max-width 更安全 */
      width: auto;      /* 让宽度根据内容自适应 */
    }

    .popup-title {
      /* text-align: center; */
      font-size: 18px;
      font-weight: 600;
      color: #111;
      margin-bottom: 8px;
    }

    .popup-desc table {
      width: 100%;
      border-collapse: collapse;
      border: none;
      background:none
    }

    .popup-desc td {
      padding: 4px 6px;
      border: none;
      border-top:0 !important;
    }

    .popup-desc td.status {
      text-align: right;
      font-weight: 600;
    }

    .popup-desc td.status.green {
      color: #28a745;
    }
 
    .popup-desc td.status.blue {
      color: #007aff;
    }

    .ol-popup:after {
      content: "";
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      border-width: 10px 10px 0 10px;
      border-style: solid;
      border-color: rgba(255, 255, 255, 0.95) transparent transparent transparent;
    }

div#mapjun-popup hr.divider,
#mapjun-popup .divider {
    display: block !important;
    border: none !important;
    border-top: 1px solid #dcdcdc !important;
    height: 0 !important;
    min-height: 0 !important;
    margin: 6px 0 !important;
    padding: 0 !important;
    
    /* 核心：缩放实现 0.5px 视觉感 */
    transform: scaleY(0.5) !important;
    transform-origin: center top !important;
    
    /* 兼容性 */
    -webkit-transform: scaleY(0.5) !important;
}

    /* 搜索框 */
    .search-select-container {
      width: 100%;
      padding: 15px;
      background: white;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      display: flex;
      justify-content: center;
    }

    .search-box {
      width: 100%;
      position: relative;
    }

    .search-input {
      width: 100%;
      padding: 10px 14px;
      border-radius: 5px;
      border: 1px solid #ccc;
      font-size: 15px;
      outline: none;
      transition: 0.25s;
    }

    .search-input:focus {
      border-color: #007aff;
      box-shadow: 0 0 0 2px rgba(0, 122, 255, 0.2);
    }

    .dropdown {
      position: absolute;
      top: 44px;
      width: 100%;
      background: white;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      display: none;
      max-height: 200px;
      overflow-y: auto;
      z-index: 1000;
    }

    .dropdown-item {
      padding: 10px 14px;
      cursor: pointer;
      font-size: 15px;
      transition: 0.2s;
    }

    .dropdown-item:hover {
      background: #f0f4ff;
    }

    /* 搜索容器 */
.mapjun-search-container {
    width: 100%;
    max-width: 1000px;
    margin: 50px auto 30px auto; /* 这里的 30px 就是搜索框和地图之间的距离，你可以根据需要调大 */
    position: relative;
    z-index: 30;
}

/* 如果你想单独控制间距，也可以这样写 */
.mapjun-search-container {
    margin-bottom: 50px !important; /* 增加到 35px 左右视觉上会更舒展 */
}
    

