@charset "utf-8";
	/*配套图片select样式,如需修改样式，可参考下方（最终页面运行html）
	<div class="sltDiv" onclick="sltDivClkFn(this);"> 
		<div class="defImg" style="background-image:url(images/02.jpg);"></div>
		<span class="defText">bbbbbbbbbbb</span> 
		<table border="0" cellpadding="0" cellspacing="0" style="display: table;"> 
			<tbody> 
				 <tr onclick="sltDivCheckFn('sltContain01','images/01.jpg','aaaaaaaaaaa',0);"> 
					<td> <img src="images/01.jpg" /> </td> 
					<td>aaaaaaaaaaa</td> 
				 </tr> 
				 <tr class="sltDivTr" onclick="sltDivCheckFn('sltContain01','images/02.jpg','bbbbbbbbbbb',1);">
					<td><img src="images/02.jpg" /></td>
					<td>bbbbbbbbbbb</td>
				 </tr>
				 <tr onclick="sltDivCheckFn('sltContain01','images/03.jpg','ccccccccccc',2);">
					<td><img src="images/03.jpg" /></td>
					<td>ccccccccccc</td>
				 </tr>
			</tbody>
		</table>
	</div>
	---------------------*/
	.sltDiv{padding:0 5px; text-align:left; height:25px; line-height:25px; background:url(sltImg.png) right center no-repeat; border:1px solid #CCCCCC; border-radius:5px; white-space:nowrap; position:relative;}
	.sltDiv{padding:0 5px; text-align:left; height:25px; line-height:25px; background:url(sltImg.png) right center no-repeat; border:1px solid #CCCCCC; border-radius:5px; white-space:nowrap; position:relative;}
	.sltDiv .defImg{width:25px; height:25px; margin-right:5px; float:left; background-position:center; background-repeat:no-repeat; background-size:contain;}
	.sltDiv .defText{display:block; text-align:left; float:left;}

	.sltDiv .sltContain{position:absolute; left:0; top:26px; background-color:#FFF; max-height:50vh; overflow-y: auto; display:none; border-top-right-radius:2rem; border-bottom-left-radius:2rem; border:1px solid #CCC;}
	.sltDiv table{border:0 none; width:100%;}
	.sltDiv table td{white-space:nowrap; border-bottom:1px dotted #EAEAEA; padding-top:0.5rem; padding-bottom: 0.5rem;}
	.sltDiv table td:nth-child(odd){padding-left: 0.8rem;}
	.sltDiv table td:nth-child(even){padding-left: 0.8rem; padding-right: 1rem;}
	.sltDiv table td img{width:50px; height:auto;}
	.sltDiv table tr{opacity:0.5;}
	.sltDiv table tr:hover{background-color:#EAEAEA; cursor:pointer; opacity:1.0;}
	.sltDivTr{background-color:#EFEFEF; cursor:pointer;}

