#map_type .show {
	background-color: #4285f4;
	color: #ffffff;
}

.map_list_item {
	display: flex;
	width: 100%;

	background-color: #ffffff;
	border-bottom: 1px solid #c9bcbc;
}

.map_list_item_left {
	display: flex;
	width: 13%;
	min-height: 50px;
	justify-content: center;
	align-items: center;
}

.map_list_item_right {
	width: 80%;
	display: flex;
	flex-direction: column;
	font-size: 12px;
	min-height: 50px;
}

.map_list_item_right div {
	width: 100%;
	min-height: 25px;
	display: flex;
	justify-content: start;
	align-items: center;
	margin-top: 2px;
	margin-bottom: 2px;
}

#map_contents {
	display: flex;
	border: 1px solid #ddd;
	box-sizing: border-box;
	width: 100%;
	height: 520px;
	flex-direction: column;
	border-radius:10px ;
	overflow: hidden;
	box-shadow: 0 0 0.2rem #ddd;
}

#container {
	width: 100%;
	height: 300px;
}

#map_types {
	display: flex;
	box-sizing: border-box;
	width: 100%;
	height: 220px;
	flex-direction: column;
}

#map_type {
	display: flex;
	height: 50px;
	box-sizing: border-box;
	border-bottom: 1px solid #000000;
	border-top: 1px solid #000000;
}

.map_type_item {
	width: 25%;
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	border-right: 1px solid #000000;
	background-color: #f1f1f1;
}

.map_list .zbt {
	width: 25px;
	height: 25px;
}

.map_type_item:last-child {
	border-right: 0;
}

.map_list {
	width: 100%;
	height: 220px;
	overflow-y: scroll;
	overflow-x: hidden;
	display: flex;
	flex-direction: column;
}
#map_thumb{
        background-image: url(/images/mapthumb.png);
        background-color: rgba(0, 0, 0, 0.5);
        width: 90vw;
        height: 520px;
        opacity: 1;
        z-index: 10000;
        background-repeat: no-repeat;    /* 禁止平铺 */
        background-size: 90vw 100%;   
}