@charset "UTF-8";
html {
  font-size: 100px;
}

body {
  margin: 0;
  padding: 0;
  overflow-y: scroll !important;
  font-size: 14px;
}

.footer {
  margin-top: 0;
  background-color: #2a56a1 !important;
}
.footer .link {
  border-bottom-color: rgba(255, 255, 255, 0.2) !important;
}

.yj-bmdt-header {
  background-color: #2a56a1;
  background-image: url(../images/yj-wx-bmdt-img-head-bg.png);
  background-size: cover;
  background-position: right bottom;
  background-repeat: no-repeat;
  height: 0.8rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: relative;
  box-sizing: border-box;
}
.yj-bmdt-header .logo {
  margin-left: 0.6rem;
  height: 0.55rem;
}
.yj-bmdt-header .right-container {
  margin-right: 0.4rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.yj-bmdt-header .right-container .bmdt-header-search-box {
  border: solid 1px #fff;
  border-radius: 0.17rem;
  height: 0.35rem;
  line-height: 0.35rem;
  width: 2.5rem;
  display: flex;
  flex-direction: row;
}
.yj-bmdt-header .right-container .bmdt-header-search-box input {
  display: block;
  border: 0;
  background: transparent;
  padding-left: 0.15rem;
  width: calc(100% - 0.4rem);
  height: 100%;
  color: #fff;
  font-size: 0.16rem;
  outline: none;
}
.yj-bmdt-header .right-container .bmdt-header-search-box input::-moz-placeholder {
  color: #fff;
}
.yj-bmdt-header .right-container .bmdt-header-search-box input::placeholder {
  color: #fff;
}
.yj-bmdt-header .right-container .bmdt-header-search-box button {
  background-color: transparent;
  background-image: url(../images/yj-wx-bmdt-ic-search-white.png);
  background-size: 0.2rem 0.2rem;
  background-repeat: no-repeat;
  background-position: center;
  width: 0.4rem;
  height: 100%;
  border: 0;
  cursor: pointer;
}
.yj-bmdt-header .right-container .go-home {
  font-size: 0.16rem;
  color: #fff;
  padding-left: 0.15rem;
  margin-left: 0.15rem;
  border-left: solid 1px #fff;
}

.map-container {
  height: calc(100vh - 0.8rem);
  min-height: 500px;
  position: relative;
}
.map-container #map {
  width: 100%;
  height: 100%;
}
.map-container .pannel-container {
  position: absolute;
  left: 0.4rem;
  top: 0.2rem;
  width: 5.74rem;
  height: 90%;
  max-height: 8.4rem;
}
.map-container .pannel-container div {
  position: relative;
  box-sizing: border-box;
}
.map-container .pannel-container .tabs-container {
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
  max-height: 2.2rem;
  border-radius: 0.05rem;
  box-shadow: 0 0 0.1rem 0 #cdc6bf;
  background-color: #fff;
  box-sizing: border-box;
  z-index: 10;
  transition: all 0.3s ease;
  padding: 0.14rem 0.2rem;
}
.map-container .pannel-container .tabs-container .section-name {
  text-align: center;
}
.map-container .pannel-container .tabs-container .section-name span {
  background-color: #fff;
  padding: 0 0.1rem;
  font-size: 0.24rem;
  font-weight: bold;
  color: #2a56a1;
  z-index: 2;
  position: relative;
}
.map-container .pannel-container .tabs-container .section-name::before {
  content: "";
  height: 1px;
  width: 100%;
  background-color: #e0eafb;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.map-container .pannel-container .tabs-container .tabs-list {
  *zoom: 1;
  min-height: 1.4rem;
  max-height: 1.4rem;
  overflow: hidden;
  transition: all 0.3s ease;
}
.map-container .pannel-container .tabs-container .tabs-list:after {
  display: block;
  clear: both;
  content: "";
  visibility: hidden;
  height: 0;
}
.map-container .pannel-container .tabs-container .tabs-list > div {
  float: left;
  width: 0.93rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  margin: 0.2rem;
  margin-bottom: 0;
}
.map-container .pannel-container .tabs-container .tabs-list > div img {
  width: 0.5rem;
  height: 0.5rem;
}
.map-container .pannel-container .tabs-container .tabs-list > div .name {
  width: 0.34rem;
  height: auto;
  font-size: 0.16rem;
  color: #333;
}
.map-container .pannel-container .tabs-container .tabs-list > div.active .name {
  color: #2f72da;
}
.map-container .pannel-container .tabs-container .fold {
  cursor: pointer;
  display: block;
  width: 100%;
  height: 0.14rem;
  background-image: url(../images/yj-wx-bmdt-ic-expand.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.15rem 0.14rem;
  margin: 0.15rem auto 0;
  transition: all 0.3s ease;
}
.map-container .pannel-container .tabs-container.unfold {
  max-height: 5rem;
}
.map-container .pannel-container .tabs-container.unfold .tabs-list {
  max-height: 5rem;
}
.map-container .pannel-container .tabs-container.unfold .fold {
  transform: rotate(180deg);
}
.map-container .pannel-container .search-result-container {
  position: absolute;
  left: 0;
  top: 2.4rem;
  width: 100%;
  height: calc(100% - 2.4rem);
  display: flex;
  flex-direction: column;
  border-radius: 0.05rem;
  box-shadow: 0 0 0.1rem 0 #cdc6bf;
  background-color: #fff;
  margin-top: 0.15rem;
  padding: 0.2rem;
}
.map-container .pannel-container .search-result-container .unit-list {
  flex-shrink: 0;
  *zoom: 1;
}
.map-container .pannel-container .search-result-container .unit-list:after {
  display: block;
  clear: both;
  content: "";
  visibility: hidden;
  height: 0;
}
.map-container .pannel-container .search-result-container .unit-list > div {
  float: left;
  width: 32%;
  margin-left: 2%;
  margin-bottom: 2%;
  height: 0.4rem;
  line-height: 0.4rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  color: #2a56a1;
  font-size: 0.16rem;
  border-radius: 0.04rem;
  background-color: #f2f5fa;
  cursor: pointer;
}
.map-container .pannel-container .search-result-container .unit-list > div:nth-child(3n+1) {
  margin-left: 0;
}
.map-container .pannel-container .search-result-container .unit-list > div.active {
  background-color: #2a56a1;
  color: #fff;
}
.map-container .pannel-container .search-result-container .map-search-container {
  flex-shrink: 0;
  height: 0.44rem;
  line-height: 0.44rem;
  border-radius: 0.06rem;
  overflow: hidden;
  background-color: #f2f5fa;
}
.map-container .pannel-container .search-result-container .map-search-container input {
  height: 100%;
  width: 100%;
  padding-right: 0.52rem;
  font-size: 0.16rem;
  background-color: #f2f5fa;
  padding-left: 0.15rem;
  border: 0;
}
.map-container .pannel-container .search-result-container .map-search-container button {
  width: 0.52rem;
  height: 100%;
  background-color: #f2f5fa;
  background-image: url(../images/yj-wx-bmdt-ic-search-blue.png);
  background-repeat: no-repeat;
  background-size: 0.18rem 0.18rem;
  background-position: center;
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  border: 0;
}
.map-container .pannel-container .search-result-container .poi-list {
  flex: 1;
  height: 100%;
  margin-top: 0.1rem;
  overflow-y: auto;
  padding-right: 0.1rem;
}
.map-container .pannel-container .search-result-container .poi-list::-webkit-scrollbar {
  width: 0.02rem;
}
.map-container .pannel-container .search-result-container .poi-list::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 0.02rem;
}
.map-container .pannel-container .search-result-container .poi-list::-webkit-scrollbar-thumb {
  background: #2a56a1;
  border-radius: 0.02rem;
}
.map-container .pannel-container .search-result-container .poi-list::-webkit-scrollbar-thumb:hover {
  background: #2a56a1;
  border-radius: 0.02rem;
}
.map-container .pannel-container .search-result-container .poi-list::-webkit-scrollbar-thumb:active {
  background: #2a56a1;
  border-radius: 0.02rem;
}
.map-container .pannel-container .search-result-container .poi-list .item {
  position: relative;
  background-color: #f3f6f9;
  height: 0.94rem;
  padding-left: 0.72rem;
  padding-top: 0.1rem;
  padding-right: 0.2rem;
  margin-bottom: 0.1rem;
  cursor: pointer;
}
.map-container .pannel-container .search-result-container .poi-list .item .num-container {
  width: 0.23rem;
  height: 0.36rem;
  position: absolute;
  top: 0.2rem;
  left: 0.22rem;
  background-image: url(../images/yj-wx-bmdt-ic-location.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  color: #fff;
  font-size: 0.16rem;
  text-align: center;
  line-height: 1.5;
}
.map-container .pannel-container .search-result-container .poi-list .item .name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.16rem;
  text-align: left;
}
.map-container .pannel-container .search-result-container .poi-list .item .address {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.14rem;
  color: #999;
  line-height: 1.4;
  margin-top: 0.05rem;
}
.map-container .pannel-container .search-result-container .poi-list .item .tel {
  font-size: 0.14rem;
  margin-top: 0.05rem;
  color: #999;
}
.map-container .pannel-container .search-result-container .map-navigation {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: #fff;
  display: none;
  flex-direction: column;
  padding: 0 0.1rem 0.1rem;
}
.map-container .pannel-container .search-result-container .map-navigation .back-container {
  border-bottom: solid 1px #f0f0f0;
  padding: 0.1rem 0;
  flex-shrink: 0;
}
.map-container .pannel-container .search-result-container .map-navigation .back-container span {
  background-color: #c2ddff;
  font-size: 0.16rem;
  padding: 0.06rem 0.15rem;
  cursor: pointer;
  border-radius: 0.06rem;
}
.map-container .pannel-container .search-result-container .map-navigation #panel {
  flex: 1;
  overflow-y: auto;
  width: 100%;
  height: 100%;
  margin-top: 0.1rem;
}
.map-container .pannel-container .search-result-container .map-navigation #panel * {
  box-sizing: content-box;
}
.map-container .pannel-container .search-result-container .map-navigation.show {
  display: flex;
}

#map img {
  max-width: initial;
}

.BMapLib_SearchInfoWindow *,
.BMap_pop * {
  box-sizing: content-box;
  font-size: 14px;
}

.search-info-window {
  min-height: 112px;
}

.search-info-window .info-content {
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.search-info-window .info-content .info {
  line-height: 1.5;
  font-size: 14px;
  flex: 1;
}

.search-info-window .info-content img {
  width: 100px;
  display: block;
}

.BMapLib_nav_tab li {
  box-sizing: content-box !important;
  font-size: 14px !important;
  line-height: 20px !important;
}

.BMap_pop input[type=button] {
  box-sizing: border-box;
}

/****  
(1920 - 1400) / 2 = 260
1920 - 260 = 1660
@media 屏幕宽度初始值设为1653 每个除以 1660
****/
@media screen and (max-width: 1653px) {
  html {
    font-size: 99.578313253px;
  }
}
@media screen and (max-width: 1643px) {
  html {
    font-size: 98.9759036145px;
  }
}
@media screen and (max-width: 1633px) {
  html {
    font-size: 98.3734939759px;
  }
}
@media screen and (max-width: 1623px) {
  html {
    font-size: 97.7710843373px;
  }
}
@media screen and (max-width: 1613px) {
  html {
    font-size: 97.1686746988px;
  }
}
@media screen and (max-width: 1603px) {
  html {
    font-size: 96.5662650602px;
  }
}
@media screen and (max-width: 1593px) {
  html {
    font-size: 95.9638554217px;
  }
}
@media screen and (max-width: 1583px) {
  html {
    font-size: 95.3614457831px;
  }
}
@media screen and (max-width: 1573px) {
  html {
    font-size: 94.7590361446px;
  }
}
@media screen and (max-width: 1563px) {
  html {
    font-size: 94.156626506px;
  }
}
@media screen and (max-width: 1553px) {
  html {
    font-size: 93.5542168675px;
  }
}
@media screen and (max-width: 1543px) {
  html {
    font-size: 92.9518072289px;
  }
}
@media screen and (max-width: 1533px) {
  html {
    font-size: 92.3493975904px;
  }
}
@media screen and (max-width: 1523px) {
  html {
    font-size: 91.7469879518px;
  }
}
@media screen and (max-width: 1513px) {
  html {
    font-size: 91.1445783133px;
  }
}
@media screen and (max-width: 1503px) {
  html {
    font-size: 90.5421686747px;
  }
}
@media screen and (max-width: 1493px) {
  html {
    font-size: 89.9397590361px;
  }
}
@media screen and (max-width: 1483px) {
  html {
    font-size: 89.3373493976px;
  }
}
@media screen and (max-width: 1473px) {
  html {
    font-size: 88.734939759px;
  }
}
@media screen and (max-width: 1463px) {
  html {
    font-size: 88.1325301205px;
  }
}
@media screen and (max-width: 1453px) {
  html {
    font-size: 87.5301204819px;
  }
}
@media screen and (max-width: 1443px) {
  html {
    font-size: 86.9277108434px;
  }
}
@media screen and (max-width: 1433px) {
  html {
    font-size: 86.3253012048px;
  }
}
@media screen and (max-width: 1423px) {
  html {
    font-size: 85.7228915663px;
  }
}
@media screen and (max-width: 1413px) {
  html {
    font-size: 85.1204819277px;
  }
}
@media screen and (max-width: 1403px) {
  html {
    font-size: 84.5180722892px;
  }
}
@media screen and (max-width: 1393px) {
  html {
    font-size: 83.9156626506px;
  }
}
@media screen and (max-width: 1383px) {
  html {
    font-size: 83.313253012px;
  }
}
@media screen and (max-width: 1373px) {
  html {
    font-size: 82.7108433735px;
  }
}
@media screen and (max-width: 1363px) {
  html {
    font-size: 82.1084337349px;
  }
}
@media screen and (max-width: 1353px) {
  html {
    font-size: 81.5060240964px;
  }
}
@media screen and (max-width: 1343px) {
  html {
    font-size: 80.9036144578px;
  }
}
@media screen and (max-width: 1333px) {
  html {
    font-size: 80.3012048193px;
  }
}
@media screen and (max-width: 1323px) {
  html {
    font-size: 79.6987951807px;
  }
}
@media screen and (max-width: 1313px) {
  html {
    font-size: 79.0963855422px;
  }
}
@media screen and (max-width: 1303px) {
  html {
    font-size: 78.4939759036px;
  }
}
@media screen and (max-width: 1293px) {
  html {
    font-size: 77.8915662651px;
  }
}
@media screen and (max-width: 1283px) {
  html {
    font-size: 77.2891566265px;
  }
}
@media screen and (max-width: 1273px) {
  html {
    font-size: 76.686746988px;
  }
}
@media screen and (max-width: 1263px) {
  html {
    font-size: 76.0843373494px;
  }
}
@media screen and (max-width: 1253px) {
  html {
    font-size: 75.4819277108px;
  }
}
@media screen and (max-width: 1243px) {
  html {
    font-size: 74.8795180723px;
  }
}
@media screen and (max-width: 1233px) {
  html {
    font-size: 74.2771084337px;
  }
}
@media screen and (max-width: 1223px) {
  html {
    font-size: 73.6746987952px;
  }
}
@media screen and (max-width: 1213px) {
  html {
    font-size: 73.0722891566px;
  }
}
@media screen and (max-width: 1203px) {
  html {
    font-size: 72.4698795181px;
  }
}
@media screen and (max-width: 1193px) {
  html {
    font-size: 71.8674698795px;
  }
}
@media screen and (max-width: 1183px) {
  html {
    font-size: 71.265060241px;
  }
}
@media screen and (max-width: 1173px) {
  html {
    font-size: 70.6626506024px;
  }
}
@media screen and (max-width: 1163px) {
  html {
    font-size: 70.0602409639px;
  }
}
@media screen and (max-width: 1153px) {
  html {
    font-size: 69.4578313253px;
  }
}
@media screen and (max-width: 1143px) {
  html {
    font-size: 68.8554216867px;
  }
}
@media screen and (max-width: 1133px) {
  html {
    font-size: 68.2530120482px;
  }
}
@media screen and (max-width: 1123px) {
  html {
    font-size: 67.6506024096px;
  }
}
@media screen and (max-width: 1113px) {
  html {
    font-size: 67.0481927711px;
  }
}
@media screen and (max-width: 1103px) {
  html {
    font-size: 66.4457831325px;
  }
}
@media screen and (max-width: 1093px) {
  html {
    font-size: 65.843373494px;
  }
}
@media screen and (max-width: 1083px) {
  html {
    font-size: 65.2409638554px;
  }
}
@media screen and (max-width: 1073px) {
  html {
    font-size: 64.6385542169px;
  }
}
@media screen and (max-width: 1063px) {
  html {
    font-size: 64.0361445783px;
  }
}
@media screen and (max-width: 1053px) {
  html {
    font-size: 63.4337349398px;
  }
}
@media screen and (max-width: 1043px) {
  html {
    font-size: 62.8313253012px;
  }
}
@media screen and (max-width: 1033px) {
  html {
    font-size: 62.2289156627px;
  }
}
@media screen and (max-width: 1023px) {
  html {
    font-size: 61.6265060241px;
  }
}
@media screen and (max-width: 1013px) {
  html {
    font-size: 61.0240963855px;
  }
}
@media screen and (max-width: 1003px) {
  html {
    font-size: 60.421686747px;
  }
}
@media screen and (max-width: 993px) {
  html {
    font-size: 59.8192771084px;
  }
}
@media screen and (max-width: 983px) {
  html {
    font-size: 59.2168674699px;
  }
}
@media screen and (max-width: 973px) {
  html {
    font-size: 58.6144578313px;
  }
}
@media screen and (max-width: 963px) {
  html {
    font-size: 58.0120481928px;
  }
}
@media screen and (max-width: 953px) {
  html {
    font-size: 57.4096385542px;
  }
}
@media screen and (max-width: 943px) {
  html {
    font-size: 56.8072289157px;
  }
}
@media screen and (max-width: 933px) {
  html {
    font-size: 56.2048192771px;
  }
}
@media screen and (max-width: 923px) {
  html {
    font-size: 55.6024096386px;
  }
}
@media screen and (max-width: 913px) {
  html {
    font-size: 55px;
  }
}
@media screen and (max-width: 903px) {
  html {
    font-size: 54.3975903614px;
  }
}
@media screen and (max-width: 893px) {
  html {
    font-size: 53.7951807229px;
  }
}
@media screen and (max-width: 883px) {
  html {
    font-size: 53.1927710843px;
  }
}
@media screen and (max-width: 873px) {
  html {
    font-size: 52.5903614458px;
  }
}
@media screen and (max-width: 863px) {
  html {
    font-size: 51.9879518072px;
  }
}
@media screen and (max-width: 853px) {
  html {
    font-size: 51.3855421687px;
  }
}
@media screen and (max-width: 843px) {
  html {
    font-size: 50.7831325301px;
  }
}
@media screen and (max-width: 833px) {
  html {
    font-size: 50.1807228916px;
  }
}
@media screen and (max-width: 823px) {
  html {
    font-size: 49.578313253px;
  }
}
@media screen and (max-width: 813px) {
  html {
    font-size: 48.9759036145px;
  }
}
@media screen and (max-width: 803px) {
  html {
    font-size: 48.3734939759px;
  }
}
@media screen and (max-width: 793px) {
  html {
    font-size: 47.7710843373px;
  }
}
@media screen and (max-width: 783px) {
  html {
    font-size: 47.1686746988px;
  }
}
@media screen and (max-width: 773px) {
  html {
    font-size: 46.5662650602px;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 80px;
  }
  .yj-bmdt-header {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0.3rem 0;
  }
  .yj-bmdt-header .logo {
    margin-left: auto;
    margin-right: auto;
  }
  .yj-bmdt-header .right-container {
    margin-right: 0;
    margin-top: 0.2rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
  }
  .yj-bmdt-header .right-container .bmdt-header-search-box {
    border-radius: 0.4rem;
    height: 0.4rem;
    line-height: 0.4rem;
    width: 70%;
    display: flex;
    flex-direction: row;
  }
  .yj-bmdt-header .right-container .bmdt-header-search-box input {
    display: block;
    border: 0;
    background: transparent;
    padding-left: 0.25rem;
    width: calc(100% - 0.6rem);
    height: 100%;
    color: #fff;
    font-size: 0.2rem;
  }
  .yj-bmdt-header .right-container .bmdt-header-search-box button {
    background-size: 0.3rem 0.3rem;
    width: 0.6rem;
  }
  .yj-bmdt-header .right-container .go-home {
    font-size: 0.18rem;
    color: #fff;
    padding-left: 0;
    margin-left: 0;
    border-left: 0;
    position: absolute;
    left: 0.1rem;
    top: -0.8rem;
  }
  .map-container {
    height: auto;
    min-height: initial;
    position: relative;
  }
  .map-container #map {
    width: 100%;
    height: 5rem;
  }
  .map-container .pannel-container {
    position: relative;
    left: auto;
    top: auto;
    width: calc(100% - 0.3rem);
    margin: 0 auto;
    height: auto;
    max-height: initial;
    display: flex;
    flex-direction: column;
  }
  .map-container .pannel-container .tabs-container {
    position: relative;
  }
  .map-container .pannel-container .tabs-container .tabs-list {
    min-height: 1.3rem;
    max-height: 1.3rem;
  }
  .map-container .pannel-container .tabs-container .tabs-list > div {
    width: 25%;
    margin: 0;
    margin-top: 0.136rem;
    margin-bottom: 0;
    justify-content: center;
  }
  .map-container .pannel-container .tabs-container .tabs-list > div img {
    width: 0.3rem;
    height: 0.3rem;
    margin-right: 0.1rem;
  }
  .map-container .pannel-container .tabs-container .tabs-list > div .name {
    width: 0.36rem;
    font-size: 0.18rem;
  }
  .map-container .pannel-container .tabs-container.unfold {
    max-height: 10rem;
  }
  .map-container .pannel-container .tabs-container.unfold .tabs-list {
    max-height: 10rem;
  }
  .map-container .pannel-container .search-result-container {
    position: relative;
    top: 0;
    flex: none;
    height: 5rem;
    display: flex;
    flex-direction: column;
    border-radius: 0.05rem;
    box-shadow: 0 0 0.1rem 0 #cdc6bf;
    background-color: #fff;
    margin-top: 0.15rem;
    padding: 0.2rem;
  }
  .map-container .pannel-container .search-result-container .unit-list {
    flex-shrink: 0;
    *zoom: 1;
  }
  .map-container .pannel-container .search-result-container .unit-list:after {
    display: block;
    clear: both;
    content: "";
    visibility: hidden;
    height: 0;
  }
  .map-container .pannel-container .search-result-container .unit-list > div {
    float: left;
    width: 32%;
    margin-left: 2%;
    margin-bottom: 2%;
    height: 0.4rem;
    line-height: 0.4rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    color: #333;
    font-size: 0.18rem;
    border-radius: 0.04rem;
    cursor: pointer;
  }
  .map-container .pannel-container .search-result-container .unit-list > div:nth-child(3n+1) {
    margin-left: 0;
  }
  .map-container .pannel-container .search-result-container .map-search-container {
    flex-shrink: 0;
    height: 0.44rem;
    line-height: 0.44rem;
    border-radius: 0.05rem;
    overflow: hidden;
  }
  .map-container .pannel-container .search-result-container .map-search-container input {
    height: 100%;
    width: 100%;
    padding-right: 0.52rem;
    font-size: 0.18rem;
    padding-left: 0.15rem;
  }
  .map-container .pannel-container .search-result-container .map-search-container button {
    width: 0.52rem;
    height: 100%;
    background-size: 0.18rem 0.18rem;
    background-position: center;
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
  }
  .map-container .pannel-container .search-result-container .poi-list {
    flex: 1;
    height: 100%;
    margin-top: 0.1rem;
    overflow-y: auto;
  }
  .map-container .pannel-container .search-result-container .poi-list .item {
    padding-left: 0.2rem;
    padding-right: 0.2rem;
    margin-top: 0.15rem;
    height: auto;
    padding-bottom: 0.1rem;
  }
  .map-container .pannel-container .search-result-container .poi-list .item .num-container {
    display: none;
  }
  .map-container .pannel-container .search-result-container .poi-list .item .name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.2rem;
    text-align: left;
  }
  .map-container .pannel-container .search-result-container .poi-list .item .address {
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical; /*设置对齐模式*/
    -webkit-line-clamp: 2; /*设置多行的行数*/
    font-size: 0.18rem;
    color: #999;
    line-height: 1.4;
    margin-top: 0.08rem;
  }
  .map-container .pannel-container .search-result-container .poi-list .item .tel {
    font-size: 0.18rem;
  }
  .map-container .pannel-container .search-result-container .map-navigation {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: #fff;
    display: none;
    flex-direction: column;
    padding: 0 0.1rem 0.1rem;
  }
  .map-container .pannel-container .search-result-container .map-navigation .back-container {
    border-bottom: solid 1px #f0f0f0;
    padding: 0.1rem 0;
    flex-shrink: 0;
  }
  .map-container .pannel-container .search-result-container .map-navigation .back-container span {
    background-color: #c2ddff;
    font-size: 0.18rem;
    padding: 0.06rem 0.15rem;
    cursor: pointer;
    border-radius: 0.06rem;
  }
  .map-container .pannel-container .search-result-container .map-navigation #panel {
    flex: 1;
    overflow-y: auto;
    width: 100%;
    height: 100%;
    margin-top: 0.1rem;
  }
  .map-container .pannel-container .search-result-container .map-navigation #panel * {
    box-sizing: content-box;
  }
  .map-container .pannel-container .search-result-container .map-navigation.show {
    display: flex;
  }
  .BMapLib_SearchInfoWindow *,
  .BMap_pop * {
    box-sizing: content-box;
    font-size: 12px;
  }
  .search-info-window {
    min-height: 80px;
  }
  .search-info-window .info-content .info {
    font-size: 12px;
  }
  .BMapLib_nav_tab li {
    box-sizing: content-box !important;
    font-size: 12px !important;
    line-height: 18px !important;
  }
}
@media screen and (max-width: 360px) {
  html {
    font-size: 65px;
  }
}