.city-plugin-box.active {
	display: block
}
.city-plugin-box {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1000;
}
.city-plugin-mask {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.1);

}
.city-plugin-box.active .city-plugin-modal-box {
	animation: fadeIn .5s;
}
@keyframes fadeIn {
	0% {
		opacity: 0
	}
	100% {
		opacity: 1
	}
}
.city-plugin-box .city-plugin-modal-box {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 1000px;
	height: 600px;
	background-color: #fff;
	transition: all .3s;
}
.city-plugin-title {
	line-height: 40px;
	height: 40px;
	padding: 0px 10px;
	color: #333;
	font-weight: bolder;
	border-bottom: 1px solid #eee;
}
.queryCity {
	display: flex;
	align-items: flex-start;
	padding: 10px;
}
.queryCity .queryCityLabel {
	flex: 0 0 100px;
	cursor: default;
	font-size: 15px;
	text-align: left;
}
.queryCity .queryCityUl {
	flex: 1;
	display: flex;
	flex-wrap: wrap;

}
.queryCity .queryCityUl li {
	position: relative;
	padding: 0px;
	flex: 0 0 10%;
	background-color: dodgerblue;
	color: #fff;
	line-height: 30px;
	height: 30px;
	cursor: pointer;
	margin-bottom: 5px;
	margin-right: 1%;
	text-align: center;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	-webkit-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
	transition: all .3s;
	border-radius: 2px;
}
.queryCity .queryCityUl li:hover {
	background-color: royalblue
}

.queryCity .queryCityUl#queryCityUl li {
	background-color: #B30032
}
.queryCity .queryCityUl .warn {
	width: 95%;
	background-color: #eee;
	text-align: center;
	line-height: 60px;
	height: 60px;
}
.queryCity .queryCityUl li.active {
	background-color: royalblue
}
.queryCityfooter {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 60px;
	border-top: 1px solid #eee;
	display: flex;
	justify-content: center;
	align-items: center;
}
.queryCityfooterBtn {
	background-color: rgba(38, 47, 68, .7);
	width: 200px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	cursor: pointer;
	color: #fff;
	transition: all .3s;
	border-radius: 2px;
	margin-left: 10px;
}
.queryCityfooterBtn:hover {
	background-color: royalblue
}

@media (max-width: 768px) {
	.city-plugin-box .city-plugin-modal-box {
		width: 100%;
		height: auto;
		overflow: auto;
	}
	.queryCity {
		flex-direction: column;
	}
	.queryCity .queryCityLabel {
		flex: 1;
	}
	.queryCity .queryCityUl {
		width: 100%;
	}
	.queryCity .queryCityUl li {
		flex: 0 0 24%;
	}
	#cityBox {
		background-color: #fff
	}
	.queryCityfooter {
		position: relative;
		bottom: auto;
		border: 0;
		justify-content: space-around;
	}
	.queryCityfooter .queryCityfooterBtn {
		margin: 0 auto;
	}
	.queryCity .queryCityUl .warn {
		width: 100%;
		font-size: 14px;
		line-height: 50px;
		height: 50px;
	}
}