.point-type-body{
	max-height: 15rem;
	overflow-x:hidden;
	overflow-y:hidden;
}

.point-type{
	background:#fff;
	color:#333;
	overflow-x:hidden;
	overflow-y:hidden;
}

.point-type::-webkit-scrollbar { /*滚动条整体样式*/
	width: 4px; /*高宽分别对应横竖滚动条的尺寸*/
	height: 4px;
}

.point-type::-webkit-scrollbar-thumb { /*滚动条里面小方块*/
	border-radius: 5px;
	-webkit-box-shadow: inset 0 0 5px #00ACE6;
	background: rgba(0, 0, 0, 0.2);
}

.point-type::-webkit-scrollbar-track { /*滚动条里面轨道*/
	-webkit-box-shadow: inset 0 0 5px #fff;
	border-radius: 0;
	background: rgba(0, 0, 0, 0.1);
}

.point-type>ul{
	padding:.5rem;
}

.point-type>ul>li{
	padding:.2rem;
	cursor: pointer;
	background-color: #fff;
}


.point-type>ul>li>.selected{
	display: none;
}
.point-type>ul>li.point-type-active>.selected{
	display: inline;
}
.point-type>ul>li>.unselected{
	display: inline;
}
.point-type>ul>li.point-type-active>.unselected{
	display: none;
}

.point-type>ul>li.point-type-active{
	background-color: #fff;
}

.point-type>ul>li>img{
	width:.6rem;
	height:.6rem;
}

.point-type>ul>li>span{
	font-size:.6rem;
	padding-left:.2rem;
}


