﻿@charset "utf-8";
*{
	margin: 0;
	padding: 0;
	user-select: none;
}
#box{
	width: 600px;
	background: #f5f5f5;
	padding: 30px;
	overflow-y: auto;
}
.left{
	float: left;
}
.right{
	float: right;
}
div::-webkit-scrollbar{
	width:10px;
	height:10px;
	/**/
}
div::-webkit-scrollbar-track{
	background: rgb(239, 239, 239);
	border-radius:2px;
}
div::-webkit-scrollbar-thumb{
	background: #bfbfbf;
	border-radius:10px;
}
div::-webkit-scrollbar-thumb:hover{
	background: #333;
}
div::-webkit-scrollbar-corner{
	background: #179a16;
}
.clearFix::after{
	content: '';
	clear: both;
	display: block;
}
.right_arrow{
	float: left;
	width: 50px;
	height: 30px;
	margin: 30px 0 0 20px;
}
.selectWrap{
	width: 250px;
	border:1px solid #ccc;
	cursor: pointer;
}
.showBox{
	width: 250px;
	padding: 10px;
	background: #fff;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}
.showBox + .showBox{
	border-top: 1px solid #eee;
}
.showBox img{
	float: left;
	width: 60px;
	height: 60px;
	border:1px solid #ddd;
}
.showBox span{
	float: right;
	width: calc(100% - 70px);
	height: 60px;
	font-size: 14px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}
.selectWrap .listWrap{
	width: 100%;
	height: 0;
	border-top: 1px solid #ccc;
	overflow: hidden;
	transition: 0.3s;
}
.selectWrap .listWrap.on{
	height: 300px;
}
.selectWrap .listWrap .search{
	width: 100%;
	height: 35px;
	background: #fff;
	border-bottom: 1px solid #ccc;
	padding: 5px 0;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}
.selectWrap .listWrap .search input{
	display: block;
	width: 95%;
	height: 20px;
	margin: auto;
	text-indent: 5px;
}
.selectWrap .listWrap .boxList{
	width: 100%;
	max-height: calc(100% - 35px);
	overflow-x: hidden;
	overflow-y: auto;
}
.selectWrap  > .showBox{
	display: none;
}
.selectWrap .listWrap .boxList .showBox{
   cursor: pointer;
}
.selectWrap .listWrap .boxList .showBox:hover{
	background: skyblue;
}
.selectWrap .listWrap .boxList .showBox.on{
	background: skyblue;
}
.selectWrap .noSelect{
	background: #eee;
	line-height: 80px;
	text-align: center;
	cursor: pointer;
}
.ceil + .ceil{
	margin-top: 10px;
}
.empty{
	display: none;
	text-indent: 20px;
	color:#666;
	font-size: 14px;
	line-height: 30px;
}