@charset "UTF-8";
.blueBottom{
	border-bottom:2px solid #00a4ff!important;
}

#areaLabel {
	width: 100%;
	height: 40px;
	font-size: 21px;
    color: #000;
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	justify-content: center;
	/* border-bottom: 1px solid #aaa; */
    padding-right: 1em;
    padding-left: 1em;
    /* padding-top: 0.1em;
    padding-bottom: 0.1em; */
    position: relative;
	z-index: 101;
}
#areaLabel::after {
    content: "";
    position: absolute;
    top: 50%;
    right: calc(1em + 18px / 2);
    width: 18px;
    height: 18px;
    border-width: 1px;
    border-style: solid solid none none;
    border-color: #000;
    transform: rotate(45deg) translateY(-50%);
    transform-origin: center;
}
#areaLabel span {
	width: 80px;
}
#areaLabel input {
	flex: 1;
	border: none;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

#addressSelectWrapper {
    display: none;
    position: fixed;
    top: 0;
	left:0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
	z-index: 20102; 
}
#addressSelect {
    /* z-index: 20101;  */
    position: absolute;
    bottom: 0;
    width: 100%;
    width: 100%;
    height: 70%;
    background-color: #fff;
    font-size:18px;
}
#addressSelect .tip {
    position: relative;
    height: 40px;
    line-height: 40px;
    width: 100%;
    border-bottom: 1px solid #dedede;
}
#addressSelect .tip h3 {
    width: 100%;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 21px;
    font-weight: normal;
    color: #666;
}
#addressSelect .tip #cancel {
    position: absolute;
    top: 0;
    right: 0;
    width: 39px;
    height: 39px;
    border: none;
    cursor: pointer;
	background-color: #fff;
}
#addressSelect .tip #cancel:before {
	content:"\f2d3";
	font-family: FontAwesome;
	font-size: 24px;
	color: #000000;

}
#addressSelect #address {
    width: 100%;
    height: 100%;
}
/*被选中的地址*/
.selected-address {
    width: 100%;
    height: 40px;
    line-height: 40px;
    border-bottom: 1px solid #ededed;
}
.selected-address:before {
    content: "";
    display: table;
}
.selected-address:after {
    content: "";
    display: table;
    clear: both;
}
.selected-address li {
    float: left;
    height: 40px;
    line-height: 39px;
    text-align: center;
    width: 20%;
    padding-right: .3em;
    padding-left: .3em;
    color: #333;
    border-bottom: 1px solid transparent;
    font-size: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    list-style:none;
}
.selected-address li.active {
    border-bottom-color: #3da5fe;
    color: #3da5fe;
}
/*各级地址列表*/
.address-content {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    /*加载中*/
}
.address-content ul {
    display: block;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    padding-top: 8px;
    padding-bottom: 88px;
}
.address-content ul li {
	list-style:none;
    height: 36px;
    line-height: 36px;
    padding-left: 1em;
    font-size: 18px;
    width: 100%;
    overflow-x: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #333;
    cursor: pointer;
}
.address-content ul li.active {
    background-color: #3da5ef;
    color: #fff;
}
.address-content .loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 14px 14px 14px 52px;
    background: rgba(0, 0, 0, 0.5) url("../images/loading.gif") no-repeat left 14px center / 24px 24px;
    color: #fff;
    border-radius: 6px;
    font-size: 16px;
}