#amap_shipment_track {
  height: calc(100vh - 120px) !important;
}

/* 查询框 */
.map-search-bar {
  width: 315px
}

.map-search-bar__outer {
  display: flex;
  position: absolute;
  top: 40px;
  left: 20px;
  padding: 5px 0 5px 5px;
}

.map-search-bar__outer .map-search-bar {
  background-color: white;
  border: 1px solid #EB8635;
  padding: 5px 16px;
  border-radius: 16px;
}

.map-search-bar__outer .show-bar {
  width: 30px;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.map-search-bar__outer .show-bar>div {
  background-color: white;
}

.map-search-bar__outer .show-bar .box, .box3 {
  width: 0px;
  height: 0px;
  border-bottom: 30px solid
}

.map-search-bar__outer .show-bar .box2 {
  width: 30px;
  cursor: pointer;
  padding-left: 15px;
  border: 1px solid white;
  border-radius: 16px;
}

.map-search-bar__outer .show-bar .box {
  transform: translate(0px, 0px);
}

.map-search-bar__outer .show-bar .box3 {
  transform: rotate(180deg);
}

#pointsearch {
  display: block;
  width: 100%;
  margin-top: 10px;
  margin-left: 10px;
}

#pointsearching {
  display: block;
  width: 100%;
  margin-top: 10px;
  margin-left: 10px;
}

/* 加载动画 */
.loading-backgroud {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  background-color: rgba(216, 216, 216, 0.5);
  z-index:99999;
}

.load-wrapp {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  margin: 0 10px 10px 0;
  padding: 10px 20px 20px;
  border-radius: 5px;
  text-align: center;
}

.load-wrapp p {
  padding: 0 0 10px;
}

.load-wrapp:last-child {
  margin-right: 0;
}

.spinner {
  position: relative;
  width: 45px;
  height: 45px;
  margin: 0 auto;
}

.bubble-1,
.bubble-2 {
  position: absolute;
  top: 0;
  width: 25px;
  height: 25px;
  border-radius: 100%;
  background-color: #4b9cdb;
}

.bubble-2 {
  top: auto;
  bottom: 0;
}

.load-9 .spinner {
  animation: loadingI 2s linear infinite;
}

.load-9 .bubble-1,
.load-9 .bubble-2 {
  animation: bounce 2s ease-in-out infinite;
}

.load-9 .bubble-2 {
  animation-delay: -1s;
}

@keyframes loadingI {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: scale(0);
  }

  50% {
    transform: scale(1);
  }
}
