@charset "utf-8";
.aptitude-box{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.6);
	z-index: 10000;
}
.hide{ 
}
/*禁止文字选中*/
.aptitude-box span{ 
    -webkit-user-select: none;  /* Chrome all / Safari all /opera15+*/  
    -moz-user-select: none;     /* Firefox all */  
    -ms-user-select: none;      /* IE 10+ */  
    user-select: none;  
}


.aptitude-box .content{
	width: 684px;
	position: absolute;
	top: 60px;
	left: 50%;
	margin-left: -342px;
	background: #fff;
}
.aptitude-box .title{
    font-size: 16px;
    height: 45px;
    line-height: 45px;
    padding: 0 15px 0 15px;
    color: #000;
    font-weight: 400;
}
.aptitude-box .result{
	background-color: #FFF;
    line-height: 32px;
    padding: 10px 34px;
    font-size: 12px;
    margin-bottom: 10px;
    max-height: 130px;
    overflow-y: auto;
}
.aptitude-box .result em{
	color: #678;
    margin-right: 10px;
    display: inline-block;
    vertical-align: middle;
    font-style: italic;
}
.aptitude-box .result span{
	display: inline-block;
    vertical-align: middle;
    background-color: #f9841e;
    border-radius: 15px;
    padding: 0 14px 2px;
    color: #fff;
    margin: 0px 5px 2px 0;
    line-height: 26px;
    white-space: nowrap;
}
.aptitude-box .result i{
	display: inline-block;
    margin-left: 5px;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    vertical-align: bottom;
    margin-left: 5px;
    margin-right: -5px;
    font-style: normal;
}
.aptitude-box ul{
	padding: 0 34px;
	border-bottom: 1px solid #e6e6e6;
	margin-bottom: 10px;
}
.aptitude-box li{
	float: left;
	background: #fcfcfc;
    border-width: 1px 1px 0 1px;
    border-color: #d9d9d9;
    border-style: solid;
    line-height: 29px;
    margin-right: -1px;
	padding-bottom: 1px;
	padding: 0 15px;
    cursor: pointer;
    margin-right: 15px;
}
.aptitude-box .list{
    background-color: #fcfcfc;
    border: 1px solid #e5e5e5;
    margin: 0 34px 18px;
    padding: 14px 10px;
    border-radius: 2px;
    
}
.aptitude-box .list span{
	display: inline-block;
	line-height: 30px;
	padding: 0 10px;
	white-space: nowrap;
	cursor: pointer;
	margin: 0 0 1px 1px;
	color: #f9841e;
	position: relative;
}
.aptitude-box .list span i{
	display: inline-block;
	font-size: 12px;
	color: #F9841E;
	background: #fff;
	width: 14px;
	height: 14px;
	text-align: center;
	line-height: 14px;
	border-radius: 100%;
	font-style: normal;
	margin-left: 3px;
}
.aptitude-box .list span:hover{
	background: #d5e9f2;
}
.aptitude-box .list span.active{
	color: #fff;
	background: #f9841e;
}
.aptitude-box .btn{
	padding: 10px 34px;
}
.aptitude-box .btn button{
	display: inline-block;
    padding: 5px 12px;
    font-size: 14px;
    line-height: 18px;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background: #f5f5f5;
    border: 1px solid #ccc;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    overflow: visible;
    float: right;
    color: #fff;
    background: #ff6600;
    border: 1px #ff6600 solid;
}
.aptitude-box .btn button.cancel{
	background: #fff;
	color: #ff6600;
	margin-right: 10px;
}