#main {
	height: 100%;
	height: 100%;
}

.anchorBL {
	display: none;
}

.agents {
	height: calc(100vh - 180px);
	width: 300px;
	background: #fff;
	position: absolute;
	top: 120px;
	left: 80px;
	z-index: 99;
	box-shadow: 0 0 20px rgba(0, 0, 0, .1);
	padding: 20px;
	padding-top: 120px;
	border-radius: 6px;
	display: none;
}

.agents>.title {
	/*font-weight: bold;*/
	font-size: 18px;
	color: #555;
	padding-bottom: 10px;
	position: absolute;
	left: 20px;
	top: 20px;
}

.agents>.search {
	position: absolute;
	left: 20px;
	top: 70px;
	width: 260px;
}

.agents>.search>input {
	width: 100%;
	font-size: 13px;
	padding: 0 15px;
	height: 34px;
	border: 1px solid #e1e2e3;
	box-shadow: none;
	outline: none;
	border-radius: 5px;
	font-weight: bold;
}

.agents>.search>input::placeholder {
	color: #ccc;
	font-weight: normal;
}

.agentList {
	height: 100%;
	width: 100%;
	overflow: scroll;
}

.agentList::-webkit-scrollbar {
	display: none;
}

.agentItem {
	padding: 10px;
	border-bottom: 1px solid #f5f6f7;
	position: relative;
	font-size: 12px;
	line-height: 1.8em;
	cursor: pointer;
	color: #aaa;
	border-radius: 6px;
}

.agentItem:hover {
	background: #f5f6f7;
}

.agentItem>.title {
	font-weight: bold;
	color: #555;
	font-size: 15px;
	padding-bottom: 5px;
}

.agentItem .city {
	display: inline-block;
	font-weight: bold;
	color: #777;
}

.mapContainer {
	height: calc(100vh - 70px);
	width: 100vw;
	padding-left: 350px;
	overflow: hidden;
	position: relative;
}

.mapContainer>.detail {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	height: calc(100vh - 70px);
	width: 100vw;
	padding: 50px 80px 60px 420px;
}

.mapContainer>.detail i {
	color: #fff;
	cursor: pointer;
	width: 40px;
	height: 40px;
	position: absolute;
	right: 110px;
	top: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, .5);
	border-radius: 10px;
	z-index: 99;
	display: none;
	line-height: 40px;
	text-align: center;
}

.mapContainer>.detail i:hover {
	background: rgba(0, 0, 0, .7);
}

.mapContainer>.detail>div {
	background: rgba(255, 255, 255, .9);
	width: 100%;
	height: 100%;
	border-radius: 6px;
	box-shadow: 0 0 20px rgba(0, 0, 0, .1);
	position: relative;
	overflow: hidden;
	display: none;
}

.agentItem.active {
	background: rgba(0, 0, 0, .8);
}

.agentItem.active,
.agentItem.active * {
	color: #fff;
}

.infoWindow {
	position: relative;
	height: 120px;
	width: 480px;
	border-radius: 6px;
	overflow: hidden;
	padding-left: 135px;
	background: #fff;
	padding-right: 20px;
	box-shadow: 0 0 20px rgba(0, 0, 0, .2);
}

.infoWindow>.title {
	font-size: 16px;
	font-weight: bold;
	color: #444;
	padding-top: 10px;
	padding-bottom: 15px;
}

.infoWindow>.city {
	color: #777;
	font-size: 12px;
}

.infoWindow>.address {
	color: #aaa;
	font-size: 12px;
}

.infoWindow:after {
	position: absolute;
	left: 0;
	top: 0;
	width: 120px;
	height: 120px;
	background-image: url('https://cdn.qipengit.com/file/de13d8b4-d478-4194-96c1-d8531d952b28.jpg');
	content: '';
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: #000;
}

.BMap_bubble_pop {
	padding: 0 !important;
	border: none !important;
	background: none !important;
}

.BMap_bubble_pop>img {
	top: 100px !important;
}

.BMap_bubble_top {
	display: none !important;
}

.BMap_bubble_content {
	top: 0 !important;
}

.agentItem.hidden {
	display: none;
}

@media screen and (max-width: 960px) {
	#main {
		display: none;
	}

	.agents {
		position: relative;
		top: 0;
		left: 0;
		width: 100%;
		border-radius: 0;
		background: none;
		padding-top: 0px;
		height: auto;
	}

	.mapContainer {
		display: none;
	}

	.agents>.title {
		display: none;
	}

	.agents>.search {
		top: 70px;
		width: 100%;
		position: fixed;
		left: 0;
		background: #000;
		z-index: 99;
		padding: 20px;
	}

	.agentList {
		height: auto;
		padding-top: 80px;
	}

	.agentItem>.title {
		color: #fff;
	}

	.agentItem {
		border-radius: 0;
		border-color: #414243;
	}

	.agentItem:hover,
	.agentItem.active {
		background: none !important;
	}

	.agents>.search>input {
		height: 40px;
	}
}