#address-popup .popup-title {
  border-bottom: 0;
}
.change-address .content {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.change-address .content .list {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.change-address .content .list .navbar-list {
  display: flex;
  border-bottom: 1px solid #f1f1f1;
  margin: 10px 0;
}

.change-address .content .list .navbar-list li {
  padding: 8px 20px;
  cursor: pointer;
  position: relative;
  color: #888888;
}
.change-address .content .list .navbar-list li.select {
  color: #222222;
}
.change-address .content .list .navbar-list li.select::after {
  content: "";
  display: block;
  background-color: #222222;
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
}
.change-address .content .list .address-content-list {
  flex-grow: 1;
  height: 1px;
  position: relative;
  margin: 10px 0;
}
.change-address .content .list .address-content-list>ul{ 
  display: none;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  box-sizing: border-box;
}
.change-address .content .list .address-content-list>ul.show {
  display: block;
}
.change-address .content .list .address-content-list>ul li {
  padding: 15px 20px;
  color: #222222;
  cursor: pointer;
}
.change-address .content .list .address-content-list>ul li.select {
  background-color: #efefef;
}
.change-address .content .list .address-content-list>ul>div {
  display: none;
}

.change-address .content .list .address-content-list::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(top, transparent,white);
  background: -webkit-linear-gradient(top, transparent,white);
  background: -moz-linear-gradient(top, transparent,white);
  background: -ms-linear-gradient(top, transparent,white);
}

.change-address .content .btns {
  padding: 20px 0;
  border-top: 1px solid #f1f1f1;
}

.change-address .content .btns .confirm_btn {
  background-color: #000;
  color: #fff;
  width: 40%;
  border-radius: 0;
  margin-left: auto;
  margin-right: auto;
  display: block;
}