/* location.html 页面样式 - 修改定位 */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
}

.page {
	min-height: 100vh;
	padding: 0;
	padding-bottom: 8rem;
}

.top-bar {
	display: flex;
	align-items: center;
	min-height: 5.8rem;
	background-color: #EBF4FF;
}

.top-bar .back {
	padding-left: 1.6rem;
	padding-top: 0.3rem;
}

.back-img {
	width: 1rem;
}

.top-bar .title {
	flex: 1;
	text-align: center;
	font-size: 1.7rem;
	font-weight: 600;
	color: #333;
}

.top-bar .placeholder {
	width: 4rem;
}

.search-bar {
	padding: 1rem 1.4rem;
	background-color: #fff;
	background-color: #EBF4FF;
}

.search-input {
	width: 100%;
	height: 3rem;
	border: 1px solid #1279FE;
	border-radius: 2rem;
	padding: 0 1.6rem;
	font-size: 1.2rem;
	color: #666;
	background-color: #fff;
	background-image: url('../img/search1.png');
	background-size: 1.4rem 1.4rem;
	background-repeat: no-repeat;
	background-position: right 1.2rem center;
}

.search-input:hover {
	border: 1px solid #1279FE;
}

.current-wrap {
	background: #fff;
	border-radius: 0.8rem;
	padding: 1.4rem;
	margin: 1.4rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-shadow: 0 0.1rem 0.3rem rgba(0, 0, 0, 0.05);
	border: 1px solid #e1e1e1;
}

.current-wrap .label {
	font-size: 1.4rem;
	font-weight: 600;
	color: #333;
	margin-bottom: 1rem;
}

.current-wrap .name {
	font-size: 1.2rem;
	color: #333;
}

.current-wrap .re-loc {
	color: #1279FE;
	font-size: 1.2rem;
	display: flex;
	align-items: center;
	gap: 0.4rem;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
}

.current-wrap .re-loc::before {
	content: '';
	width: 1.6rem;
	height: 1.6rem;
	background: url("../img/dw.png") no-repeat center / contain;
}

.current-wrap .current-address {
	cursor: pointer;
	flex: 1;
}

.suggest-list {
	margin: 0 1.4rem;
	border-radius: 0.8rem;
	border: 1px solid #e1e1e1;
	padding: 0 1.4rem;
}

.suggest-item {
	background: #fff;
	padding: 1.6rem 0;
	display: flex;
	align-items: flex-start;
	gap: 1.2rem;
	border-bottom: 1px dashed #999;
}
.suggest-item:last-child { border-bottom: none; }
.suggest-item .icon {
	width: 1rem;
	margin-top: 0.2rem;
	content: url('../img/location3.png');
}

.suggest-item .content {
	flex: 1;
}

.suggest-item .name {
	font-size: 1.2rem;
	color: #333;
	margin-bottom: 0.8rem;
}

.suggest-item .info {
	display: flex;
	align-items: center;
	gap: 1.6rem;
	font-size: 1.2rem;
	color: #666;
}

.suggest-hint {
	padding: 1.6rem;
	font-size: 1.4rem;
	color: #999;
	text-align: center;
}
.address {
	flex: 1;
}
