 .toolSearch {
   width: 240px;
   position: absolute;
   left: 50px;
   right: 0;
   top: 5px !important;
   border: none;
   overflow: hidden;
 }

 .poiButtonResult {
   position: absolute;
   left: 50px;
   top: 46px;
   width: 240px;
   max-height: 300px;
   border: none;
   background: rgba(0, 60, 120, 0.80);
 }
 .poiButtonResult.has-select {
   left: 157px;
 }


 .deleteInput {
   position: absolute;
   top: 17px;
   right: 5px;
   line-height: 0;
   font-size: 18px;
   cursor: pointer;
   color: #ffffff;
 }

 .searchInput {
   width: 100%;
   height: 37px;
   background:rgba(0, 60, 120, 0.80);
   border: 1px solid rgba(255,255,255,0.22);
   color: rgba(255, 255, 255, 0.80);
   font-size: 16px;
   border-radius: 6px;
   padding: 0 6px;
 }

 input::-webkit-search-cancel-button {
   display: none;
 }

 .searchInput:focus {
   border: 1px solid rgba(255,255,255,0.22);
   box-shadow: none;
   outline: none;
 }

 /* 搜寻的结果显示 */
 .searchResults {
   width: 100%;
   max-height: 240px;
   overflow-y: auto;
 }

 .searchResults p {
   margin-left: -20px;
   width: 100%;
   text-align: center;
 }

 .searchResults ul {
   display: block;
  }

 .searchResults li {
  width: 100%;
  height: 32px;
  color: rgba(255, 255, 255, 0.80);
  cursor: pointer;
  position: relative;
  text-indent: 1em;
  font-size: 16px;
  line-height: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
 }

 /* .searchResults li::after {
   content: "";
   position: absolute;
   left: 0;
   bottom: -3px;
   width: 100%;
   height: 1px;
   background: rgba(255,255,255,0.2);
 } */

 .searchResults li:hover {
   background: rgba(255,255,255,0.2);
 }

 .gaodesousuo img {
   margin-right: 10px;
 }

 /*上下页数的样式 */
 .resultNextPages {
   width: 100%;
   height: 12%;
   color: #ebebebe7;
   cursor: pointer;
   font-size: 13px;
   position: absolute;
   bottom: 0;
   padding-left: 10px;
   line-height: 16px;
   background-color: rgba(40, 40, 40, 0.7);
 }

 .resultNextPages p {
   float: left;
 }

 /* 下一页 */
 .resultNextPages p:nth-last-child(1) {
   text-align: center;
   position: relative;
   right: -34px;
   width: 18px;
   border: 1px solid #f9ececb3;
 }

 /* 上一页 */
 .resultNextPages p:nth-last-child(2) {
   text-align: center;
   position: relative;
   right: -30px;
   width: 18px;
   border: 1px solid #f9ececb3;
 }

 /* 首页 */
 .resultNextPages p:nth-last-child(3) {
   text-align: center;
   position: relative;
   right: -10px;
   width: 35px;
   border: 1px solid #f9ececb3;
 }

 /* 页数 */
 .resultNextPages p:nth-last-child(4) {
   position: relative;
   right: -5px;
   width: 65px;
 }

 .resultNextPages p:nth-last-child(1):hover,
 .resultNextPages p:nth-last-child(2):hover,
 .resultNextPages p:nth-last-child(3):hover {
   text-decoration: underline;
 }



 .cesium-toolbar-button svg{display: none;}
 .cesium-toolbar-button{      
  width: 40px;
  height: 40px;
  background: url(../images/map-search-icon-normal1.svg) no-repeat;
  background-size: 100% 100%;
 
  cursor: pointer;
  border: none;
}
.cesium-toolbar-button:hover{
  width: 40px;
  height: 40px;
  background: url(../images/map-search-icon-select1.svg) no-repeat;
  background-size: 100% 100%;

  cursor: pointer;
  border: none;
  box-shadow: none;
}

/* 
 * mapbox版本的地名搜索，支持多服务
 */
.toolSearch.mapbox-ctl {
   overflow:auto;
   display: flex;
   width: 240px;
 }
 .searchInput.mapbox-ctl {
  border-radius: 0px 6px 6px 0px;
 }

.custom-select {
    position: relative;
    width: 160px;
}

.select-header {
    padding: 8px 12px;
    border-radius: 6px 0px 0px 6px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 60, 120, 0.80);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff
}

.arrow {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #fff;
}

/* 下拉选项 */
.select-options {
    position: absolute;
    width: 94px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-top: none;
    max-height: 150px;
    overflow-y: auto;
    display: none;
    z-index: 1000;
    background: rgba(0, 60, 120, 0.80);
    padding-left: 0px;
    left:50px;
}

.select-options li {
    padding: 8px 12px;
    cursor: pointer;
    list-style-type: none;
    text-align: left;
    color:#fff;
}

.select-options li:hover {
    background-color: #127AFF;
}