@charset "UTF-8";

html {
	height: 100%;
}
body {
	margin: 0;
	height: 100%;
}
* {
	margin: 0;
	padding: 0;
}
*,
*::before,
*::after {
	box-sizing: border-box;
}

#areaLabel {
	width: 100%;
	height: 40px;
	font-size: 14px;
    color: #000;
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	justify-content: center;
	border-bottom: 1px solid #aaa;
    padding-right: 1em;
    padding-left: 1em;
    position: relative;
}
#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;
    width: 90%;
    height: 100%;
    z-index: 2;
    max-width:1000px;
}
#addressSelect {
    z-index: 999;
    position: absolute;
    top: 30%;
    width: 100%;
    height: 60%; border-radius:15px;
    background-color: #fff;
}
#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: 16px;
    font-weight: normal;
    color: #666;
}
#addressSelect .tip #cancel {
    position: absolute;
    top: 0;
    right: 0;
    width: 39px;
    height: 39px;
    color: #666;
    border: none;
    background: transparent url("images/cancel.png") no-repeat center;
    cursor: pointer;
}
#addressSelect #address {
    width: 100%;
    height: calc(100% - 50px);
}
/*被选中的地址*/
.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: 25%;
    padding-right: .3em;
    padding-left: .3em;
    color: #333;
    border-bottom: 1px solid transparent;
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
}
.selected-address li.active {
    border-bottom-color: #3da5fe;
    color: #3da5fe;
}
/*各级地址列表*/
.address-content {
    position: relative;
    width: 100%;
    height: calc(100% - 2.5rem);
    overflow: hidden;
    /*加载中*/
}
.address-content ul {
    display: block;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    padding-top: 8px;
    padding-bottom: 88px;
}
.address-content ul li {
    height: 36px;
    line-height: 36px;
    padding-left: 1em;
    font-size: 13px;
    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;
}