.urgent-select-wrap{
    position: absolute;
    left: 0;
    right: 0;
}
.urgent-select-pop{
    background-color: map-get($base,pop-bgcolor);
    position: relative;
    z-index: 1100;
    padding: .15rem .15rem .1rem;
}
.select-pop-title{
    font-size: map-get($benmu-font,font-15);
    color: map-get($base,base-gray);
}
.search-hot-pop{
    padding: .1rem 0;
}
.urgent-select-pop-circle{
    margin: 0 .1rem;
    border-radius: 0 0 .05rem .05rem;
    @include border($border-width:1px 0 0 0,$border-color:map-get($base,border-color));
}
/*ionic pop*/
@-webkit-keyframes g {
  0% {
    -webkit-transform: scale(1.3);
    opacity: 0
  }
  to {
    -webkit-transform: scale(1);
    opacity: 1
  }
}

@keyframes g {
  0% {
    transform: scale(1.3);
    opacity: 0
  }
  to {
    transform: scale(1);
    opacity: 1
  }
}
@-webkit-keyframes f {
  0% {
    -webkit-transform: scale(1);
    opacity: 1
  }
  to {
    -webkit-transform: scale(.8);
    opacity: 0
  }
}

@keyframes f {
  0% {
    transform: scale(1);
    opacity: 1
  }
  to {
    transform: scale(.8);
    opacity: 0
  }
}
.hairline-top:before {
  top: 0;
  bottom: auto;
  transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  transform: scaleY(.5);
  -webkit-transform: scaleY(.5)
}

.hairline-bottom:after,
.hairline-top:before {
  content: "";
  position: absolute;
  background-color: #ddd;
  display: block;
  left: 0;
  right: auto;
  height: 1px;
  width: 100%
}

.hairline-bottom:after {
  top: atuo;
  bottom: 0;
  transform-origin: 0 100%;
  -webkit-transform-origin: 0 100%;
  transform: scaleY(.5);
  -webkit-transform: scaleY(.5)
}

.hairline-left:before {
  left: 0;
  right: auto;
  transform-origin: 0 50%;
  -webkit-transform-origin: 0 50%;
  transform: scaleX(.5);
  -webkit-transform: scaleX(.5)
}

.hairline-left:before,
.hairline-right:after {
  content: "";
  position: absolute;
  background-color: #ddd;
  display: block;
  top: 0;
  bottom: auto;
  height: 100%;
  width: 1px
}

.hairline-right:after {
  left: auto;
  right: 0;
  transform-origin: 100% 50%;
  -webkit-transform-origin: 100% 50%;
  transform: scaleX(.5);
  -webkit-transform: scaleX(.5)
}
.backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 11;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .4);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity .1s linear;
  transition: opacity .1s linear
}

.backdrop.visible {
  visibility: visible
}

.backdrop.active {
  opacity: 1
}

.popup-container {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: transparent;
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
  z-index: 12;
  visibility: hidden
}

.popup-container.popup-showing {
  visibility: visible
}

.popup-container.popup-hidden .popup {
  -webkit-animation-name: f;
  animation-name: f;
  -webkit-animation-duration: .1s;
  animation-duration: .1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both
}

.popup-container.active .popup {
  -webkit-animation-name: g;
  animation-name: g;
  -webkit-animation-duration: .2s;
  animation-duration: .2s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both
}

.popup-container .popup {
  width: 250px;
  max-width: 100%;
  max-height: 90%;
  border-radius: 0;
  background: #fff;
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column
}

.popup-container input,
.popup-container textarea {
  width: 100%
}

.popup-head {
  padding: 15px 10px;
  border-bottom: 1px solid #eee;
  text-align: center
}

.popup-title {
  margin: 0;
  padding: 0;
  font-size: 15px
}

.popup-sub-title {
  margin: 5px 0 0;
  padding: 0;
  font-weight: 400;
  font-size: 11px
}

.popup-body {
  padding: 22px 18px;
  overflow: auto;
  color: #4e5a6c;
  font-size: 15px;
}

.popup-buttons {
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  padding: 10px;
  min-height: 65px
}

.popup-buttons .button {
  -webkit-box-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: block;
  min-height: 45px;
  border-radius: 2px;
  line-height: 20px;
}

.popup-buttons .button:last-child {
  margin-right: 0
}

.popup-open,
.popup-open.modal-open .modal {
  pointer-events: none
}

.popup-open .popup,
.popup-open .popup-backdrop {
  pointer-events: auto
}

.popup-container.popup-hidden .popup {
  -webkit-animation-duration: .1s;
  animation-duration: .1s
}
.popup-container .popup{
    color: #484746;
    width: 275px;
    border-radius: 4px;
    font-size: .15rem;
}
.popup-container.active .popup {
  -webkit-animation-duration: .3s;
  animation-duration: .3s
}
.loading-container {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 13;
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-transition: opacity .2s linear;
  transition: opacity .2s linear;
  visibility: hidden;
  opacity: 0;
}

.loading-container:not(.visible) .icon,
.loading-container:not(.visible) .spinner {
  display: none;
}

.loading-container.visible {
  visibility: visible;
}

.loading-container.active {
  opacity: 1;
}
.active {
    -webkit-animation-name: g;
    animation-name: g;
    -webkit-animation-duration: .2s;
    animation-duration: .2s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.loading-container .loading {
  padding: 25px 15px 18px;
  background-color: rgba(0, 0, 0, .8);
  border-radius: 5px;
  color: #fff;
  text-align: center;
  text-overflow: ellipsis;
  font-size: 15px
}
.loading-container .tips {
  font-size: 15px;
  line-height: 14px;
  display: block;
  margin-top: 5px;
}
.loading-container .toast-bm {
    width: 125px;
    height: 120px;
}
.spinner-ios, .spinner-ios-small {
    stroke: #69717d;
    fill: #484746;
}
.loading-container .spinner svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
  fill: #fff
}
.loading-container .loading-bm{
    padding: 42px 28px;
}

.button {
  border: 1px solid transparent;
  background-color: #fff;
  color: #444;
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0 12px;
  min-width: 52px;
  min-height: 47px;
  border-radius: 4px;
  vertical-align: top;
  text-align: center;
  text-overflow: ellipsis;
  font-size: 18px;
  line-height: 42px;
  cursor: pointer
}

.button:hover {
  color: #444;
  text-decoration: none
}

.button.activated,
.button.active {
  border-color: #a2a2a2;
  background-color: #e5e5e5
}

.button:after {
  position: absolute;
  top: -6px;
  right: -6px;
  bottom: -6px;
  left: -6px;
  content: " "
}
.popup-container .von-popup .popup-buttons {
  padding: 0;
  min-height: 45px
}
.popup-container .von-popup .popup-buttons .button:first-of-type {
  border-bottom-left-radius: 4px
}

.popup-container .von-popup .popup-buttons .button:last-of-type {
  border-right: none;
  border-bottom-right-radius: 4px
}

