.jq-address-selector {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  width: 500px;
  max-width: 95%;
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  box-sizing: border-box;
  background: #fff;
}
.jq-address-selector__wrapper {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  z-index: 9999;
}
.jq-address-selector__mask {
  position: absolute;
  left: 0px;
  top: 0px;
  opacity: 0.25;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0);
  filter: progid:DXImageTransform.Microsoft.Alpha(opacity=25);
}
.jq-address-selector__title {
  position: relative;
  padding: 0 10px;
  height: 31px;
  line-height: 31px;
  background: #f3f3f3;
  font-size: 16px;
  color: #666;
  font-family: 'Microsoft YaHei';
}
.jq-address-selector__content {
  padding: 10px;
  background: #fff;
  font-size: 14px;
}
.jq-address-selector__select {
  width: 100%;
  color: #666;
  box-sizing: border-box;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -webkit-touch-callout: none;
  -webkit-text-size-adjust: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
}
.jq-address-selector__label {
  line-height: 2.5;
}
.jq-address-selector__footer {
  text-align: center;
  padding-bottom: 15px;
}
.jq-address-selector__btn {
  background: #19b3ec;
  border: 1px #19b3ec;
  border-radius: 2px;
  color: #fff;
  padding: 8px 0;
  width: 100px;
  cursor: pointer;
  font-size: 14px;
  -webkit-touch-callout: none;
  -webkit-text-size-adjust: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
}
.jq-address-selector__btn:hover, .jq-address-selector__btn:active {
  background: #127ea5;
  border: 1px #127ea5;
  color: #fff;
}
.jq-address-selector__cancel {
  margin-left: 10px;
  color: #333333;
  background: #ffffff;
  border: 1px solid #cccccc;
}
.jq-address-selector__cancel:hover, .jq-address-selector__cancel:active {
  background: #19b3ec;
  border: 1px #19b3ec;
  color: #fff;
}
.jq-address-selector__close {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 16px;
  color: #127ea5;
  font-weight: 700;
  text-decoration: none;
}
.jq-address-selector__close:hover, .jq-address-selector__close:active {
  background: #cecece;
}
.jq-address-selector__hide {
  display: none !important;
}